Home
last modified time | relevance | path

Searched refs:out_x (Results 1 – 24 of 24) sorted by relevance

/external/libxcam/cl_kernel/
Dkernel_bayer_pipe.cl132 __write_only image2d_t out, uint out_height, int out_x, int out_y)
146 write_imagef (out, (int2)(out_x, out_y), out_data);
150 write_imagef (out, (int2)(out_x, out_y + 1), out_data);
162 write_imagef (out, (int2)(out_x, out_y + out_height * 2), out_data);
166 write_imagef (out, (int2)(out_x, out_y + 1 + out_height * 2), out_data);
184 write_imagef (out, (int2)(out_x, out_y + out_height), out_data);
190 write_imagef (out, (int2)(out_x, out_y + 1 + out_height), out_data);
197 …__write_only image2d_t out, uint out_height, int out_x, int out_y, __local float *table, CLEeConfi…
278 write_imagef (out, (int2)(out_x, out_y), out_data_r[0]);
279 write_imagef (out, (int2)(out_x, out_y + 1), out_data_r[1]);
[all …]
/external/libxcam/modules/soft/
Dsoft_geo_tasks_priv.cpp64 uint32_t out_x = x * 8, out_y = y * 2; in work_range() local
67 Float2 out_pos (out_x, out_y); in work_range()
81 out_luma->write_array_no_check<8> (out_x, out_y, zero_luma_byte); in work_range()
83 out_luma->write_array_no_check<8> (out_x, out_y, luma_uc); in work_range()
106 out_luma->write_array_no_check<8> (out_x, out_y + 1, zero_luma_byte); in work_range()
108 out_luma->write_array_no_check<8> (out_x, out_y + 1, luma_uc); in work_range()
Dsoft_blender_tasks_priv.cpp300 uint32_t out_x, uint32_t out_y) in interplate_luma_8x2() argument
302 uint32_t gauss_x = out_x / 2, first_gauss_y = out_y / 2; in interplate_luma_8x2()
309 orig_luma->read_array_no_check<float, 8> (out_x, out_y, orig_v); in interplate_luma_8x2()
311 out_luma->write_array_no_check<8> (out_x, out_y, lap_ret); in interplate_luma_8x2()
315 orig_luma->read_array_no_check<float, 8> (out_x, out_y + 1, orig_v); in interplate_luma_8x2()
317 out_luma->write_array_no_check<8> (out_x, out_y + 1, lap_ret); in interplate_luma_8x2()
370 uint32_t out_x = x * 8, out_y = y * 4; in work_range() local
371 interplate_luma_8x2 (orig_luma, gauss_luma, out_luma, out_x, out_y); in work_range()
372 interplate_luma_8x2 (orig_luma, gauss_luma, out_luma, out_x, out_y + 2); in work_range()
Dsoft_blender_tasks_priv.h192 uint32_t out_x, uint32_t out_y);
/external/tensorflow/tensorflow/contrib/lite/kernels/internal/reference/
Ddepthwiseconv_float.h46 for (int out_x = 0; out_x < output_width; ++out_x) { in DepthwiseConv() local
50 const int in_x_origin = (out_x * stride_width) - pad_width; in DepthwiseConv()
73 output_data[Offset(output_dims, oc, out_x, out_y, b)] = in DepthwiseConv()
Ddepthwiseconv_uint8.h52 for (int out_x = 0; out_x < output_width; ++out_x) { in DepthwiseConv() local
56 const int in_x_origin = (out_x * stride_width) - pad_width; in DepthwiseConv()
84 output_data[Offset(output_dims, oc, out_x, out_y, b)] = in DepthwiseConv()
Dreference_ops.h181 for (int out_x = 0; out_x < output_width; ++out_x) { in Conv() local
183 const int in_x_origin = (out_x * stride_width) - pad_width; in Conv()
209 output_data[Offset(output_dims, out_channel, out_x, out_y, batch)] = in Conv()
275 for (int out_x = 0; out_x < output_width; ++out_x) { in Conv() local
277 const int in_x_origin = (out_x * stride_width) - pad_width; in Conv()
308 output_data[Offset(output_dims, out_channel, out_x, out_y, batch)] = in Conv()
1699 for (int out_x = 0; out_x < output_width; ++out_x) { in AveragePool() local
1701 const int in_x_origin = (out_x * stride_width) - pad_width; in AveragePool()
1725 output_data[Offset(output_dims, channel, out_x, out_y, batch)] = in AveragePool()
1772 for (int out_x = 0; out_x < output_width; ++out_x) { in AveragePool() local
[all …]
/external/tensorflow/tensorflow/core/kernels/
Dresize_nearest_neighbor_op_gpu.cu.cc45 int out_x = n % out_width; in ResizeNearestNeighborNHWC() local
56 min((align_corners) ? static_cast<int>(roundf(out_x * width_scale)) in ResizeNearestNeighborNHWC()
57 : static_cast<int>(floorf(out_x * width_scale)), in ResizeNearestNeighborNHWC()
84 const int out_x = in ResizeNearestNeighborBackwardNHWC() local
88 const int idx = (out_y * out_width + out_x) * channels + c; in ResizeNearestNeighborBackwardNHWC()
Dconv_ops_using_gemm.cc130 for (int out_x = 0; out_x < output_width; ++out_x) { in operator ()() local
152 const int in_x_origin = (out_x * stride_cols) - filter_left_offset; in operator ()()
185 (out_x * filter_count) + out_channel] = total; in operator ()()
336 const int64 out_x = patch_index % output_width; in operator ()() local
340 const int in_x_origin = (out_x * stride_cols) - filter_left_offset; in operator ()()
Dquantized_conv_ops.cc107 for (int out_x = 0; out_x < output_width; ++out_x) { in operator ()() local
129 const int in_x_origin = (out_x * stride) - filter_left_offset; in operator ()()
178 (out_x * filter_count) + out_channel] = clamped_output; in operator ()()
304 const int64 out_x = patch_index % output_width; in operator ()() local
308 const int in_x_origin = (out_x * stride) - filter_left_offset; in operator ()()
Dconv_ops_fused.cc540 for (int out_x = 0; out_x < output_width; ++out_x) { in operator ()() local
541 const int in_x_origin = (out_x * stride_cols) - filter_left_offset; in operator ()()
543 (out_y * output_width) + out_x; in operator ()()
574 (out_y == (output_height - 1)) && (out_x == (output_width - 1))); in operator ()()
Dresize_nearest_neighbor_op.cc218 const int64 out_x = std::min( in operator ()() local
224 output(b, out_y, out_x, c) += input(b, y, x, c); in operator ()()
/external/freetype/src/autofit/
Dafhints.c856 FT_Pos out_x, out_y; in af_glyph_hints_reload() local
882 out_x = point->fx - prev->fx; in af_glyph_hints_reload()
885 if ( FT_ABS( out_x ) + FT_ABS( out_y ) < near_limit ) in af_glyph_hints_reload()
943 FT_Pos out_x, out_y; in af_glyph_hints_reload() local
955 out_x = point->fx - prev->fx; in af_glyph_hints_reload()
966 if ( FT_ABS( out_x ) + FT_ABS( out_y ) >= near_limit2 ) in af_glyph_hints_reload()
992 out_x = 0; in af_glyph_hints_reload()
1004 out_x += next->fx - point->fx; in af_glyph_hints_reload()
1007 if ( FT_ABS( out_x ) + FT_ABS( out_y ) < near_limit ) in af_glyph_hints_reload()
1016 out_dir = af_direction_compute( out_x, out_y ); in af_glyph_hints_reload()
[all …]
/external/libconstrainedcrypto/include/constrainedcrypto/
Dp256.h126 p256_int *out_x,
133 p256_int *out_x,
140 p256_int *out_x, p256_int *out_y);
/external/freetype/src/base/
Dftcalc.c913 FT_Pos out_x, in ft_corner_orientation() argument
918 FT_Int64 delta = (FT_Int64)in_x * out_y - (FT_Int64)in_y * out_x; in ft_corner_orientation()
931 ADD_LONG( FT_ABS( in_y ), FT_ABS( out_x ) ) <= 131071L ) in ft_corner_orientation()
934 FT_Long z2 = MUL_LONG( in_y, out_x ); in ft_corner_orientation()
951 ft_multo64( (FT_UInt32)in_y, (FT_UInt32)out_x, &z2 ); in ft_corner_orientation()
977 FT_Pos out_x, in ft_corner_is_flat() argument
980 FT_Pos ax = in_x + out_x; in ft_corner_is_flat()
1006 d_out = FT_HYPOT( out_x, out_y ); in ft_corner_is_flat()
/external/libconstrainedcrypto/
Dp256_ec.c988 static void select_affine_point(felem out_x, felem out_y, const limb* table, in select_affine_point() argument
992 memset(out_x, 0, sizeof(felem)); in select_affine_point()
1002 out_x[j] |= *table & mask; in select_affine_point()
1012 static void select_jacobian_point(felem out_x, felem out_y, felem out_z, in select_jacobian_point() argument
1016 memset(out_x, 0, sizeof(felem)); in select_jacobian_point()
1032 out_x[j] |= *table & mask; in select_jacobian_point()
1225 void p256_base_point_mul(const p256_int* n, p256_int* out_x, p256_int* out_y) { in p256_base_point_mul() argument
1234 from_montgomery(out_x, x_affine); in p256_base_point_mul()
1247 const p256_int* in_y, p256_int* out_x, p256_int* out_y) { in p256_points_mul_vartime() argument
1252 p256_clear(out_x); in p256_points_mul_vartime()
[all …]
/external/freetype/include/freetype/internal/
Dftcalc.h323 FT_Pos out_x,
335 FT_Pos out_x,
/external/freetype/src/pshinter/
Dpshalgo.c935 FT_Pos in_x, in_y, out_x, out_y; in psh_glyph_compute_inflections() local
970 out_x = start->org_u - before->org_u; in psh_glyph_compute_inflections()
973 } while ( out_x == 0 && out_y == 0 ); in psh_glyph_compute_inflections()
975 orient_prev = psh_corner_orientation( in_x, in_y, out_x, out_y ); in psh_glyph_compute_inflections()
980 in_x = out_x; in psh_glyph_compute_inflections()
997 out_x = after->org_u - end->org_u; in psh_glyph_compute_inflections()
1000 } while ( out_x == 0 && out_y == 0 ); in psh_glyph_compute_inflections()
1002 orient_cur = psh_corner_orientation( in_x, in_y, out_x, out_y ); in psh_glyph_compute_inflections()
1021 in_x = out_x; in psh_glyph_compute_inflections()
/external/mesa3d/src/gallium/state_trackers/xa/
Dxa_renderer.c56 map_point(float *mat, float x, float y, float *out_x, float *out_y) in map_point() argument
59 *out_x = x; in map_point()
64 *out_x = mat[0] * x + mat[3] * y + mat[6]; in map_point()
69 *out_x *= w; in map_point()
/external/tensorflow/tensorflow/core/kernels/neon/
Ddepthwiseconv_float.h524 for (int out_x = out_x_loop_start; out_x < out_x_loop_end; out_x++) {
/external/kernel-headers/original/uapi/linux/
Domapfb.h115 __u32 out_x, out_y; member
/external/tensorflow/tensorflow/contrib/lite/kernels/internal/optimized/
Ddepthwiseconv_float.h882 for (int out_x = out_x_loop_start; out_x < out_x_loop_end; out_x++) {
Doptimized_ops.h2744 for (int out_x = 0; out_x < output_width; ++out_x) { in AveragePool() local
2745 const int in_x_origin = (out_x * stride_width) - pad_width; in AveragePool()
2796 output_data + Offset(output_dims, 0, out_x, out_y, batch); in AveragePool()
2964 for (int out_x = 0; out_x < output_width; ++out_x) { in MaxPool() local
2965 const int in_x_origin = (out_x * stride_width) - pad_width; in MaxPool()
3009 output_data + Offset(output_dims, 0, out_x, out_y, batch); in MaxPool()
Ddepthwiseconv_uint8.h1583 for (int out_x = out_x_loop_start; out_x < out_x_loop_end; out_x++) {