Lines Matching defs:cell
342 ficlCell *cell;
347 cell = stack->top - n;
348 c = *cell;
350 for (; n > 0; --n, cell++) {
351 *cell = cell[1];
354 *cell = c;
356 cell = stack->top;
357 c = *cell;
359 for (; n < 0; ++n, cell--) {
360 *cell = cell[-1];
363 *cell = c;
383 ficlCell *cell;
387 cell = bottomToTop ? stack->base : stack->top;
389 if (callback(context, cell) == FICL_FALSE)
391 cell += bottomToTop ? 1 : -1;