HomeSort by relevance Sort by last modified time
    Searched refs:tx (Results 26 - 50 of 324) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/src/gpu/
FlingState.cpp 79 float tx = fDirection.fX * dist; local
82 tx = sk_float_round2int(tx);
85 matrix->setTranslate(tx, ty);
86 // printf("---- evaluate (%g %g)\n", tx, ty);
GrPathUtils.h 83 float tx = fM[2]; local
90 uv->fX = sx * xy->fX + kx * xy->fY + tx;
  /external/skia/src/gpu/
FlingState.cpp 79 float tx = fDirection.fX * dist; local
82 tx = sk_float_round2int(tx);
85 matrix->setTranslate(tx, ty);
86 // printf("---- evaluate (%g %g)\n", tx, ty);
GrPathUtils.h 83 float tx = fM[2]; local
90 uv->fX = sx * xy->fX + kx * xy->fY + tx;
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_rem_pio2f.c 50 double tx[1],ty[1]; local
80 tx[0] = z;
81 n = __kernel_rem_pio2(tx,ty,e0,1,0);
e_rem_pio2.c 58 double tx[3],ty[2]; local
177 tx[i] = (double)((int32_t)(z));
178 z = (z-tx[i])*two24;
180 tx[2] = z;
182 while(tx[nx-1]==zero) nx--; /* skip zero term */
183 n = __kernel_rem_pio2(tx,ty,e0,nx,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...]
  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_norm_tmp.h 61 GLfloat tx, ty, tz; local
64 tx = ux * m0 + uy * m1 + uz * m2;
69 GLdouble len = tx*tx + ty*ty + tz*tz;
72 out[i][0] = tx * scale;
90 GLfloat tx, ty, tz; local
93 tx = ux * m0 + uy * m1 + uz * m2;
99 out[i][0] = tx * len;
128 GLfloat tx, ty, tz; local
131 tx = ux * m0
155 GLfloat tx, ty, tz; local
    [all...]
  /external/chromium_org/third_party/openssl/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/mesa3d/src/mesa/math/
m_norm_tmp.h 61 GLfloat tx, ty, tz; local
64 tx = ux * m0 + uy * m1 + uz * m2;
69 GLdouble len = tx*tx + ty*ty + tz*tz;
72 out[i][0] = tx * scale;
90 GLfloat tx, ty, tz; local
93 tx = ux * m0 + uy * m1 + uz * m2;
99 out[i][0] = tx * len;
128 GLfloat tx, ty, tz; local
131 tx = ux * m0
155 GLfloat tx, ty, tz; local
    [all...]
  /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/chromium_org/third_party/WebKit/Source/core/svg/
SVGTransform.idl 37 [StrictTypeChecking] void setTranslate(float tx, float ty);
SVGMatrix.h 43 SVGMatrix translate(double tx, double ty)
46 copy.translate(tx, ty);
  /frameworks/base/graphics/java/android/renderscript/
AllocationAdapter.java 105 int tx = mAdaptedAllocation.mType.getX(); local
110 if ((tx==1) && (ty == 1) && (tz == 1)) {
114 if (tx > 1) tx >>= 1;
119 mCurrentDimX = tx;
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
ParticleDepositionHeightMap.java 131 int tx, ty; local
201 tx = (sx + dx[(jj + m) % 8]) % (size);
206 if (tempBuffer[tx][ty] + 1.0f < tempBuffer[sx][sy]) {
207 tempBuffer[tx][ty] += 1.0f;
209 sx = tx;
244 tx = maxx;
248 for (x = sx; x <= tx; x++) {
  /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...]
  /external/chromium_org/tools/page_cycler/database/
common.js 54 function(tx) {
55 tx.executeSql('CREATE TABLE IF NOT EXISTS Test (ID INT, Foo TEXT)', [],
56 function(tx, data) {}, function(tx, error) {});
57 tx.executeSql('DELETE FROM Test');
61 tx.executeSql('INSERT INTO Test VALUES (?, ?)',
  /external/freetype/src/cff/
cf2glue.h 82 CF2_F16Dot16 tx; member in struct:CF2_Matrix_
  /frameworks/native/services/surfaceflinger/
Transform.h 69 float tx() const;
74 void set(float tx, float ty);
  /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/gm/
shadertext.cpp 39 static SkShader* MakeBitmapShader(SkShader::TileMode tx, SkShader::TileMode ty,
45 return SkShader::CreateBitmapShader(bmp, tx, ty);
159 for (size_t tx = 0; tx < SK_ARRAY_COUNT(tileModes); ++tx) {
161 shaders[shdIdx++] = MakeBitmapShader(tileModes[tx],
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
ConstraintPainter.java 580 int tx = targetBounds.centerX(); local
585 graphics.drawArrow(tx, ty + 2 * ARROW_SIZE, tx, ty, ARROW_SIZE);
587 graphics.drawArrow(tx, ty, tx, ty - margin, ARROW_SIZE);
593 graphics.drawArrow(tx, ty - 2 * ARROW_SIZE, tx, ty, ARROW_SIZE);
595 graphics.drawArrow(tx, ty, tx, ty + margin, ARROW_SIZE);
600 graphics.drawArrow(tx, ty - 2 * ARROW_SIZE, tx, ty, ARROW_SIZE)
735 int tx = targetBounds.x; local
744 int tx = targetBounds.x2(); local
    [all...]
  /external/aac/libFDK/src/
FDK_bitbuffer.cpp 169 UINT tx = (hBitBuf->Buffer [ byteOffset & byteMask] << 24) | local
176 tx <<= bitOffset;
177 tx |= hBitBuf->Buffer [(byteOffset+4) & byteMask] >> (8-bitOffset);
180 return (tx >> (32 - numberOfBits)) ;
225 UINT tx = hBitBuf->Buffer [(byteOffset-3) & byteMask] << 24 | local
231 tx >>= (8 - bitOffset) ;
235 tx |= hBitBuf->Buffer [(byteOffset-4) & byteMask] << (24 + bitOffset) ;
243 txa |= (tx & bitMaskR) << (31 - (i<<1));
244 txa |= (tx & bitMaskL) >> (31 - (i<<1));
  /external/bluetooth/bluedroid/stack/rfcomm/
port_utils.c 129 memset (&p_port->tx, 0, sizeof (p_port->tx));
221 while ((p_buf = (BT_HDR *)GKI_dequeue (&p_port->tx.queue)) != NULL)
224 p_port->tx.queue_size = 0;
419 BOOLEAN fc = p_port->tx.peer_fc
422 || (p_port->tx.queue_size > PORT_TX_HIGH_WM)
423 || (p_port->tx.queue.count > PORT_TX_BUF_HIGH_WM);
425 if (p_port->tx.user_fc == fc)
428 p_port->tx.user_fc = fc;
  /external/chromium_org/third_party/WebKit/Source/web/
PopupContainer.cpp 335 int tx = x(); local
338 r.move(-tx, -ty);
340 gc->translate(static_cast<float>(tx), static_cast<float>(ty));
342 gc->translate(-static_cast<float>(tx), -static_cast<float>(ty));
355 int tx = x(); local
359 gc->drawRect(IntRect(tx, ty, width(), borderSize));
360 gc->drawRect(IntRect(tx, ty, borderSize, height()));
361 gc->drawRect(IntRect(tx, ty + height() - borderSize, width(), borderSize));
362 gc->drawRect(IntRect(tx + width() - borderSize, ty, borderSize, height()));

Completed in 3014 milliseconds

12 3 4 5 6 7 8 91011>>