Lines Matching defs:s
9 * This file implements the dictionary -- Ficl's model of
89 * Align the dictionary's free space pointer
111 * d i c t A l l o t C e l l s
183 * Copy up to FICL_NAME_LENGTH characters of the name specified by s into
192 ficlDictionaryAppendString(ficlDictionary *dictionary, ficlString s)
194 void *data = FICL_STRING_GET_POINTER(s);
195 ficlInteger length = FICL_STRING_GET_LENGTH(s);
235 ficlString s;
236 FICL_STRING_SET_FROM_CSTRING(s, name);
237 return (ficlDictionaryAppendConstantInstruction(dictionary, s,
245 ficlString s;
246 FICL_STRING_SET_FROM_CSTRING(s, name);
247 return (ficlDictionaryAppend2ConstantInstruction(dictionary, s,
273 ficlString s;
274 FICL_STRING_SET_FROM_CSTRING(s, name);
275 return (ficlDictionarySetConstantInstruction(dictionary, s,
280 ficlDictionarySet2ConstantInstruction(ficlDictionary *dictionary, ficlString s,
284 word = ficlDictionaryLookup(dictionary, s);
303 word = ficlDictionaryAppend2ConstantInstruction(dictionary, s,
314 ficlString s;
315 FICL_STRING_SET_FROM_CSTRING(s, name);
317 return (ficlDictionarySet2ConstantInstruction(dictionary, s,
325 ficlString s;
328 FICL_STRING_SET_FROM_CSTRING(s, name);
330 return (ficlDictionarySet2ConstantInstruction(dictionary, s,
365 * Point "here" to first ficlCell of new word's param area...
385 ficlString s;
386 FICL_STRING_SET_FROM_CSTRING(s, name);
388 return (ficlDictionaryAppendWord(dictionary, s, code, flags));
395 ficlString s;
398 FICL_STRING_SET_FROM_CSTRING(s, name);
399 word = ficlDictionaryLookup(dictionary, s);
428 * d i c t C e l l s A v a i l
438 * d i c t C e l l s U s e d
479 * d i c t C r e a t e W o r d l i s t
534 * i s A F i c l W o r d
536 * it's not some chunk o' inline data...
538 * like it's in the dictionary address range.
568 * f i n d E n c l o s i n g W o r d
569 * Given a pointer to something, check to make sure it's an address in the
597 * d i c t I n c l u d e s
611 * If found, returns the word's address. Otherwise returns NULL.
636 * s e e
638 * Display a human-readable representation of the named word's definition.
682 sprintf(trace, "%s (instruction %ld)",
688 sprintf(trace, "%s (instruction %ld), with "
695 "%s :: executes %s (instruction word %ld)",
705 sprintf(trace, "%.*s ( %#lx literal )",
733 sprintf(trace, "s\" %.*s\"", counted->length,
743 sprintf(trace, "c\" %.*s\"", counted->length,
784 sprintf(trace, "%.*s", word->length,
802 * d i c t R e s e t S e a r c h O r d e r
815 * d i c t S e t F l a g s
828 * d i c t C l e a r F l a g s
851 * d i c t U n s m u d g e