Lines Matching refs:nOutBufChars
2064 if (!IsBinaryToken(cc->outBuf[0]) && cc->nOutBufChars < DPS_SEQ_MIN) {
2065 char *tb = cc->outBuf + cc->nOutBufChars;
2066 integer nn = DPS_SEQ_MIN - cc->nOutBufChars;
2068 cc->nOutBufChars += nn;
2074 if (cc->nOutBufChars < bst) {
2076 if (nch + cc->nOutBufChars < (unsigned) bst) {
2077 os_bcopy(buf, cc->outBuf + cc->nOutBufChars, nch);
2078 cc->nOutBufChars += nch;
2081 os_bcopy(buf, b + cc->nOutBufChars, bst - cc->nOutBufChars);
2082 buf += bst - cc->nOutBufChars;
2083 nch -= bst - cc->nOutBufChars;
2084 cc->nOutBufChars = bst;
2093 if (nch + cc->nOutBufChars < m) {
2094 os_bcopy(buf, cc->outBuf + cc->nOutBufChars, nch);
2095 cc->nOutBufChars += nch;
2098 os_bcopy(buf, cc->outBuf + cc->nOutBufChars, m - cc->nOutBufChars);
2099 buf += m - cc->nOutBufChars;
2100 nch -= m - cc->nOutBufChars;
2101 cc->nOutBufChars = m;
2105 nch = cc->nOutBufChars;
2107 cc->nOutBufChars = 0;
2138 cc->nOutBufChars = nch;
2152 cc->nOutBufChars = nch;
2272 cc->numstringOffsets[cc->numstringOffsets[1]] = cc->nOutBufChars - 4;