Lines Matching refs:pCell
328 CELL *pCell; in stackRoll() local
334 pCell = pStack->sp - n - 1; in stackRoll()
335 c = *pCell; in stackRoll()
337 for (;n > 0; --n, pCell++) in stackRoll()
339 *pCell = pCell[1]; in stackRoll()
342 *pCell = c; in stackRoll()
346 pCell = pStack->sp - 1; in stackRoll()
347 c = *pCell; in stackRoll()
349 for (; n < 0; ++n, pCell--) in stackRoll()
351 *pCell = pCell[-1]; in stackRoll()
354 *pCell = c; in stackRoll()