Home
last modified time | relevance | path

Searched refs:tempSrc (Results 1 – 5 of 5) sorted by relevance

/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/
DTerminalView.java55 private RectF tempSrc, tempDst; field in TerminalView
103 tempSrc = new RectF(); in TerminalView()
104 tempSrc.set(0.0f, 0.0f, 1.0f, 1.0f); in TerminalView()
135 scaleMatrix.setRectToRect(tempSrc, tempDst, scaleType); in scaleCursors()
/external/skia/src/gpu/
DGrContextPriv.cpp641 SkPixmap tempSrc(tempSrcII, tempBuffer.get(), tempSrcII.minRowBytes()); in writeSurfacePixels() local
642 if (!src.readPixels(tempSrc)) { in writeSurfacePixels()
646 buffer = tempSrc.addr(); in writeSurfacePixels()
647 rowBytes = tempSrc.rowBytes(); in writeSurfacePixels()
651 memcpy(row.get(), tempSrc.addr(0, y), rowBytes); in writeSurfacePixels()
652 memcpy(tempSrc.writable_addr(0, y), tempSrc.addr(0, height - 1 - y), rowBytes); in writeSurfacePixels()
653 memcpy(tempSrc.writable_addr(0, height - 1 - y), row.get(), rowBytes); in writeSurfacePixels()
/external/skqp/src/gpu/
DGrContext.cpp546 SkPixmap tempSrc(tempSrcII, tempBuffer.get(), tempSrcII.minRowBytes()); in writeSurfacePixels() local
547 if (!src.readPixels(tempSrc)) { in writeSurfacePixels()
551 buffer = tempSrc.addr(); in writeSurfacePixels()
552 rowBytes = tempSrc.rowBytes(); in writeSurfacePixels()
556 memcpy(row.get(), tempSrc.addr(0, y), rowBytes); in writeSurfacePixels()
557 memcpy(tempSrc.writable_addr(0, y), tempSrc.addr(0, height - 1 - y), rowBytes); in writeSurfacePixels()
558 memcpy(tempSrc.writable_addr(0, height - 1 - y), row.get(), rowBytes); in writeSurfacePixels()
/external/mesa3d/src/mesa/state_tracker/
Dst_cb_texture.c2231 GLfloat *tempSrc = in fallback_copy_texsubimage() local
2234 if (tempSrc && texDest) { in fallback_copy_texsubimage()
2257 tempSrc); in fallback_copy_texsubimage()
2271 GL_RGBA, GL_FLOAT, tempSrc, /* src */ in fallback_copy_texsubimage()
2278 free(tempSrc); in fallback_copy_texsubimage()
/external/icu/icu4c/source/test/cintltst/
Dnucnvtst.c4336 const char* tempSrc = cSource;
4359 if(*ctarget != *tempSrc){
4360 …("j915[%d] Expected : \\x%02X \t Got: \\x%02X\n", (int)(ctarget-cTarget), *ctarget,(int)*tempSrc) ;
4363 ++tempSrc;