/external/tensorflow/tensorflow/examples/android/jni/object_tracking/ |
D | image_neon.cc | 49 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/ |
D | rect_f.cc | 166 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()
|
D | rect.cc | 242 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/ |
D | AutoCompleteWindow.py | 230 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/ |
D | autocomplete_w.py | 233 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/ |
D | fx_coordinates.h | 22 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/ |
D | yuv.c | 209 const int new_y = (int)dst[i] + diff_y; in SharpYUVUpdateY_C() local 210 dst[i] = clip_y(new_y); in SharpYUVUpdateY_C()
|
D | yuv_neon.c | 206 const int new_y = (int)(dst[i]) + diff_y; in SharpYUVUpdateY_NEON() local 207 dst[i] = clip_y_NEON(new_y); in SharpYUVUpdateY_NEON()
|
D | yuv_sse2.c | 784 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/ |
D | display.js | 333 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/ |
D | sp_tex_sample.c | 903 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/ |
D | mkvmuxer.h | 376 void set_y(float new_y) { y_ = new_y; } in set_y() argument
|
/external/python/cpython2/Doc/library/ |
D | curses.rst | 1004 .. 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/ |
D | curses.rst | 1041 .. 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/ |
D | rnn_cell.py | 1821 new_y = gy * inputs + (1.0 - gy) * y # passed thru depth 1823 return new_y, new_state
|