Home
last modified time | relevance | path

Searched refs:end_y (Results 1 – 22 of 22) sorted by relevance

/external/ComputeLibrary/arm_compute/core/
DWindowIterator.h212 void iterate_2D_internal(M &&on_new_row_size, int end_x, int end_y) in iterate_2D_internal() argument
215 if(end_y == _position.y()) in iterate_2D_internal()
239 iterate_over_dim1(end_y + _w.y().step()); in iterate_2D_internal()
244 if(_position[1] != end_y) in iterate_2D_internal()
248 iterate_over_dim1(end_y); in iterate_2D_internal()
/external/libkmsxx/kms++util/src/
Dtestpat.cpp102 static void draw_test_pattern_part(IFramebuffer& fb, unsigned start_y, unsigned end_y, YUVType yuvt) in draw_test_pattern_part() argument
112 for (y = start_y; y < end_y; y++) { in draw_test_pattern_part()
123 for (y = start_y; y < end_y; y++) { in draw_test_pattern_part()
132 for (y = start_y; y < end_y; y++) { in draw_test_pattern_part()
142 for (y = start_y; y < end_y; y += 2) { in draw_test_pattern_part()
/external/ComputeLibrary/src/core/helpers/
DPoolingHelpers.h45 const int end_y = std::min(start_y + pool_size_y, upper_bound_h); in calculate_avg_scale_pool3d() local
53 return 1.f / ((end_y - start_y) * (end_x - start_x) * (end_z - start_z)); in calculate_avg_scale_pool3d()
66 const int end_y = std::min(start_y + pool_size_y, upper_bound_h); in calculate_avg_scale_pool2d() local
72 return 1.f / ((end_y - start_y) * (end_x - start_x)); in calculate_avg_scale_pool2d()
/external/llvm/test/Transforms/InstCombine/
D2008-09-02-VectorCrash.ll3 define void @entry(i32 %m_task_id, i32 %start_x, i32 %end_x, i32 %start_y, i32 %end_y) {
7 %2 = icmp slt i32 0, %end_y ; <i1> [#uses=1]
/external/pdfium/xfa/fgas/graphics/
Dcfgas_gegraphics.cpp294 float end_y = m_info.fillColor.GetShading()->GetEndPoint().y; in FillPathWithShading() local
302 float y_span = end_y - start_y; in FillPathWithShading()
336 ((start_y - end_y) * (start_y - end_y)) - in FillPathWithShading()
345 ((y - start_y) * (end_y - start_y)) + in FillPathWithShading()
/external/ComputeLibrary/src/core/
DAccessWindowStatic.cpp32 …WindowStatic::AccessWindowStatic(ITensorInfo *info, int start_x, int start_y, int end_x, int end_y) in AccessWindowStatic() argument
33 : _info(info), _start_x(start_x), _start_y(start_y), _end_x(end_x), _end_y(end_y) in AccessWindowStatic()
DAccessWindowStatic.h57 AccessWindowStatic(ITensorInfo *info, int start_x, int start_y, int end_x, int end_y);
/external/deqp/external/openglcts/modules/glesext/geometry_shader/
DesextcGeometryShaderRendering.cpp2146 float end_y = 0; in GeometryShaderRenderingLinesCase() local
2157 end_y = 0.0f; in GeometryShaderRenderingLinesCase()
2163 end_y = 1; in GeometryShaderRenderingLinesCase()
2181 …quad_coordinates.push_back(tcu::Vec4(1 - dx_multiplier * dx, end_y - dy_multiplier * dy, 1, w)); /… in GeometryShaderRenderingLinesCase()
2182 …quad_coordinates.push_back(tcu::Vec4(-1 + dx_multiplier * dx, end_y - dy_multiplier * dy, 1, w)); … in GeometryShaderRenderingLinesCase()
3416 int end_y = 0; in verify() local
3430 end_y = start_y; in verify()
3445 end_y = start_y + single_rt_height - 6; /* skip the corners */ in verify()
3460 end_y = start_y; in verify()
3475 end_y = start_y + single_rt_height - 6; /* skip the corners */ in verify()
[all …]
/external/tensorflow/tensorflow/lite/kernels/internal/optimized/integer_ops/
Ddepthwise_conv_hybrid_3x3_filter.h3154 int32 end_y = row_end;
3164 end_y = std::min(params.output_height - 1, end_y);
3191 for (; out_y <= end_y - 8; out_y += 8) {
3203 for (; out_y <= end_y - 4; out_y += 4) {
3214 for (; out_y <= end_y - 2; out_y += 2) {
3223 for (; out_y < end_y; out_y++) {
Ddepthwise_conv_3x3_filter.h2996 int32 end_y = row_end;
3007 end_y = std::min(params.output_height - 1, end_y);
3034 for (; out_y <= end_y - 8; out_y += 8) {
3045 for (; out_y <= end_y - 4; out_y += 4) {
3055 for (; out_y <= end_y - 2; out_y += 2) {
3064 for (; out_y < end_y; out_y++) {
/external/ComputeLibrary/src/cpu/kernels/
DCpuIm2ColKernel.cpp198 const int end_y = start_y + kernel_height * dilation_y; in linearize_volume_nhwc() local
201 …if((start_y >= 0) && (end_y < input_h) && (start_x >= 0) && (end_x < input_w) && (dilation_x == 1)… in linearize_volume_nhwc()
203 for(int y = start_y; y < end_y; y += dilation_y) in linearize_volume_nhwc()
212 for(int y = start_y; y < end_y; y += dilation_y) in linearize_volume_nhwc()
/external/tensorflow/tensorflow/tools/android/test/jni/object_tracking/
Dkeypoint_detector.cc462 const int end_y = start_y + quadrant_height; in FindFastKeypoints() local
465 for (int img_y = start_y; img_y < end_y; ++img_y) { in FindFastKeypoints()
501 for (int img_y = start_y + 1; img_y < end_y - 1; ++img_y) { in FindFastKeypoints()
/external/ComputeLibrary/tests/validation/reference/
DDeconvolutionLayer.cpp127 const int end_y = height_scaled - deconv_pad_bottom; in deconvolution_layer() local
129 for(int yi = start_y, in_y = 0; yi < end_y; yi += stride_y, in_y++) in deconvolution_layer()
/external/ComputeLibrary/src/core/CL/cl_kernels/nchw/
Dpooling_layer.cl58 const int end_y = min(start_y + pool_size_y, upper_bound_h);
63 return ((end_y - start_y) * (end_x - start_x));
114 const int end_y = min((int)POOL_SIZE_Y, (int)(SRC_HEIGHT - y_coords));
117 for(int y = 0; y < end_y; ++y)
/external/libgav1/src/dsp/x86/
Dwarp_sse4.cc495 const int end_y = (block_end_y + 4) << subsampling_y; in Warp_SSE4_1() local
509 } while (src_y < end_y); in Warp_SSE4_1()
/external/pdfium/core/fpdfapi/render/
Dcpdf_rendershading.cpp113 float end_y = pCoords->GetFloatAt(3); in DrawAxialShading() local
128 float y_span = end_y - start_y; in DrawAxialShading()
181 float end_y = pCoords->GetFloatAt(4); in DrawRadialShading() local
198 const float dy = end_y - start_y; in DrawRadialShading()
/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_sidebar.py275 end_x, end_y = self.get_line_screen_position(end_line)
289 map(int, lerp(start_y, end_y, steps=11)),
295 x=end_x, y=end_y)
/external/pdfium/core/fxge/skia/
Dfx_skia_device.cpp1387 float end_y = pCoords->GetFloatAt(3); in DrawShading() local
1388 SkPoint pts[] = {{start_x, start_y}, {end_x, end_y}}; in DrawShading()
1428 float end_y = pCoords->GetFloatAt(4); in DrawShading() local
1430 SkPoint pts[] = {{start_x, start_y}, {end_x, end_y}}; in DrawShading()
/external/tensorflow/tensorflow/lite/kernels/internal/optimized/
Ddepthwiseconv_uint8_3x3_filter.h5706 int32 end_y = row_end;
5716 end_y = std::min(params.output_height - 1, end_y);
5743 for (; out_y <= end_y - 8; out_y += 8) {
5754 for (; out_y <= end_y - 4; out_y += 4) {
5764 for (; out_y <= end_y - 2; out_y += 2) {
5773 for (; out_y < end_y; out_y++) {
/external/ComputeLibrary/src/cpu/kernels/pool2d/neon/
Dquantized.h285 const int end_y = std::min(start_y + pool_size, upper_bound_h); in scale_vector_q16x8() local
313 float scale = 1.f / ((end_y - start_y) * (end_x - c_start_x)); in scale_vector_q16x8()
/external/ComputeLibrary/cl_kernels/nchw/
Dpooling_layer.clembed1279 const int end_y = min(start_y + pool_size_y, upper_bound_h);
1284 return ((end_y - start_y) * (end_x - start_x));
1308 const int end_y = min((int)POOL_SIZE_Y, (int)(SRC_HEIGHT - y_coords));
1311 for(int y = 0; y < end_y; ++y)
/external/libgav1/src/tile/
Dtile.cc1995 const int end_y = in ResetEntropyContext() local
1999 end_y - start_y); in ResetEntropyContext()
2001 end_y - start_y); in ResetEntropyContext()