Home
last modified time | relevance | path

Searched refs:out_d (Results 1 – 19 of 19) sorted by relevance

/external/tensorflow/tensorflow/lite/kernels/internal/reference/
Ddepth_to_space.h56 for (int out_d = 0; out_d < output_depth; ++out_d) { in DepthToSpace() local
58 out_d + ((out_h % block_size) * block_size + out_w % block_size) * in DepthToSpace()
67 Offset(output_shape, out_b, out_h, out_w, out_d); in DepthToSpace()
Dconv3d.h55 for (int out_d = 0; out_d < output_depth; ++out_d) { in Conv3D() local
56 const int in_d_origin = (out_d * params.stride_depth) - pad_depth; in Conv3D()
99 output_data[Offset(output_shape, batch, out_d, out_y, out_x, in Conv3D()
Dpad.h91 for (int out_d = 0; out_d < output_depth; ++out_d) { in PadImpl() local
98 out_d < left_d_padding || in PadImpl()
99 out_d >= output_depth - right_d_padding) { in PadImpl()
Dreduce.h247 for (int out_d = 0; out_d < output_depth; ++out_d) { in Mean() local
251 value += input_data[Offset(input_shape, out_b, in_h, in_w, out_d)]; in Mean()
254 output_data[Offset(output_shape, out_b, 0, 0, out_d)] = in Mean()
303 for (int out_d = 0; out_d < output_depth; ++out_d) { in Mean() local
307 acc += input_data[Offset(input_shape, out_b, in_h, in_w, out_d)]; in Mean()
313 output_data[Offset(output_shape, out_b, 0, 0, out_d)] = in Mean()
Dspace_to_depth.h57 const int out_d = in SpaceToDepth() local
66 Offset(output_shape, out_b, out_h, out_w, out_d); in SpaceToDepth()
/external/tensorflow/tensorflow/lite/kernels/internal/reference/integer_ops/
Dmean.h55 for (int out_d = 0; out_d < output_depth; ++out_d) { in Mean() local
59 acc += input_data[Offset(input_shape, out_b, in_h, in_w, out_d)] - in Mean()
68 output_data[Offset(output_shape, out_b, 0, 0, out_d)] = in Mean()
/external/tensorflow/tensorflow/lite/kernels/internal/optimized/integer_ops/
Dmean.h56 int out_d = start_depth; in MeanImpl() local
59 for (; out_d <= end_depth - 16; out_d += 16) { in MeanImpl()
68 input_data + Offset(input_shape, out_b, in_h, in_w, out_d); in MeanImpl()
121 output_data + Offset(output_shape, out_b, 0, 0, out_d); in MeanImpl()
126 for (; out_d < end_depth; ++out_d) { in MeanImpl()
130 acc += input_data[Offset(input_shape, out_b, in_h, in_w, out_d)]; in MeanImpl()
137 output_data[Offset(output_shape, out_b, 0, 0, out_d)] = in MeanImpl()
/external/tensorflow/tensorflow/core/kernels/
Ddepthwise_conv_grad_op.cc486 for (int out_d = out_d_start; out_d < out_d_end; ++out_d) { in DepthwiseConvBackpropInputReference() local
502 int filter_dm = out_d - out_d_start; in DepthwiseConvBackpropInputReference()
504 out_d + in DepthwiseConvBackpropInputReference()
994 for (int out_d = 0; out_d < args.out_depth; ++out_d) { in DepthwiseConvBackpropFilterReference() local
995 const int in_d = out_d / args.depth_multiplier; in DepthwiseConvBackpropFilterReference()
996 const int dm = out_d % args.depth_multiplier; in DepthwiseConvBackpropFilterReference()
1008 out_d + in DepthwiseConvBackpropFilterReference()
Dspacetodepth_op.cc183 const int out_d = d + offset_d; in operator ()() local
184 output(b, out_h, out_w, out_d) = input(b, h, w, d); in operator ()()
Dspacetodepth_op_gpu.cu.cc53 const int out_d = d + offset_d; in S2D_NHWC() local
55 out_d + in S2D_NHWC()
/external/libvpx/libvpx/vpx_dsp/x86/
Dhighbd_intrapred_intrin_ssse3.c724 const __m128i out_d = _mm_unpackhi_epi16(avg2_1, avg3_1); in vpx_highbd_d207_predictor_16x16_ssse3() local
728 d207_store_4x16(&dst, stride, &out_b, &out_c, &out_d); in vpx_highbd_d207_predictor_16x16_ssse3()
729 d207_store_4x16(&dst, stride, &out_c, &out_d, &LR); in vpx_highbd_d207_predictor_16x16_ssse3()
730 d207_store_4x16(&dst, stride, &out_d, &LR, &LR); in vpx_highbd_d207_predictor_16x16_ssse3()
787 const __m128i out_d = _mm_unpackhi_epi16(avg2_1, avg3_1); in vpx_highbd_d207_predictor_32x32_ssse3() local
794 d207_store_4x32(&dst, stride, &out_a, &out_b, &out_c, &out_d, &out_e); in vpx_highbd_d207_predictor_32x32_ssse3()
795 d207_store_4x32(&dst, stride, &out_b, &out_c, &out_d, &out_e, &out_f); in vpx_highbd_d207_predictor_32x32_ssse3()
796 d207_store_4x32(&dst, stride, &out_c, &out_d, &out_e, &out_f, &out_g); in vpx_highbd_d207_predictor_32x32_ssse3()
797 d207_store_4x32(&dst, stride, &out_d, &out_e, &out_f, &out_g, &out_h); in vpx_highbd_d207_predictor_32x32_ssse3()
/external/boringssl/src/crypto/fipsmodule/rsa/
Drsa.c187 const BIGNUM **out_d) { in RSA_get0_key() argument
194 if (out_d != NULL) { in RSA_get0_key()
195 *out_d = rsa->d; in RSA_get0_key()
/external/rust/crates/quiche/deps/boringssl/src/crypto/fipsmodule/rsa/
Drsa.c187 const BIGNUM **out_d) { in RSA_get0_key() argument
194 if (out_d != NULL) { in RSA_get0_key()
195 *out_d = rsa->d; in RSA_get0_key()
/external/rust/crates/quiche/deps/boringssl/src/include/openssl/
Drsa.h136 const BIGNUM **out_e, const BIGNUM **out_d);
/external/boringssl/src/include/openssl/
Drsa.h136 const BIGNUM **out_e, const BIGNUM **out_d);
/external/tensorflow/tensorflow/lite/kernels/internal/optimized/
Doptimized_ops.h1002 int out_d = start_depth; in MeanImpl() local
1005 for (; out_d <= end_depth - 16; out_d += 16) { in MeanImpl()
1014 input_data + Offset(input_shape, out_b, in_h, in_w, out_d); in MeanImpl()
1071 output_data + Offset(output_shape, out_b, 0, 0, out_d); in MeanImpl()
1076 for (; out_d < end_depth; ++out_d) { in MeanImpl()
1080 acc += input_data[Offset(input_shape, out_b, in_h, in_w, out_d)]; in MeanImpl()
1087 output_data[Offset(output_shape, out_b, 0, 0, out_d)] = in MeanImpl()
/external/deqp/external/openglcts/modules/gl/
Dgl4cES31CompatibilityShaderStorageBufferObjectTests.cpp1227 std::vector<GLubyte> out_d(in_data.size()); in Run() local
1229 glBufferData(GL_SHADER_STORAGE_BUFFER, (GLsizeiptr)in_data.size(), &out_d[0], GL_STATIC_DRAW); in Run()
1305 std::vector<GLubyte> out_d(in_data.size()); in Run() local
1307 glBufferData(GL_SHADER_STORAGE_BUFFER, (GLsizeiptr)out_d.size(), &out_d[0], GL_STATIC_DRAW); in Run()
Dgl4cShaderStorageBufferObjectTests.cpp1365 std::vector<GLubyte> out_d(in_data.size()); in Run() local
1367 glBufferData(GL_SHADER_STORAGE_BUFFER, (GLsizeiptr)out_d.size(), &out_d[0], GL_STATIC_DRAW); in Run()
/external/deqp/external/openglcts/modules/gles31/
Des31cShaderStorageBufferObjectTests.cpp1227 std::vector<GLubyte> out_d(in_data.size()); in Run() local
1229 glBufferData(GL_SHADER_STORAGE_BUFFER, (GLsizeiptr)in_data.size(), &out_d[0], GL_STATIC_DRAW); in Run()
1305 std::vector<GLubyte> out_d(in_data.size()); in Run() local
1307 glBufferData(GL_SHADER_STORAGE_BUFFER, (GLsizeiptr)out_d.size(), &out_d[0], GL_STATIC_DRAW); in Run()