Searched refs:byteCount (Results 1 – 6 of 6) sorted by relevance
235 int byteCount = 0; in calculateRequiredByteCountToStoreCodePoints() local243 byteCount += 3; in calculateRequiredByteCountToStoreCodePoints()246 byteCount += 1; in calculateRequiredByteCountToStoreCodePoints()251 byteCount += 1; in calculateRequiredByteCountToStoreCodePoints()253 return byteCount; in calculateRequiredByteCountToStoreCodePoints()
81 public static Fingerprint fromInputStream(InputStream stream, long[] byteCount) in fromInputStream() argument97 if ((byteCount != null) && (byteCount.length > 0)) byteCount[0] = count; in fromInputStream()
75 int byteCount = 0; in saveDepth() local77 byteCount = channel.write(depthCloudData); in saveDepth()78 if (0 == byteCount) { in saveDepth()81 bytesWritten += byteCount; in saveDepth()
35 int byteCount; in checksum() local36 while ((byteCount = in.read(bytes)) > 0) { in checksum()37 digester.update(bytes, 0, byteCount); in checksum()
137 public long skip(long byteCount) throws IOException { in skip() argument138 if (byteCount <= 0) { in skip()142 int flag = skipDecodedBytes((int) (0x7FFFFFFF & byteCount)); in skip()
845 private static String readAsciiString(ByteBuffer buf, int byteCount, boolean nullOk) { in readAsciiString() argument846 byte[] bytes = new byte[byteCount]; in readAsciiString()