Home | History | Annotate | Download | only in C

Lines Matching refs:bufBase

241   Byte *bufBase;

469 p->bufBase = 0;
472 #define RangeEnc_GetProcessed(p) ((p)->processed + ((p)->buf - (p)->bufBase) + (p)->cacheSize)
477 if (p->bufBase == 0)
479 p->bufBase = (Byte *)alloc->Alloc(alloc, RC_BUF_SIZE);
480 if (p->bufBase == 0)
482 p->bufLim = p->bufBase + RC_BUF_SIZE;
489 alloc->Free(alloc, p->bufBase);
490 p->bufBase = 0;
501 p->buf = p->bufBase;
512 num = p->buf - p->bufBase;
513 if (num != p->outStream->Write(p->outStream, p->bufBase, num))
516 p->buf = p->bufBase;