Searched refs:HASHSIZE (Results 1 - 9 of 9) sorted by relevance

/haiku-fatelf/src/add-ons/translators/gif/
H A DGIFSave.h25 #define HASHSIZE 9973 macro
28 #define HASH(index, lastbyte) (((lastbyte << 8) ^ index) % HASHSIZE)
H A DGIFSave.cpp216 code_value = (short *)malloc(HASHSIZE * 2);
217 prefix_code = (short *)malloc(HASHSIZE * 2);
218 append_char = (unsigned char *)malloc(HASHSIZE);
300 for (int q = 0; q < HASHSIZE; q++) {
317 hashindex = (hashindex + HASHSTEP) % HASHSIZE;
327 while (code_value[hashindex] != -1) hashindex = (hashindex + HASHSTEP) % HASHSIZE;
/haiku-fatelf/src/bin/gdb/gdb/
H A Dstabsread.h44 EXTERN struct symbol *global_sym_chain[HASHSIZE];
H A Dbuildsym.h46 #define HASHSIZE 127 /* Size of things hashed via macro
H A Dbuildsym.c1098 return (hash(name,strlen(name)) % HASHSIZE);
H A Dstabsread.c4211 for (hash = 0; hash < HASHSIZE; hash++)
4216 if (hash >= HASHSIZE)
4300 for (hash = 0; hash < HASHSIZE; hash++)
H A Dcoffread.c125 static struct symbol *opaque_type_chain[HASHSIZE];
/haiku-fatelf/src/bin/gawk/
H A Dawkgram.y86 #define HASHSIZE 1021 /* this constant only used here */
87 NODE *variables[HASHSIZE];
2441 bucket = hash(name, len, (unsigned long) HASHSIZE);
2462 for (bucket = variables[hash(name, len, (unsigned long) HASHSIZE)];
2534 for (i = j = 0; i < HASHSIZE; i++)
2575 for (i = 0; i < HASHSIZE; i++)
2636 for (i = j = 0; i < HASHSIZE; i++) {
2648 for (i = j = 0; i < HASHSIZE; i++) {
2688 for (i = j = 0; i < HASHSIZE; i++) {
2844 save = &(variables[hash(name, len, (unsigned long) HASHSIZE)]);
[all...]
H A Dawkgram.c212 #define HASHSIZE 1021 /* this constant only used here */ macro
213 NODE *variables[HASHSIZE];
4280 bucket = hash(name, len, (unsigned long) HASHSIZE);
4301 for (bucket = variables[hash(name, len, (unsigned long) HASHSIZE)];
4373 for (i = j = 0; i < HASHSIZE; i++)
4414 for (i = 0; i < HASHSIZE; i++)
4475 for (i = j = 0; i < HASHSIZE; i++) {
4487 for (i = j = 0; i < HASHSIZE; i++) {
4527 for (i = j = 0; i < HASHSIZE; i++) {
4683 save = &(variables[hash(name, len, (unsigned long) HASHSIZE)]);
[all...]

Completed in 82 milliseconds