Searched refs:cpos (Results 1 – 2 of 2) sorted by relevance
2047 int cpos = 0; in writeBytes() local2050 if (cpos >= csize) { in writeBytes()2051 cpos = 0; in writeBytes()2058 int n = Math.min(csize - cpos, MAX_BLOCK_SIZE - pos); in writeBytes()2061 buf[pos++] = (byte) cbuf[cpos++]; in writeBytes()2212 for (int cpos = 0; cpos < csize; cpos++) { in getUTFLength()2213 char c = cbuf[cpos]; in getUTFLength()2277 for (int cpos = 0; cpos < csize; cpos++) { in writeUTFBody()2278 char c = cbuf[cpos]; in writeUTFBody()
3086 int cpos = 0; in readUTFSpan() local3106 cbuf[cpos++] = (char) b1; in readUTFSpan()3115 cbuf[cpos++] = (char) (((b1 & 0x1F) << 6) | in readUTFSpan()3126 cbuf[cpos++] = (char) (((b1 & 0x0F) << 12) | in readUTFSpan()3149 sbuf.append(cbuf, 0, cpos); in readUTFSpan()