taglinefilesource code
hash284fs/buffer.cif (hash(bh->b_dev,bh->b_blocknr) == bh)
hash285fs/buffer.chash(bh->b_dev,bh->b_blocknr) = bh->b_next;
hash406fs/buffer.cbh->b_next = hash(bh->b_dev,bh->b_blocknr);
hash407fs/buffer.chash(bh->b_dev,bh->b_blocknr) = bh;
hash416fs/buffer.cfor (tmp = hash(dev,block) ; tmp != NULL ; tmp = tmp->b_next)
hash122fs/dcache.cstatic inline void add_hash(struct dir_cache_entry * de, struct hash_list * hash)
hash124fs/dcache.cde->h.next = hash->next;
hash125fs/dcache.cde->h.prev = (struct dir_cache_entry *) hash;
hash126fs/dcache.chash->next->h.prev = de;
hash127fs/dcache.chash->next = de;
hash133fs/dcache.cstatic struct dir_cache_entry * find_entry(struct inode * dir, const char * name, int len, struct hash_list * hash)
hash135fs/dcache.cstruct dir_cache_entry * de = hash->next;
hash137fs/dcache.cfor (de = hash->next ; de != (struct dir_cache_entry *) hash ; de = de->h.next) {
hash157fs/dcache.cstatic inline void move_to_level2(struct dir_cache_entry * old_de, struct hash_list * hash)
hash169fs/dcache.cadd_hash(de, hash);
hash174fs/dcache.cstruct hash_list * hash;
hash179fs/dcache.chash = hash_table + hash_fn(dir->i_dev, dir->i_ino, namehash(name,len));
hash180fs/dcache.cde = find_entry(dir, name, len, hash);
hash184fs/dcache.cmove_to_level2(de, hash);
hash190fs/dcache.cstruct hash_list * hash;
hash195fs/dcache.chash = hash_table + hash_fn(dir->i_dev, dir->i_ino, namehash(name,len));
hash196fs/dcache.cif ((de = find_entry(dir, name, len, hash)) != NULL) {
hash210fs/dcache.cadd_hash(de, hash);
hash57fs/inode.ch = hash(inode->i_dev, inode->i_ino);
hash69fs/inode.ch = hash(inode->i_dev, inode->i_ino);
hash494fs/inode.ch = hash(sb->s_dev, nr);
hash361net/inet/arp.cunsigned long hash;
hash401net/inet/arp.chash = HASH(entry->ip);
hash409net/inet/arp.cpentry = &arp_tables[hash];
hash489net/inet/arp.cunsigned long hash = HASH(ip_addr);
hash492net/inet/arp.cpentry = &arp_tables[hash];
hash537net/inet/arp.cunsigned long hash;
hash708net/inet/arp.chash = HASH(sip);
hash710net/inet/arp.cfor(entry=arp_tables[hash];entry;entry=entry->next)
hash768net/inet/arp.centry->next = arp_tables[hash];
hash769net/inet/arp.carp_tables[hash] = entry;
hash789net/inet/arp.cunsigned long hash;
hash803net/inet/arp.chash = HASH(paddr);
hash861net/inet/arp.centry->next = arp_tables[hash];
hash862net/inet/arp.carp_tables[hash] = entry;
hash980net/inet/arp.cunsigned long hash = HASH(paddr);
hash982net/inet/arp.cfor (entry = arp_tables[hash]; entry != NULL; entry = entry->next)
hash1072net/inet/arp.cunsigned long hash = HASH(ip);
hash1074net/inet/arp.chash = PROXY_HASH;
hash1087net/inet/arp.centry->next = arp_tables[hash];
hash1088net/inet/arp.carp_tables[hash] = entry;
hash225net/inet/icmp.cunsigned char hash;
hash258net/inet/icmp.chash = iph->protocol & (MAX_INET_PROTOS -1);
hash264net/inet/icmp.cipprot = (struct inet_protocol *) inet_protos[hash];
hash1431net/inet/ip.cunsigned char hash;
hash1567net/inet/ip.chash = iph->protocol & (MAX_INET_PROTOS -1);
hash1568net/inet/ip.cfor (ipprot = (struct inet_protocol *)inet_protos[hash];ipprot != NULL;ipprot=(struct inet_protocol *)ipprot->next)
hash88net/inet/protocol.cunsigned char hash;
hash91net/inet/protocol.chash = prot & (MAX_INET_PROTOS - 1);
hash92net/inet/protocol.cfor (p = inet_protos[hash] ; p != NULL; p=p->next) {
hash102net/inet/protocol.cunsigned char hash;
hash105net/inet/protocol.chash = prot->protocol & (MAX_INET_PROTOS - 1);
hash106net/inet/protocol.cprot ->next = inet_protos[hash];
hash107net/inet/protocol.cinet_protos[hash] = prot;
hash127net/inet/protocol.cunsigned char hash;
hash129net/inet/protocol.chash = prot->protocol & (MAX_INET_PROTOS - 1);
hash130net/inet/protocol.cif (prot == inet_protos[hash]) {
hash131net/inet/protocol.cinet_protos[hash] = (struct inet_protocol *) inet_protos[hash]->next;
hash135net/inet/protocol.cp = (struct inet_protocol *) inet_protos[hash];