Lines Matching refs:pCell
329 CELL *pCell; in stackRoll() local
335 pCell = pStack->sp - n - 1; in stackRoll()
336 c = *pCell; in stackRoll()
338 for (;n > 0; --n, pCell++) in stackRoll()
340 *pCell = pCell[1]; in stackRoll()
343 *pCell = c; in stackRoll()
347 pCell = pStack->sp - 1; in stackRoll()
348 c = *pCell; in stackRoll()
350 for (; n < 0; ++n, pCell--) in stackRoll()
352 *pCell = pCell[-1]; in stackRoll()
355 *pCell = c; in stackRoll()