Home
last modified time | relevance | path

Searched defs:buffer (Results 1 – 25 of 7872) sorted by relevance

12345678910>>...315

/external/ms-tpm-20-ref/TPMCmd/tpm/include/prototypes/
DMarshal_fp.h55 #define BYTE_Unmarshal(target, buffer, size) \ argument
62 #define BYTE_Marshal(source, buffer, size) \ argument
71 #define INT8_Unmarshal(target, buffer, size) \ argument
78 #define INT8_Marshal(source, buffer, size) \ argument
93 #define INT16_Unmarshal(target, buffer, size) \ argument
100 #define INT16_Marshal(source, buffer, size) \ argument
115 #define INT32_Unmarshal(target, buffer, size) \ argument
122 #define INT32_Marshal(source, buffer, size) \ argument
137 #define INT64_Unmarshal(target, buffer, size) \ argument
144 #define INT64_Marshal(source, buffer, size) \ argument
[all …]
/external/trusty/lk/lib/libc/test_common/
Dlibc_printf_tests.cpp35 char buffer[BUFFER_SIZE]; in TEST() local
42 char buffer[BUFFER_SIZE]; in TEST() local
49 char buffer[BUFFER_SIZE]; in TEST() local
56 char buffer[BUFFER_SIZE]; in TEST() local
64 char buffer[BUFFER_SIZE]; in TEST() local
71 char buffer[BUFFER_SIZE]; in TEST() local
78 char buffer[BUFFER_SIZE]; in TEST() local
85 char buffer[BUFFER_SIZE]; in TEST() local
92 char buffer[BUFFER_SIZE]; in TEST() local
99 char buffer[BUFFER_SIZE]; in TEST() local
[all …]
/external/ms-tpm-20-ref/TPMCmd/tpm/include/
DTableMarshalDefines.h612 #define UINT8_Unmarshal(target, buffer, size) \ argument
614 #define UINT8_Marshal(source, buffer, size) \ argument
616 #define BYTE_Unmarshal(target, buffer, size) \ argument
618 #define BYTE_Marshal(source, buffer, size) \ argument
620 #define INT8_Unmarshal(target, buffer, size) \ argument
622 #define INT8_Marshal(source, buffer, size) \ argument
624 #define UINT16_Unmarshal(target, buffer, size) \ argument
626 #define UINT16_Marshal(source, buffer, size) \ argument
628 #define INT16_Unmarshal(target, buffer, size) \ argument
630 #define INT16_Marshal(source, buffer, size) \ argument
[all …]
/external/ms-tpm-20-ref/TPMCmd/tpm/src/support/
DMarshal.c47 UINT8_Unmarshal(UINT8 *target, BYTE **buffer, INT32 *size) in UINT8_Unmarshal()
56 UINT8_Marshal(UINT8 *source, BYTE **buffer, INT32 *size) in UINT8_Marshal()
73 BYTE_Unmarshal(BYTE *target, BYTE **buffer, INT32 *size) in BYTE_Unmarshal()
78 BYTE_Marshal(BYTE *source, BYTE **buffer, INT32 *size) in BYTE_Marshal()
87 INT8_Unmarshal(INT8 *target, BYTE **buffer, INT32 *size) in INT8_Unmarshal()
92 INT8_Marshal(INT8 *source, BYTE **buffer, INT32 *size) in INT8_Marshal()
100 UINT16_Unmarshal(UINT16 *target, BYTE **buffer, INT32 *size) in UINT16_Unmarshal()
109 UINT16_Marshal(UINT16 *source, BYTE **buffer, INT32 *size) in UINT16_Marshal()
126 INT16_Unmarshal(INT16 *target, BYTE **buffer, INT32 *size) in INT16_Unmarshal()
131 INT16_Marshal(INT16 *source, BYTE **buffer, INT32 *size) in INT16_Marshal()
[all …]
/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/
DReadableBuffersTest.java50 ReadableBuffer buffer = ReadableBuffers.empty(); in empty_returnsEmptyBuffer() local
61 ReadableBuffer buffer = ReadableBuffers.wrap(MSG_BYTES); in readArray_returnsBufferArray() local
67 ReadableBuffer buffer = ReadableBuffers.wrap(MSG_BYTES); in readAsString_returnsString() local
78 ReadableBuffer buffer = ReadableBuffers.wrap(MSG_BYTES); in readAsStringUtf8_returnsString() local
89 ReadableBuffer buffer = mock(ReadableBuffer.class); in openStream_ignoresClose() local
97 ReadableBuffer buffer = ReadableBuffers.wrap(MSG_BYTES); in bufferInputStream_available_returnsReadableBytes() local
108 ReadableBuffer buffer = ReadableBuffers.wrap(MSG_BYTES); in bufferInputStream_read_returnsUnsignedByte() local
115 ReadableBuffer buffer = ReadableBuffers.wrap(MSG_BYTES); in bufferInputStream_read_writes() local
125 ReadableBuffer buffer = ReadableBuffers.wrap(MSG_BYTES); in bufferInputStream_read_writesPartially() local
134 ReadableBuffer buffer = mock(ReadableBuffer.class); in bufferInputStream_close_closesBuffer() local
[all …]
/external/protobuf/csharp/src/Google.Protobuf/
DParsingPrimitives.cs63 public static int ParseLength(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) in ParseLength()
72 public static uint ParseTag(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) in ParseTag()
132 …public static bool MaybeConsumeTag(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state, u… in MaybeConsumeTag()
147 public static uint PeekTag(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) in PeekTag()
164 … public static ulong ParseRawVarint64(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) in ParseRawVarint64()
193 …private static ulong ParseRawVarint64SlowPath(ref ReadOnlySpan<byte> buffer, ref ParserInternalSta… in ParseRawVarint64SlowPath()
218 … public static uint ParseRawVarint32(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) in ParseRawVarint32()
274 …private static uint ParseRawVarint32SlowPath(ref ReadOnlySpan<byte> buffer, ref ParserInternalStat… in ParseRawVarint32SlowPath()
325 …public static uint ParseRawLittleEndian32(ref ReadOnlySpan<byte> buffer, ref ParserInternalState s… in ParseRawLittleEndian32()
340 …private static uint ParseRawLittleEndian32SlowPath(ref ReadOnlySpan<byte> buffer, ref ParserIntern… in ParseRawLittleEndian32SlowPath()
[all …]
DWritingPrimitives.cs65 … public static void WriteDouble(ref Span<byte> buffer, ref WriterInternalState state, double value) in WriteDouble()
73 …public static unsafe void WriteFloat(ref Span<byte> buffer, ref WriterInternalState state, float v… in WriteFloat()
95 …private static unsafe void WriteFloatSlowPath(ref Span<byte> buffer, ref WriterInternalState state… in WriteFloatSlowPath()
116 … public static void WriteUInt64(ref Span<byte> buffer, ref WriterInternalState state, ulong value) in WriteUInt64()
124 … public static void WriteInt64(ref Span<byte> buffer, ref WriterInternalState state, long value) in WriteInt64()
132 … public static void WriteInt32(ref Span<byte> buffer, ref WriterInternalState state, int value) in WriteInt32()
148 … public static void WriteFixed64(ref Span<byte> buffer, ref WriterInternalState state, ulong value) in WriteFixed64()
156 … public static void WriteFixed32(ref Span<byte> buffer, ref WriterInternalState state, uint value) in WriteFixed32()
164 … public static void WriteBool(ref Span<byte> buffer, ref WriterInternalState state, bool value) in WriteBool()
173 … public static void WriteString(ref Span<byte> buffer, ref WriterInternalState state, string value) in WriteString()
[all …]
/external/cronet/third_party/protobuf/csharp/src/Google.Protobuf/
DParsingPrimitives.cs63 public static int ParseLength(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) in ParseLength()
72 public static uint ParseTag(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) in ParseTag()
132 …public static bool MaybeConsumeTag(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state, u… in MaybeConsumeTag()
147 public static uint PeekTag(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) in PeekTag()
164 … public static ulong ParseRawVarint64(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) in ParseRawVarint64()
193 …private static ulong ParseRawVarint64SlowPath(ref ReadOnlySpan<byte> buffer, ref ParserInternalSta… in ParseRawVarint64SlowPath()
218 … public static uint ParseRawVarint32(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) in ParseRawVarint32()
274 …private static uint ParseRawVarint32SlowPath(ref ReadOnlySpan<byte> buffer, ref ParserInternalStat… in ParseRawVarint32SlowPath()
325 …public static uint ParseRawLittleEndian32(ref ReadOnlySpan<byte> buffer, ref ParserInternalState s… in ParseRawLittleEndian32()
340 …private static uint ParseRawLittleEndian32SlowPath(ref ReadOnlySpan<byte> buffer, ref ParserIntern… in ParseRawLittleEndian32SlowPath()
[all …]
DWritingPrimitives.cs65 … public static void WriteDouble(ref Span<byte> buffer, ref WriterInternalState state, double value) in WriteDouble()
73 …public static unsafe void WriteFloat(ref Span<byte> buffer, ref WriterInternalState state, float v… in WriteFloat()
95 …private static unsafe void WriteFloatSlowPath(ref Span<byte> buffer, ref WriterInternalState state… in WriteFloatSlowPath()
116 … public static void WriteUInt64(ref Span<byte> buffer, ref WriterInternalState state, ulong value) in WriteUInt64()
124 … public static void WriteInt64(ref Span<byte> buffer, ref WriterInternalState state, long value) in WriteInt64()
132 … public static void WriteInt32(ref Span<byte> buffer, ref WriterInternalState state, int value) in WriteInt32()
148 … public static void WriteFixed64(ref Span<byte> buffer, ref WriterInternalState state, ulong value) in WriteFixed64()
156 … public static void WriteFixed32(ref Span<byte> buffer, ref WriterInternalState state, uint value) in WriteFixed32()
164 … public static void WriteBool(ref Span<byte> buffer, ref WriterInternalState state, bool value) in WriteBool()
173 … public static void WriteString(ref Span<byte> buffer, ref WriterInternalState state, string value) in WriteString()
[all …]
/external/pigweed/pw_varint/
Dstream_test.cc44 const auto buffer = MakeBuffer("\x00"); in TEST() local
53 const auto buffer = MakeBuffer("\x01"); in TEST() local
62 const auto buffer = MakeBuffer("\x02"); in TEST() local
71 const auto buffer = MakeBuffer("\x03"); in TEST() local
80 const auto buffer = MakeBuffer("\x04"); in TEST() local
93 const auto buffer = MakeBuffer("\x80\x01"); in TEST() local
102 const auto buffer = MakeBuffer("\x81\x01"); in TEST() local
111 const auto buffer = MakeBuffer("\x82\x01"); in TEST() local
120 const auto buffer = MakeBuffer("\xff\xff\xff\xff\x0f"); in TEST() local
129 const auto buffer = MakeBuffer("\xfe\xff\xff\xff\x0f"); in TEST() local
[all …]
/external/okio/okio/src/jvmTest/kotlin/okio/
DBufferCursorTest.kt41 val buffer = Buffer() in <lambda>() constant
58 val buffer = bufferFactory.newBuffer() in <lambda>() constant
70 val buffer = bufferFactory.newBuffer() in <lambda>() constant
84 val buffer = bufferFactory.newBuffer() in <lambda>() constant
97 val buffer = bufferFactory.newBuffer() in <lambda>() constant
110 val buffer = bufferFactory.newBuffer() in <lambda>() constant
124 val buffer = bufferFactory.newBuffer() in <lambda>() constant
145 val buffer = bufferFactory.newBuffer() in <lambda>() constant
160 val buffer = bufferFactory.newBuffer() in <lambda>() constant
180 val buffer = bufferFactory.newBuffer() in <lambda>() constant
[all …]
DFixedLengthSourceTest.kt28 val buffer = Buffer() in happyPathWithTruncate() constant
41 val buffer = Buffer() in happyPathNoTruncate() constant
54 val buffer = Buffer() in delegateTooLongWithTruncate() constant
67 val buffer = Buffer() in delegateTooLongWithTruncateFencepost() constant
78 val buffer = Buffer() in delegateTooLongNoTruncate() constant
101 val buffer = Buffer() in delegateTooLongNoTruncateFencepost() constant
124 val buffer = Buffer() in delegateTooShortWithTruncate() constant
147 val buffer = Buffer() in delegateTooShortNoTruncate() constant
DUtf8Test.kt107 val buffer = Buffer() in stringSpansSegments() constant
119 val buffer = Buffer() in readEmptyBufferThrowsEofException() constant
129 val buffer = Buffer() in readLeadingContinuationByteReturnsReplacementCharacter() constant
137 val buffer = Buffer() in readMissingContinuationBytesThrowsEofException() constant
150 val buffer = Buffer() in readTooLargeCodepointReturnsReplacementCharacter() constant
163 val buffer = Buffer() in readNonContinuationBytesReturnsReplacementCharacter() constant
173 val buffer = Buffer() in readCodePointBeyondUnicodeMaximum() constant
181 val buffer = Buffer() in readSurrogateCodePoint() constant
193 val buffer = Buffer() in readOverlongCodePoint() constant
209 val buffer = Buffer() in writeCodePointBeyondUnicodeMaximum() constant
[all …]
/external/llvm-libc/test/integration/startup/gpu/
Drpc_interface_test.cpp21 port.send([&](rpc::Buffer *buffer) { buffer->data[0] = end_with_send; }); in test_interface()
22 port.send([&](rpc::Buffer *buffer) { buffer->data[0] = cnt = cnt + 1; }); in test_interface()
23 port.recv([&](rpc::Buffer *buffer) { cnt = buffer->data[0]; }); in test_interface()
24 port.send([&](rpc::Buffer *buffer) { buffer->data[0] = cnt = cnt + 1; }); in test_interface()
25 port.recv([&](rpc::Buffer *buffer) { cnt = buffer->data[0]; }); in test_interface()
26 port.send([&](rpc::Buffer *buffer) { buffer->data[0] = cnt = cnt + 1; }); in test_interface()
27 port.send([&](rpc::Buffer *buffer) { buffer->data[0] = cnt = cnt + 1; }); in test_interface()
28 port.recv([&](rpc::Buffer *buffer) { cnt = buffer->data[0]; }); in test_interface()
29 port.recv([&](rpc::Buffer *buffer) { cnt = buffer->data[0]; }); in test_interface()
31 port.send([&](rpc::Buffer *buffer) { buffer->data[0] = cnt = cnt + 1; }); in test_interface()
[all …]
/external/cronet/third_party/protobuf/js/experimental/runtime/kernel/
Dwriter_test.js202 const buffer = createArrayBuffer(0x4, 0x0, 0x1, 0x2, 0x3); constant
219 const buffer = writer.getAndResetResultBuffer(); constant
255 const buffer = new Uint8Array(writer.getAndResetResultBuffer()); constant
271 const buffer = new Uint8Array(writer.getAndResetResultBuffer()); constant
290 const buffer = new Uint8Array(writer.getAndResetResultBuffer()); constant
309 const buffer = new Uint8Array(writer.getAndResetResultBuffer()); constant
324 const buffer = new Uint8Array(writer.getAndResetResultBuffer()); constant
344 const buffer = new Uint8Array(writer.getAndResetResultBuffer()); constant
369 const buffer = new Uint8Array(writer.getAndResetResultBuffer()); constant
388 const buffer = new Uint8Array(writer.getAndResetResultBuffer()); constant
[all …]
/external/harfbuzz_ng/src/
Dhb-buffer.cc738 hb_buffer_t *buffer; in hb_buffer_create() local
766 hb_buffer_t *buffer = hb_buffer_create (); in hb_buffer_create_similar() local
783 hb_buffer_reset (hb_buffer_t *buffer) in hb_buffer_reset()
819 hb_buffer_reference (hb_buffer_t *buffer) in hb_buffer_reference()
835 hb_buffer_destroy (hb_buffer_t *buffer) in hb_buffer_destroy()
866 hb_buffer_set_user_data (hb_buffer_t *buffer, in hb_buffer_set_user_data()
888 hb_buffer_get_user_data (const hb_buffer_t *buffer, in hb_buffer_get_user_data()
932 hb_buffer_set_content_type (hb_buffer_t *buffer, in hb_buffer_set_content_type()
951 hb_buffer_get_content_type (const hb_buffer_t *buffer) in hb_buffer_get_content_type()
968 hb_buffer_set_unicode_funcs (hb_buffer_t *buffer, in hb_buffer_set_unicode_funcs()
[all …]
/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/builder/
DToStringStyle.java360 public void appendSuper(final StringBuffer buffer, final String superToString) { in appendSuper()
374 public void appendToString(final StringBuffer buffer, final String toString) { in appendToString()
394 public void appendStart(final StringBuffer buffer, final Object object) { in appendStart()
412 public void appendEnd(final StringBuffer buffer, final Object object) { in appendEnd()
426 protected void removeLastFieldSeparator(final StringBuffer buffer) { in removeLastFieldSeparator()
443 …public void append(final StringBuffer buffer, final String fieldName, final Object value, final Bo… in append()
475 …protected void appendInternal(final StringBuffer buffer, final String fieldName, final Object valu… in appendInternal()
584 …protected void appendCyclicObject(final StringBuffer buffer, final String fieldName, final Object … in appendCyclicObject()
597 …protected void appendDetail(final StringBuffer buffer, final String fieldName, final Object value)… in appendDetail()
609 …protected void appendDetail(final StringBuffer buffer, final String fieldName, final Collection<?>… in appendDetail()
[all …]
/external/grpc-grpc-java/core/src/testFixtures/java/io/grpc/internal/
DReadableBufferTestBase.java42 ReadableBuffer buffer = buffer(); in bufferShouldReadAllBytes() local
52 ReadableBuffer buffer = buffer(); in readToArrayShouldSucceed() local
61 ReadableBuffer buffer = buffer(); in partialReadToArrayShouldSucceed() local
70 ReadableBuffer buffer = buffer(); in readToStreamShouldSucceed() local
79 ReadableBuffer buffer = buffer(); in partialReadToStreamShouldSucceed() local
88 ReadableBuffer buffer = buffer(); in readToByteBufferShouldSucceed() local
100 ReadableBuffer buffer = buffer(); in partialReadToByteBufferShouldSucceed() local
112 ReadableBuffer buffer = buffer(); in partialReadToReadableBufferShouldSucceed() local
123 ReadableBuffer buffer = buffer(); in markAndResetWithReadShouldSucceed() local
136 ReadableBuffer buffer = buffer(); in markAndResetWithReadToReadableBufferShouldSucceed() local
[all …]
/external/vboot_reference/firmware/lib/tpm_lite/include/
Dtlcl_structures.h4 uint8_t buffer[34]; member
11 uint8_t buffer[14]; member
17 uint8_t buffer[22]; member
22 uint8_t buffer[22]; member
28 uint8_t buffer[22]; member
33 uint8_t buffer[22]; member
38 uint8_t buffer[11]; member
44 uint8_t buffer[10]; member
49 uint8_t buffer[10]; member
54 uint8_t buffer[10]; member
[all …]
/external/okhttp/okio/okio/src/test/java/okio/
DUtf8Test.java80 Buffer buffer = new Buffer(); in stringSpansSegments() local
91 Buffer buffer = new Buffer(); in readEmptyBufferThrowsEofException() local
100 Buffer buffer = new Buffer(); in readLeadingContinuationByteReturnsReplacementCharacter() local
107 Buffer buffer = new Buffer(); in readMissingContinuationBytesThrowsEofException() local
119 Buffer buffer = new Buffer(); in readTooLargeCodepointReturnsReplacementCharacter() local
131 Buffer buffer = new Buffer(); in readNonContinuationBytesReturnsReplacementCharacter() local
140 Buffer buffer = new Buffer(); in readCodePointBeyondUnicodeMaximum() local
147 Buffer buffer = new Buffer(); in readSurrogateCodePoint() local
158 Buffer buffer = new Buffer(); in readOverlongCodePoint() local
165 Buffer buffer = new Buffer(); in writeSurrogateCodePoint() local
[all …]
/external/webrtc/api/video/
Dframe_buffer_unittest.cc34 FrameBuffer buffer(/*max_frame_slots=*/10, /*max_decode_history=*/100, in TEST() local
51 FrameBuffer buffer(/*max_frame_slots=*/10, /*max_decode_history=*/100, in TEST() local
69 FrameBuffer buffer(/*max_frame_slots=*/10, /*max_decode_history=*/100, in TEST() local
85 FrameBuffer buffer(/*max_frame_slots=*/10, /*max_decode_history=*/100, in TEST() local
98 FrameBuffer buffer(/*max_frame_slots=*/10, /*max_decode_history=*/100, in TEST() local
116 FrameBuffer buffer(/*max_frame_slots=*/10, /*max_decode_history=*/100, in TEST() local
127 FrameBuffer buffer(/*max_frame_slots=*/10, /*max_decode_history=*/100, in TEST() local
150 FrameBuffer buffer(/*max_frame_slots=*/10, /*max_decode_history=*/100, in TEST() local
168 FrameBuffer buffer(/*max_frame_slots=*/10, /*max_decode_history=*/100, in TEST() local
182 FrameBuffer buffer(/*max_frame_slots=*/5, /*max_decode_history=*/10, in TEST() local
[all …]
/external/nanopb-c/tests/encode_unittests/
Dencode_unittests.c76 uint8_t buffer[30]; in main() local
89 uint8_t buffer[30]; in main() local
98 uint8_t buffer[30]; in main() local
116 uint8_t buffer[30]; in main() local
126 uint8_t buffer[30]; in main() local
148 uint8_t buffer[30]; in main() local
171 uint8_t buffer[30]; in main() local
182 uint8_t buffer[30]; in main() local
195 uint8_t buffer[10]; in main() local
211 uint8_t buffer[10]; in main() local
[all …]
/external/webrtc/modules/audio_processing/agc2/
Dspeech_probability_buffer_unittest.cc28 SpeechProbabilityBuffer buffer(kLowProbabilityThreshold); in TEST() local
34 SpeechProbabilityBuffer buffer(kLowProbabilityThreshold); in TEST() local
52 SpeechProbabilityBuffer buffer(kLowProbabilityThreshold); in TEST() local
66 SpeechProbabilityBuffer buffer(kLowProbabilityThreshold); in TEST() local
88 SpeechProbabilityBuffer buffer(kLowProbabilityThreshold); in TEST() local
108 SpeechProbabilityBuffer buffer(kLowProbabilityThreshold); in TEST() local
114 SpeechProbabilityBuffer buffer(kLowProbabilityThreshold); in TEST() local
137 SpeechProbabilityBuffer buffer(kLowProbabilityThreshold); in TEST() local
162 SpeechProbabilityBuffer buffer(kLowProbabilityThreshold); in TEST() local
177 SpeechProbabilityBuffer buffer(kLowProbabilityThreshold); in TEST() local
[all …]
/external/tflite-support/tensorflow_lite_support/cc/task/vision/utils/
Dlibyuv_frame_buffer_utils.cc45 absl::Status ConvertFromNv12(const FrameBuffer& buffer, in ConvertFromNv12()
132 absl::Status ConvertFromNv21(const FrameBuffer& buffer, in ConvertFromNv21()
222 absl::Status ConvertFromYv(const FrameBuffer& buffer, in ConvertFromYv()
330 absl::Status ResizeYv(const FrameBuffer& buffer, FrameBuffer* output_buffer) { in ResizeYv()
355 absl::Status ResizeNv(const FrameBuffer& buffer, FrameBuffer* output_buffer) { in ResizeNv()
394 absl::Status ConvertRgbToArgb(const FrameBuffer& buffer, uint8* dest_argb, in ConvertRgbToArgb()
467 absl::Status ConvertRgbaToArgb(const FrameBuffer& buffer, uint8* dest_argb, in ConvertRgbaToArgb()
504 absl::Status ConvertFromRgb(const FrameBuffer& buffer, in ConvertFromRgb()
569 absl::Status ConvertFromRgba(const FrameBuffer& buffer, in ConvertFromRgba()
685 absl::Status RotateRgba(const FrameBuffer& buffer, int angle_deg, in RotateRgba()
[all …]
/external/libcxx/test/std/experimental/simd/simd.mem/
Dstore.pass.cpp28 alignas(32) int32_t buffer[4] = {0}; in test_store() local
36 alignas(32) int32_t buffer[4] = {0}; in test_store() local
44 alignas(32) int32_t buffer[4] = {0}; in test_store() local
53 alignas(32) int32_t buffer[4] = {0}; in test_store() local
61 alignas(32) int32_t buffer[4] = {0}; in test_store() local
69 alignas(32) int32_t buffer[4] = {0}; in test_store() local
80 float buffer[4] = {0.}; in test_converting_store() local

12345678910>>...315