Symbol: CELL
crypto/heimdal/lib/kafs/common.c
375
char CELL[64];
crypto/heimdal/lib/kafs/common.c
410
_kafs_foldup(CELL, cell);
crypto/heimdal/lib/kafs/common.c
425
if (strcmp(CELL, realm) == 0) {
crypto/heimdal/lib/kafs/common.c
438
NULL, CELL, uid, kt);
crypto/heimdal/lib/kafs/common.c
441
cell, CELL, uid, kt);
crypto/heimdal/lib/kafs/common.c
452
&& strcmp(vl_realm, CELL) != 0) {
stand/ficl/dict.c
104
CELL c;
stand/ficl/dict.c
108
ptr = (CELL *)c.p;
stand/ficl/dict.c
135
if ((unsigned)n <= dictCellsAvail(pDict) * sizeof (CELL))
stand/ficl/dict.c
143
if ((unsigned)n <= dictCellsUsed(pDict) * sizeof (CELL))
stand/ficl/dict.c
146
cp -= dictCellsUsed(pDict) * sizeof (CELL);
stand/ficl/dict.c
190
void dictAppendCell(FICL_DICT *pDict, CELL c)
stand/ficl/dict.c
310
if ((n >= 0) && (dictCellsAvail(pDict) * (int)sizeof(CELL) < n))
stand/ficl/dict.c
315
if ((n <= 0) && (dictCellsUsed(pDict) * (int)sizeof(CELL) < -n))
stand/ficl/dict.c
390
nAlloc = sizeof (FICL_HASH) + nCells * sizeof (CELL)
stand/ficl/dict.c
65
CELL dictThreshold;
stand/ficl/dict.c
66
CELL dictIncrease;
stand/ficl/dict.c
688
CELL *dictWhere(FICL_DICT *pDict)
stand/ficl/dict.c
856
dp->dict = ficlMalloc( dictIncrease.u * sizeof (CELL) );
stand/ficl/dict.c
88
pDict->here = (CELL *)pFW->name;
stand/ficl/ficl.c
321
assert(dictCellsAvail(pSys->dp) > sizeof (FICL_WORD) / sizeof (CELL));
stand/ficl/ficl.c
336
CELL id = pVM->sourceID;
stand/ficl/ficl.h
1108
extern CELL dictThreshold;
stand/ficl/ficl.h
1109
extern CELL dictIncrease;
stand/ficl/ficl.h
279
#define LVALUEtoCELL(v) (*(CELL *)&v)
stand/ficl/ficl.h
286
#define PTRtoCELL (CELL *)(void *)
stand/ficl/ficl.h
361
CELL *pFrame; /* link reg for stack frame */
stand/ficl/ficl.h
362
CELL *sp; /* stack pointer */
stand/ficl/ficl.h
363
CELL base[1]; /* Top of stack */
stand/ficl/ficl.h
373
CELL stackFetch (FICL_STACK *pStack, int n);
stand/ficl/ficl.h
374
CELL stackGetTop (FICL_STACK *pStack);
stand/ficl/ficl.h
377
CELL stackPop (FICL_STACK *pStack);
stand/ficl/ficl.h
381
void stackPush (FICL_STACK *pStack, CELL c);
stand/ficl/ficl.h
387
void stackSetTop (FICL_STACK *pStack, CELL c);
stand/ficl/ficl.h
388
void stackStore (FICL_STACK *pStack, int n, CELL c);
stand/ficl/ficl.h
491
CELL sourceID; /* -1 if EVALUATE, 0 if normal input */
stand/ficl/ficl.h
494
CELL user[FICL_USER_CELLS];
stand/ficl/ficl.h
534
CELL param[1]; /* First data cell of the word */
stand/ficl/ficl.h
541
( (sizeof (FICL_WORD) + nFICLNAME + sizeof (CELL)) \
stand/ficl/ficl.h
542
/ (sizeof (CELL)) )
stand/ficl/ficl.h
582
CELL vmPop (FICL_VM *pVM);
stand/ficl/ficl.h
583
void vmPush (FICL_VM *pVM, CELL c);
stand/ficl/ficl.h
730
CELL *here;
stand/ficl/ficl.h
737
CELL *dict; /* Base of dictionary memory */
stand/ficl/ficl.h
745
void dictAppendCell (FICL_DICT *pDict, CELL c);
stand/ficl/ficl.h
777
CELL *dictWhere (FICL_DICT *pDict);
stand/ficl/ficl.h
886
CELL *pMarkLocals;
stand/ficl/fileaccess.c
213
CELL id = pVM->sourceID;
stand/ficl/fileaccess.c
233
CELL id = pVM->sourceID;
stand/ficl/float.c
354
CELL *pCell;
stand/ficl/float.c
480
CELL c = POP();
stand/ficl/float.c
495
CELL c;
stand/ficl/float.c
597
CELL *pCell;
stand/ficl/float.c
604
pCell = (CELL *)POPPTR();
stand/ficl/float.c
614
CELL *pCell;
stand/ficl/float.c
621
pCell = (CELL *)POPPTR();
stand/ficl/float.c
631
CELL *pCell;
stand/ficl/float.c
638
pCell = (CELL *)POPPTR();
stand/ficl/float.c
677
CELL c;
stand/ficl/float.c
694
CELL c;
stand/ficl/float.c
711
CELL c;
stand/ficl/float.c
783
CELL c;
stand/ficl/float.c
797
CELL c;
stand/ficl/loader.c
424
CELL id;
stand/ficl/loader.c
462
CELL c;
stand/ficl/stack.c
115
size_t size = sizeof (FICL_STACK) + nCells * sizeof (CELL);
stand/ficl/stack.c
173
CELL stackFetch(FICL_STACK *pStack, int n)
stand/ficl/stack.c
178
void stackStore(FICL_STACK *pStack, int n, CELL c)
stand/ficl/stack.c
190
CELL stackGetTop(FICL_STACK *pStack)
stand/ficl/stack.c
246
CELL stackPop(FICL_STACK *pStack)
stand/ficl/stack.c
278
void stackPush(FICL_STACK *pStack, CELL c)
stand/ficl/stack.c
327
CELL c;
stand/ficl/stack.c
328
CELL *pCell;
stand/ficl/stack.c
365
void stackSetTop(FICL_STACK *pStack, CELL c)
stand/ficl/testmain.c
139
CELL id;
stand/ficl/tools.c
153
static FICL_WORD *findEnclosingWord(FICL_VM *pVM, CELL *cp)
stand/ficl/tools.c
164
pFW = (FICL_WORD *)(cp + 1 - (sizeof (FICL_WORD) / sizeof (CELL)));
stand/ficl/tools.c
186
static void seeColon(FICL_VM *pVM, CELL *pc)
stand/ficl/tools.c
189
CELL *param0 = pc;
stand/ficl/tools.c
208
CELL c;
stand/ficl/tools.c
227
pc = (CELL *)alignPtr(sp->text + sp->count + 1) - 1;
stand/ficl/tools.c
234
pc = (CELL *)alignPtr(sp->text + sp->count + 1) - 1;
stand/ficl/tools.c
262
sprintf(cp, "?do (leave %d)", (int)((CELL *)c.p-param0));
stand/ficl/tools.c
266
sprintf(cp, "do (leave %d)", (int)((CELL *)c.p-param0));
stand/ficl/tools.c
319
seeColon(pVM, (CELL *)pFW->param->p);
stand/ficl/tools.c
546
xt = findEnclosingWord(pVM, (CELL *)(pVM->ip));
stand/ficl/tools.c
627
CELL *pCell;
stand/ficl/tools.c
651
CELL *pCell;
stand/ficl/tools.c
663
CELL c = *pCell++;
stand/ficl/tools.c
675
int offset = (CELL *)c.p - &pFW->param[0];
stand/ficl/vm.c
193
typedef CELL *IPTYPE;
stand/ficl/vm.c
203
CELL c;
stand/ficl/vm.c
427
CELL vmPop(FICL_VM *pVM)
stand/ficl/vm.c
437
void vmPush(FICL_VM *pVM, CELL c)
stand/ficl/words.c
1091
CELL *pCell;
stand/ficl/words.c
1095
pCell = (CELL *)stackPopPtr(pVM->pStack);
stand/ficl/words.c
1108
CELL *pCell;
stand/ficl/words.c
1112
pCell = (CELL *)stackPopPtr(pVM->pStack);
stand/ficl/words.c
1125
CELL *pCell;
stand/ficl/words.c
1129
pCell = (CELL *)stackPopPtr(pVM->pStack);
stand/ficl/words.c
1141
CELL *pCell;
stand/ficl/words.c
1145
pCell = (CELL *)stackPopPtr(pVM->pStack);
stand/ficl/words.c
1152
CELL *pCell;
stand/ficl/words.c
1156
pCell = (CELL *)stackPopPtr(pVM->pStack);
stand/ficl/words.c
128
CELL *patchAddr;
stand/ficl/words.c
1303
CELL *patchAddr;
stand/ficl/words.c
1312
(CELL *)stackPopPtr(pVM->pStack); /* (2) pop "if" patch addr */
stand/ficl/words.c
135
patchAddr = (CELL *)stackPopPtr(pVM->pStack);
stand/ficl/words.c
1369
CELL *patchAddr;
stand/ficl/words.c
1406
patchAddr = (CELL *)stackPopPtr(pVM->pStack);
stand/ficl/words.c
1447
CELL *fallthroughFixup = NULL;
stand/ficl/words.c
1486
CELL *patchAddr;
stand/ficl/words.c
1500
patchAddr = (CELL *)stackPopPtr(pVM->pStack);
stand/ficl/words.c
151
CELL *patchAddr;
stand/ficl/words.c
1530
CELL *patchAddr;
stand/ficl/words.c
1541
patchAddr = (CELL *)stackPopPtr(pVM->pStack);
stand/ficl/words.c
158
patchAddr = (CELL *)stackPopPtr(pVM->pStack);
stand/ficl/words.c
172
CELL *patchAddr;
stand/ficl/words.c
1852
CELL c;
stand/ficl/words.c
1863
CELL c;
stand/ficl/words.c
1874
CELL c;
stand/ficl/words.c
188
patchAddr = (CELL *)stackPopPtr(pVM->pStack);
stand/ficl/words.c
1885
CELL x, y;
stand/ficl/words.c
1898
CELL x, y;
stand/ficl/words.c
1922
CELL x, y;
stand/ficl/words.c
1946
CELL x, y;
stand/ficl/words.c
1958
CELL x, y;
stand/ficl/words.c
1970
CELL x, y;
stand/ficl/words.c
1982
CELL x;
stand/ficl/words.c
2041
CELL index, limit;
stand/ficl/words.c
2081
CELL index, limit;
stand/ficl/words.c
2212
CELL index = stackGetTop(pVM->rStack);
stand/ficl/words.c
2221
CELL index = stackFetch(pVM->rStack, 3);
stand/ficl/words.c
2230
CELL index = stackFetch(pVM->rStack, 6);
stand/ficl/words.c
2347
CELL *pBase;
stand/ficl/words.c
2352
pBase = (CELL *)(&pVM->base);
stand/ficl/words.c
2412
CELL c;
stand/ficl/words.c
2445
PUSHINT(i * (FICL_INT)sizeof (CELL));
stand/ficl/words.c
2457
PUSHPTR(cp + sizeof (CELL));
stand/ficl/words.c
2756
CELL *pCell;
stand/ficl/words.c
2783
CELL *pCell;
stand/ficl/words.c
3438
CELL id;
stand/ficl/words.c
4098
CELL c;
stand/ficl/words.c
625
CELL c;
stand/ficl/words.c
646
CELL c;
stand/ficl/words.c
931
CELL c = stackPop(pVM->pStack);
stand/ficl/words.c
942
CELL c;