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