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 | 122 | fs/dcache.c | static inline void add_hash(struct dir_cache_entry * de, struct hash_list * hash) |
hash | 124 | fs/dcache.c | de->h.next = hash->next; |
hash | 125 | fs/dcache.c | de->h.prev = (struct dir_cache_entry *) hash; |
hash | 126 | fs/dcache.c | hash->next->h.prev = de; |
hash | 127 | fs/dcache.c | hash->next = de; |
hash | 133 | fs/dcache.c | static struct dir_cache_entry * find_entry(struct inode * dir, const char * name, int len, struct hash_list * hash) |
hash | 135 | fs/dcache.c | struct dir_cache_entry * de = hash->next; |
hash | 137 | fs/dcache.c | for (de = hash->next ; de != (struct dir_cache_entry *) hash ; de = de->h.next) { |
hash | 157 | fs/dcache.c | static inline void move_to_level2(struct dir_cache_entry * old_de, struct hash_list * hash) |
hash | 169 | fs/dcache.c | add_hash(de, hash); |
hash | 174 | fs/dcache.c | struct hash_list * hash; |
hash | 179 | fs/dcache.c | hash = hash_table + hash_fn(dir->i_dev, dir->i_ino, namehash(name,len)); |
hash | 180 | fs/dcache.c | de = find_entry(dir, name, len, hash); |
hash | 184 | fs/dcache.c | move_to_level2(de, hash); |
hash | 190 | fs/dcache.c | struct hash_list * hash; |
hash | 195 | fs/dcache.c | hash = hash_table + hash_fn(dir->i_dev, dir->i_ino, namehash(name,len)); |
hash | 196 | fs/dcache.c | if ((de = find_entry(dir, name, len, hash)) != NULL) { |
hash | 210 | fs/dcache.c | add_hash(de, hash); |
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 | 432 | fs/inode.c | h = hash(sb->s_dev, nr); |
hash | 371 | net/inet/arp.c | unsigned long hash; |
hash | 411 | net/inet/arp.c | hash = HASH(entry->ip); |
hash | 412 | net/inet/arp.c | pentry = &arp_tables[hash]; |
hash | 491 | net/inet/arp.c | unsigned long hash = HASH(ip_addr); |
hash | 494 | net/inet/arp.c | pentry = &arp_tables[hash]; |
hash | 530 | net/inet/arp.c | unsigned long hash,dest_hash; |
hash | 697 | net/inet/arp.c | hash = HASH(sip); |
hash | 699 | net/inet/arp.c | for(entry=arp_tables[hash];entry;entry=entry->next) |
hash | 756 | net/inet/arp.c | entry->next = arp_tables[hash]; |
hash | 757 | net/inet/arp.c | arp_tables[hash] = entry; |
hash | 777 | net/inet/arp.c | unsigned long hash; |
hash | 791 | net/inet/arp.c | hash = HASH(paddr); |
hash | 797 | net/inet/arp.c | for (entry = arp_tables[hash]; entry != NULL; entry = entry->next) |
hash | 851 | net/inet/arp.c | entry->next = arp_tables[hash]; |
hash | 852 | net/inet/arp.c | arp_tables[hash] = entry; |
hash | 964 | net/inet/arp.c | unsigned long hash = HASH(paddr); |
hash | 967 | net/inet/arp.c | for (entry = arp_tables[hash]; entry != NULL; entry = entry->next) |
hash | 983 | net/inet/arp.c | unsigned long ip, hash; |
hash | 1033 | net/inet/arp.c | hash = HASH(ip); |
hash | 1039 | net/inet/arp.c | for (entry = arp_tables[hash]; entry != NULL; entry = entry->next) |
hash | 1060 | net/inet/arp.c | entry->next = arp_tables[hash]; |
hash | 1061 | 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 | 1432 | net/inet/ip.c | unsigned char hash; |
hash | 1568 | net/inet/ip.c | hash = iph->protocol & (MAX_INET_PROTOS -1); |
hash | 1569 | 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]; |