Lines Matching defs:hash
79 ficlHash *hash = ficlVmGetDictionary(vm)->forthWordlist;
80 ficlStackPushPointer(vm->dataStack, hash);
136 ficlHash *hash = ficlStackPopPointer(vm->dataStack);
143 word = ficlHashLookup(hash, name, hashCode);
163 ficlHash *hash = ficlStackPopPointer(vm->dataStack);
166 dictionary->compilationWordlist = hash;
217 * 1. Ficl creates a new single-list hash in the dictionary and returns
220 * hash entries in the wordlist. Ficl 2.02 and later define WORDLIST as
227 ficlHash *hash;
233 hash = ficlDictionaryCreateWordlist(dictionary, nBuckets);
234 ficlStackPushPointer(vm->dataStack, hash);
285 ficlHash *hash;
290 hash = ficlVmPop(vm).p;
291 name = hash->name;
314 ficlHash *hash = ficlVmPop(vm).p;
315 hash->name = name;