tag | line | file | source code |
hash | 190 | fs/buffer.c | if (hash(bh->b_dev,bh->b_blocknr) == bh) |
hash | 191 | fs/buffer.c | hash(bh->b_dev,bh->b_blocknr) = bh->b_next; |
hash | 253 | fs/buffer.c | bh->b_next = hash(bh->b_dev,bh->b_blocknr); |
hash | 254 | fs/buffer.c | hash(bh->b_dev,bh->b_blocknr) = bh; |
hash | 263 | fs/buffer.c | for (tmp = hash(dev,block) ; tmp != NULL ; tmp = tmp->b_next) |
hash | 182 | fs/ext2/dcache.c | remove_from_queue (hash (p->dev, p->dir), p); |
hash | 213 | fs/ext2/dcache.c | queue = hash(dev, dir); |
hash | 263 | fs/ext2/dcache.c | queue = hash(dev, dir); |
hash | 287 | fs/ext2/dcache.c | remove_from_queue (hash (p->dev, p->dir), p); |
hash | 324 | fs/ext2/dcache.c | queue = hash(dev, dir); |
hash | 294 | net/tcp/arp.c | unsigned long hash; |
hash | 299 | net/tcp/arp.c | hash = net32(paddr) & (ARP_TABLE_SIZE - 1); |
hash | 301 | net/tcp/arp.c | for (apt = (struct arp_table *)arp_table[hash]; |
hash | 318 | net/tcp/arp.c | unsigned long hash; |
hash | 324 | net/tcp/arp.c | hash = net32(paddr) & (ARP_TABLE_SIZE - 1); |
hash | 328 | net/tcp/arp.c | if (arp_table[hash] == NULL) return; |
hash | 331 | net/tcp/arp.c | if (arp_table[hash]->ip == paddr) |
hash | 333 | net/tcp/arp.c | apt = (struct arp_table *)arp_table[hash]; |
hash | 334 | net/tcp/arp.c | arp_table[hash] = arp_table[hash]->next; |
hash | 341 | net/tcp/arp.c | lapt = (struct arp_table *)arp_table[hash]; |
hash | 342 | net/tcp/arp.c | for (apt = (struct arp_table *)arp_table[hash]->next; |
hash | 363 | net/tcp/arp.c | unsigned long hash; |
hash | 367 | net/tcp/arp.c | hash = net32(paddr) & (ARP_TABLE_SIZE - 1); |
hash | 373 | net/tcp/arp.c | apt->next = arp_table[hash]; |
hash | 374 | net/tcp/arp.c | arp_table[hash] = apt; |
hash | 223 | net/tcp/icmp.c | unsigned char hash; |
hash | 233 | net/tcp/icmp.c | hash = iph->protocol & (MAX_IP_PROTOS -1 ); |
hash | 236 | net/tcp/icmp.c | for (ipprot = (struct ip_protocol *)ip_protos[hash]; |
hash | 109 | net/tcp/ip.c | unsigned char hash; |
hash | 112 | net/tcp/ip.c | hash = prot & (MAX_IP_PROTOS -1); |
hash | 113 | net/tcp/ip.c | for (p = ip_protos[hash] ; p != NULL; p=p->next) |
hash | 127 | net/tcp/ip.c | unsigned char hash; |
hash | 129 | net/tcp/ip.c | hash = prot->protocol & (MAX_IP_PROTOS-1); |
hash | 130 | net/tcp/ip.c | prot ->next = ip_protos[hash]; |
hash | 131 | net/tcp/ip.c | ip_protos[hash] = prot; |
hash | 152 | net/tcp/ip.c | unsigned char hash; |
hash | 155 | net/tcp/ip.c | hash = prot->protocol & (MAX_IP_PROTOS -1); |
hash | 156 | net/tcp/ip.c | if (prot == ip_protos[hash]) |
hash | 158 | net/tcp/ip.c | ip_protos[hash]=(struct ip_protocol *)ip_protos[hash]->next; |
hash | 162 | net/tcp/ip.c | for (p = (struct ip_protocol *)ip_protos[hash]; |
hash | 812 | net/tcp/ip.c | unsigned char hash; |
hash | 858 | net/tcp/ip.c | hash = iph->protocol & (MAX_IP_PROTOS -1); |
hash | 859 | net/tcp/ip.c | for (ipprot = (struct ip_protocol *)ip_protos[hash]; |