Lines Matching defs:cch
112 DumpBuffer(fh,pch,cch)
117 void DumpBuffer(FILE *fh, const char *pch, int cch)
120 while (i<cch)
249 int cch;
251 cch = this->state.cchLineOut - this->state.iReadPos;
254 cch);
255 cchMax-=cch; /* advance parameters */
256 achOut+=cch;
257 (*pcchRead)+=cch;
407 int cch;
408 cch=0;
409 rc=ReadChunk(this,achBuf,APP_CHUNK_SIZE,&cch);
410 if (cch>0 && this->fhScan && cch<=APP_CHUNK_SIZE)
416 fprintf(stderr,"ichPageBuffer:%d, cch:%d, cchPageBuffer:%d\n",
417 this->ichPageBuffer,cch,this->cchPageBuffer);
419 CHECK_ASSERTION(this->ichPageBuffer+cch<=this->cchPageBuffer);
421 achBuf,cch);
422 this->ichPageBuffer+=cch;
425 fwrite(achBuf,1,cch,this->fhScan);
426 lcchRead+=cch;