/external/openthread/third_party/tcplp/lib/ |
D | cbuf.c | 76 chdr->w_index = 0; in cbuf_init() 82 if (chdr->w_index >= chdr->r_index) { in cbuf_used_space() 83 return chdr->w_index - chdr->r_index; in cbuf_used_space() 85 return chdr->size + chdr->w_index - chdr->r_index; in cbuf_used_space() 100 return (chdr->w_index == chdr->r_index); in cbuf_empty() 112 fw_index = (chdr->w_index + data_len) % chdr->size; in cbuf_write() 113 if (fw_index >= chdr->w_index) { in cbuf_write() 114 copy_from(buf_data, chdr->w_index, data, data_offset, data_len); in cbuf_write() 116 bytes_to_end = chdr->size - chdr->w_index; in cbuf_write() 117 copy_from(buf_data, chdr->w_index, data, data_offset, bytes_to_end); in cbuf_write() [all …]
|
D | cbuf.h | 45 size_t w_index; member
|
/external/libgav1/src/dsp/ |
D | weight_mask.cc | 56 #define INIT_WEIGHT_MASK(width, height, bitdepth, w_index, h_index) \ argument 57 dsp->weight_mask[w_index][h_index][0] = \ 59 dsp->weight_mask[w_index][h_index][1] = \
|
/external/libgav1/src/dsp/arm/ |
D | weight_mask_neon.cc | 504 #define INIT_WEIGHT_MASK_8BPP(width, height, w_index, h_index) \ argument 505 dsp->weight_mask[w_index][h_index][0] = \ 507 dsp->weight_mask[w_index][h_index][1] = \ 538 #define INIT_WEIGHT_MASK_10BPP(width, height, w_index, h_index) \ argument 539 dsp->weight_mask[w_index][h_index][0] = \ 541 dsp->weight_mask[w_index][h_index][1] = \
|
/external/llvm/test/CodeGen/AMDGPU/ |
D | vector-alloca.ll | 37 define void @vector_write(i32 addrspace(1)* %out, i32 %w_index, i32 %r_index) { 48 %1 = getelementptr [4 x i32], [4 x i32]* %0, i32 0, i32 %w_index 60 define void @bitcast_gep(i32 addrspace(1)* %out, i32 %w_index, i32 %r_index) {
|
/external/libgav1/src/dsp/x86/ |
D | weight_mask_sse4.cc | 470 #define INIT_WEIGHT_MASK_8BPP(width, height, w_index, h_index) \ argument 471 dsp->weight_mask[w_index][h_index][0] = \ 473 dsp->weight_mask[w_index][h_index][1] = \ 961 #define INIT_WEIGHT_MASK_10BPP(width, height, w_index, h_index) \ argument 962 dsp->weight_mask[w_index][h_index][0] = \ 964 dsp->weight_mask[w_index][h_index][1] = \
|
/external/ComputeLibrary/tests/validation/reference/ |
D | DFT.cpp | 286 const uint32_t w_index = w + h * W + ci * H * W + co * H * W * Ci; in complex_mul_and_reduce() local 289 const Coordinates w_coords = index2coords(weights.shape(), w_index); in complex_mul_and_reduce()
|
/external/tensorflow/tensorflow/compiler/tf2tensorrt/convert/ |
D | convert_nodes.cc | 1775 const int w_index) { in GetSpatialDimsFromOutputSizes() argument 1784 output_sizes_values[output_sizes_length == 4 ? w_index : 1]}; in GetSpatialDimsFromOutputSizes() 1855 int w_index = (data_format == "NHWC") ? 2 : 3; in ConvertConv2DHelper() local 1865 const nvinfer1::DimsHW dilation(tf_dilations[h_index], tf_dilations[w_index]); in ConvertConv2DHelper() 1891 const nvinfer1::DimsHW stride(tf_stride[h_index], tf_stride[w_index]); in ConvertConv2DHelper() 2027 GetSpatialDimsFromOutputSizes(backprop_output_size, h_index, w_index); in ConvertConv2DHelper() 2827 const int w_index = is_ndhwc ? 3 : 4; in ConvertConv3DHelper() local 2839 tf_dilations[d_index], tf_dilations[h_index], tf_dilations[w_index]); in ConvertConv3DHelper() 2858 tf_stride[w_index]); in ConvertConv3DHelper() 2879 output_size_weights[w_index]}; in ConvertConv3DHelper() [all …]
|
/external/tensorflow/tensorflow/core/grappler/costs/ |
D | op_level_cost_estimator_test.cc | 366 int w_index = 2; in GetPoolingOutputSize() local 370 w_index = 3; in GetPoolingOutputSize() 376 int w = input[w_index]; in GetPoolingOutputSize() 379 int sy = strides[w_index]; in GetPoolingOutputSize() 381 int ky = ksize[w_index]; in GetPoolingOutputSize()
|