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 | 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 | 436 | fs/inode.c | h = hash(sb->s_dev, nr); |
hash | 363 | net/inet/arp.c | unsigned long hash; |
hash | 374 | net/inet/arp.c | hash = htonl(paddr) & (ARP_TABLE_SIZE - 1); |
hash | 376 | net/inet/arp.c | apt = arp_tables[hash]; |
hash | 393 | net/inet/arp.c | unsigned long hash; |
hash | 398 | net/inet/arp.c | hash = htonl(paddr) & (ARP_TABLE_SIZE - 1); |
hash | 400 | net/inet/arp.c | apt = arp_tables[hash]; |
hash | 419 | net/inet/arp.c | unsigned long hash; |
hash | 429 | net/inet/arp.c | hash = htonl(paddr) & (ARP_TABLE_SIZE - 1); |
hash | 432 | net/inet/arp.c | lapt = &arp_tables[hash]; |
hash | 472 | net/inet/arp.c | unsigned long hash; |
hash | 485 | net/inet/arp.c | hash = htonl(paddr) & (ARP_TABLE_SIZE - 1); |
hash | 493 | net/inet/arp.c | apt->next = arp_tables[hash]; |
hash | 494 | 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 | 1215 | net/inet/ip.c | unsigned char hash; |
hash | 1302 | net/inet/ip.c | hash = iph->protocol & (MAX_INET_PROTOS -1); |
hash | 1303 | 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]; |