Lines Matching refs:extra
387 /* extra: number of bytes that were copied from (src) to (temp) buffer in this call */
388 unsigned extra = 0;
400 /* p->src : the current src data position including extra bytes
433 if (extra >= tempPos)
434 extra = tempPos;
435 p->src = src - extra;
436 p->tempPos = tempPos - extra;
447 if (extra >= tempPos)
449 /* (extra >= tempPos) means that temp buffer contains
456 // we append one additional extra byte from (src) to temp[] buffer:
461 extra++;