/external/qemu/distrib/sdl-1.2.12/src/video/bwindow/ |
SDL_BView.h | 40 xoff = yoff = 0; 50 yoff = y; 54 y = yoff; 58 y = (float)yoff; 86 if(xoff || yoff) { 88 dest.top = updateRect.top + yoff; 90 dest.bottom = updateRect.bottom + yoff; 99 if(xoff || yoff) { 101 dest.top = updateRect.top + yoff; 103 dest.bottom = updateRect.bottom + yoff; 113 int xoff, yoff; member in class:SDL_BView [all...] |
/frameworks/base/graphics/java/android/renderscript/ |
AllocationAdapter.java | 77 public void subData2D(int xoff, int yoff, int w, int h, int[] d) { 78 super.copy2DRangeFrom(xoff, yoff, w, h, d); 83 public void subData2D(int xoff, int yoff, int w, int h, float[] d) { 84 super.copy2DRangeFrom(xoff, yoff, w, h, d);
|
Allocation.java | 660 private void validate2DRange(int xoff, int yoff, int w, int h) { 665 if (xoff < 0 || yoff < 0) { 671 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY)) { 682 * @param yoff Y offset of the region to update 687 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, byte[] data) { 689 validate2DRange(xoff, yoff, w, h); 690 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local 694 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, short[] data) { 696 validate2DRange(xoff, yoff, w, h); 697 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID local 704 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local 711 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local 731 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, local 750 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, data); local [all...] |
RenderScript.java | 331 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes); 332 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes) { 334 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes); 336 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes); 337 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes) { 339 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes); 341 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes); 342 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes) { 344 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes); 346 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes) [all...] |
/external/jdiff/src/jdiff/ |
DiffMyers.java | 109 private int diag (int xoff, int xlim, int yoff, int ylim) 116 final int dmax = xlim - yoff; // Maximum valid diagonal. 117 final int fmid = xoff - yoff; // Center diagonal of top-down search. 184 while (x > xoff && y > yoff && xv[x - 1] == yv[y - 1]) { 217 && fd[fdiagoff + d] - d - yoff > 20) 288 private void compareseq (int xoff, int xlim, int yoff, int ylim) { 290 while (xoff < xlim && yoff < ylim && xvec[xoff] == yvec[yoff]) { 291 ++xoff; ++yoff; 294 while (xlim > xoff && ylim > yoff && xvec[xlim - 1] == yvec[ylim - 1]) [all...] |
/frameworks/base/core/java/android/widget/ |
PopupWindow.java | 877 public void showAsDropDown(View anchor, int xoff, int yoff) { 882 registerForScrollChanged(anchor, xoff, yoff); 890 updateAboveAnchor(findDropDownPosition(anchor, p, xoff, yoff)); [all...] |
/frameworks/base/libs/rs/ |
rsAdapter.cpp | 158 void Adapter2D::subData(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, const void *data) { 167 for (uint32_t line=yoff; line < (yoff+h); line++) { 231 void rsi_Adapter2DSubData(Context *rsc, RsAdapter2D va, uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, const void *data) { 233 a->subData(xoff, yoff, w, h, data);
|
rsAllocation.h | 84 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, 86 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, RsAllocationCubemapFace face,
|
rsAdapter.h | 85 void subData(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, const void *data);
|
rs_hal.h | 122 uint32_t xoff, uint32_t yoff, uint32_t lod, 126 uint32_t xoff, uint32_t yoff, uint32_t zoff,
|
rsAllocation.cpp | 88 void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, 93 //LOGE("data2d %p, %i %i %i %i %i %i %p %i", this, xoff, yoff, lod, face, w, h, data, sizeBytes); 101 rsc->mHal.funcs.allocation.data2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes); 105 void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, 443 void rsi_Allocation2DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, 446 a->data(rsc, xoff, yoff, lod, face, w, h, data, sizeBytes);
|
rs.spec | 171 param uint32_t yoff
|
/frameworks/base/libs/rs/driver/ |
rsdAllocation.cpp | 77 uint32_t xoff, uint32_t yoff, uint32_t lod, 88 RSD_CALL_GL(glTexSubImage2D, t, lod, xoff, yoff, w, h, drv->glFormat, drv->glType, ptr); 393 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, 404 dst += alloc->mHal.state.type->getLODFaceOffset(lod, face, xoff, yoff); 406 for (uint32_t line=yoff; line < (yoff+h); line++) { 417 Update2DTexture(rsc, alloc, data, xoff, yoff, lod, face, w, h); 422 uint32_t xoff, uint32_t yoff, uint32_t zoff, 436 uint32_t xoff, uint32_t yoff, uint32_t lod, 439 ptr += alloc->getType()->getLODOffset(lod, xoff, yoff); [all...] |
rsdAllocation.h | 77 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, 82 uint32_t xoff, uint32_t yoff, uint32_t zoff,
|
/frameworks/base/graphics/jni/ |
android_renderscript_RenderScript.cpp | 575 nAllocationData2D_s(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face, 579 LOG_API("nAllocation2DData_s, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, w, h, len); 581 rsAllocation2DData(con, (RsAllocation)alloc, xoff, yoff, lod, (RsAllocationCubemapFace)face, w, h, ptr, sizeBytes); 586 nAllocationData2D_b(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face, 590 LOG_API("nAllocation2DData_b, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, w, h, len); 592 rsAllocation2DData(con, (RsAllocation)alloc, xoff, yoff, lod, (RsAllocationCubemapFace)face, w, h, ptr, sizeBytes); 597 nAllocationData2D_i(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face, 601 LOG_API("nAllocation2DData_i, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, w, h, len) [all...] |
/frameworks/base/core/java/android/view/ |
ViewRootImpl.java | 1236 int yoff; local 1849 int yoff; local [all...] |
/hardware/ti/omap3/omx/video/src/openmax_il/prepost_processor/tests/ |
VPPTest.c | 100 static OMX_ERRORTYPE VPP_SetZoom(OMX_HANDLETYPE pHandle, int speed, int factor, int limit, int xoff, int yoff); [all...] |
/external/webkit/Source/WebCore/platform/graphics/opengl/ |
GraphicsContext3DOpenGL.cpp | [all...] |
/external/webkit/Source/WebCore/platform/graphics/qt/ |
GraphicsContext3DQt.cpp | [all...] |
/prebuilt/sdk/14/ |
android.jar | |
/prebuilt/sdk/15/ |
android.jar | |
/prebuilt/sdk/12/ |
android.jar | |
/prebuilt/sdk/4/ |
android.jar | |
/prebuilt/sdk/5/ |
android.jar | |
/prebuilt/sdk/6/ |
android.jar | |