Lines Matching refs:dictionary

58 	ficlDictionary *dictionary = ficlVmGetDictionary(vm);
63 ficlDictionaryAppendWord(dictionary, name,
65 ficlDictionaryAppendCell(dictionary, ficlStackPop(vm->floatStack));
70 ficlDictionaryAppendFConstant(ficlDictionary *dictionary, char *name,
75 return (ficlDictionaryAppendConstantInstruction(dictionary, s,
81 ficlDictionarySetFConstant(ficlDictionary *dictionary, char *name,
86 return (ficlDictionarySetConstantInstruction(dictionary, s,
96 ficlDictionary *dictionary = ficlVmGetDictionary(vm);
101 ficlDictionaryAppendWord(dictionary, name,
103 ficlDictionaryAppendCell(dictionary, ficlStackPop(vm->floatStack));
104 ficlDictionaryAppendCell(dictionary, ficlStackPop(vm->floatStack));
108 ficlDictionaryAppendF2Constant(ficlDictionary *dictionary, char *name,
113 return (ficlDictionaryAppend2ConstantInstruction(dictionary, s,
118 ficlDictionarySetF2Constant(ficlDictionary *dictionary, char *name,
123 return (ficlDictionarySet2ConstantInstruction(dictionary, s,
217 ficlDictionary *dictionary = ficlVmGetDictionary(vm);
224 ficlDictionaryAppendUnsigned(dictionary, ficlInstructionF1);
226 ficlDictionaryAppendUnsigned(dictionary, ficlInstructionF0);
228 ficlDictionaryAppendUnsigned(dictionary, ficlInstructionFNeg1);
230 ficlDictionaryAppendUnsigned(dictionary,
232 ficlDictionaryAppendCell(dictionary, cell);
404 * Add float words to a system's dictionary.
410 ficlDictionary *dictionary = ficlSystemGetDictionary(system);
416 FICL_SYSTEM_ASSERT(system, dictionary);
420 ficlDictionarySetPrimitive(dictionary, "(flocal)",
422 ficlDictionarySetPrimitive(dictionary, "(f2local)",
427 ficlDictionarySetPrimitive(dictionary, "fconstant",
429 ficlDictionarySetPrimitive(dictionary, "fvalue",
431 ficlDictionarySetPrimitive(dictionary, "f2constant",
433 ficlDictionarySetPrimitive(dictionary, "f2value",
435 ficlDictionarySetPrimitive(dictionary, "fdepth", ficlPrimitiveFDepth,
437 ficlDictionarySetPrimitive(dictionary, "fliteral",
439 ficlDictionarySetPrimitive(dictionary, "f.", ficlPrimitiveFDot,
441 ficlDictionarySetPrimitive(dictionary, "f.s", ficlVmDisplayFloatStack,
443 ficlDictionarySetPrimitive(dictionary, "fe.", ficlPrimitiveEDot,