Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/examples/android/jni/object_tracking/
Dimage_neon.cc49 for (int new_y = 0; new_y < height_; ++new_y) { in Downsample2x32ColumnsNeon() local
112 for (int new_y = 0; new_y < height_; ++new_y) { in Downsample4x32ColumnsNeon() local
/external/libmojo/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.cc242 int new_y = y(); in AdjustToFit() local
246 AdjustAlongAxis(rect.y(), rect.height(), &new_y, &new_height); in AdjustToFit()
247 SetRect(new_x, new_y, new_width, new_height); in AdjustToFit()
258 int new_y = y() + (height() - new_height) / 2; in ClampToCenteredSize() local
259 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.py233 new_y = text.winfo_rooty() + y
237 new_y += cy
240 new_y -= acw_height
241 acw.wm_geometry("+%d+%d" % (new_x, new_y))
/external/pdfium/core/fxcrt/
Dfx_coordinates.h22 CFX_PTemplate(BaseType new_x, BaseType new_y) : x(new_x), y(new_y) {} in CFX_PTemplate() argument
141 CFX_VTemplate(BaseType new_x, BaseType new_y) in CFX_VTemplate() argument
142 : CFX_PTemplate<BaseType>(new_x, new_y) {} in CFX_VTemplate()
/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/libvncserver/webclients/novnc/include/
Ddisplay.js333 copyImage: function (old_x, old_y, new_x, new_y, w, h) { argument
337 var y2 = new_y - this._viewportLoc.y;
/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_tex_sample.c903 int new_x, new_y, max_x; in get_texel_cube_seamless() local
909 new_y = y; in get_texel_cube_seamless()
927 new_y = get_next_ycoord(face, 0, max_x -1, x, y); in get_texel_cube_seamless()
934 new_y = get_next_ycoord(face, 1, max_x -1, x, y); in get_texel_cube_seamless()
938 new_y = get_next_ycoord(face, 2, max_x -1, x, y); in get_texel_cube_seamless()
942 new_y = get_next_ycoord(face, 3, max_x -1, x, y); in get_texel_cube_seamless()
946 return get_texel_3d_no_border(sp_sview, addr, new_x, new_y, layer + face); in get_texel_cube_seamless()
/external/libvpx/libvpx/third_party/libwebm/mkvmuxer/
Dmkvmuxer.h376 void set_y(float new_y) { y_ = new_y; } in set_y() argument
/external/python/cpython2/Doc/library/
Dcurses.rst1004 .. method:: window.move(new_y, new_x)
1006 Move cursor to ``(new_y, new_x)``.
1016 .. method:: window.mvwin(new_y, new_x)
1018 Move the window so its upper-left corner is at ``(new_y, new_x)``.
/external/python/cpython3/Doc/library/
Dcurses.rst1041 .. method:: window.move(new_y, new_x)
1043 Move cursor to ``(new_y, new_x)``.
1053 .. method:: window.mvwin(new_y, new_x)
1055 Move the window so its upper-left corner is at ``(new_y, new_x)``.
/external/tensorflow/tensorflow/contrib/rnn/python/ops/
Drnn_cell.py1821 new_y = gy * inputs + (1.0 - gy) * y # passed thru depth
1823 return new_y, new_state