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

  /bionic/libm/upstream-freebsd/lib/msun/src/
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_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_remquol.c 74 int ix,iy,n,q,sx,sxy; local
79 sxy = sx ^ uy.bits.sign;
99 *quo = (sxy ? -1 : 1);
142 *quo = (sxy ? -q : q);
176 *quo = (sxy ? -q : q);
  /external/chromium_org/third_party/libwebp/enc/
filter.c 154 double sxy = stats->xym * stats->w - xmym; local
163 fnum = (2 * xmym + C1) * (2 * sxy + C2);
173 const double sxy = s->xym * s->w - s->xm * s->ym; local
174 const double SSE = iw2 * (sxx + syy - 2. * sxy);
  /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/chromium_org/third_party/libyuv/util/
ssim.cc 85 const double sxy = xym * iw - iwx * iwy; local
91 const double s = (sxy + C33) / (sxsy + C33);

Completed in 349 milliseconds