Home
last modified time | relevance | path

Searched refs:HASHMASK (Results 1 – 13 of 13) sorted by relevance

/dports/net/olsrd/olsrd-0.9.8/src/
H A Dhashing.h50 #define HASHMASK (HASHSIZE - 1) macro
H A Dhashing.c174 return hash & HASHMASK; in olsr_ip_hashing()
/dports/devel/splint/splint-3.1.2/src/Headers/
H A Dlcl_constants.h47 # define HASHMASK (HASHSIZE-1) /* HASHSIZE must be 2^n */ macro
/dports/science/rdkit/rdkit-Release_2021_03_5/Code/GraphMol/FileParsers/
H A DProximityBonds.cpp164 constexpr int HASHMASK = 1023; variable
198 int list = HashTable[probe & HASHMASK]; in ConnectTheDots_Large()
211 int list = hash & HASHMASK; in ConnectTheDots_Large()
/dports/lang/gauche/Gauche-0.9.10/src/
H A Dhash.c62 #define HASHMASK SCM_SMALL_INT_MAX macro
137 return hashval&HASHMASK; in Scm_EqHash()
207 return hashval & (portable ? PORTABLE_HASHMASK : HASHMASK); in number_hash()
218 return hashval&HASHMASK; in Scm_EqvHash()
473 return equal_hash_common(obj, Scm_HashSaltRef(), FALSE) & HASHMASK; in Scm_DefaultHash()
483 return equal_hash_common(obj, salt, FALSE) & HASHMASK; in Scm_RecursiveHash()
511 if (modulo == 0) return hashval&HASHMASK; in Scm_HashString()
/dports/games/scummvm/scummvm-2.5.1/engines/glk/agt/
H A Dgamedata.cpp575 #define HASHMASK (HASHSIZE-1) macro
587 i = n & ~HASHMASK; in hashfunc()
589 n = (n ^ (i >> HASHBITS))&HASHMASK; in hashfunc()
591 return (n & HASHMASK); in hashfunc()
600 i = (i + 1)&HASHMASK); in search0_dict()
652 for (i = hashfunc(s); hash[i] != -1; i = (i + 1)&HASHMASK); in add0_dict()
677 for (j = hashfunc(dict[i]); hash[j] != -1; j = (j + 1)&HASHMASK); in rebuild_hash()
/dports/lang/sagittarius-scheme/sagittarius-0.9.8/src/
H A Dhashtable.c63 #define HASHMASK 0xffffffffUL macro
95 if (bound) return (hashval & HASHMASK) % bound; in Sg_EqHash()
96 return hashval & HASHMASK; in Sg_EqHash()
127 if (bound) return (hashval & HASHMASK) % bound; in Sg_EqvHash()
128 return hashval & HASHMASK; in Sg_EqvHash()
/dports/devel/plan9port/plan9port-1f098efb7370a0b28306d10681e21883fb1c1507/src/cmd/devdraw/
H A Ddevdraw.h3 #define HASHMASK (NHASH-1) macro
H A Ddevdraw.c243 d = client->dimage[id&HASHMASK]; in drawlookup()
309 d->next = client->dimage[id&HASHMASK]; in drawinstall()
310 client->dimage[id&HASHMASK] = d; in drawinstall()
490 for(l=&client->dimage[id&HASHMASK]; (d=*l) != nil; l=&d->next){ in drawuninstall()
/dports/devel/splint/splint-3.1.2/src/
H A Dlsymbol.c130 hashValue = h & HASHMASK; in lsymbol_fromChars()
/dports/net/drawterm/drawterm/kern/
H A Ddevdraw.c38 #define HASHMASK (NHASH-1) macro
489 d = client->dimage[id&HASHMASK]; in drawlookup()
549 d->next = client->dimage[id&HASHMASK]; in drawinstall()
550 client->dimage[id&HASHMASK] = d; in drawinstall()
721 d = client->dimage[id&HASHMASK]; in drawuninstall()
725 client->dimage[id&HASHMASK] = d->next; in drawuninstall()
/dports/graphics/xaos/XaoS-release-4.2.1/src/util/
H A Dxmenu.cpp16 #define HASHMASK (HASHSIZE - 1) macro
17 #define HASH(c, len) (((len)*32 + (c)[0] + (c)[(len)-1]) & HASHMASK)
/dports/lang/gauche/Gauche-0.9.10/
H A DChangeLog3849 by HASHMASK. Shouldn't affect existing code as far as they're