Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/examples/android/jni/object_tracking/
Dimage_neon.cc38 const int new_x = orig_x >> 1; in Downsample2x32ColumnsNeon() local
45 uint8_t* ptr_dst = (*this)[0] + new_x; in Downsample2x32ColumnsNeon()
101 const int new_x = orig_x >> 2; in Downsample4x32ColumnsNeon() local
108 uint8_t* ptr_dst = (*this)[0] + new_x; in Downsample4x32ColumnsNeon()
/external/libchrome/ui/gfx/geometry/
Drect_f.cc165 float new_x = x(); in AdjustToFit() local
169 AdjustAlongAxis(rect.x(), rect.width(), &new_x, &new_width); in AdjustToFit()
171 SetRect(new_x, new_y, new_width, new_height); in AdjustToFit()
181 float new_x = x() + (width() - new_width) / 2; in ClampToCenteredSize() local
183 SetRect(new_x, new_y, new_width, new_height); in ClampToCenteredSize()
Drect.cc239 int new_x = x(); in AdjustToFit() local
243 AdjustAlongAxis(rect.x(), rect.width(), &new_x, &new_width); in AdjustToFit()
245 SetRect(new_x, new_y, new_width, new_height); in AdjustToFit()
255 int new_x = x() + (width() - new_width) / 2; in ClampToCenteredSize() local
257 SetRect(new_x, new_y, new_width, new_height); in ClampToCenteredSize()
/external/tensorflow/tensorflow/compiler/aot/tests/
Dmake_test_graphs.py156 new_x = x.assign_add(42.0)
157 array_ops.stack([old_x, new_x], name='result')
/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/tensorflow/tensorflow/compiler/xla/client/lib/
Dqr.cc207 auto new_x = Mul(x, predecessor_mask, in QRBlock() local
210 a = DynamicUpdateSliceInMinorDims(a, new_x, {j}); in QRBlock()
/external/python/cpython2/Lib/idlelib/
DAutoCompleteWindow.py229 new_x = text.winfo_rootx() + min(x, max(0, text_width - acw_width))
238 acw.wm_geometry("+%d+%d" % (new_x, new_y))
/external/python/cpython3/Lib/idlelib/
Dautocomplete_w.py237 new_x = text.winfo_rootx() + min(x, max(0, text_width - acw_width))
246 acw.wm_geometry("+%d+%d" % (new_x, new_y))
/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_tex_sample.c886 int new_x, new_y, max_x; in get_texel_cube_seamless() local
891 new_x = x; in get_texel_cube_seamless()
909 new_x = get_next_xcoord(face, 0, max_x -1, x, y); in get_texel_cube_seamless()
916 new_x = get_next_xcoord(face, 1, max_x -1, x, y); in get_texel_cube_seamless()
920 new_x = get_next_xcoord(face, 2, max_x -1, x, y); in get_texel_cube_seamless()
924 new_x = get_next_xcoord(face, 3, max_x -1, x, y); in get_texel_cube_seamless()
929 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.h374 void set_x(float new_x) { x_ = new_x; } in set_x() argument
/external/libaom/libaom/third_party/libwebm/mkvmuxer/
Dmkvmuxer.h374 void set_x(float new_x) { x_ = new_x; } in set_x() argument
/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.rst1061 .. method:: window.move(new_y, new_x)
1063 Move cursor to ``(new_y, new_x)``.
1073 .. method:: window.mvwin(new_y, new_x)
1075 Move the window so its upper-left corner is at ``(new_y, new_x)``.
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.keras.backend.pbtxt549 argspec: "args=[\'x\', \'new_x\'], varargs=None, keywords=None, defaults=None"
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.keras.backend.pbtxt553 argspec: "args=[\'x\', \'new_x\'], varargs=None, keywords=None, defaults=None"
/external/tensorflow/tensorflow/python/keras/
Dbackend.py1353 def update(x, new_x): argument
1354 return state_ops.assign(x, new_x)