tag | line | file | source code |
hash | 279 | fs/buffer.c | if (hash(bh->b_dev,bh->b_blocknr) == bh) |
hash | 280 | fs/buffer.c | hash(bh->b_dev,bh->b_blocknr) = bh->b_next; |
hash | 401 | fs/buffer.c | bh->b_next = hash(bh->b_dev,bh->b_blocknr); |
hash | 402 | fs/buffer.c | hash(bh->b_dev,bh->b_blocknr) = bh; |
hash | 411 | fs/buffer.c | for (tmp = hash(dev,block) ; tmp != NULL ; tmp = tmp->b_next) |
hash | 190 | fs/ext2/dcache.c | remove_from_queue (hash (p->dev, p->dir), p); |
hash | 219 | fs/ext2/dcache.c | queue = hash (dev, dir); |
hash | 267 | fs/ext2/dcache.c | queue = hash (dev, dir); |
hash | 291 | fs/ext2/dcache.c | remove_from_queue (hash (p->dev, p->dir), p); |
hash | 326 | fs/ext2/dcache.c | queue = hash (dev, dir); |
hash | 57 | fs/inode.c | h = hash(inode->i_dev, inode->i_ino); |
hash | 69 | fs/inode.c | h = hash(inode->i_dev, inode->i_ino); |
hash | 431 | fs/inode.c | h = hash(sb->s_dev, nr); |
hash | 369 | net/inet/arp.c | unsigned long hash; |
hash | 409 | net/inet/arp.c | hash = HASH(entry->ip); |
hash | 410 | net/inet/arp.c | pentry = &arp_tables[hash]; |
hash | 489 | net/inet/arp.c | unsigned long hash = HASH(ip_addr); |
hash | 492 | net/inet/arp.c | pentry = &arp_tables[hash]; |
hash | 528 | net/inet/arp.c | unsigned long hash,dest_hash; |
hash | 695 | net/inet/arp.c | hash = HASH(sip); |
hash | 697 | net/inet/arp.c | for(entry=arp_tables[hash];entry;entry=entry->next) |
hash | 754 | net/inet/arp.c | entry->next = arp_tables[hash]; |
hash | 755 | net/inet/arp.c | arp_tables[hash] = entry; |
hash | 775 | net/inet/arp.c | unsigned long hash; |
hash | 789 | net/inet/arp.c | hash = HASH(paddr); |
hash | 795 | net/inet/arp.c | for (entry = arp_tables[hash]; entry != NULL; entry = entry->next) |
hash | 846 | net/inet/arp.c | entry->next = arp_tables[hash]; |
hash | 847 | net/inet/arp.c | arp_tables[hash] = entry; |
hash | 956 | net/inet/arp.c | unsigned long hash = HASH(paddr); |
hash | 959 | net/inet/arp.c | for (entry = arp_tables[hash]; entry != NULL; entry = entry->next) |
hash | 975 | net/inet/arp.c | unsigned long ip, hash; |
hash | 1025 | net/inet/arp.c | hash = HASH(ip); |
hash | 1031 | net/inet/arp.c | for (entry = arp_tables[hash]; entry != NULL; entry = entry->next) |
hash | 1052 | net/inet/arp.c | entry->next = arp_tables[hash]; |
hash | 1053 | net/inet/arp.c | arp_tables[hash] = entry; |
hash | 224 | net/inet/icmp.c | unsigned char hash; |
hash | 257 | net/inet/icmp.c | hash = iph->protocol & (MAX_INET_PROTOS -1); |
hash | 263 | net/inet/icmp.c | ipprot = (struct inet_protocol *) inet_protos[hash]; |
hash | 1431 | net/inet/ip.c | unsigned char hash; |
hash | 1563 | net/inet/ip.c | hash = iph->protocol & (MAX_INET_PROTOS -1); |
hash | 1564 | net/inet/ip.c | for (ipprot = (struct inet_protocol *)inet_protos[hash];ipprot != NULL;ipprot=(struct inet_protocol *)ipprot->next) |
hash | 88 | net/inet/protocol.c | unsigned char hash; |
hash | 91 | net/inet/protocol.c | hash = prot & (MAX_INET_PROTOS - 1); |
hash | 92 | net/inet/protocol.c | for (p = inet_protos[hash] ; p != NULL; p=p->next) { |
hash | 102 | net/inet/protocol.c | unsigned char hash; |
hash | 105 | net/inet/protocol.c | hash = prot->protocol & (MAX_INET_PROTOS - 1); |
hash | 106 | net/inet/protocol.c | prot ->next = inet_protos[hash]; |
hash | 107 | net/inet/protocol.c | inet_protos[hash] = prot; |
hash | 127 | net/inet/protocol.c | unsigned char hash; |
hash | 129 | net/inet/protocol.c | hash = prot->protocol & (MAX_INET_PROTOS - 1); |
hash | 130 | net/inet/protocol.c | if (prot == inet_protos[hash]) { |
hash | 131 | net/inet/protocol.c | inet_protos[hash] = (struct inet_protocol *) inet_protos[hash]->next; |
hash | 135 | net/inet/protocol.c | p = (struct inet_protocol *) inet_protos[hash]; |