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

1 2 3 4

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
atm_eni.h 14 int tx,rx; /* values are in percent and must be > 100 */ member in struct:eni_multipliers
  /external/dropbear/libtommath/
bn_fast_s_mp_mul_digs.c 53 int tx, ty; local
59 tx = ix - ty;
62 tmpx = a->dp + tx;
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
50 tx = ix - ty;
53 tmpx = a->dp + tx;
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
54 tx = ix - ty;
57 tmpx = a->dp + tx;
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);
  /system/core/libpixelflinger/
picker.cpp 135 const texture_t& tx = c->state.texture[i]; local
136 if (tx.enable) {
138 t |= GGL_BUILD_NEEDS(tx.surface.format, T_FORMAT);
139 t |= GGL_BUILD_NEEDS(ggl_env_to_needs(tx.env), T_ENV);
141 if (tx.s_coord==GGL_ONE_TO_ONE && tx.t_coord==GGL_ONE_TO_ONE) {
146 t |= GGL_BUILD_NEEDS(ggl_wrap_to_needs(tx.s_wrap), T_S_WRAP);
147 t |= GGL_BUILD_NEEDS(ggl_wrap_to_needs(tx.t_wrap), T_T_WRAP);
149 if (tx.mag_filter == GGL_LINEAR) {
152 if (tx.min_filter == GGL_LINEAR)
    [all...]
  /bionic/libm/src/
e_rem_pio2f.c 65 double tx[1],ty[2]; local
92 tx[0] = z;
93 n = __kernel_rem_pio2(tx,ty,e0,1,1,two_over_pi);
s_fma.c 57 double c, cc, hx, hy, p, q, tx, ty; local
153 tx = xs - hx;
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
148 tx = xs - hx;
156 q = hx * ty + tx * hy;
158 cc = p - c + q + tx * ty;
e_rem_pio2.c 79 double tx[3]; local
159 tx[i] = (double)((int32_t)(z));
160 z = (z-tx[i])*two24;
162 tx[2] = z;
164 while(tx[nx-1]==zero) nx--; /* skip zero term */
165 n = __kernel_rem_pio2(tx,y,e0,nx,2,two_over_pi);
  /external/openssl/crypto/rc4/
rc4_enc.c 74 register RC4_INT x,y,tx,ty; local
115 tx=d[x], \
116 y=(tx+y)&0xff, \
118 d[y]=tx, \
120 (RC4_CHUNK)d[(tx+ty)&0xff]\
267 tx=d[x]; \
268 y=(tx+y)&0xff; \
270 d[y]=tx; \
271 (out) = d[(tx+ty)&0xff]^ (in);
  /external/fdlibm/
e_rem_pio2.c 91 double tx[3]; local
166 tx[i] = (double)((int)(z));
167 z = (z-tx[i])*two24;
169 tx[2] = z;
171 while(tx[nx-1]==zero) nx--; /* skip zero term */
172 n = __kernel_rem_pio2(tx,y,e0,nx,2,two_over_pi);
  /external/skia/gpu/src/
FlingState.cpp 86 float tx = fDirection.fX * dist; local
89 tx = sk_float_round2int(tx);
92 matrix->setTranslate(tx, ty);
93 // printf("---- evaluate (%g %g)\n", tx, ty);
GrTextContext.cpp 272 GrFixed tx = GrIntToFixed(glyph->fAtlasLocation.fX); local
283 texture->normalizeFixedX(tx),
285 texture->normalizeFixedX(tx + width),
291 fVertices[2*fCurrVertex+1].setXRectFan(texture->normalizeFixedX(tx),
293 texture->normalizeFixedX(tx + width),
  /external/skia/src/utils/
SkLayer.cpp 137 SkScalar tx = SkScalarMul(m_anchorPoint.fX, m_size.width()); local
139 matrix->preTranslate(tx, ty);
141 matrix->preTranslate(-tx, -ty);
SkNinePatch.cpp 92 const SkScalar tx = SkIntToScalar(xDivs[x]); local
93 vx += computeVertexDelta(x & 1, tx, prev, stretchX);
94 prev = tx;
97 texs->set(tx, ty); texs++;
  /external/webkit/Source/WebCore/platform/graphics/android/
Layer.cpp 122 SkScalar tx = SkScalarMul(m_anchorPoint.fX, m_size.width()); local
124 matrix->preTranslate(tx, ty);
126 matrix->preTranslate(-tx, -ty);
ImageAndroid.cpp 316 float tx = phase.x() + srcRect.x() * patternTransform.a(); local
318 matrix.postTranslate(SkFloatToScalar(tx), SkFloatToScalar(ty));
  /external/nist-sip/java/gov/nist/javax/sip/
EventScanner.java 168 SIPServerTransaction tx = (SIPServerTransaction) sipStack local
171 if (tx != null && !tx.passToListener()) {
177 // to the listener (tx == INVITE ST, terminated upon sending
181 && tx.isInviteTransaction() &&
182 ( tx.getLastResponse().getStatusCode()/100 == 2 ||
193 "transaction already exists! " + tx);
264 // Set the tx state to terminated so it is removed from the
287 SIPTransaction tx = eventWrapper.transaction; local
288 if (tx != null)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/media/
MediaPlayerDemo_Audio.java 40 private TextView tx; field in class:MediaPlayerDemo_Audio
45 tx = new TextView(this);
46 setContentView(tx);
84 tx.setText("Playing audio...");
  /external/chromium/chrome/browser/sync/engine/
syncer_proto_util.cc 146 std::string tx, rx; local
147 msg.SerializeToString(&tx);
151 tx, &rx, &http_response
  /frameworks/base/graphics/java/android/renderscript/
AllocationAdapter.java 104 int tx = mAdaptedAllocation.mType.getX(); local
109 if ((tx==1) && (ty == 1) && (tz == 1)) {
113 if (tx > 1) tx >>= 1;
118 mCurrentDimX = tx;
  /external/skia/bench/
MatrixBench.cpp 239 float tx = fMatrix[SkMatrix::kMTransX]; local
243 dst->fX = SkScalarMulAdd(src->fX, mx, tx);
278 float tx = fMatrix[SkMatrix::kMTransX]; local
282 dst->fX = src->fX * mx + tx;
  /external/skia/samplecode/
SampleVertices.cpp 158 const SkScalar tx = SkIntToScalar(texWidth); local
176 t[i+1].set(i*tx/n, ty);
179 t[n+1].set(tx, ty);
188 const SkScalar tx = SkIntToScalar(texWidth); local
206 t[i*2 + 0].set(tx * i / n, ty);
207 t[i*2 + 1].set(tx * i / n, 0);
212 t[2*n + 0].set(tx, ty);
213 t[2*n + 1].set(tx, 0);
  /external/skia/src/views/
SkTouchGesture.cpp 86 float tx = fDirection.fX * dist; local
89 tx = (float)sk_float_round2int(tx);
92 matrix->setTranslate(tx, ty);
93 // printf("---- evaluate (%g %g)\n", tx, ty);
  /frameworks/base/libs/rs/
rsType.cpp 88 uint32_t tx = mDimX; local
93 mLODs[lod].mX = tx;
97 offset += tx * rsMax(ty, 1u) * rsMax(tz, 1u) * mElement->getSizeBytes();
98 if (tx > 1) tx >>= 1;

Completed in 843 milliseconds

1 2 3 4