Lines Matching defs:word
48 * A prefix is a word in a dedicated wordlist (name stored in list_name below)
64 * This is the parse step for prefixes - it checks an incoming word
66 * code against the remainder of the word and returns true.
73 ficlWord *word = ficlSystemLookup(vm->callback.system, list_name);
80 if (!word)
83 hash = (ficlHash *)(word->param[0].p);
89 word = hash->table[i];
90 while (word != NULL) {
92 n = word->length;
96 * word.
99 word->name, (ficlUnsigned)n)) {
106 ficlVmExecuteWord(vm, word);
110 word = word->link;