Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/tools/android/test/jni/object_tracking/
Dimage_neon.cc37 const int new_x = orig_x >> 1; in Downsample2x32ColumnsNeon() local
44 uint8_t* ptr_dst = (*this)[0] + new_x; in Downsample2x32ColumnsNeon()
100 const int new_x = orig_x >> 2; in Downsample4x32ColumnsNeon() local
107 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/xla/service/
Dqr_expander.cc235 auto new_x = Mul(x, predecessor_mask, in QrBlock() local
239 new_x = Add( in QrBlock()
240 new_x, Select(Broadcast(successor_mask, batch_dims), v, ZerosLike(v)), in QrBlock()
245 new_x = BroadcastInDim(new_x, ConcatVectors(batch_dims, {m, n}), in QrBlock()
247 a = Select(Eq(iota_mn, j), new_x, a); in QrBlock()
/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/tensorflow/tensorflow/compiler/aot/tests/
Dmake_test_graphs.py173 new_x = x.assign_add([42.0])
174 array_ops.stack([old_x, new_x], name='result')
/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.py250 new_x = text.winfo_rootx() + min(x, max(0, text_width - acw_width))
259 acw.wm_geometry("+%d+%d" % (new_x, new_y))
/external/tensorflow/tensorflow/python/eager/
Dops_test.py510 new_x = constant_op.constant(9.5)
511 self.assertEqual(new_x.numpy(), 9.5)
/external/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/libvpx/libvpx/third_party/libwebm/mkvmuxer/
Dmkvmuxer.h374 void set_x(float new_x) { x_ = new_x; } in set_x() argument
/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_tex_sample.c1039 int new_x, new_y, max_x; in get_texel_cube_seamless() local
1044 new_x = x; in get_texel_cube_seamless()
1062 new_x = get_next_xcoord(face, 0, max_x -1, x, y); in get_texel_cube_seamless()
1069 new_x = get_next_xcoord(face, 1, max_x -1, x, y); in get_texel_cube_seamless()
1073 new_x = get_next_xcoord(face, 2, max_x -1, x, y); in get_texel_cube_seamless()
1077 new_x = get_next_xcoord(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/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)``.
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.keras.backend.pbtxt557 argspec: "args=[\'x\', \'new_x\'], varargs=None, keywords=None, defaults=None"
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.keras.backend.pbtxt565 argspec: "args=[\'x\', \'new_x\'], varargs=None, keywords=None, defaults=None"
/external/tensorflow/tensorflow/compiler/mlir/xla/transforms/
Dlegalize_tf.cc5896 Value new_x = in QRBlock() local
5901 new_x = builder->create<BroadcastInDimOp>( in QRBlock()
5902 loc, a_type, new_x, GetI64ElementsAttr(dim_ids, builder)); in QRBlock()
5911 a = builder->create<SelectOp>(loc, a_type, xa_mask, new_x, a); in QRBlock()
/external/tensorflow/tensorflow/python/keras/
Dbackend.py1869 def update(x, new_x): argument
1870 return state_ops.assign(x, new_x)