HomeSort by relevance Sort by last modified time
    Searched refs:new_y (Results 1 - 16 of 16) sorted by null

  /external/tensorflow/tensorflow/examples/android/jni/object_tracking/
image_neon.cc 49 for (int new_y = 0; new_y < height_; ++new_y) {
112 for (int new_y = 0; new_y < height_; ++new_y) {
  /bionic/libm/upstream-freebsd/lib/msun/src/
catrig.c 150 * If B_is_usable is set to 0, sqrt_A2my2 = sqrt(A*A - y*y), and new_y = y.
152 * rescaled, and new_y is similarly rescaled.
156 double *sqrt_A2my2, double *new_y)
208 *new_y = y;
218 *new_y = y * (2 / DBL_EPSILON);
257 *new_y = y * (4 / DBL_EPSILON / DBL_EPSILON);
279 double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; local
325 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y);
329 ry = atan2(new_y, sqrt_A2my2);
catrigf.c 91 float *sqrt_A2my2, float *new_y)
118 *new_y = y;
123 *new_y = y * (2 / FLT_EPSILON);
140 *new_y = y * (4 / FLT_EPSILON / FLT_EPSILON);
150 float x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; local
186 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y);
190 ry = atan2f(new_y, sqrt_A2my2);
catrigl.c 110 long double *B, long double *sqrt_A2my2, long double *new_y)
137 *new_y = y;
142 *new_y = y * (2 / LDBL_EPSILON);
159 *new_y = y * (4 / LDBL_EPSILON / LDBL_EPSILON);
169 long double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; local
205 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y);
209 ry = atan2l(new_y, sqrt_A2my2);
  /external/libchrome/ui/gfx/geometry/
rect_f.cc 166 float new_y = y(); local
170 AdjustAlongAxis(rect.y(), rect.height(), &new_y, &new_height);
171 SetRect(new_x, new_y, new_width, new_height);
182 float new_y = y() + (height() - new_height) / 2; local
183 SetRect(new_x, new_y, new_width, new_height);
rect.cc 240 int new_y = y(); local
244 AdjustAlongAxis(rect.y(), rect.height(), &new_y, &new_height);
245 SetRect(new_x, new_y, new_width, new_height);
256 int new_y = y() + (height() - new_height) / 2; local
257 SetRect(new_x, new_y, new_width, new_height);
  /external/python/cpython2/Lib/idlelib/
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/
autocomplete_w.py 238 new_y = text.winfo_rooty() + y
242 new_y += cy
245 new_y -= acw_height
246 acw.wm_geometry("+%d+%d" % (new_x, new_y))
  /external/webp/src/dsp/
yuv.c 209 const int new_y = (int)dst[i] + diff_y; local
210 dst[i] = clip_y(new_y);
yuv_neon.c 196 const int16x8_t F = vaddq_s16(C, D); // new_y
206 const int new_y = (int)(dst[i]) + diff_y; local
207 dst[i] = clip_y_NEON(new_y);
yuv_sse2.c 773 const __m128i F = _mm_add_epi16(C, D); // new_y
784 const int new_y = (int)dst[i] + diff_y; local
785 dst[i] = clip_y(new_y);
    [all...]
  /external/pdfium/core/fxcrt/
fx_coordinates.h 22 CFX_PTemplate(BaseType new_x, BaseType new_y) : x(new_x), y(new_y) {}
141 CFX_VTemplate(BaseType new_x, BaseType new_y)
142 : CFX_PTemplate<BaseType>(new_x, new_y) {}
  /external/libaom/libaom/third_party/libwebm/mkvmuxer/
mkvmuxer.h 376 void set_y(float new_y) { y_ = new_y; }
    [all...]
  /external/libvpx/libvpx/third_party/libwebm/mkvmuxer/
mkvmuxer.h 376 void set_y(float new_y) { y_ = new_y; }
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_tex_sample.c 886 int new_x, new_y, max_x; local
892 new_y = y;
910 new_y = get_next_ycoord(face, 0, max_x -1, x, y);
917 new_y = get_next_ycoord(face, 1, max_x -1, x, y);
921 new_y = get_next_ycoord(face, 2, max_x -1, x, y);
925 new_y = get_next_ycoord(face, 3, max_x -1, x, y);
929 return get_texel_3d_no_border(sp_sview, addr, new_x, new_y, layer + face);
    [all...]
  /external/tensorflow/tensorflow/contrib/rnn/python/ops/
rnn_cell.py     [all...]

Completed in 467 milliseconds