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

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_remquof.c 33 u_int32_t q,sxy; local
37 sxy = (hx ^ hy) & 0x80000000;
49 *quo = (sxy ? -1 : 1);
92 *quo = (sxy ? -q : q);
120 *quo = (sxy ? -q : q);
s_remquo.c 35 u_int32_t lx,ly,lz,q,sxy; local
39 sxy = (hx ^ hy) & 0x80000000;
54 *quo = (sxy ? -1 : 1);
118 *quo = (sxy ? -q : q);
153 *quo = (sxy ? -q : q);
s_remquol.c 74 int ix,iy,n,q,sx,sxy; local
79 sxy = sx ^ uy.bits.sign;
98 *quo = (sxy ? -1 : 1);
140 *quo = (sxy ? -q : q);
171 *quo = (sxy ? -q : q);
  /development/samples/TicTacToeLib/src/com/example/android/tictactoe/library/
GameView.java 207 int sxy = mSxy; local
208 int s3 = sxy * 3;
212 for (int i = 0, k = sxy; i < 2; i++, k += sxy) {
217 for (int j = 0, k = 0, y = y7; j < 3; j++, y += sxy) {
218 for (int i = 0, x = x7; i < 3; i++, k++, x += sxy) {
247 int y = y7 + mWinRow * sxy + sxy / 2;
251 int x = x7 + mWinCol * sxy + sxy / 2;
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/fitting/
HarmonicCoefficientsGuesser.java 199 double sxy = 0.0; local
230 sxy += x * f2Integral;
237 double c1 = sy2 * sxz - sxy * syz;
238 double c2 = sxy * sxz - sx2 * syz;
239 double c3 = sx2 * sy2 - sxy * sxy;
  /external/tensorflow/tensorflow/examples/android/jni/object_tracking/
utils_neon.cc 128 float sxy = GetSum(accum); local
132 sxy += values1[offset] * values2[offset];
135 const float cross_correlation_neon = sxy / num_vals;
utils.h 305 float sxy = 0.0f; local
307 sxy += values1[offset] * values2[offset];
310 const float cross_correlation = sxy / num_vals;
  /external/webp/src/dsp/
ssim.c 40 const int64_t sxy = (int64_t)stats->xym * N - xmym; // can be negative local
44 const uint64_t num_S = (2 * (uint64_t)(sxy < 0 ? 0 : sxy) + C2) >> 8;
  /external/autotest/client/site_tests/video_VideoDecodeMemoryUsage/
video_VideoDecodeMemoryUsage.py 115 sxy = sum(u * v for u, v in zip(x, y))
116 beta = float(n * sxy - sx * sy) / (n * sxx - sx * sx)
  /external/libyuv/files/util/
ssim.cc 96 const double sxy = xym * iw - iwx * iwy; local
102 const double s = (sxy + C33) / (sxsy + C33);
  /external/subsampling-scale-image-view/library/src/main/java/com/davemorrissey/labs/subscaleview/
SubsamplingScaleImageView.java     [all...]
  /external/webrtc/talk/media/testdata/
h264-svc-99-640x360.rtpdump     [all...]

Completed in 606 milliseconds