Searched refs:hashcode (Results 1 – 8 of 8) sorted by relevance
| /freebsd-13-stable/libexec/bootpd/ |
| HD | hash.c | 183 hash_Exists(hashtable, hashcode, compare, key) in hash_Exists() argument 185 unsigned hashcode; 191 memberptr = (hashtable->table)[hashcode % (hashtable->size)]; 214 hash_Insert(hashtable, hashcode, compare, key, element) in hash_Insert() argument 216 unsigned hashcode; 222 hashcode %= hashtable->size; 223 if (hash_Exists(hashtable, hashcode, compare, key)) { 231 temp->next = (hashtable->table)[hashcode]; 232 (hashtable->table)[hashcode] = temp; 245 hash_Delete(hashtable, hashcode, compare, key, free_data) in hash_Delete() argument [all …]
|
| HD | bootpd.c | 627 unsigned hlen, hashcode; in handle_request() local 681 hashcode = hash_HashFunction(bp->bp_chaddr, hlen); in handle_request() 682 hp = (struct host *) hash_Lookup(hwhashtable, hashcode, hwlookcmp, in handle_request() 694 hashcode = hash_HashFunction(dummyhost.haddr, hlen); in handle_request() 695 hp = (struct host *) hash_Lookup(hwhashtable, hashcode, in handle_request() 720 hashcode = hash_HashFunction((u_char *) &(bp->bp_ciaddr.s_addr), 4); in handle_request() 721 hp = (struct host *) hash_Lookup(iphashtable, hashcode, iplookcmp, in handle_request()
|
| HD | readfile.c | 313 unsigned hashcode, buflen; local 425 hashcode = hash_HashFunction(hp->haddr, haddrlength(hp->htype)); 426 if (hash_Insert(hwhashtable, hashcode, hwinscmp, hp, hp) < 0) { 436 hashcode = hash_HashFunction((u_char *) & (hp->iaddr.s_addr), 4); 437 if (hash_Insert(iphashtable, hashcode, nullcmp, hp, hp) < 0) { 446 hashcode = hash_HashFunction((u_char *) hp->hostname->string, 448 if (hash_Insert(nmhashtable, hashcode, nullcmp, 1426 unsigned int tlen, hashcode; local 1432 hashcode = hash_HashFunction((u_char *) tstring, tlen); 1433 hp2 = (struct host *) hash_Lookup(nmhashtable, hashcode, nmcmp, tstring);
|
| /freebsd-13-stable/stand/ficl/softwords/ |
| HD | string.fr | 113 : hashcode ( 2:this -- hashcode ) 123 c-2byte obj: .hashcode 125 : set-hashcode { 2:this -- } 126 this --> super --> hashcode 127 this --> .hashcode --> set 130 : get-hashcode ( 2:this -- hashcode ) 131 --> .hashcode --> get 136 --> set-hashcode 141 --> set-hashcode
|
| HD | ficlclass.fr | 13 c-2byte obj: .hashcode
|
| /freebsd-13-stable/libexec/bootpd/tools/bootpef/ |
| HD | bootpef.c | 224 unsigned int tlen, hashcode; local 228 hashcode = hash_HashFunction((u_char *)argv[0], tlen); 230 hashcode,
|
| /freebsd-13-stable/sys/contrib/openzfs/cmd/zstream/ |
| HD | zstream_redup.c | 146 uint64_t hashcode = BF64_GET(ch, 0, rdt->numhashbits); in rdt_insert() local 149 rdepp = &(rdt->redup_hash_array[hashcode]); in rdt_insert() 166 uint64_t hashcode = BF64_GET(ch, 0, rdt->numhashbits); in rdt_lookup() local 168 for (redup_entry_t *rde = rdt->redup_hash_array[hashcode]; in rdt_lookup()
|
| /freebsd-13-stable/contrib/ncurses/ |
| HD | NEWS | 191 + check for invalid hashcode in _nc_find_type_entry and 194 + check for invalid hashcode in _nc_find_entry.
|