/external/boringssl/src/crypto/stack/ |
D | stack.c | 239 int sk_find(const _STACK *sk, size_t *out_index, const void *p, in sk_find() argument 250 if (out_index) { in sk_find() 251 *out_index = i; in sk_find() 267 if (out_index) { in sk_find() 268 *out_index = i; in sk_find() 295 if (out_index != NULL) { in sk_find() 296 *out_index = mid; in sk_find()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | segment_reduction_ops.cc | 125 Index out_index = internal::SubtleMustCopy(segment_vec(start)); in Compute() local 137 if (out_index == next_index) { in Compute() 142 OP_REQUIRES(context, out_index < next_index, in Compute() 153 context, FastBoundsCheck(out_index, output_rows), in Compute() 155 "Segment id ", out_index, " out of range [0, ", output_rows, in Compute() 160 if (out_index > uninitialized_index) { in Compute() 162 out_index - uninitialized_index, num_col); in Compute() 168 T* out_slice_ptr = &output_flat(out_index, 0); in Compute() 193 uninitialized_index = out_index + 1; in Compute() 194 out_index = next_index; in Compute() [all …]
|
D | matrix_set_diag_op_gpu.cu.cc | 37 const int out_index = batch * m * n + (n + 1) * col; in MatrixSetDiagKernel() local 38 output_ptr[out_index] = diag_ptr[index]; in MatrixSetDiagKernel()
|
D | fractional_max_pool_op.cc | 295 const int64 out_index = in Compute() local 309 T& output_ref = tensor_out_dup_mat.coeffRef(d, out_index); in Compute() 311 tensor_out_arg_max_mat.coeffRef(d, out_index); in Compute()
|
D | conv_2d.h | 174 int out_index = 0; 178 expanded_dims[out_index++] = in.dimension(spatial_dim); 182 expanded_dims[out_index++] =
|
D | fractional_avg_pool_op.cc | 296 const int64 out_index = (b * out_rows + r) * out_cols + c; in Compute() local 305 out_backprop_mat.coeffRef(d, out_index)); in Compute()
|
D | scale_and_translate_op.cc | 114 int out_index = spans->span_size * x; in ComputeSpansCore() local 116 weights_vec(out_index) = weight * one_over_total_weight_sum; in ComputeSpansCore() 117 ++out_index; in ComputeSpansCore()
|
D | maxpooling_op.cc | 145 const int64 out_index = out_index_base + pw; in SpatialMaxPoolWithArgMaxHelper() local 150 T& output_ref = out_mat.coeffRef(d, out_index); in SpatialMaxPoolWithArgMaxHelper() 151 int64& out_arg_max_ref = out_arg_max_mat.coeffRef(d, out_index); in SpatialMaxPoolWithArgMaxHelper() 615 const int out_index = (b * out_height + ph) * out_width + pw; in SpatialMaxPoolGradGrad() local 618 const T& output_ref = out_mat.coeffRef(d, out_index); in SpatialMaxPoolGradGrad() 625 T& bottom_diff_ref = bottom_diff_mat.coeffRef(d, out_index); in SpatialMaxPoolGradGrad()
|
D | pooling_ops_3d.cc | 620 const int out_index = in launch() local 624 const T& output_ref = out_mat.coeffRef(d, out_index); in launch() 634 bottom_diff_mat.coeffRef(d, out_index); in launch()
|
/external/tensorflow/tensorflow/contrib/resampler/kernels/ |
D | resampler_ops_gpu.cu.cc | 47 const int out_index = index; in Resampler2DKernel() local 100 output[out_index] = img_fxfy + img_cxcy + img_fxcy + img_cxfy; in Resampler2DKernel() 102 output[out_index] = zero; in Resampler2DKernel() 153 const int out_index = index; in ResamplerGrad2DKernel() local 178 const T grad_output_value = grad_output[out_index]; in ResamplerGrad2DKernel()
|
/external/tensorflow/tensorflow/core/util/ |
D | example_proto_helper.cc | 61 Status FeatureDenseCopy(const std::size_t out_index, const string& name, in FeatureDenseCopy() argument 66 const std::size_t offset = out_index * num_elements; in FeatureDenseCopy() 73 "Name: ", name, ", Key: ", key, ", Index: ", out_index, in FeatureDenseCopy() 86 "Name: ", name, ", Key: ", key, ", Index: ", out_index, in FeatureDenseCopy() 99 "Name: ", name, ", Key ", key, ", Index: ", out_index, in FeatureDenseCopy() 189 void RowDenseCopy(const std::size_t& out_index, const DataType& dtype, in RowDenseCopy() argument 192 const std::size_t offset = out_index * num_elements; in RowDenseCopy()
|
D | example_proto_helper.h | 130 Status FeatureDenseCopy(const std::size_t out_index, const string& name, 137 void RowDenseCopy(const std::size_t& out_index, const DataType& dtype,
|
/external/libpcap/ |
D | pcap-dos.c | 1393 if (idx != active_dev->queue.out_index) in get_rxbuf() 1445 q->out_index = 0; in pktq_init() 1472 q->out_index++; in pktq_inc_out() 1473 if (q->out_index >= q->num_elem) in pktq_inc_out() 1474 q->out_index = 0; in pktq_inc_out() 1475 return (q->out_index); in pktq_inc_out() 1504 return (struct rx_elem*) (q->buf_start + (q->elem_size * q->out_index)); in pktq_out_elem() 1512 q->in_index = q->out_index; in pktq_clear()
|
D | pcap-dos.h | 121 int out_index; /* queue index tail */ member
|
/external/boringssl/src/crypto/ |
D | ex_data.c | 131 int CRYPTO_get_ex_new_index(CRYPTO_EX_DATA_CLASS *ex_data_class, int *out_index, in CRYPTO_get_ex_new_index() argument 159 *out_index = sk_CRYPTO_EX_DATA_FUNCS_num(ex_data_class->meth) - 1 + in CRYPTO_get_ex_new_index()
|
D | internal.h | 614 int *out_index, long argl, in OPENSSL_MSVC_PRAGMA()
|
/external/boringssl/src/include/openssl/ |
D | stack.h | 194 OPENSSL_EXPORT int sk_find(const _STACK *sk, size_t *out_index, const void *p, 356 size_t * out_index, constptrtype p) { \ 357 return sk_find((const _STACK *)sk, out_index, (const void *)p, \
|
/external/libxcam/cl_kernel/ |
D | kernel_bayer_basic.cl | 117 int out_index = mad24 (mad24 (group_id_y, group_x_size, group_id_x), 126 stats_output[out_index] = (ushort8) ( 139 stats_output[out_index] = (ushort8) (
|
/external/skia/platform_tools/libraries/include/ |
D | arcore_c_api.h | 2005 int32_t *out_index); 2089 int32_t *out_index); 2125 int32_t *out_index);
|
/external/skqp/platform_tools/libraries/include/ |
D | arcore_c_api.h | 2005 int32_t *out_index); 2089 int32_t *out_index); 2125 int32_t *out_index);
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_evaluator_typed_visitor.h | 997 result.Populate<ReturnT>([&](absl::Span<const int64> out_index) { in HandleReverse() 998 std::vector<int64> from_index(out_index.begin(), out_index.end()); in HandleReverse() 1000 from_index[dim] = result_shape.dimensions(dim) - 1 - out_index[dim]; in HandleReverse() 1069 batch_group_count](const absl::Span<const int64> out_index) { in HandleConvolution() 1101 out_index[output_z_dim] / output_feature_group_size; in HandleConvolution() 1103 const int64 batch_group_index = out_index[output_z_dim]; in HandleConvolution() 1125 out_index[output_spatial_dim] * window_dim.stride() - in HandleConvolution() 1165 lhs_linear_index += out_index[output_batch_dim] * in HandleConvolution() 1182 rhs_linear_index += out_index[output_z_dim] * in HandleConvolution() 2428 auto func = [&](absl::Span<const int64> out_index) { in HandleSlice() [all …]
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
D | neteq_impl.cc | 1817 size_t out_index = 0; in DtmfOverdub() local 1822 out_index = std::min( in DtmfOverdub() 1825 overdub_length = output_size_samples_ - out_index; in DtmfOverdub() 1839 dtmf_output.ReadInterleaved(overdub_length, &output[out_index]); in DtmfOverdub()
|
/external/mesa3d/src/gallium/drivers/svga/ |
D | svga_tgsi_vgpu10.c | 153 unsigned out_index; /**< the real position output reg */ member 867 if (index == emit->vposition.out_index && in emit_dst_register() 2560 emit->vposition.out_index = index; in emit_output_declarations() 2600 emit->vposition.out_index != INVALID_INDEX) { in emit_output_declarations() 5630 if (emit->vposition.out_index == INVALID_INDEX) in emit_vpos_instructions() 5634 pos_dst = make_dst_output_reg(emit->vposition.out_index); in emit_vpos_instructions() 5734 make_dst_output_reg(emit->vposition.out_index); in emit_vpos_instructions() 5764 if (emit->vposition.out_index == INVALID_INDEX) in emit_clipping_instructions() 6518 emit->vposition.out_index = INVALID_INDEX; in svga_tgsi_vgpu10_translate()
|
/external/tensorflow/tensorflow/core/common_runtime/ |
D | executor.cc | 2671 for (size_t out_index = 0; out_index < num_output_edges; out_index++) { in ActivateNodes() local 2672 const EdgeInfo& e = edges[out_index]; in ActivateNodes()
|
/external/boringssl/src/ssl/ |
D | t1_lib.cc | 3042 static const struct tls_extension *tls_extension_find(uint32_t *out_index, in tls_extension_find() argument 3047 *out_index = i; in tls_extension_find()
|