Home
last modified time | relevance | path

Searched refs:new_y (Results 1 – 16 of 16) sorted by relevance

/external/tensorflow/tensorflow/tools/android/test/jni/object_tracking/
Dimage_neon.cc48 for (int new_y = 0; new_y < height_; ++new_y) { in Downsample2x32ColumnsNeon() local
111 for (int new_y = 0; new_y < height_; ++new_y) { in Downsample4x32ColumnsNeon() local
/external/libchrome/ui/gfx/geometry/
Drect_f.cc166 float new_y = y(); in AdjustToFit() local
170 AdjustAlongAxis(rect.y(), rect.height(), &new_y, &new_height); in AdjustToFit()
171 SetRect(new_x, new_y, new_width, new_height); in AdjustToFit()
182 float new_y = y() + (height() - new_height) / 2; in ClampToCenteredSize() local
183 SetRect(new_x, new_y, new_width, new_height); in ClampToCenteredSize()
Drect.cc240 int new_y = y(); in AdjustToFit() local
244 AdjustAlongAxis(rect.y(), rect.height(), &new_y, &new_height); in AdjustToFit()
245 SetRect(new_x, new_y, new_width, new_height); in AdjustToFit()
256 int new_y = y() + (height() - new_height) / 2; in ClampToCenteredSize() local
257 SetRect(new_x, new_y, new_width, new_height); in ClampToCenteredSize()
/external/python/cpython2/Lib/idlelib/
DAutoCompleteWindow.py230 new_y = text.winfo_rooty() + y
234 new_y += cy
237 new_y -= acw_height
238 acw.wm_geometry("+%d+%d" % (new_x, new_y))
/external/python/cpython3/Lib/idlelib/
Dautocomplete_w.py251 new_y = text.winfo_rooty() + y
255 new_y += cy
258 new_y -= acw_height
259 acw.wm_geometry("+%d+%d" % (new_x, new_y))
/external/webp/src/dsp/
Dyuv.c209 const int new_y = (int)dst[i] + diff_y; in SharpYUVUpdateY_C() local
210 dst[i] = clip_y(new_y); in SharpYUVUpdateY_C()
Dyuv_neon.c206 const int new_y = (int)(dst[i]) + diff_y; in SharpYUVUpdateY_NEON() local
207 dst[i] = clip_y_NEON(new_y); in SharpYUVUpdateY_NEON()
Dyuv_sse2.c784 const int new_y = (int)dst[i] + diff_y; in SharpYUVUpdateY_SSE2() local
785 dst[i] = clip_y(new_y); in SharpYUVUpdateY_SSE2()
/external/pdfium/core/fxcrt/
Dfx_coordinates.h23 CFX_PTemplate(BaseType new_x, BaseType new_y) : x(new_x), y(new_y) {} in CFX_PTemplate() argument
142 CFX_VTemplate(BaseType new_x, BaseType new_y) in CFX_VTemplate() argument
143 : CFX_PTemplate<BaseType>(new_x, new_y) {} in CFX_VTemplate()
/external/libwebm/mkvmuxer/
Dmkvmuxer.h376 void set_y(float new_y) { y_ = new_y; } in set_y() argument
/external/libaom/libaom/third_party/libwebm/mkvmuxer/
Dmkvmuxer.h376 void set_y(float new_y) { y_ = new_y; } in set_y() argument
/external/libvpx/libvpx/third_party/libwebm/mkvmuxer/
Dmkvmuxer.h376 void set_y(float new_y) { y_ = new_y; } in set_y() argument
/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_tex_sample.c1039 int new_x, new_y, max_x; in get_texel_cube_seamless() local
1045 new_y = y; in get_texel_cube_seamless()
1063 new_y = get_next_ycoord(face, 0, max_x -1, x, y); in get_texel_cube_seamless()
1070 new_y = get_next_ycoord(face, 1, max_x -1, x, y); in get_texel_cube_seamless()
1074 new_y = get_next_ycoord(face, 2, max_x -1, x, y); in get_texel_cube_seamless()
1078 new_y = get_next_ycoord(face, 3, max_x -1, x, y); in get_texel_cube_seamless()
1082 return get_texel_3d_no_border(sp_sview, addr, new_x, new_y, layer + face); in get_texel_cube_seamless()
/external/tensorflow/tensorflow/python/autograph/g3doc/reference/
Dlimitations.md313 new_y = self.y + 1
314 return MyClass(new_y)
/external/python/cpython2/Doc/library/
Dcurses.rst1016 .. method:: window.move(new_y, new_x)
1018 Move cursor to ``(new_y, new_x)``.
1028 .. method:: window.mvwin(new_y, new_x)
1030 Move the window so its upper-left corner is at ``(new_y, new_x)``.
/external/python/cpython3/Doc/library/
Dcurses.rst1094 .. method:: window.move(new_y, new_x)
1096 Move cursor to ``(new_y, new_x)``.
1106 .. method:: window.mvwin(new_y, new_x)
1108 Move the window so its upper-left corner is at ``(new_y, new_x)``.