/external/rust/crates/grpcio-sys/grpc/src/core/lib/surface/ |
D | validate_metadata.cc | 33 static grpc_error_handle conforms_to(const grpc_slice& slice, in conforms_to() 61 grpc_error_handle grpc_validate_header_key_is_legal(const grpc_slice& slice) { in grpc_validate_header_key_is_legal() 74 if (GRPC_SLICE_START_PTR(slice)[0] == ':') { in grpc_validate_header_key_is_legal() local 81 int grpc_header_key_is_legal(grpc_slice slice) { in grpc_header_key_is_legal() 86 const grpc_slice& slice) { in grpc_validate_header_nonbin_value_is_legal() 94 int grpc_header_nonbin_value_is_legal(grpc_slice slice) { in grpc_header_nonbin_value_is_legal() 98 int grpc_is_binary_header_internal(const grpc_slice& slice) { in grpc_is_binary_header_internal() 103 int grpc_is_binary_header(grpc_slice slice) { in grpc_is_binary_header()
|
/external/grpc-grpc/test/core/slice/ |
D | slice_test.cc | 41 grpc_slice slice; in test_slice_malloc_returns_something_sensible() local 63 GRPC_SLICE_START_PTR(slice)[i] = static_cast<uint8_t>(i); in test_slice_malloc_returns_something_sensible() local 75 grpc_slice slice = grpc_slice_new(&x, 1, do_nothing); in test_slice_new_returns_something_sensible() local 88 grpc_slice slice; in test_slice_new_with_user_data() local 115 grpc_slice slice = grpc_slice_new_with_len(&x, 1, do_nothing_with_len_1); in test_slice_new_with_len_returns_something_sensible() local 138 grpc_slice slice; in test_slice_sub_works() local 149 GRPC_SLICE_START_PTR(slice)[i] = static_cast<uint8_t>(i); in test_slice_sub_works() local 167 static void check_head_tail(grpc_slice slice, grpc_slice head, in check_head_tail() 178 grpc_slice slice; in test_slice_split_head_works() local 189 GRPC_SLICE_START_PTR(slice)[i] = static_cast<uint8_t>(i); in test_slice_split_head_works() local [all …]
|
/external/grpc-grpc/src/core/lib/surface/ |
D | validate_metadata.cc | 32 static grpc_error* conforms_to(grpc_slice slice, const uint8_t* legal_bits, in conforms_to() 60 grpc_error* grpc_validate_header_key_is_legal(grpc_slice slice) { in grpc_validate_header_key_is_legal() 69 if (GRPC_SLICE_START_PTR(slice)[0] == ':') { in grpc_validate_header_key_is_legal() local 76 int grpc_header_key_is_legal(grpc_slice slice) { in grpc_header_key_is_legal() 80 grpc_error* grpc_validate_header_nonbin_value_is_legal(grpc_slice slice) { in grpc_validate_header_nonbin_value_is_legal() 88 int grpc_header_nonbin_value_is_legal(grpc_slice slice) { in grpc_header_nonbin_value_is_legal() 92 int grpc_is_binary_header(grpc_slice slice) { in grpc_is_binary_header()
|
/external/rust/crates/grpcio-sys/grpc/include/grpc/impl/codegen/ |
D | slice.h | 96 #define GRPC_SLICE_START_PTR(slice) \ argument 99 #define GRPC_SLICE_LENGTH(slice) \ argument 102 #define GRPC_SLICE_SET_LENGTH(slice, newlen) \ argument 105 #define GRPC_SLICE_END_PTR(slice) \ argument 107 #define GRPC_SLICE_IS_EMPTY(slice) (GRPC_SLICE_LENGTH(slice) == 0) argument 112 #define GPR_SLICE_START_PTR(slice) \ argument 115 #define GPR_SLICE_LENGTH(slice) \ argument 118 #define GPR_SLICE_SET_LENGTH(slice, newlen) \ argument 121 #define GPR_SLICE_END_PTR(slice) \ argument 123 #define GPR_SLICE_IS_EMPTY(slice) (GRPC_SLICE_LENGTH(slice) == 0) argument
|
/external/rust/crates/grpcio-sys/grpc/spm-core-include/grpc/impl/codegen/ |
D | slice.h | 96 #define GRPC_SLICE_START_PTR(slice) \ argument 99 #define GRPC_SLICE_LENGTH(slice) \ argument 102 #define GRPC_SLICE_SET_LENGTH(slice, newlen) \ argument 105 #define GRPC_SLICE_END_PTR(slice) \ argument 107 #define GRPC_SLICE_IS_EMPTY(slice) (GRPC_SLICE_LENGTH(slice) == 0) argument 112 #define GPR_SLICE_START_PTR(slice) \ argument 115 #define GPR_SLICE_LENGTH(slice) \ argument 118 #define GPR_SLICE_SET_LENGTH(slice, newlen) \ argument 121 #define GPR_SLICE_END_PTR(slice) \ argument 123 #define GPR_SLICE_IS_EMPTY(slice) (GRPC_SLICE_LENGTH(slice) == 0) argument
|
/external/grpc-grpc/include/grpc/impl/codegen/ |
D | slice.h | 116 #define GRPC_SLICE_START_PTR(slice) \ argument 119 #define GRPC_SLICE_LENGTH(slice) \ argument 122 #define GRPC_SLICE_SET_LENGTH(slice, newlen) \ argument 125 #define GRPC_SLICE_END_PTR(slice) \ argument 127 #define GRPC_SLICE_IS_EMPTY(slice) (GRPC_SLICE_LENGTH(slice) == 0) argument 132 #define GPR_SLICE_START_PTR(slice) \ argument 135 #define GPR_SLICE_LENGTH(slice) \ argument 138 #define GPR_SLICE_SET_LENGTH(slice, newlen) \ argument 141 #define GPR_SLICE_END_PTR(slice) \ argument 143 #define GPR_SLICE_IS_EMPTY(slice) (GRPC_SLICE_LENGTH(slice) == 0) argument
|
/external/perfetto/ui/src/frontend/ |
D | base_slice_track.ts | 78 slice: Slice; property 248 for (const slice of vizSlices) { constant 285 for (const slice of vizSlicesByColor) { constant 306 for (const slice of vizSlices) { constant 323 for (const slice of vizSlices) { constant 501 const slice = this.rowToSlice(row) as CastInternal<T['slice']>; constant 554 for (const slice of this.slices) { constant 595 const slice = this.findSlice(position); constant 616 for (const slice of this.slices) { constant 688 for (const slice of slices) { constant [all …]
|
/external/rust/crates/nix/test/sys/ |
D | test_mman.rs | 23 let slice : &mut[u8] = unsafe { in test_mremap_grow() localVariable 34 let slice : &mut[u8] = unsafe { in test_mremap_grow() localVariable 64 let slice : &mut[u8] = unsafe { in test_mremap_shrink() localVariable 75 let slice : &mut[u8] = unsafe { in test_mremap_shrink() localVariable
|
/external/grpc-grpc/src/core/tsi/alts/handshaker/ |
D | alts_handshaker_service_api_util.cc | 63 grpc_slice slice = grpc_slice_from_copied_buffer(data, size); in create_slice() local 70 void destroy_slice(grpc_slice* slice) { in destroy_slice() 79 grpc_slice* slice = static_cast<grpc_slice*>(*arg); in encode_string_or_bytes_cb() local 103 const grpc_slice* slice = static_cast<const grpc_slice*>(var->data); in encode_repeated_string_cb() local 114 grpc_slice slice = grpc_slice_malloc(stream->bytes_left); in decode_string_or_bytes_cb() local 137 grpc_slice slice = grpc_slice_malloc(stream->bytes_left); in decode_repeated_string_cb() local
|
D | alts_handshaker_service_api.cc | 125 grpc_slice* slice = create_slice(target_name, strlen(target_name)); in grpc_gcp_handshaker_req_set_target_name() local 139 grpc_slice* slice = in grpc_gcp_handshaker_req_add_application_protocol() local 165 grpc_slice* slice = create_slice(record_protocol, strlen(record_protocol)); in grpc_gcp_handshaker_req_add_record_protocol() local 175 grpc_slice* slice = create_slice(hostname, strlen(hostname)); in set_identity_hostname() local 182 grpc_slice* slice = create_slice(service_account, strlen(service_account)); in set_identity_service_account() local 254 grpc_slice* slice = create_slice(ip_address, strlen(ip_address)); in set_endpoint() local 340 grpc_slice* slice = create_slice(in_bytes, size); in grpc_gcp_handshaker_req_set_in_bytes() local 385 grpc_slice* slice = create_slice(record_protocol, strlen(record_protocol)); in grpc_gcp_handshaker_req_param_add_record_protocol() local 436 grpc_slice* slice) { in grpc_gcp_handshaker_req_encode()
|
/external/perfetto/src/protozero/ |
D | scattered_heap_buffer.cc | 81 for (const auto& slice : slices) in StitchSlices() local 86 for (const auto& slice : slices) { in StitchSlices() local 95 for (const auto& slice : GetSlices()) in GetRanges() local 107 for (auto& slice : slices_) { in GetTotalSize() local
|
/external/tensorflow/tensorflow/core/util/ |
D | tensor_slice_writer_test.cc | 81 TensorSlice slice = TensorSlice::ParseOrDie("-:0,1"); in TEST() local 89 TensorSlice slice = TensorSlice::ParseOrDie("-:3,1"); in TEST() local 98 TensorSlice slice = TensorSlice::ParseOrDie("-:-"); in TEST() local 106 TensorSlice slice = TensorSlice::ParseOrDie("-:3,1"); in TEST() local 114 TensorSlice slice = TensorSlice::ParseOrDie("-:3,1"); in TEST() local 129 const TensorSlice& slice, in GetData() 333 TensorSlice slice = TensorSlice::ParseOrDie("-:-"); in TEST() local 344 TensorSlice slice = TensorSlice::ParseOrDie("-:-"); in TEST() local
|
D | tensor_slice_reader_test.cc | 72 TensorSlice slice = TensorSlice::ParseOrDie("0,2:-"); in SimpleFloatHelper() local 96 TensorSlice slice = TensorSlice::ParseOrDie("2,2:0,3"); in SimpleFloatHelper() local 102 TensorSlice slice = TensorSlice::ParseOrDie("3,1:3,2"); in SimpleFloatHelper() local 197 TensorSlice slice = TensorSlice::ParseOrDie("0,2:-"); in SimpleIntXHelper() local 221 TensorSlice slice = TensorSlice::ParseOrDie("2,2:0,3"); in SimpleIntXHelper() local 227 TensorSlice slice = TensorSlice::ParseOrDie("3,1:3,2"); in SimpleIntXHelper() local 329 TensorSlice slice = TensorSlice::ParseOrDie("0,2:-"); in TEST_SIMPLE_INT() local 353 TensorSlice slice = TensorSlice::ParseOrDie("2,2:0,3"); in TEST_SIMPLE_INT() local 359 TensorSlice slice = TensorSlice::ParseOrDie("3,1:3,2"); in TEST_SIMPLE_INT() local
|
D | saved_tensor_slice_util.cc | 28 string EncodeTensorNameSlice(const string& name, const TensorSlice& slice) { in EncodeTensorNameSlice() 46 tensorflow::TensorSlice* slice) { in DecodeTensorNameSlice() 91 TensorSlice* slice, TensorShape* shape_slice) { in ParseShapeAndSlice()
|
/external/grpc-grpc/test/core/http/ |
D | format_request_test.cc | 29 grpc_slice slice; in test_format_get_request() local 54 grpc_slice slice; in test_format_post_request() local 84 grpc_slice slice; in test_format_post_request_no_body() local 109 grpc_slice slice; in test_format_post_request_content_type_override() local
|
/external/tensorflow/tensorflow/compiler/jit/ |
D | increase_dynamism_for_auto_jit_pass_test.cc | 109 Output slice = ops::Slice(root.WithOpName("slice"), input, begin, size); in TEST() local 155 Output slice = ops::Slice(root.WithOpName("slice"), input, begin, size); in TEST() local 176 Output slice = ops::Slice(root.WithOpName("slice"), input, begin, size); in TEST() local 202 Output slice = ops::Slice(root.WithOpName("slice"), input, begin, size); in TEST() local 224 Output slice = in TEST() local 247 Output slice = ops::Slice(root.WithOpName("slice"), input, begin, size); in TEST() local 266 Output slice = ops::Slice(root.WithOpName("slice"), input, begin, size); in TEST() local 285 Output slice = ops::Slice(root.WithOpName("slice"), input, begin, size); in TEST() local 313 Output slice = in TEST() local 337 Output slice = ops::Slice(root.WithOpName("slice"), input, begin, size_a); in TEST() local [all …]
|
/external/ComputeLibrary/arm_compute/core/ |
D | Window.h | 311 bool slide_window_slice_1D(Window &slice) const in slide_window_slice_1D() 323 bool slide_window_slice_2D(Window &slice) const in slide_window_slice_2D() 335 bool slide_window_slice_3D(Window &slice) const in slide_window_slice_3D() 347 bool slide_window_slice_4D(Window &slice) const in slide_window_slice_4D()
|
/external/grpc-grpc/test/core/tsi/alts/handshaker/ |
D | alts_handshaker_service_api_test_lib.cc | 78 grpc_slice* slice = in grpc_gcp_handshaker_resp_set_application_protocol() local 94 grpc_slice* slice = create_slice(record_protocol, strlen(record_protocol)); in grpc_gcp_handshaker_resp_set_record_protocol() local 108 grpc_slice* slice = create_slice(key_data, size); in grpc_gcp_handshaker_resp_set_key_data() local 116 grpc_slice* slice = create_slice(hostname, strlen(hostname)); in set_identity_hostname() local 123 grpc_slice* slice = create_slice(service_account, strlen(service_account)); in set_identity_service_account() local 220 grpc_slice* slice = create_slice(details, strlen(details)); in grpc_gcp_handshaker_resp_set_details() local 235 grpc_slice* slice = create_slice(out_frames, size); in grpc_gcp_handshaker_resp_set_out_frames() local 280 grpc_slice* slice) { in grpc_gcp_handshaker_resp_encode() 303 bool grpc_gcp_handshaker_req_decode(grpc_slice slice, in grpc_gcp_handshaker_req_decode()
|
/external/grpc-grpc/test/core/iomgr/ |
D | load_file_test.cc | 38 grpc_slice slice; in test_load_empty_file() local 67 grpc_slice slice; in test_load_failure() local 89 grpc_slice slice; in test_load_small_file() local 122 grpc_slice slice; in test_load_big_file() local
|
/external/grpc-grpc/src/core/lib/slice/ |
D | slice.cc | 31 char* grpc_slice_to_c_string(grpc_slice slice) { in grpc_slice_to_c_string() 52 grpc_slice grpc_slice_ref_internal(grpc_slice slice) { in grpc_slice_ref_internal() 59 void grpc_slice_unref_internal(grpc_slice slice) { in grpc_slice_unref_internal() 66 grpc_slice grpc_slice_ref(grpc_slice slice) { in grpc_slice_ref() 71 void grpc_slice_unref(grpc_slice slice) { in grpc_slice_unref() 92 grpc_slice slice; in grpc_slice_from_static_buffer() local 132 grpc_slice slice; in grpc_slice_new_with_user_data() local 181 grpc_slice slice; in grpc_slice_new_with_len() local 199 grpc_slice slice = GRPC_SLICE_MALLOC(length); in grpc_slice_from_copied_buffer() local 230 grpc_slice slice; in grpc_slice_malloc_large() local [all …]
|
/external/flatbuffers/include/flatbuffers/ |
D | grpc.h | 37 Message(grpc_slice slice, bool add_ref) in Message() 224 uint8_t *ReleaseRaw(size_t &size, size_t &offset, grpc_slice &slice) { in ReleaseRaw() 250 grpc_slice slice = slice_allocator_.get_slice(buf_data, buf_size); in GetMessage() local 281 grpc_slice *slice = const_cast<grpc_slice *>(&msg.BorrowSlice()); in Serialize() local 300 grpc_slice slice = buffer->data.raw.slice_buffer.slices[0]; in Deserialize() local 309 grpc_slice slice = grpc_byte_buffer_reader_readall(&reader); in Deserialize() local
|
/external/rust/crates/grpcio-sys/grpc/src/core/lib/slice/ |
D | slice_internal.h | 216 inline size_t grpc_refcounted_slice_length(const grpc_slice& slice) { in grpc_refcounted_slice_length() 221 inline const uint8_t* grpc_refcounted_slice_data(const grpc_slice& slice) { in grpc_refcounted_slice_data() 246 inline uint32_t grpc_slice_refcount::Hash(const grpc_slice& slice) { in Hash() 265 inline const grpc_slice& grpc_slice_ref_internal(const grpc_slice& slice) { in grpc_slice_ref_internal() 272 inline void grpc_slice_unref_internal(const grpc_slice& slice) { in grpc_slice_unref_internal() 299 inline bool grpc_slice_is_interned(const grpc_slice& slice) { in grpc_slice_is_interned()
|
/external/rust/crates/tokio/src/io/ |
D | read_buf.rs | 67 let slice = &self.buf[..self.filled]; in filled() localVariable 77 let slice = &mut self.buf[..self.filled]; in filled_mut() localVariable 97 let slice = &self.buf[..self.initialized]; in initialized() localVariable 109 let slice = &mut self.buf[..self.initialized]; in initialized_mut() localVariable 178 let slice = &mut self.buf[self.filled..end]; in initialize_unfilled_to() localVariable
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | intel_mipmap_tree.c | 494 GLuint level, GLuint slice, in intel_miptree_get_image_offset() 515 GLuint level, GLuint slice, in intel_miptree_get_tile_offsets() 537 int slice, in intel_miptree_copy_slice_sw() 594 int slice; in intel_miptree_copy_slice() local 654 for (int slice = 0; slice < depth; slice++) { in intel_miptree_copy_teximage() local 694 unsigned int level, unsigned int slice) in intel_miptree_map_gtt() 742 unsigned int level, unsigned int slice) in intel_miptree_map_blit() 786 unsigned int slice) in intel_miptree_unmap_blit() 812 unsigned int slice, in intel_miptree_attach_map() 842 unsigned int slice) in intel_miptree_release_map() [all …]
|
/external/crosvm/common/sys_util_core/src/ |
D | alloc.rs | 178 let slice: &[u32] = unsafe { allocation.as_slice(15) }; in test_as_slice_u32() localVariable 190 let slice: &[u32] = unsafe { allocation.as_slice(5) }; in test_as_slice_u32_smaller_len() localVariable 200 let slice: &[u32] = unsafe { allocation.as_slice(100) }; in test_as_slice_u32_larger_len() localVariable 212 let slice: &[u32] = unsafe { allocation.as_slice(100) }; in test_as_slice_u32_remainder() localVariable
|