Lines Matching refs:loc
321 * returns 1 if <loc> is on this stack
323 int stkon(register Sfio_t * stream, register char* loc)
328 if(loc>=((char*)(fp+1)) && loc< fp->end)
333 * reset the bottom of the current stack back to <loc>
334 * if <loc> is not in this stack, then the stack is reset to the beginning
338 char *stkset(register Sfio_t * stream, register char* loc, unsigned offset)
355 if(loc==fp->aliases[n])
357 loc = cp;
361 /* see whether <loc> is in current stack frame */
362 if(loc>=cp && loc<=sp->stkend)
366 stream->_data = (unsigned char*)(cp + roundof(loc-cp,STK_ALIGN));
367 stream->_next = (unsigned char*)loc+offset;