Home
last modified time | relevance | path

Searched defs:ByteBuffer (Results 1 – 25 of 401) sorted by relevance

12345678910>>...17

/aosp_15_r20/external/pigweed/pw_bytes/
H A Dbyte_builder_test.cc278 TEST(ByteBuffer, Assign) { in TEST() argument
342 TEST(ByteBuffer, Putting8ByteInts_Full) { in TEST() argument
352 TEST(ByteBuffer, Putting8ByteInts_Exhausted) { in TEST() argument
363 TEST(ByteBuffer, Putting16ByteInts_Full_kLittleEndian) { in TEST() argument
376 TEST(ByteBuffer, Putting16ByteInts_Exhausted_kBigEndian) { in TEST() argument
391 TEST(ByteBuffer, Putting32ByteInts_Full_kLittleEndian) { in TEST() argument
408 TEST(ByteBuffer, Putting32ByteInts_Exhausted_kBigEndian) { in TEST() argument
427 TEST(ByteBuffer, Putting64ByteInts_Full_kLittleEndian) { in TEST() argument
452 TEST(ByteBuffer, Putting64ByteInts_Exhausted_kBigEndian) { in TEST() argument
479 TEST(ByteBuffer, PuttingInts_MixedTypes_MixedEndian) { in TEST() argument
[all …]
/aosp_15_r20/external/google-breakpad/src/common/
H A Dbyte_cursor.h52 struct ByteBuffer { struct
53 ByteBuffer() : start(0), end(0) { } in ByteBuffer() argument
54 ByteBuffer(const uint8_t* set_start, size_t set_size) in ByteBuffer() argument
56 ~ByteBuffer() { }; in ~ByteBuffer() argument
77 // A cursor pointing into a ByteBuffer that can parse numbers of various argument
/aosp_15_r20/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DByteBuffer.java24 public class ByteBuffer class
37 public ByteBuffer(int initialCapacity) in ByteBuffer() method in ByteBuffer
47 public ByteBuffer(byte[] buffer) in ByteBuffer() method in ByteBuffer
58 public ByteBuffer(byte[] buffer, int length) in ByteBuffer() method in ByteBuffer
75 public ByteBuffer(InputStream in) throws IOException in ByteBuffer() method in ByteBuffer
103 public ByteBuffer(byte[] buffer, int offset, int length) in ByteBuffer() method in ByteBuffer
/aosp_15_r20/libcore/ojluni/src/test/java/nio/Buffer/
H A DByteBufferViews.java194 public void testShortGet(String desc, IntFunction<ByteBuffer> fbb, in testShortGet()
221 public void testShortPut(String desc, IntFunction<ByteBuffer> fbb, in testShortPut()
298 public void testCharGet(String desc, IntFunction<ByteBuffer> fbb, in testCharGet()
325 public void testCharPut(String desc, IntFunction<ByteBuffer> fbb, in testCharPut()
395 public void testIntGet(String desc, IntFunction<ByteBuffer> fbb, in testIntGet()
422 public void testIntPut(String desc, IntFunction<ByteBuffer> fbb, in testIntPut()
502 public void testLongGet(String desc, IntFunction<ByteBuffer> fbb, in testLongGet()
529 public void testLongPut(String desc, IntFunction<ByteBuffer> fbb, in testLongPut()
615 public void testFloatGet(String desc, IntFunction<ByteBuffer> fbb, in testFloatGet()
642 public void testFloatPut(String desc, IntFunction<ByteBuffer> fbb, in testFloatPut()
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/core/sdk-core/src/test/java/software/amazon/awssdk/core/async/
H A DAsyncRequestBodyTest.java148 …void safeByteBufferBuildersCopyTheProvidedBuffer(Function<ByteBuffer, AsyncRequestBody> bodyBuilde… in safeByteBufferBuildersCopyTheProvidedBuffer()
177 …void unsafeByteBufferBuildersDoNotCopyTheProvidedBuffer(Function<ByteBuffer, AsyncRequestBody> bod… in unsafeByteBufferBuildersDoNotCopyTheProvidedBuffer()
206 Function<ByteBuffer, AsyncRequestBody> bodyBuilder) { in nonRewindingByteBufferBuildersReadFromTheInputBufferPosition()
238 Function<ByteBuffer, AsyncRequestBody> bodyBuilder) { in safeNonRewindingByteBufferBuildersCopyFromTheInputBufferPosition()
266 …void rewindingByteBufferBuildersDoNotRewindTheInputBuffer(Function<ByteBuffer, AsyncRequestBody> b… in rewindingByteBufferBuildersDoNotRewindTheInputBuffer()
285 Function<ByteBuffer, AsyncRequestBody> bodyBuilder) { in rewindingByteBufferBuildersReadTheInputBufferFromTheBeginning()
/aosp_15_r20/prebuilts/go/linux-x86/test/typeparam/issue50561.dir/
Ddiameter.go52 type ByteBuffer struct { struct
53 pos int
54 buf []byte
55 underflow error
/aosp_15_r20/external/grpc-grpc/include/grpcpp/support/
H A Dbyte_buffer.h35 class ByteBuffer; variable
63 ByteBuffer() : buffer_(nullptr) {} in ByteBuffer() function
66 ByteBuffer(const Slice* slices, size_t nslices) { in ByteBuffer() function
95 ByteBuffer(const ByteBuffer& buf) : buffer_(nullptr) { operator=(buf); } in ByteBuffer() function
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/spm-cpp-include/grpcpp/support/
Dbyte_buffer.h35 class ByteBuffer; variable
63 ByteBuffer() : buffer_(nullptr) {} in ByteBuffer() function
66 ByteBuffer(const Slice* slices, size_t nslices) { in ByteBuffer() function
95 ByteBuffer(const ByteBuffer& buf) : buffer_(nullptr) { operator=(buf); } in ByteBuffer() function
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/include/grpcpp/support/
Dbyte_buffer.h35 class ByteBuffer; variable
63 ByteBuffer() : buffer_(nullptr) {} in ByteBuffer() function
66 ByteBuffer(const Slice* slices, size_t nslices) { in ByteBuffer() function
95 ByteBuffer(const ByteBuffer& buf) : buffer_(nullptr) { operator=(buf); } in ByteBuffer() function
/aosp_15_r20/external/rust/beto-rust/nearby/presence/np_ffi_core/src/
Dcommon.rs185 pub struct ByteBuffer<const N: usize> { struct
186 len: u8,
187 bytes: [u8; N],
211 impl<const N: usize> ByteBuffer<N> { implementation
/aosp_15_r20/external/pigweed/pw_bluetooth_sapphire/host/l2cap/
H A Dsignaling_channel_test.cc35 const auto kTestResponseHandler = [](Status, const ByteBuffer&) { in __anonbdce72760202()
496 kEchoRequest, req_data, [this, &rx_success](Status, const ByteBuffer&) { in TEST_F()
571 kEchoRequest, req_data, [&rx_cb_count](Status status, const ByteBuffer&) { in TEST_F()
611 [&rx_cb_called](Status status, const ByteBuffer&) { in TEST_F()
653 kEchoRequest, req_data, [&rx_cb_count](Status status, const ByteBuffer&) { in TEST_F()
690 kEchoRequest, req_data, [&rx_cb_calls](Status status, const ByteBuffer&) { in TEST_F()
/aosp_15_r20/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/signals/updateprocessors/
DAppend.java62 Object updates, Map<ByteBuffer, Set<DBProtectedSignal>> current) throws JSONException { in processUpdates()
79 Map<ByteBuffer, Set<DBProtectedSignal>> current, in processKey()
102 Map<ByteBuffer, Set<DBProtectedSignal>> current, in deleteSignals()
DPut.java46 Object updates, Map<ByteBuffer, Set<DBProtectedSignal>> current) throws JSONException { in processUpdates()
61 Map<ByteBuffer, Set<DBProtectedSignal>> current, in processKey()
DPutIfNotPresent.java46 Object updates, Map<ByteBuffer, Set<DBProtectedSignal>> current) throws JSONException { in processUpdates()
62 Map<ByteBuffer, Set<DBProtectedSignal>> current, in processKey()
/aosp_15_r20/external/noto-fonts/emoji-compat/tests/src/com/android/emojicompat/
H A DFontFileHelper.kt107 val ByteBuffer.uint32: Long get() = int.toLong() and 0x00000000FFFFFFFFL constant
108 val ByteBuffer.uint16: Int get() = short.toInt() and 0x0000FFFF constant
110 val ByteBuffer.fixed: Float get() { constant
/aosp_15_r20/external/flatbuffers/net/FlatBuffers/
H A DByteBuffer.cs125 public class ByteBuffer class
130 public ByteBuffer(ByteBufferAllocator allocator, int position) in ByteBuffer() method in FlatBuffers.ByteBuffer
136 public ByteBuffer(int size) : this(new byte[size]) { } in ByteBuffer() method in FlatBuffers.ByteBuffer
138 public ByteBuffer(byte[] buffer) : this(buffer, 0) { } in ByteBuffer() method in FlatBuffers.ByteBuffer
140 public ByteBuffer(byte[] buffer, int pos) in ByteBuffer() method in FlatBuffers.ByteBuffer
/aosp_15_r20/external/libultrahdr/third_party/image_io/src/base/
H A Dbyte_buffer.cc33 ByteBuffer::ByteBuffer(size_t size, std::unique_ptr<Byte[]> buffer) in ByteBuffer() function in photos_editing_formats::image_io::ByteBuffer
43 ByteBuffer::ByteBuffer(const std::vector<ByteData>& byte_data_vector) { in ByteBuffer() function in photos_editing_formats::image_io::ByteBuffer
/aosp_15_r20/external/image_io/src/base/
H A Dbyte_buffer.cc33 ByteBuffer::ByteBuffer(size_t size, std::unique_ptr<Byte[]> buffer) in ByteBuffer() function in photos_editing_formats::image_io::ByteBuffer
43 ByteBuffer::ByteBuffer(const std::vector<ByteData>& byte_data_vector) { in ByteBuffer() function in photos_editing_formats::image_io::ByteBuffer
/aosp_15_r20/external/flatbuffers/swift/Sources/FlatBuffers/
H A DByteBuffer.swift27 public struct ByteBuffer { struct
454 extension ByteBuffer: CustomDebugStringConvertible { extension
/aosp_15_r20/libcore/ojluni/annotations/hiddenapi/java/nio/
H A DByteBuffer.java34 public abstract class ByteBuffer extends java.nio.Buffer class
37 ByteBuffer(int mark, int pos, int lim, int cap, byte[] hb, int offset) { in ByteBuffer() method in ByteBuffer
42 ByteBuffer(int mark, int pos, int lim, int cap) { in ByteBuffer() method in ByteBuffer
/aosp_15_r20/external/rust/beto-rust/nearby/presence/np_cpp_ffi/include/
Dnearby_protocol.h296 [[nodiscard]] constexpr explicit ByteBuffer(std::array<uint8_t, M> data) { in ByteBuffer() function
359 [[nodiscard]] explicit ByteBuffer(np_ffi::internal::ByteBuffer<N> internal) in ByteBuffer() function
/aosp_15_r20/libcore/ojluni/annotations/mmodule/java/nio/
H A DByteBuffer.annotated.java34 public abstract class ByteBuffer extends java.nio.Buffer implements java.lang.Comparable<java.nio.B… class
36 ByteBuffer(int mark, int pos, int lim, int cap) { super(0, 0, 0, 0, 0); throw new RuntimeException(… in ByteBuffer() method in ByteBuffer
/aosp_15_r20/libcore/ojluni/annotations/flagged_api/java/nio/
H A DByteBuffer.annotated.java34 public abstract class ByteBuffer extends java.nio.Buffer implements java.lang.Comparable<java.nio.B… class
36 ByteBuffer() { throw new RuntimeException("Stub!"); } in ByteBuffer() method in ByteBuffer
/aosp_15_r20/libcore/ojluni/annotations/sdk/nullability/java/nio/
H A DByteBuffer.annotated.java31 public abstract class ByteBuffer extends java.nio.Buffer implements java.lang.Comparable<java.nio.B… class
33 ByteBuffer(int mark, int pos, int lim, int cap) { super(0, 0, 0, 0, 0); throw new RuntimeException(… in ByteBuffer() method in ByteBuffer
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/7/libcore/ojluni/src/main/java/java/nio/
DByteBuffer.java272 public abstract class ByteBuffer class
294 ByteBuffer(int mark, int pos, int lim, int cap, // package-private in ByteBuffer() method in ByteBuffer
305 ByteBuffer(int mark, int pos, int lim, int cap) { // package-private in ByteBuffer() method in ByteBuffer

12345678910>>...17