Home
last modified time | relevance | path

Searched refs:abs_y (Results 1 – 6 of 6) sorted by relevance

/external/tensorflow/tensorflow/tools/android/test/jni/object_tracking/
Dutils.h215 const T abs_y = fabs(y); in FastAtan2() local
218 T r = (x - abs_y) / (x + abs_y); in FastAtan2()
221 T r = (x + abs_y) / (abs_y - x); in FastAtan2()
/external/libkmsxx/utils/
Dkmstouch.cpp167 int32_t abs_y = s_abs_vals[ABS_Y]; in handle_event() local
170 int32_t y = (abs_y - min_y) * (fb->height() - 1) / (max_y - min_y); in handle_event()
172 printf("%d, %d -> %d, %d\n", abs_x, abs_y, x, y); in handle_event()
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dbinary_ops.cc138 auto abs_y = xla::Abs(y); in FloorDivImpl() local
139 auto t = xla::Neg(xla::Sub(xla::Add(abs_x, abs_y), one)); in FloorDivImpl()
140 return xla::Select(different_sign, xla::Div(t, abs_y), xla::Div(x, y)); in FloorDivImpl()
/external/tensorflow/tensorflow/core/kernels/
Dcwise_ops.h399 T abs_y = (y < T(0)) ? -y : y;
402 T abs_y = std::abs(y);
404 return -(abs_x + abs_y - 1) / abs_y;
417 Packet abs_y = pabs(y);
419 Packet ratio_rounded = pdiv(pnegate(psub(padd(abs_x, abs_y), ones)), abs_y);
/external/libaom/libaom/aom_dsp/x86/
Dhighbd_adaptive_quantize_sse2.c29 __m128i abs_y = invert_sign_32_sse2(*y, sign); in highbd_mul_shift_sse2() local
30 __m128i prod_lo = _mm_mul_epu32(*x, abs_y); in highbd_mul_shift_sse2()
32 const __m128i mult_hi = _mm_srli_epi64(abs_y, 32); in highbd_mul_shift_sse2()
/external/tensorflow/tensorflow/compiler/mlir/xla/transforms/
Dlegalize_tf_patterns.td130 // T abs_y = std::abs(y);
131 // return -(abs_x + abs_y - 1) / abs_y;