Searched refs:cpos (Results 1 – 2 of 2) sorted by relevance
2076 int cpos = 0; in writeBytes() local2079 if (cpos >= csize) { in writeBytes()2080 cpos = 0; in writeBytes()2087 int n = Math.min(csize - cpos, MAX_BLOCK_SIZE - pos); in writeBytes()2090 buf[pos++] = (byte) cbuf[cpos++]; in writeBytes()2241 for (int cpos = 0; cpos < csize; cpos++) { in getUTFLength()2242 char c = cbuf[cpos]; in getUTFLength()2306 for (int cpos = 0; cpos < csize; cpos++) { in writeUTFBody()2307 char c = cbuf[cpos]; in writeUTFBody()
3234 int cpos = 0; in readUTFSpan() local3254 cbuf[cpos++] = (char) b1; in readUTFSpan()3263 cbuf[cpos++] = (char) (((b1 & 0x1F) << 6) | in readUTFSpan()3274 cbuf[cpos++] = (char) (((b1 & 0x0F) << 12) | in readUTFSpan()3297 sbuf.append(cbuf, 0, cpos); in readUTFSpan()