Searched defs:targetBytes (Results 1 - 5 of 5) sorted by relevance

/external/okhttp/okio/okio/src/main/java/okio/
H A DBufferedSource.java233 * Returns the index of the first byte in {@code targetBytes} in the buffer.
238 long indexOfElement(ByteString targetBytes) throws IOException; argument
241 * Returns the index of the first byte in {@code targetBytes} in the buffer
247 long indexOfElement(ByteString targetBytes, long fromIndex) throws IOException; argument
H A DRealBufferedSource.java334 @Override public long indexOfElement(ByteString targetBytes) throws IOException { argument
335 return indexOfElement(targetBytes, 0);
338 @Override public long indexOfElement(ByteString targetBytes, long fromIndex) throws IOException { argument
344 while ((index = buffer.indexOfElement(targetBytes, fromIndex)) == -1) {
H A DBuffer.java1274 @Override public long indexOfElement(ByteString targetBytes) { argument
1275 return indexOfElement(targetBytes, 0);
1278 @Override public long indexOfElement(ByteString targetBytes, long fromIndex) { argument
1284 byte[] toFind = targetBytes.toByteArray();
/external/dng_sdk/source/
H A Ddng_xmp_sdk.cpp1316 uint32 targetBytes,
1338 if (asPacket && targetBytes)
1346 targetBytes,
1387 if (forJPEG && asPacket && padBytes > 0 && targetBytes <= kJPEG_XMP_Limit &&
1314 Serialize(dng_memory_allocator &allocator, bool asPacket, uint32 targetBytes, uint32 padBytes, bool forJPEG, bool compact) const argument
H A Ddng_xmp.cpp561 uint32 targetBytes,
569 targetBytes,
560 Serialize(bool asPacket, uint32 targetBytes, uint32 padBytes, bool forJPEG, bool compact) const argument

Completed in 228 milliseconds