/aosp_15_r20/external/python/cpython3/Modules/_blake2/impl/ |
D | blake2s-load-sse41.h | 17 #define LOAD_MSG_0_1(buf) \ argument 20 #define LOAD_MSG_0_2(buf) \ argument 23 #define LOAD_MSG_0_3(buf) \ argument 26 #define LOAD_MSG_0_4(buf) \ argument 29 #define LOAD_MSG_1_1(buf) \ argument 35 #define LOAD_MSG_1_2(buf) \ argument 41 #define LOAD_MSG_1_3(buf) \ argument 47 #define LOAD_MSG_1_4(buf) \ argument 53 #define LOAD_MSG_2_1(buf) \ argument 59 #define LOAD_MSG_2_2(buf) \ argument [all …]
|
D | blake2s-load-sse2.h | 17 #define LOAD_MSG_0_1(buf) buf = _mm_set_epi32(m6,m4,m2,m0) argument 18 #define LOAD_MSG_0_2(buf) buf = _mm_set_epi32(m7,m5,m3,m1) argument 19 #define LOAD_MSG_0_3(buf) buf = _mm_set_epi32(m14,m12,m10,m8) argument 20 #define LOAD_MSG_0_4(buf) buf = _mm_set_epi32(m15,m13,m11,m9) argument 21 #define LOAD_MSG_1_1(buf) buf = _mm_set_epi32(m13,m9,m4,m14) argument 22 #define LOAD_MSG_1_2(buf) buf = _mm_set_epi32(m6,m15,m8,m10) argument 23 #define LOAD_MSG_1_3(buf) buf = _mm_set_epi32(m5,m11,m0,m1) argument 24 #define LOAD_MSG_1_4(buf) buf = _mm_set_epi32(m3,m7,m2,m12) argument 25 #define LOAD_MSG_2_1(buf) buf = _mm_set_epi32(m15,m5,m12,m11) argument 26 #define LOAD_MSG_2_2(buf) buf = _mm_set_epi32(m13,m2,m0,m8) argument [all …]
|
D | blake2s-load-xop.h | 30 #define LOAD_MSG_0_1(buf) \ argument 33 #define LOAD_MSG_0_2(buf) \ argument 36 #define LOAD_MSG_0_3(buf) \ argument 39 #define LOAD_MSG_0_4(buf) \ argument 42 #define LOAD_MSG_1_1(buf) \ argument 46 #define LOAD_MSG_1_2(buf) \ argument 50 #define LOAD_MSG_1_3(buf) \ argument 54 #define LOAD_MSG_1_4(buf) \ argument 58 #define LOAD_MSG_2_1(buf) \ argument 62 #define LOAD_MSG_2_2(buf) \ argument [all …]
|
/aosp_15_r20/external/executorch/extension/llm/custom_ops/spinquant/third-party/FFHT/ |
H A D | fht_neon.c | 4 static inline void helper_float_1(float* buf) { in helper_float_1() 15 static inline void helper_float_2(float* buf) { in helper_float_2() 64 void helper_float_3_recursive(float* buf, int depth) { in helper_float_3_recursive() 121 void helper_float_3(float* buf) { in helper_float_3() 125 void helper_float_4_recursive(float* buf, int depth) { in helper_float_4_recursive() 182 void helper_float_4(float* buf) { in helper_float_4() 186 void helper_float_5_recursive(float* buf, int depth) { in helper_float_5_recursive() 243 void helper_float_5(float* buf) { in helper_float_5() 247 void helper_float_6_recursive(float* buf, int depth) { in helper_float_6_recursive() 350 void helper_float_6(float* buf) { in helper_float_6() [all …]
|
H A D | fht_avx.c | 3 static inline void helper_float_1(float *buf) { in helper_float_1() 14 static inline void helper_float_2(float *buf) { in helper_float_2() 33 static inline void helper_float_3(float *buf) { in helper_float_3() 59 static inline void helper_float_4(float *buf) { in helper_float_4() 107 static inline void helper_float_5(float *buf) { in helper_float_5() 197 static inline void helper_float_6(float *buf) { in helper_float_6() 375 void helper_float_7_recursive(float *buf, int depth) { in helper_float_7_recursive() 569 void helper_float_7(float *buf) { in helper_float_7() 573 void helper_float_8_recursive(float *buf, int depth) { in helper_float_8_recursive() 784 void helper_float_8(float *buf) { in helper_float_8() [all …]
|
H A D | fht_sse.c | 3 static inline void helper_float_1(float *buf) { in helper_float_1() 14 static inline void helper_float_2(float *buf) { in helper_float_2() 41 static inline void helper_float_3(float *buf) { in helper_float_3() 93 static inline void helper_float_4(float *buf) { in helper_float_4() 195 static inline void helper_float_5(float *buf) { in helper_float_5() 405 static inline void helper_float_6(float *buf) { in helper_float_6() 630 void helper_float_7_recursive(float *buf, int depth) { in helper_float_7_recursive() 874 void helper_float_7(float *buf) { in helper_float_7() 878 static inline void helper_float_8(float *buf) { in helper_float_8() 1159 static inline void helper_float_9(float *buf) { in helper_float_9() [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/byteorder/src/ |
D | io.rs | 56 let mut buf = [0; 1]; in read_u8() localVariable 86 let mut buf = [0; 1]; in read_i8() localVariable 113 let mut buf = [0; 2]; in read_u16() localVariable 140 let mut buf = [0; 2]; in read_i16() localVariable 166 let mut buf = [0; 3]; in read_u24() localVariable 192 let mut buf = [0; 3]; in read_i24() localVariable 218 let mut buf = [0; 4]; in read_u32() localVariable 244 let mut buf = [0; 4]; in read_i32() localVariable 270 let mut buf = [0; 6]; in read_u48() localVariable 296 let mut buf = [0; 6]; in read_i48() localVariable [all …]
|
/aosp_15_r20/external/libxml2/ |
H A D | buf.c | 36 #define BUF_ERROR(buf) ((buf)->flags & (BUF_FLAG_OOM | BUF_FLAG_OVERFLOW)) argument 37 #define BUF_STATIC(buf) ((buf)->flags & BUF_FLAG_STATIC) argument 65 #define UPDATE_COMPAT(buf) \ argument 76 #define CHECK_COMPAT(buf) \ argument 85 #define UPDATE_COMPAT(buf) argument 86 #define CHECK_COMPAT(buf) argument 97 xmlBufMemoryError(xmlBufPtr buf) in xmlBufMemoryError() 111 xmlBufOverflowError(xmlBufPtr buf) in xmlBufOverflowError() 217 xmlBufDetach(xmlBufPtr buf) { in xmlBufDetach() 247 xmlBufFree(xmlBufPtr buf) { in xmlBufFree() [all …]
|
/aosp_15_r20/external/cronet/net/ntlm/ |
H A D | ntlm_buffer_reader_unittest.cc | 13 const uint8_t buf[1] = {0}; in TEST() local 78 const uint8_t buf[2] = {0x22, 0x11}; in TEST() local 91 const uint8_t buf[4] = {0x44, 0x33, 0x22, 0x11}; in TEST() local 104 const uint8_t buf[8] = {0x88, 0x77, 0x66, 0x55, 0x44, 0x33, 0x22, 0x11}; in TEST() local 129 const uint8_t buf[8] = {0x22, 0x11, 0xFF, 0xEE, 0x88, 0x77, 0x66, 0x55}; in TEST() local 144 const uint8_t buf[7] = {0}; in TEST() local 152 const uint8_t buf[8] = {0xff, 0xff, 0x11, 0x22, 0x33, 0x44, 0xff, 0xff}; in TEST() local 179 const uint8_t buf[4] = {0}; in TEST() local 188 const uint8_t buf[4] = {0}; in TEST() local 197 const uint8_t buf[kSecurityBufferLen] = {0}; in TEST() local [all …]
|
/aosp_15_r20/external/cronet/third_party/libxml/src/ |
H A D | buf.c | 60 #define UPDATE_COMPAT(buf) \ argument 71 #define CHECK_COMPAT(buf) \ argument 80 #define UPDATE_COMPAT(buf) argument 81 #define CHECK_COMPAT(buf) argument 92 xmlBufMemoryError(xmlBufPtr buf) in xmlBufMemoryError() 106 xmlBufOverflowError(xmlBufPtr buf) in xmlBufOverflowError() 188 xmlBufDetach(xmlBufPtr buf) { in xmlBufDetach() 216 xmlBufGetAllocationScheme(xmlBufPtr buf) { in xmlBufGetAllocationScheme() 233 xmlBufSetAllocationScheme(xmlBufPtr buf, in xmlBufSetAllocationScheme() 268 xmlBufFree(xmlBufPtr buf) { in xmlBufFree() [all …]
|
/aosp_15_r20/external/wpa_supplicant_8/src/p2p/ |
H A D | p2p_build.c | 19 void p2p_buf_add_action_hdr(struct wpabuf *buf, u8 subtype, u8 dialog_token) in p2p_buf_add_action_hdr() 30 void p2p_buf_add_public_action_hdr(struct wpabuf *buf, u8 subtype, in p2p_buf_add_public_action_hdr() 43 u8 * p2p_buf_add_ie_hdr(struct wpabuf *buf) in p2p_buf_add_ie_hdr() 56 void p2p_buf_update_ie_hdr(struct wpabuf *buf, u8 *len) in p2p_buf_update_ie_hdr() 63 u8 * p2p_buf_add_p2p2_ie_hdr(struct wpabuf *buf) in p2p_buf_add_p2p2_ie_hdr() 76 void p2p_buf_add_capability(struct wpabuf *buf, u8 dev_capab, u8 group_capab) in p2p_buf_add_capability() 88 void p2p_buf_add_go_intent(struct wpabuf *buf, u8 go_intent) in p2p_buf_add_go_intent() 99 void p2p_buf_add_listen_channel(struct wpabuf *buf, const char *country, in p2p_buf_add_listen_channel() 113 void p2p_buf_add_operating_channel(struct wpabuf *buf, const char *country, in p2p_buf_add_operating_channel() 127 void p2p_buf_add_pref_channel_list(struct wpabuf *buf, in p2p_buf_add_pref_channel_list() [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/std/src/io/cursor/ |
H A D | tests.rs | 133 let mut buf = [0 as u8; 9]; in test_buf_writer() localVariable 140 let mut buf = [0 as u8; 9]; in test_buf_writer_vectored() localVariable 147 let mut buf = [0 as u8; 8]; in test_buf_writer_seek() localVariable 175 let mut buf = [0 as u8; 2]; in test_buf_writer_error() localVariable 185 let mut buf = []; in test_mem_reader() localVariable 188 let mut buf = [0]; in test_mem_reader() localVariable 193 let mut buf = [0; 4]; in test_mem_reader() localVariable 207 let mut buf = []; in test_mem_reader_vectored() localVariable 210 let mut buf = [0]; in test_mem_reader_vectored() localVariable 236 let mut buf = []; in test_boxed_slice_reader() localVariable [all …]
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/std/src/io/cursor/ |
H A D | tests.rs | 133 let mut buf = [0 as u8; 9]; in test_buf_writer() localVariable 140 let mut buf = [0 as u8; 9]; in test_buf_writer_vectored() localVariable 147 let mut buf = [0 as u8; 8]; in test_buf_writer_seek() localVariable 175 let mut buf = [0 as u8; 2]; in test_buf_writer_error() localVariable 185 let mut buf = []; in test_mem_reader() localVariable 188 let mut buf = [0]; in test_mem_reader() localVariable 193 let mut buf = [0; 4]; in test_mem_reader() localVariable 207 let mut buf = []; in test_mem_reader_vectored() localVariable 210 let mut buf = [0]; in test_mem_reader_vectored() localVariable 236 let mut buf = []; in test_boxed_slice_reader() localVariable [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/std/src/io/cursor/ |
H A D | tests.rs | 133 let mut buf = [0 as u8; 9]; in test_buf_writer() localVariable 140 let mut buf = [0 as u8; 9]; in test_buf_writer_vectored() localVariable 147 let mut buf = [0 as u8; 8]; in test_buf_writer_seek() localVariable 175 let mut buf = [0 as u8; 2]; in test_buf_writer_error() localVariable 185 let mut buf = []; in test_mem_reader() localVariable 188 let mut buf = [0]; in test_mem_reader() localVariable 193 let mut buf = [0; 4]; in test_mem_reader() localVariable 207 let mut buf = []; in test_mem_reader_vectored() localVariable 210 let mut buf = [0]; in test_mem_reader_vectored() localVariable 236 let mut buf = []; in test_boxed_slice_reader() localVariable [all …]
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/std/src/io/cursor/ |
H A D | tests.rs | 133 let mut buf = [0 as u8; 9]; in test_buf_writer() localVariable 140 let mut buf = [0 as u8; 9]; in test_buf_writer_vectored() localVariable 147 let mut buf = [0 as u8; 8]; in test_buf_writer_seek() localVariable 175 let mut buf = [0 as u8; 2]; in test_buf_writer_error() localVariable 185 let mut buf = []; in test_mem_reader() localVariable 188 let mut buf = [0]; in test_mem_reader() localVariable 193 let mut buf = [0; 4]; in test_mem_reader() localVariable 207 let mut buf = []; in test_mem_reader_vectored() localVariable 210 let mut buf = [0]; in test_mem_reader_vectored() localVariable 236 let mut buf = []; in test_boxed_slice_reader() localVariable [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/std/src/io/cursor/ |
H A D | tests.rs | 133 let mut buf = [0 as u8; 9]; in test_buf_writer() localVariable 140 let mut buf = [0 as u8; 9]; in test_buf_writer_vectored() localVariable 147 let mut buf = [0 as u8; 8]; in test_buf_writer_seek() localVariable 175 let mut buf = [0 as u8; 2]; in test_buf_writer_error() localVariable 185 let mut buf = []; in test_mem_reader() localVariable 188 let mut buf = [0]; in test_mem_reader() localVariable 193 let mut buf = [0; 4]; in test_mem_reader() localVariable 207 let mut buf = []; in test_mem_reader_vectored() localVariable 210 let mut buf = [0]; in test_mem_reader_vectored() localVariable 236 let mut buf = []; in test_boxed_slice_reader() localVariable [all …]
|
/aosp_15_r20/external/virglrenderer/src/ |
H A D | vrend_decode.c | 56 static inline uint32_t get_buf_entry(const uint32_t *buf, uint32_t offset) in get_buf_entry() 61 static inline const void *get_buf_ptr(const uint32_t *buf, uint32_t offset) in get_buf_ptr() 67 const uint32_t *buf, in vrend_decode_create_shader() 134 static int vrend_decode_create_stream_output_target(struct vrend_context *ctx, const uint32_t *buf, in vrend_decode_create_stream_output_target() 150 static int vrend_decode_set_framebuffer_state(struct vrend_context *ctx, const uint32_t *buf, uint3… in vrend_decode_set_framebuffer_state() 172 …_decode_set_framebuffer_state_no_attach(struct vrend_context *ctx, const uint32_t *buf, uint32_t l… in vrend_decode_set_framebuffer_state_no_attach() 193 static int vrend_decode_clear(struct vrend_context *ctx, const uint32_t *buf, uint32_t length) in vrend_decode_clear() 213 static int vrend_decode_clear_texture(struct vrend_context *ctx, const uint32_t *buf, uint32_t leng… in vrend_decode_clear_texture() 239 static int vrend_decode_set_viewport_state(struct vrend_context *ctx, const uint32_t *buf, uint32_t… in vrend_decode_set_viewport_state() 268 static int vrend_decode_set_index_buffer(struct vrend_context *ctx, const uint32_t *buf, uint32_t l… in vrend_decode_set_index_buffer() [all …]
|
/aosp_15_r20/external/pigweed/pw_multibuf/ |
H A D | multibuf_test.cc | 40 TEST(MultiBuf, IsDefaultConstructible) { [[maybe_unused]] MultiBuf buf; } in TEST() local 45 MultiBuf buf; in TEST() local 56 MultiBuf buf; in TEST() local 67 MultiBuf buf; in TEST() local 77 MultiBuf buf; in TEST() local 87 MultiBuf buf; in TEST() local 97 MultiBuf buf; in TEST() local 108 MultiBuf buf; in TEST() local 118 MultiBuf buf; in TEST() local 129 MultiBuf buf; in TEST() local [all …]
|
/aosp_15_r20/external/mesa3d/src/util/ |
H A D | u_dynarray.h | 56 util_dynarray_init(struct util_dynarray *buf, void *mem_ctx) in util_dynarray_init() 63 util_dynarray_init_from_stack(struct util_dynarray *buf, void *data, unsigned capacity) in util_dynarray_init_from_stack() 72 util_dynarray_fini(struct util_dynarray *buf) in util_dynarray_fini() 86 util_dynarray_clear(struct util_dynarray *buf) in util_dynarray_clear() 94 util_dynarray_ensure_cap(struct util_dynarray *buf, unsigned newcap) in util_dynarray_ensure_cap() 123 util_dynarray_resize_bytes(struct util_dynarray *buf, unsigned nelts, size_t eltsize) in util_dynarray_resize_bytes() 139 util_dynarray_clone(struct util_dynarray *buf, void *mem_ctx, in util_dynarray_clone() 148 util_dynarray_grow_bytes(struct util_dynarray *buf, unsigned ngrow, size_t eltsize) in util_dynarray_grow_bytes() 167 util_dynarray_trim(struct util_dynarray *buf) in util_dynarray_trim() 193 util_dynarray_append_dynarray(struct util_dynarray *buf, in util_dynarray_append_dynarray() [all …]
|
H A D | u_idalloc.c | 40 util_idalloc_exists(struct util_idalloc *buf, unsigned id) in util_idalloc_exists() 47 util_idalloc_resize(struct util_idalloc *buf, unsigned new_num_elements) in util_idalloc_resize() 58 util_idalloc_init(struct util_idalloc *buf, unsigned initial_num_ids) in util_idalloc_init() 66 util_idalloc_fini(struct util_idalloc *buf) in util_idalloc_fini() 73 util_idalloc_alloc(struct util_idalloc *buf) in util_idalloc_alloc() 98 find_free_block(struct util_idalloc *buf, unsigned start) in find_free_block() 109 util_idalloc_alloc_range(struct util_idalloc *buf, unsigned num) in util_idalloc_alloc_range() 156 util_idalloc_free(struct util_idalloc *buf, unsigned id) in util_idalloc_free() 174 util_idalloc_reserve(struct util_idalloc *buf, unsigned id) in util_idalloc_reserve() 189 util_idalloc_mt_init(struct util_idalloc_mt *buf, in util_idalloc_mt_init() [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/debug/dwarf/ |
D | buf.go | 16 type buf struct { struct 17 dwarf *Data 18 order binary.ByteOrder 19 format dataFormat 20 name string 21 off Offset 22 data []byte 23 err error 58 func (b *buf) uint8() uint8 { 69 func (b *buf) bytes(n int) []byte { [all …]
|
/aosp_15_r20/frameworks/libs/binary_translation/base/ |
D | format_buffer_test.cc | 33 char buf[128] = "hello"; in TEST() local 40 char buf[128] = "hello"; in TEST() local 48 char buf[128] = "hello"; in TEST() local 55 char buf[128]; in TEST() local 61 char buf[4]; in TEST() local 67 char buf[128]; in TEST() local 74 char buf[128]; in TEST() local 82 char buf[128]; in TEST() local 88 char buf[128]; in TEST() local 94 char buf[128]; in TEST() local [all …]
|
/aosp_15_r20/external/fastrpc/inc/ |
H A D | sbuf_parser.h | 98 static __inline void sbuf_parser_init(struct sbuf* buf, const char *data, int dataLen) { in sbuf_parser_init() 103 static __inline char *sbuf_cur(struct sbuf* buf) { in sbuf_cur() 108 static __inline int sbuf_peek(struct sbuf* buf, char* c) { in sbuf_peek() 117 static __inline int sbuf_end(struct sbuf* buf) { in sbuf_end() 122 static __inline int sbuf_chars(struct sbuf *buf, const char *chars) { in sbuf_chars() 138 static __inline int sbuf_notchars(struct sbuf *buf, const char *chars) { in sbuf_notchars() 154 static __inline int sbuf_char(struct sbuf *buf, const char t) { in sbuf_char() 160 static __inline int sbuf_notchar(struct sbuf *buf, const char t) { in sbuf_notchar() 168 static __inline int sbuf_any(struct sbuf* buf) { in sbuf_any() 182 static __inline int sbuf_range(struct sbuf *buf, const char *chars) { in sbuf_range() [all …]
|
/aosp_15_r20/external/libnetfilter_conntrack/src/conntrack/ |
H A D | snprintf_default.c | 12 static int __snprintf_l3protocol(char *buf, in __snprintf_l3protocol() 22 int __snprintf_protocol(char *buf, in __snprintf_protocol() 32 static int __snprintf_timeout(char *buf, in __snprintf_timeout() 39 static int __snprintf_protoinfo(char *buf, in __snprintf_protoinfo() 49 static int __snprintf_protoinfo_sctp(char *buf, in __snprintf_protoinfo_sctp() 59 static int __snprintf_protoinfo_dccp(char *buf, in __snprintf_protoinfo_dccp() 69 static int __snprintf_address_ipv4(char *buf, in __snprintf_address_ipv4() 88 static int __snprintf_address_ipv6(char *buf, in __snprintf_address_ipv6() 117 int __snprintf_address(char *buf, in __snprintf_address() 139 int __snprintf_proto(char *buf, in __snprintf_proto() [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/tokio-util/tests/ |
D | codecs.rs | 10 let buf = &mut BytesMut::new(); in bytes_decoder() localVariable 29 let mut buf = BytesMut::new(); in bytes_encoder() localVariable 37 let mut buf = BytesMut::with_capacity(INITIAL_CAPACITY); in bytes_encoder() localVariable 49 let buf = &mut BytesMut::new(); in lines_decoder() localVariable 68 let buf = &mut BytesMut::new(); in lines_decoder_invalid_utf8() localVariable 83 let buf = &mut BytesMut::new(); in lines_decoder_max_length() localVariable 127 let buf = &mut BytesMut::new(); in lines_decoder_max_length_underrun() localVariable 148 let buf = &mut BytesMut::new(); in lines_decoder_max_length_bursts() localVariable 164 let buf = &mut BytesMut::new(); in lines_decoder_max_length_big_burst() localVariable 178 let buf = &mut BytesMut::new(); in lines_decoder_max_length_newline_between_decodes() localVariable [all …]
|