/system/core/libpixelflinger/codeflinger/ |
GGLAssembler.cpp | 373 int tx = scratches.obtain(); local 375 AND(AL, 0, tx, Rx, imm(GGL_DITHER_MASK)); 377 ADD(AL, 0, tx, tx, reg_imm(ty, LSL, GGL_DITHER_ORDER_SHIFT)); 378 ORR(AL, 0, parts.count.reg, tx, reg_imm(parts.count.reg, LSL, 16)); [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/tls/ |
libtommath.c | 2427 int tx, ty; local 3255 int tx, ty, iy; local [all...] |
/external/webkit/WebCore/rendering/ |
SVGRootInlineBox.cpp | 339 SVGRootInlineBoxPaintWalker(SVGRootInlineBox* rootBox, SVGResourceFilter* rootFilter, RenderObject::PaintInfo paintInfo, int tx, int ty) 344 , m_boundingBox(tx + rootBox->x(), ty + rootBox->y(), rootBox->width(), rootBox->height()) 351 , m_tx(tx) 664 void SVGRootInlineBox::paint(RenderObject::PaintInfo& paintInfo, int tx, int ty) 673 FloatRect boundingBox(tx + x(), ty + y(), width(), height()); 678 SVGRootInlineBoxPaintWalker walkerCallback(this, filter, paintInfo, tx, ty); [all...] |
RenderText.cpp | 215 void RenderText::absoluteRects(Vector<IntRect>& rects, int tx, int ty) 218 rects.append(IntRect(tx + box->x(), ty + box->y(), box->width(), box->height())); [all...] |
/external/proguard/src/proguard/gui/splash/ |
OverrideGraphics2D.java | 569 public void setTransform(AffineTransform Tx) 571 graphics.setTransform(Tx); 584 public void transform(AffineTransform Tx) 586 graphics.transform(Tx); 589 public void translate(double tx, double ty) 591 graphics.translate(tx, ty);
|
/external/webkit/WebCore/inspector/front-end/ |
InjectedScript.js | [all...] |
/external/webkit/WebCore/platform/graphics/wx/ |
GraphicsContextWx.cpp | 368 void GraphicsContext::translate(float tx, float ty) 373 gc->Translate(tx, ty);
|
/frameworks/base/opengl/java/android/opengl/ |
Matrix.java | 254 final float tx = -(right + left) * r_width; local 260 m[mOffset +12] = tx;
|
/external/kernel-headers/original/linux/ |
atmdev.h | 34 __HANDLE_ITEM(tx); /* TX okay */ \ 35 __HANDLE_ITEM(tx_err); /* TX errors */ \ 131 #define __ATM_LM_MKLOC(n) ((n)) /* Local (i.e. loop TX to RX) */ 132 #define __ATM_LM_MKRMT(n) ((n) << 8) /* Remote (i.e. loop RX to TX) */ 172 #define ATM_SC_TX 2048 /* enable TX single-copy */
|
serial_core.h | 203 __u32 tx; member in struct:uart_icount 219 unsigned int fifosize; /* tx fifo size */
|
/external/skia/src/gl/ |
SkGL.h | 268 SkShader::TileMode tx, SkShader::TileMode ty);
|
/hardware/msm7k/libaudio-qsd8k/ |
AudioHardware.h | 33 /* Source (TX) devices */ 112 int tx; member in struct:android::msm_bt_endpoint
|
AudioHardware.cpp | 171 LOGE("BT name %s (tx,rx)=(%d,%d)", mBTEndpoints[i].name, mBTEndpoints[i].tx, mBTEndpoints[i].rx); 367 return set_mic_mute(mMicMute); //always set current TX device 423 mBluetoothIdTx = mBTEndpoints[i].tx; 829 tx_acdb_id = mBTEndpoints[0].tx; 839 tx_acdb_id = mBTEndpoints[1].tx; 854 LOGV("doAudioRouteOrMute: rx acdb %d, tx acdb %d\n", rx_acdb_id, tx_acdb_id); [all...] |
/external/webkit/WebCore/html/canvas/ |
CanvasRenderingContext2D.cpp | 395 void CanvasRenderingContext2D::translate(float tx, float ty) 403 if (!isfinite(tx) | !isfinite(ty)) 407 newTransform.translate(tx, ty); 414 c->translate(tx, ty); 415 m_path.transform(AffineTransform().translate(-tx, -ty)); [all...] |
/external/dropbear/libtommath/pre_gen/ |
mpi.c | 433 int tx, ty; local 439 tx = ix - ty; 442 tmpx = a->dp + tx; 446 while (tx++ < a->used && ty-- >= 0) { ... } 448 iy = MIN(a->used-tx, ty+1); 536 int tx, ty, iy; local 541 tx = ix - ty; 544 tmpx = a->dp + tx; 548 while (tx++ < a->used && ty-- >= 0) { ... } 550 iy = MIN(a->used-tx, ty+1) 638 int tx, ty, iy; local [all...] |
/frameworks/base/core/java/android/os/ |
BatteryStats.java | 893 long tx = u.getTcpBytesSent(which); local 898 if (rx > 0 || tx > 0) dumpLine(pw, uid, category, NETWORK_DATA, rx, tx); [all...] |
/external/wpa_supplicant/ |
libtommath.c | 2169 int tx, ty; local [all...] |
wpa.c | 963 wpa_hexdump(MSG_MSGDUMP, "WPA: TX EAPOL-Key", msg, msg_len); 1702 int tx, key_rsc_len, keyidx; member in struct:wpa_gtk_data [all...] |
/frameworks/base/libs/surfaceflinger/ |
LayerBase.cpp | 130 if (mCurrentState.transform.tx() == x && mCurrentState.transform.ty() == y) 271 mLeft = tr.tx();
|
/external/webkit/WebCore/platform/graphics/win/ |
FontCGWin.cpp | 232 initialGlyphTransform.tx = 0;
|
/development/samples/GlobalTime/src/com/android/globaltime/ |
GlobalTime.java | 1172 float tx = mGLView.getTranslateX(); local [all...] |
/external/webkit/WebCore/editing/ |
SelectionController.cpp | [all...] |
/frameworks/base/awt/com/android/internal/awt/ |
AndroidGraphics2D.java | 649 public static float[] createMatrix(AffineTransform Tx) { 651 Tx.getMatrix(at); 679 public static Matrix createMatrixObj(AffineTransform Tx) { 682 m.setValues(createMatrix(Tx)); 687 public void setTransform(AffineTransform Tx) { 690 * if(Tx.isIdentity()) { mM = new Matrix(); } 692 mM.setValues(createMatrix(Tx)); 706 public void transform(AffineTransform Tx) { 708 m.setValues(createMatrix(Tx)); 713 public void translate(double tx, double ty) [all...] |
/system/wlan/ti/sta_dk_4_0_4_32/common/src/hal/hw_ctrl/ |
whalHwMboxConfig.c | 160 * Tx queue config 183 * DESCRIPTION: configure Data path and TX complete parameters [all...] |
/external/quake/quake/src/QW/dxsdk/sdk/inc/ |
d3drmobj.h | 335 STDMETHOD(Translate)(THIS_ D3DVALUE tx, D3DVALUE ty, D3DVALUE tz) PURE;
422 STDMETHOD(Translate)(THIS_ D3DVALUE tx, D3DVALUE ty, D3DVALUE tz) PURE;
|