tag | line | file | source code |
hash | 288 | fs/buffer.c | if (hash(bh->b_dev,bh->b_blocknr) == bh) |
hash | 289 | fs/buffer.c | hash(bh->b_dev,bh->b_blocknr) = bh->b_next; |
hash | 351 | fs/buffer.c | bh->b_next = hash(bh->b_dev,bh->b_blocknr); |
hash | 352 | fs/buffer.c | hash(bh->b_dev,bh->b_blocknr) = bh; |
hash | 361 | fs/buffer.c | for (tmp = hash(dev,block) ; tmp != NULL ; tmp = tmp->b_next) |
hash | 189 | fs/ext2/dcache.c | remove_from_queue (hash (p->dev, p->dir), p); |
hash | 218 | fs/ext2/dcache.c | queue = hash (dev, dir); |
hash | 266 | fs/ext2/dcache.c | queue = hash (dev, dir); |
hash | 290 | fs/ext2/dcache.c | remove_from_queue (hash (p->dev, p->dir), p); |
hash | 325 | fs/ext2/dcache.c | queue = hash (dev, dir); |
hash | 53 | fs/inode.c | h = hash(inode->i_dev, inode->i_ino); |
hash | 65 | fs/inode.c | h = hash(inode->i_dev, inode->i_ino); |
hash | 430 | fs/inode.c | inode = *(hash(sb->s_dev,nr)); |
hash | 337 | net/inet/arp.c | unsigned long hash; |
hash | 348 | net/inet/arp.c | hash = htonl(paddr) & (ARP_TABLE_SIZE - 1); |
hash | 350 | net/inet/arp.c | apt = arp_tables[hash]; |
hash | 367 | net/inet/arp.c | unsigned long hash; |
hash | 372 | net/inet/arp.c | hash = htonl(paddr) & (ARP_TABLE_SIZE - 1); |
hash | 374 | net/inet/arp.c | apt = arp_tables[hash]; |
hash | 393 | net/inet/arp.c | unsigned long hash; |
hash | 403 | net/inet/arp.c | hash = htonl(paddr) & (ARP_TABLE_SIZE - 1); |
hash | 406 | net/inet/arp.c | lapt = &arp_tables[hash]; |
hash | 427 | net/inet/arp.c | unsigned long hash; |
hash | 440 | net/inet/arp.c | hash = htonl(paddr) & (ARP_TABLE_SIZE - 1); |
hash | 448 | net/inet/arp.c | apt->next = arp_tables[hash]; |
hash | 449 | net/inet/arp.c | arp_tables[hash] = apt; |
hash | 144 | net/inet/icmp.c | unsigned char hash; |
hash | 180 | net/inet/icmp.c | hash = iph->protocol & (MAX_INET_PROTOS -1); |
hash | 183 | net/inet/icmp.c | ipprot = (struct inet_protocol *) inet_protos[hash]; |
hash | 1186 | net/inet/ip.c | unsigned char hash; |
hash | 1270 | net/inet/ip.c | hash = iph->protocol & (MAX_INET_PROTOS -1); |
hash | 1271 | net/inet/ip.c | for (ipprot = (struct inet_protocol *)inet_protos[hash]; |
hash | 88 | net/inet/protocol.c | unsigned char hash; |
hash | 92 | net/inet/protocol.c | hash = prot & (MAX_INET_PROTOS - 1); |
hash | 93 | net/inet/protocol.c | for (p = inet_protos[hash] ; p != NULL; p=p->next) { |
hash | 104 | net/inet/protocol.c | unsigned char hash; |
hash | 107 | net/inet/protocol.c | hash = prot->protocol & (MAX_INET_PROTOS - 1); |
hash | 108 | net/inet/protocol.c | prot ->next = inet_protos[hash]; |
hash | 109 | net/inet/protocol.c | inet_protos[hash] = prot; |
hash | 129 | net/inet/protocol.c | unsigned char hash; |
hash | 131 | net/inet/protocol.c | hash = prot->protocol & (MAX_INET_PROTOS - 1); |
hash | 132 | net/inet/protocol.c | if (prot == inet_protos[hash]) { |
hash | 133 | net/inet/protocol.c | inet_protos[hash] = (struct inet_protocol *) inet_protos[hash]->next; |
hash | 137 | net/inet/protocol.c | p = (struct inet_protocol *) inet_protos[hash]; |