HomeSort by relevance Sort by last modified time
    Searched refs:ys (Results 51 - 75 of 99) sorted by null

1 23 4

  /bionic/libm/src/
s_fma.c 56 double xs, ys, zs; local
73 ys = frexp(y, &ey);
155 p = ys * split;
156 hy = ys - p;
158 ty = ys - hy;
s_fmal.c 51 long double xs, ys, zs; local
68 ys = frexpl(y, &ey);
150 p = ys * split;
151 hy = ys - p;
153 ty = ys - hy;
  /frameworks/base/voip/jni/rtp/
EchoSuppressor.cpp 127 // Compute Ys.
128 uint16_t ys[mWindowSize]; local
137 ys[i] = sum >> mShift;
144 ySum += ys[i];
145 y2Sum += ys[i] * ys[i];
157 xySum += mXs[i + j] * ys[j];
  /external/skia/src/ports/
SkFontHost_mac_atsui.cpp 340 int ys[5]; local
342 ys[0] = -get_be16(head, SFNT_HEAD_YMAX_OFFSET);
343 ys[1] = -get_be16(hhea, SFNT_HHEA_ASCENT_OFFSET);
344 ys[2] = -get_be16(hhea, SFNT_HHEA_DESCENT_OFFSET);
345 ys[3] = -get_be16(head, SFNT_HEAD_YMIN_OFFSET);
346 ys[4] = get_be16(hhea, SFNT_HHEA_LEADING_OFFSET);
349 if (ys[0] > ys[1]) {
350 ys[0] = ys[1]
    [all...]
  /external/icu4c/i18n/
hebrwcal.cpp 561 int32_t ys = startOfYear(year, status); // 1st day of year local
562 int32_t dayOfYear = (d - ys);
567 ys = startOfYear(year, status);
568 dayOfYear = (d - ys);
  /external/opencv/cv/src/
cvsamplers.cpp 619 double ys = A22*y + A23; \
624 (unsigned)(cvFloor(ys)-1) < (unsigned)(src_size.height - 3) && \
631 int iys = cvFloor( ys ); \
633 double a = xs - ixs, b = ys - iys, a1 = 1.f - a; \
637 ys += A21; \
    [all...]
cvfundam.cpp 1341 const float* ys = xs + s_plane_stride; local
1387 const double* ys = xs + s_plane_stride; local
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
Matrix3f.java 134 float ys = y * s; local
138 mMat[6] = zx*nc + ys;
142 mMat[2] = zx*nc - ys;
Matrix4f.java 177 float ys = y * s; local
181 mMat[ 8] = zx*nc + ys;
185 mMat[ 2] = zx*nc - ys;
  /frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
Matrix3f.java 134 float ys = y * s; local
138 mMat[6] = zx*nc + ys;
142 mMat[2] = zx*nc - ys;
Matrix4f.java 177 float ys = y * s; local
181 mMat[ 8] = zx*nc + ys;
185 mMat[ 2] = zx*nc - ys;
  /external/jmonkeyengine/engine/src/bullet-native/
jmeBulletUtil.cpp 227 // compute xs/ys/zs first to save 6 multiplications, since xs/ys/zs
230 float ys = y * s; local
233 float xy = x * ys;
236 float yy = y * ys;
238 float yw = w * ys;
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/util/
Converter.java 147 // compute xs/ys/zs first to save 6 multiplications, since xs/ys/zs
150 float ys = oldQuaternion.getY() * s; local
153 float xy = oldQuaternion.getX() * ys;
156 float yy = oldQuaternion.getY() * ys;
158 float yw = oldQuaternion.getW() * ys;
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Quaternion.java 402 // compute xs/ys/zs first to save 6 multiplications, since xs/ys/zs
405 float ys = y * s; local
408 float xy = x * ys;
411 float yy = y * ys;
413 float yw = w * ys;
447 // compute xs/ys/zs first to save 6 multiplications, since xs/ys/zs
450 float ys = y * s; local
453 float xy = x * ys;
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
dtoa.cpp 1194 unsigned long long borrow, carry, y, ys; local
1196 uint32_t borrow, carry, y, ys; local
1217 ys = *sx++ * (unsigned long long)q + carry;
1218 carry = ys >> 32;
1219 y = *bx - (ys & 0xffffffffUL) - borrow;
1224 ys = (si & 0xffff) * q + carry;
1225 zs = (si >> 16) * q + (ys >> 16);
1227 y = (*bx & 0xffff) - (ys & 0xffff) - borrow;
1249 ys = *sx++ + carry;
1250 carry = ys >> 32
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
PathQt.cpp 282 double ys = yc - radius; local
312 m_path.arcMoveTo(xs, ys, width, height, sa);
318 m_path.arcTo(xs, ys, width, height, sa, span);
  /frameworks/rs/
rsMatrix4x4.cpp 225 const float ys = y * s; local
229 m[ 8] = zx*nc + ys;
233 m[ 2] = zx*nc - ys;
  /frameworks/support/renderscript/v8/rs_support/
rsMatrix4x4.cpp 225 const float ys = y * s; local
229 m[ 8] = zx*nc + ys;
233 m[ 2] = zx*nc - ys;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridLayoutPainter.java 336 int[] ys = cellBounds.getSecond(); local
339 for (int row = 0; row < ys.length; row++) {
340 int y = ys[row] + b.y;
  /development/samples/AccelerometerPlay/src/com/example/android/accelerometerplay/
AccelerometerPlayActivity.java 437 final float ys = mMetersToPixelsY; local
448 final float y = yc - particleSystem.getPosY(i) * ys;
  /bionic/libc/stdlib/
strtod.c 1919 ULong carry, q, ys; local
    [all...]
  /external/chromium/base/third_party/dmg_fp/
dtoa.cc 2116 ULLong borrow, carry, y, ys; variable
2118 ULong borrow, carry, y, ys; variable
    [all...]
  /frameworks/base/media/mca/filterfw/native/core/
shader_program.cpp 522 const float ys = 1.0f / static_cast<float>(tile_y_count_); local
534 GetTileCoords(source_coords_, x, y + ys, &s[4], &s[5]);
535 GetTileCoords(source_coords_, x + xs, y + ys, &s[6], &s[7]);
540 GetTileCoords(target_coords_, x, y + ys, &t[4], &t[5]);
541 GetTileCoords(target_coords_, x + xs, y + ys, &t[6], &t[7]);
    [all...]
  /external/skia/src/utils/
SkMatrix44.cpp 184 double ys = y * s; local
196 SkDoubleToMScalar(zxC - ys), // trans x
202 SkDoubleToMScalar(zxC + ys), // persp x
  /frameworks/base/libs/hwui/
Matrix.cpp 247 const float ys = y * s; local
252 data[8] = zx * nc + ys;
256 data[2] = zx * nc - ys;

Completed in 1812 milliseconds

1 23 4