Lines Matching refs:counted
1286 ficlCountedString *counted = (ficlCountedString *) in ficlPrimitiveCountedStringQuoteIm() local
1289 (void) ficlVmGetString(vm, counted, '\"'); in ficlPrimitiveCountedStringQuoteIm()
1290 ficlStackPushPointer(vm->dataStack, counted); in ficlPrimitiveCountedStringQuoteIm()
1296 counted->length + sizeof (ficlUnsigned8)); in ficlPrimitiveCountedStringQuoteIm()
1525 ficlCountedString *counted = FICL_POINTER_TO_COUNTED_STRING(vm->pad); in ficlPrimitiveLessNumberSign() local
1526 counted->length = 0; in ficlPrimitiveLessNumberSign()
1540 ficlCountedString *counted; in ficlPrimitiveNumberSign() local
1546 counted = FICL_POINTER_TO_COUNTED_STRING(vm->pad); in ficlPrimitiveNumberSign()
1549 counted->text[counted->length++] = ficlDigitToCharacter(uqr.remainder); in ficlPrimitiveNumberSign()
1562 ficlCountedString *counted; in ficlPrimitiveNumberSignGreater() local
1566 counted = FICL_POINTER_TO_COUNTED_STRING(vm->pad); in ficlPrimitiveNumberSignGreater()
1567 counted->text[counted->length] = 0; in ficlPrimitiveNumberSignGreater()
1568 (void) ficlStringReverse(counted->text); in ficlPrimitiveNumberSignGreater()
1570 ficlStackPushPointer(vm->dataStack, counted->text); in ficlPrimitiveNumberSignGreater()
1571 ficlStackPushUnsigned(vm->dataStack, counted->length); in ficlPrimitiveNumberSignGreater()
1584 ficlCountedString *counted; in ficlPrimitiveNumberSignS() local
1590 counted = FICL_POINTER_TO_COUNTED_STRING(vm->pad); in ficlPrimitiveNumberSignS()
1595 counted->text[counted->length++] = in ficlPrimitiveNumberSignS()
1612 ficlCountedString *counted; in ficlPrimitiveHold() local
1617 counted = FICL_POINTER_TO_COUNTED_STRING(vm->pad); in ficlPrimitiveHold()
1619 counted->text[counted->length++] = (char)i; in ficlPrimitiveHold()
1631 ficlCountedString *counted; in ficlPrimitiveSign() local
1636 counted = FICL_POINTER_TO_COUNTED_STRING(vm->pad); in ficlPrimitiveSign()
1639 counted->text[counted->length++] = '-'; in ficlPrimitiveSign()
1943 ficlCountedString *counted; in ficlPrimitiveCount() local
1947 counted = ficlStackPopPointer(vm->dataStack); in ficlPrimitiveCount()
1948 ficlStackPushPointer(vm->dataStack, counted->text); in ficlPrimitiveCount()
1949 ficlStackPushUnsigned(vm->dataStack, counted->length); in ficlPrimitiveCount()
2032 ficlCountedString *counted; in ficlPrimitiveStringQuoteIm() local
2033 counted = (ficlCountedString *)dictionary->here; in ficlPrimitiveStringQuoteIm()
2034 (void) ficlVmGetString(vm, counted, '\"'); in ficlPrimitiveStringQuoteIm()
2035 ficlStackPushPointer(vm->dataStack, counted->text); in ficlPrimitiveStringQuoteIm()
2036 ficlStackPushUnsigned(vm->dataStack, counted->length); in ficlPrimitiveStringQuoteIm()
2099 ficlCountedString *counted; in ficlPrimitiveWord() local
2105 counted = (ficlCountedString *)vm->pad; in ficlPrimitiveWord()
2112 counted->length = (ficlUnsigned8)FICL_STRING_GET_LENGTH(name); in ficlPrimitiveWord()
2113 (void) strncpy(counted->text, FICL_STRING_GET_POINTER(name), in ficlPrimitiveWord()
2120 counted->text[counted->length] = ' '; in ficlPrimitiveWord()
2121 counted->text[counted->length + 1] = 0; in ficlPrimitiveWord()
2123 ficlStackPushPointer(vm->dataStack, counted); in ficlPrimitiveWord()
2207 ficlCountedString *counted; in ficlPrimitiveCFind() local
2212 counted = ficlStackPopPointer(vm->dataStack); in ficlPrimitiveCFind()
2213 FICL_STRING_SET_FROM_COUNTED_STRING(name, *counted); in ficlPrimitiveCFind()
2214 do_find(vm, name, counted); in ficlPrimitiveCFind()