Home
last modified time | relevance | path

Searched refs:ByteBuffer (Results 1 – 25 of 194) sorted by relevance

12345678

/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DICUBinary.java19 import java.nio.ByteBuffer;
58 static boolean validate(ByteBuffer bytes) { in validate()
81 private static boolean startsWithPackageName(ByteBuffer bytes, int start) { in startsWithPackageName()
97 static ByteBuffer getData(ByteBuffer bytes, CharSequence key) { in getData()
100 ByteBuffer data = bytes.duplicate(); in getData()
109 …static void addBaseNamesInFolder(ByteBuffer bytes, String folder, String suffix, Set<String> names… in addBaseNamesInFolder()
124 private static int binarySearch(ByteBuffer bytes, CharSequence key) { in binarySearch()
149 private static int getNameOffset(ByteBuffer bytes, int index) { in getNameOffset()
157 private static int getDataOffset(ByteBuffer bytes, int index) {
171 static boolean addBaseName(ByteBuffer bytes, int index,
[all …]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DICUBinary.java18 import java.nio.ByteBuffer;
54 static boolean validate(ByteBuffer bytes) { in validate()
77 private static boolean startsWithPackageName(ByteBuffer bytes, int start) { in startsWithPackageName()
93 static ByteBuffer getData(ByteBuffer bytes, CharSequence key) { in getData()
96 ByteBuffer data = bytes.duplicate(); in getData()
105 …static void addBaseNamesInFolder(ByteBuffer bytes, String folder, String suffix, Set<String> names… in addBaseNamesInFolder()
120 private static int binarySearch(ByteBuffer bytes, CharSequence key) { in binarySearch()
145 private static int getNameOffset(ByteBuffer bytes, int index) { in getNameOffset()
153 private static int getDataOffset(ByteBuffer bytes, int index) {
167 static boolean addBaseName(ByteBuffer bytes, int index,
[all …]
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
DByteBufferWriterTest.java35 import java.nio.ByteBuffer;
45 testWrite(ByteBuffer.allocate(100)); in testHeapBuffer()
46 testWrite(ByteBuffer.allocate(1024 * 100)); in testHeapBuffer()
51 testWrite(ByteBuffer.allocateDirect(100)); in testDirectBuffer()
52 testWrite(ByteBuffer.allocateDirect(1024 * 100)); in testDirectBuffer()
55 private void testWrite(ByteBuffer buffer) throws IOException { in testWrite()
63 private void fillRandom(ByteBuffer buf) { in fillRandom()
71 private byte[] toArray(ByteBuffer buf) { in toArray()
DDecodeUtf8Test.java6 import java.nio.ByteBuffer;
200 ByteBuffer direct = ByteBuffer.allocateDirect(bytes.length); in assertInvalid()
216 ByteBuffer heap = ByteBuffer.allocate(bytes.length); in assertInvalid()
247 ByteBuffer direct = ByteBuffer.allocateDirect(bytes.length); in assertInvalidSlice()
263 ByteBuffer heap = ByteBuffer.allocate(bytes.length); in assertInvalidSlice()
294 ByteBuffer direct = ByteBuffer.allocateDirect(bytes.length); in assertRoundTrips()
302 ByteBuffer heap = ByteBuffer.allocate(bytes.length); in assertRoundTrips()
DNioByteStringTest.java45 import java.nio.ByteBuffer;
53 private static final ByteString EMPTY = new NioByteString(ByteBuffer.wrap(new byte[0]));
58 private final ByteBuffer backingBuffer = ByteBuffer.wrap(BYTES.clone());
195 ByteBuffer myBuffer = ByteBuffer.allocate(BYTES.length); in testCopyTo_ByteBuffer()
202 myBuffer = ByteBuffer.allocate(testString.size() + 1); in testCopyTo_ByteBuffer()
208 myBuffer = ByteBuffer.allocate(0); in testCopyTo_ByteBuffer()
217 myBuffer = ByteBuffer.allocate(1); in testCopyTo_ByteBuffer()
289 ByteBuffer byteBuffer = testString.asReadOnlyByteBuffer(); in testAsReadOnlyByteBuffer()
300 List<ByteBuffer> byteBuffers = testString.asReadOnlyByteBufferList(); in testAsReadOnlyByteBufferList()
303 for (ByteBuffer byteBuffer : byteBuffers) { in testAsReadOnlyByteBufferList()
[all …]
DAbstractProto3LiteSchemaTest.java40 import java.nio.ByteBuffer;
53 protected List<ByteBuffer> serializedBytesWithInvalidUtf8() throws IOException { in serializedBytesWithInvalidUtf8()
54 List<ByteBuffer> invalidBytes = new ArrayList<>(); in serializedBytesWithInvalidUtf8()
57 ByteBuffer buffer = ByteBuffer.allocate(100); in serializedBytesWithInvalidUtf8()
65 ByteBuffer buffer = ByteBuffer.allocate(100); in serializedBytesWithInvalidUtf8()
DAbstractProto3SchemaTest.java40 import java.nio.ByteBuffer;
53 protected List<ByteBuffer> serializedBytesWithInvalidUtf8() throws IOException { in serializedBytesWithInvalidUtf8()
54 List<ByteBuffer> invalidBytes = new ArrayList<>(); in serializedBytesWithInvalidUtf8()
57 ByteBuffer buffer = ByteBuffer.allocate(100); in serializedBytesWithInvalidUtf8()
65 ByteBuffer buffer = ByteBuffer.allocate(100); in serializedBytesWithInvalidUtf8()
DIsValidUtf8TestUtil.java40 import java.nio.ByteBuffer;
79 return new NioByteString(ByteBuffer.wrap(bytes));
83 private static ThreadLocal<SoftReference<ByteBuffer>> directBuffer =
84 new ThreadLocal<SoftReference<ByteBuffer>>();
96 SoftReference<ByteBuffer> ref = directBuffer.get();
97 ByteBuffer buffer = ref == null ? null : ref.get();
99 buffer = ByteBuffer.allocateDirect(bytes.length);
100 directBuffer.set(new SoftReference<ByteBuffer>(buffer));
376 ByteBuffer bb = ByteBuffer.wrap(bytes);
378 ByteBuffer bbReencoded = ByteBuffer.wrap(bytesReencoded);
DUtf8Test.java33 import java.nio.ByteBuffer;
106 ByteBuffer buffer = ByteBuffer.wrap(data); in assertIsValid()
113 buffer = ByteBuffer.allocateDirect(data.length); in assertIsValid()
210 ByteBuffer buffer = direct ? ByteBuffer.allocateDirect(length) : ByteBuffer.allocate(length); in encodeToByteBuffer()
/third_party/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/
DTestCharset.java13 import java.nio.ByteBuffer;
60 ByteBuffer bs1 = ByteBuffer.allocate(0xFF*8); in TestUTF16Converter()
61 ByteBuffer bs2 = ByteBuffer.allocate(0xFF*8); in TestUTF16Converter()
119 ByteBuffer newBS = ByteBuffer.allocate(bs1.capacity()); in TestUTF16Converter()
153 ByteBuffer bs1 = ByteBuffer.allocate(0xFF*8); in TestUTF32Converter()
154 ByteBuffer bs2 = ByteBuffer.allocate(0xFF*8); in TestUTF32Converter()
192 ByteBuffer newBS = ByteBuffer.allocate(bs1.capacity()); in TestUTF32Converter()
252 ByteBuffer bs = ByteBuffer.wrap(bytes, 0, limit); in runTestASCIIBasedConverter()
259 bs = ByteBuffer.wrap(bytes, i, 1).slice(); in runTestASCIIBasedConverter()
287 bs = ByteBuffer.wrap(bytes, i, 1).slice(); in runTestASCIIBasedConverter()
[all …]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DInternal.java35 import java.nio.ByteBuffer;
127 public static ByteBuffer byteBufferDefaultValue(String bytes) { in byteBufferDefaultValue()
128 return ByteBuffer.wrap(byteArrayDefaultValue(bytes)); in byteBufferDefaultValue()
136 public static ByteBuffer copyByteBuffer(ByteBuffer source) { in copyByteBuffer()
139 ByteBuffer temp = source.duplicate(); in copyByteBuffer()
143 ByteBuffer result = ByteBuffer.allocate(temp.capacity()); in copyByteBuffer()
305 public static boolean equalsByteBuffer(ByteBuffer a, ByteBuffer b) { in equalsByteBuffer()
315 public static boolean equalsByteBuffer(List<ByteBuffer> a, List<ByteBuffer> b) { in equalsByteBuffer()
328 public static int hashCodeByteBuffer(List<ByteBuffer> list) { in hashCodeByteBuffer()
330 for (ByteBuffer bytes : list) { in hashCodeByteBuffer()
[all …]
DNioByteString.java40 import java.nio.ByteBuffer;
49 private final ByteBuffer buffer;
51 NioByteString(ByteBuffer buffer) { in NioByteString()
99 ByteBuffer slice = slice(beginIndex, endIndex); in substring()
111 ByteBuffer slice = buffer.slice(); in copyToInternal()
117 public void copyTo(ByteBuffer target) { in copyTo()
150 public ByteBuffer asReadOnlyByteBuffer() { in asReadOnlyByteBuffer()
155 public List<ByteBuffer> asReadOnlyByteBufferList() { in asReadOnlyByteBufferList()
222 private final ByteBuffer buf = buffer.slice(); in newInput()
281 private ByteBuffer slice(int beginIndex, int endIndex) { in slice()
[all …]
DAllocatedBuffer.java35 import java.nio.ByteBuffer;
64 public abstract ByteBuffer nioBuffer(); in nioBuffer()
153 public static AllocatedBuffer wrap(final ByteBuffer buffer) { in wrap()
164 public ByteBuffer nioBuffer() { in wrap()
218 public ByteBuffer nioBuffer() {
DIterableByteBufferInputStream.java37 import java.nio.ByteBuffer;
42 private Iterator<ByteBuffer> iterator;
44 private ByteBuffer currentByteBuffer;
70 IterableByteBufferInputStream(Iterable<ByteBuffer> data) { in IterableByteBufferInputStream()
73 for (ByteBuffer unused : data) { in IterableByteBufferInputStream()
DCodedOutputStream.java43 import java.nio.ByteBuffer;
130 public static CodedOutputStream newInstance(ByteBuffer buffer) { in newInstance()
143 static CodedOutputStream newUnsafeInstance(ByteBuffer buffer) { in newUnsafeInstance()
148 static CodedOutputStream newSafeInstance(ByteBuffer buffer) { in newSafeInstance()
200 ByteBuffer byteBuffer, @SuppressWarnings("unused") int unused) { in newInstance()
325 public abstract void writeByteBuffer(int fieldNumber, ByteBuffer value) throws IOException; in writeByteBuffer()
360 public abstract void writeRawBytes(final ByteBuffer value) throws IOException; in writeRawBytes()
495 public abstract void write(ByteBuffer value) throws IOException; in write()
499 public abstract void writeLazy(ByteBuffer value) throws IOException; in writeLazy()
644 public static int computeByteBufferSize(final int fieldNumber, final ByteBuffer value) { in computeByteBufferSize()
[all …]
/third_party/skia/third_party/externals/brotli/java/org/brotli/wrapper/common/
DBrotliCommon.java11 import java.nio.ByteBuffer;
65 public static ByteBuffer makeNative(byte[] data) { in makeNative()
66 ByteBuffer result = ByteBuffer.allocateDirect(data.length); in makeNative()
94 ByteBuffer copy = ByteBuffer.allocateDirect(RFC_DICTIONARY_SIZE); in setDictionaryData()
113 public static void setDictionaryData(ByteBuffer data) { in setDictionaryData()
/third_party/skia/third_party/externals/brotli/java/org/brotli/enc/
DPreparedDictionaryGenerator.java10 import java.nio.ByteBuffer;
24 private final ByteBuffer data;
26 private PreparedDictionaryImpl(ByteBuffer data) { in PreparedDictionaryImpl()
31 public ByteBuffer getData() { in getData()
39 public static PreparedDictionary generate(ByteBuffer src) { in generate()
43 public static PreparedDictionary generate(ByteBuffer src, in generate()
130 ByteBuffer flat = ByteBuffer.allocateDirect(allocSize); in generate()
131 ByteBuffer pointer = flat.slice(); in generate()
142 ByteBuffer sourceCopy = pointer.slice(); in generate()
/third_party/libphonenumber/java/internal/prefixmapper/src/com/google/i18n/phonenumbers/prefixmapper/
DFlyweightMapStorage.java22 import java.nio.ByteBuffer;
47 private ByteBuffer phoneNumberPrefixes;
48 private ByteBuffer descriptionIndexes;
74 phoneNumberPrefixes = ByteBuffer.allocate(numOfEntries * prefixSizeInBytes); in readFromSortedMap()
95 descriptionIndexes = ByteBuffer.allocate(numOfEntries * descIndexSizeInBytes); in createDescriptionPool()
143 phoneNumberPrefixes = ByteBuffer.allocate(numOfEntries * prefixSizeInBytes); in readEntries()
146 descriptionIndexes = ByteBuffer.allocate(numOfEntries * descIndexSizeInBytes); in readEntries()
200 ByteBuffer outputBuffer, int index) throws IOException { in readExternalWord()
220 ByteBuffer inputBuffer, int index) throws IOException { in writeExternalWord()
239 private static int readWordFromBuffer(ByteBuffer buffer, int wordSize, int index) { in readWordFromBuffer()
[all …]
/third_party/skia/third_party/externals/brotli/java/org/brotli/wrapper/dec/
DDecoderJNI.java10 import java.nio.ByteBuffer;
16 private static native ByteBuffer nativeCreate(long[] context); in nativeCreate()
18 private static native ByteBuffer nativePull(long[] context); in nativePull()
31 private final ByteBuffer inputBuffer;
80 public ByteBuffer getInputBuffer() { in getInputBuffer()
88 public ByteBuffer pull() { in pull()
96 ByteBuffer result = nativePull(context); in pull()
DDecoder.java11 import java.nio.ByteBuffer;
19 private static final ByteBuffer EMPTY_BUFER = ByteBuffer.allocate(0);
22 ByteBuffer buffer;
86 ByteBuffer inputBuffer = decoder.getInputBuffer(); in decode()
117 int consume(ByteBuffer dst) { in consume()
118 ByteBuffer slice = buffer.slice(); in consume()
152 ByteBuffer buffer = decoder.pull(); in decompress()
/third_party/skia/third_party/externals/brotli/java/org/brotli/wrapper/enc/
DEncoderJNI.java10 import java.nio.ByteBuffer;
16 private static native ByteBuffer nativeCreate(long[] context); in nativeCreate()
18 private static native ByteBuffer nativePull(long[] context); in nativePull()
29 private final ByteBuffer inputBuffer;
83 ByteBuffer getInputBuffer() { in getInputBuffer()
87 ByteBuffer pull() { in pull()
/third_party/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
DConverterPerformanceTest.java16 import java.nio.ByteBuffer;
47 ByteBuffer target = encoder.encode(source); in setup()
210 ByteBuffer srcBuf = ByteBuffer.wrap(encBuffer,0,encBuffer.length);
237 ByteBuffer outBuf = ByteBuffer.allocate(encBuffer.length);
268 ByteBuffer srcBuf = ByteBuffer.wrap(encBuffer,0,encBuffer.length);
295 ByteBuffer outBuf = ByteBuffer.allocate(encBuffer.length);
/third_party/vk-gl-cts/execserver/
DxsTestDriver.hpp46 bool poll (ByteBuffer& messageBuffer);
61 bool pollLogFile (ByteBuffer& messageBuffer);
62 bool pollInfo (ByteBuffer& messageBuffer);
63 bool pollBuffer (ByteBuffer& messageBuffer, MessageType msgType);
65 bool writeMessage (ByteBuffer& messageBuffer, const Message& message);
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetDecoderICU.java14 import java.nio.ByteBuffer;
61 public CoderResult call(CharsetDecoderICU decoder, Object context, ByteBuffer source,
191 private final ByteBuffer EMPTY = ByteBuffer.allocate(0);
242 protected CoderResult decodeLoop(ByteBuffer in,CharBuffer out){ in decodeLoop()
270 … abstract CoderResult decodeLoop(ByteBuffer in, CharBuffer out, IntBuffer offsets, boolean flush); in decodeLoop()
282 … final CoderResult decode(ByteBuffer source, CharBuffer target, IntBuffer offsets, boolean flush) { in decode()
396 …final CoderResult toUnicodeWithCallback(ByteBuffer source, CharBuffer target, IntBuffer offsets, b… in toUnicodeWithCallback()
404 ByteBuffer replayArray = ByteBuffer.allocate(EXT_MAX_BYTES); in toUnicodeWithCallback()
407 ByteBuffer realSource=null; in toUnicodeWithCallback()
DCharsetEncoderICU.java15 import java.nio.ByteBuffer;
75 CharBuffer source, ByteBuffer target, IntBuffer offsets,
228 protected CoderResult implFlush(ByteBuffer out) { in implFlush()
261 protected CoderResult encodeLoop(CharBuffer in, ByteBuffer out) { in encodeLoop()
287 abstract CoderResult encodeLoop(CharBuffer source, ByteBuffer target, in encodeLoop()
299 final CoderResult encode(CharBuffer source, ByteBuffer target, in encode()
391 ByteBuffer target, IntBuffer offsets, boolean flush) { in fromUnicodeWithCallback()
699 byte[] bytesArray, int bytesBegin, int bytesLength, ByteBuffer out, in fromUWriteBytes()
777 ByteBuffer target, IntBuffer offsets) { in cbFromUWriteSub()
798 CharBuffer source, ByteBuffer target, IntBuffer offsets) { in cbFromUWriteUChars()
[all …]

12345678