HomeSort by relevance Sort by last modified time
    Searched defs:ty (Results 1 - 25 of 42) sorted by null

1 2

  /external/dropbear/libtommath/
bn_fast_s_mp_mul_digs.c 53 int tx, ty; local
58 ty = MIN(b->used-1, ix);
59 tx = ix - ty;
63 tmpy = b->dp + ty;
66 while (tx++ < a->used && ty-- >= 0) { ... }
68 iy = MIN(a->used-tx, ty+1);
bn_fast_s_mp_mul_high_digs.c 45 int tx, ty, iy; local
49 ty = MIN(b->used-1, ix);
50 tx = ix - ty;
54 tmpy = b->dp + ty;
57 while (tx++ < a->used && ty-- >= 0) { ... }
59 iy = MIN(a->used-tx, ty+1);
bn_fast_s_mp_sqr.c 22 * (ty-tx) so that it never happens. You double all those
45 int tx, ty, iy; local
53 ty = MIN(a->used-1, ix);
54 tx = ix - ty;
58 tmpy = a->dp + ty;
61 while (tx++ < a->used && ty-- >= 0) { ... }
63 iy = MIN(a->used-tx, ty+1);
65 /* now for squaring tx can never equal ty
69 iy = MIN(iy, (ty-tx+1)>>1);
  /bionic/libm/src/
e_rem_pio2f.c 65 double tx[1],ty[2]; local
93 n = __kernel_rem_pio2(tx,ty,e0,1,1,two_over_pi);
94 y[0] = ty[0];
95 y[1] = ty[0] - y[0];
s_fma.c 57 double c, cc, hx, hy, p, q, tx, ty; local
158 ty = ys - hy;
161 q = hx * ty + tx * hy;
163 cc = p - c + q + tx * ty;
s_fmal.c 52 long double c, cc, hx, hy, p, q, tx, ty; local
153 ty = ys - hy;
156 q = hx * ty + tx * hy;
158 cc = p - c + q + tx * ty;
  /external/openssl/crypto/rc4/
rc4_enc.c 74 register RC4_INT x,y,tx,ty; local
117 ty=d[y], \
119 d[x]=ty, \
120 (RC4_CHUNK)d[(tx+ty)&0xff]\
269 d[x]=ty=d[y]; \
271 (out) = d[(tx+ty)&0xff]^ (in);
  /external/skia/src/utils/
SkLayer.cpp 138 SkScalar ty = SkScalarMul(m_anchorPoint.fY, m_size.height()); local
139 matrix->preTranslate(tx, ty);
141 matrix->preTranslate(-tx, -ty);
SkNinePatch.cpp 57 const SkScalar vy, const SkScalar ty,
62 texs->set(0, ty); texs++;
71 texs->set(tx, ty); texs++;
74 texs->set(SkIntToScalar(width), ty); texs++; local
200 const SkScalar ty = SkIntToScalar(yDivs[y]); local
204 vy += ty;
206 fillRow(verts, texs, vy, ty, bounds, xDivs, numXDivs,
  /external/webkit/WebCore/platform/graphics/android/
AndroidAnimation.cpp 210 float tX, float tY, float tZ)
216 m_toY = tY;
222 float tX, float tY, float tZ)
228 m_toScaleY = tY;
239 float ty = m_toY; local
241 m_fromY = ty;
ImageAndroid.cpp 317 float ty = phase.y() + srcRect.y() * patternTransform.d(); local
318 matrix.postTranslate(SkFloatToScalar(tx), SkFloatToScalar(ty));
  /frameworks/base/libs/rs/
rsType.cpp 92 uint32_t ty = mDimY; local
97 mLODs[lod].mY = ty;
100 offset += tx * rsMax(ty, 1u) * rsMax(tz, 1u) * mElement->getSizeBytes();
102 if (ty > 1) ty >>= 1;
  /frameworks/base/services/surfaceflinger/
LayerBase.h 219 int ty() const { return mTop; } function in class:android::LayerBase
Transform.cpp 133 int Transform::ty() const { function in class:android::Transform
146 void Transform::set(float tx, float ty)
149 mMatrix[2][1] = ty;
152 if (isZero(tx) && isZero(ty)) {
277 out = reg.translate(tx(), ty());
  /external/dropbear/
loginrec.c 689 register struct ttyent *ty; local
694 while ((struct ttyent *)0 != (ty = getttyent())) {
696 if (!strncmp(ty->ty_name, ut->ut_line, sizeof(ut->ut_line)))
701 if((struct ttyent *)0 == ty) {
    [all...]
  /frameworks/base/opengl/java/android/opengl/
Matrix.java 255 final float ty = -(top + bottom) * r_height; local
261 m[mOffset +13] = ty;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
IconFactory.java 242 int ty = (SY + ofy - p.y) / 2; local
243 gc.drawText(s, tx, ty, true /* isTransparent */);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
SpriteTextRenderer.java 236 float ty = sy - height * 0.5f; local
237 mLabels.draw(gl, tx, ty, labelId);
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Matrix.java 670 float ty, sy = dst.height() / src.height(); local
683 ty = dst.top - src.top * sy;
700 ty += diff;
707 mValues[5] = ty;
    [all...]
  /external/qemu/android/skin/
trackball.c 279 double ty = yy*(2./DOT_GRID); local
280 double x0 = origin[0] + axis1[0]*tx + axis2[0]*ty;
281 double y0 = origin[1] + axis1[1]*tx + axis2[1]*ty;
282 double z0 = origin[2] + axis1[2]*tx + axis2[2]*ty;
  /external/skia/src/core/
SkMatrix.cpp 409 SkScalar ty, sy = SkScalarDiv(dst.height(), src.height()); local
422 ty = dst.fTop - SkScalarMul(src.fTop, sy);
439 ty += diff;
446 fMat[kMTransY] = ty;
764 Sk64 tx, ty; local
779 set_muladdmul(&ty, fMat[kMSkewY], fMat[kMTransX], -fMat[kMScaleX], fMat[kMTransY]);
780 // check tx,ty for overflow
781 clzNumer = SkCLZ(SkAbs32(tx.fHi) | SkAbs32(ty.fHi));
795 inv->fMat[kMTransY] = SkMulShift(ty.getShiftRight(33 - clzNumer), scale, sk64shift);
836 SkScalar ty = m.fMat[kMTransY] local
870 SkScalar ty = m.fMat[kMTransY]; local
910 SkScalar ty = m.fMat[kMTransY]; local
    [all...]
  /external/webkit/WebCore/platform/chromium/
PopupMenuChromium.cpp 439 int ty = y(); local
441 r.move(-tx, -ty);
443 gc->translate(static_cast<float>(tx), static_cast<float>(ty));
445 gc->translate(-static_cast<float>(tx), -static_cast<float>(ty));
459 int ty = y(); local
462 gc->drawRect(IntRect(tx, ty, width(), kBorderSize));
463 gc->drawRect(IntRect(tx, ty, kBorderSize, height()));
464 gc->drawRect(IntRect(tx, ty + height() - kBorderSize, width(), kBorderSize));
465 gc->drawRect(IntRect(tx + width() - kBorderSize, ty, kBorderSize, height()));
764 int ty = y() - scrollY() local
    [all...]
  /external/webkit/WebCore/rendering/
RenderLayerBacking.cpp 892 int ty = y - m_owningLayer->renderBoxY(); local
    [all...]
  /external/wpa_supplicant/
libtommath.c 2169 int tx, ty; local
    [all...]
  /frameworks/base/opengl/libagl/
matrix.cpp 872 const GLfloat ty = -(top + bottom) * r_height; local
879 f[13] = ty;

Completed in 2079 milliseconds

1 2