/external/qemu/distrib/sdl-1.2.12/src/video/bwindow/ |
SDL_BView.h | 40 xoff = yoff = 0; 49 xoff = x; 53 x = xoff; 57 x = (float)xoff; 86 if(xoff || yoff) { 89 dest.left = updateRect.left + xoff; 91 dest.right = updateRect.right + xoff; 99 if(xoff || yoff) { 102 dest.left = updateRect.left + xoff; 104 dest.right = updateRect.right + xoff;; 113 int xoff, yoff; member in class:SDL_BView [all...] |
/frameworks/base/graphics/java/android/renderscript/ |
AllocationAdapter.java | 41 public void subData(int xoff, FieldPacker fp) { 42 super.setFromFieldPacker(xoff, fp); 47 public void subElementData(int xoff, int component_number, FieldPacker fp) { 48 super.setFromFieldPacker(xoff, component_number, fp); 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 | 452 * @param xoff 455 public void setFromFieldPacker(int xoff, FieldPacker fp) { 464 copy1DRangeFromUnchecked(xoff, count, data); 471 * @param xoff 475 public void setFromFieldPacker(int xoff, int component_number, FieldPacker fp) { 479 if(xoff < 0) { 491 mRS.nAllocationElementData1D(getIDSafe(), xoff, mSelectedLOD, local 655 private void validate2DRange(int xoff, int yoff, int w, int h) { 660 if (xoff < 0 || yoff < 0) { 666 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY)) 685 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local 692 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local 699 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local 706 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, local 726 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, local 745 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID, data); local [all...] |
RenderScript.java | 302 native void rsnAllocationElementData1D(int con, int id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes); 303 synchronized void nAllocationElementData1D(int id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes) { 305 rsnAllocationElementData1D(mContext, id, xoff, mip, compIdx, d, sizeBytes); 328 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes); 329 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes) { 331 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes); 333 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes); 334 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes) { 336 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes); 338 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes) [all...] |
/packages/apps/Settings/src/com/android/settings/applications/ |
LinearColorBar.java | 117 final int xoff = 2; local 120 -xoff, midTopY, 121 -xoff, 0); 122 mColorPath.lineTo(width+xoff-1, 0); 123 mColorPath.cubicTo(width+xoff-1, midTopY, 128 mEdgePath.moveTo(-xoff+lineOffset, 0); 129 mEdgePath.cubicTo(-xoff+lineOffset, midTopY, 132 mEdgePath.moveTo(width+xoff-1-lineOffset, 0); 133 mEdgePath.cubicTo(width+xoff-1-lineOffset, midTopY,
|
/frameworks/base/libs/rs/ |
rsAdapter.cpp | 48 void Adapter1D::subData(uint32_t xoff, uint32_t count, const void *data) { 50 void *ptr = getElement(xoff); 108 void rsi_Adapter1DSubData(Context *rsc, RsAdapter1D va, uint32_t xoff, uint32_t count, const void *data) { 110 a->subData(xoff, count, data); 158 void Adapter2D::subData(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, const void *data) { 168 memcpy(getElement(xoff, line), src, lineSize); 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);
|
rsAdapter.h | 49 void subData(uint32_t xoff, uint32_t count, const void *data); 85 void subData(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, const void *data);
|
rsAllocation.h | 83 void data(Context *rsc, uint32_t xoff, uint32_t lod, uint32_t count, const void *data, uint32_t sizeBytes); 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,
|
rs_hal.h | 119 uint32_t xoff, uint32_t lod, uint32_t count, 122 uint32_t xoff, uint32_t yoff, uint32_t lod, 126 uint32_t xoff, uint32_t yoff, uint32_t zoff,
|
rsAllocation.cpp | 73 void Allocation::data(Context *rsc, uint32_t xoff, uint32_t lod, 84 rsc->mHal.funcs.allocation.data1D(rsc, this, xoff, lod, count, data, sizeBytes); 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, 425 void rsi_Allocation1DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t lod, 428 a->data(rsc, xoff, lod, count, data, sizeBytes); 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) [all...] |
rs.spec | 154 param uint32_t xoff 170 param uint32_t xoff
|
/external/jdiff/src/jdiff/ |
DiffMyers.java | 109 private int diag (int xoff, int xlim, int yoff, int ylim) 115 final int dmin = xoff - ylim; // Minimum valid diagonal. 117 final int fmid = xoff - yoff; // Center diagonal of top-down search. 125 fd[fdiagoff + fmid] = xoff; 184 while (x > xoff && y > yoff && xv[x - 1] == yv[y - 1]) { 213 if ((fd[fdiagoff + d] - xoff)*2 - dd > 12 * (c + (dd > 0 ? dd : -dd))) 216 && fd[fdiagoff + d] - xoff > 20 283 The subsequence of file 0 is [XOFF, XLIM) and likewise for file 1. 288 private void compareseq (int xoff, int xlim, int yoff, int ylim) { 290 while (xoff < xlim && yoff < ylim && xvec[xoff] == yvec[yoff]) [all...] |
/frameworks/base/libs/rs/driver/ |
rsdAllocation.h | 73 uint32_t xoff, uint32_t lod, uint32_t count, 77 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, 82 uint32_t xoff, uint32_t yoff, uint32_t zoff,
|
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); 374 uint32_t xoff, uint32_t lod, uint32_t count, 380 ptr += eSize * xoff; 393 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, 404 dst += alloc->mHal.state.type->getLODFaceOffset(lod, face, xoff, yoff); 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...] |
/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...] |
/external/bluetooth/hcidump/parser/ |
rfcomm.h | 123 uint8_t xoff:1; member in struct:parameter_mask 149 uint8_t xoff; member in struct:rpn_values 158 uint8_t xoff:1; member in struct:parameter_mask 190 uint8_t xoff; member in struct:rpn_values
|
rfcomm.c | 144 printf("rtri %d rtro %d rtci %d rtco %d xon %d xoff %d pm 0x%04x\n", 147 rpn->rpn_val.xon, rpn->rpn_val.xoff, btohs(rpn->rpn_val.pm));
|
/frameworks/base/graphics/jni/ |
android_renderscript_RenderScript.cpp | 564 // native void rsnAllocationElementData1D(int con, int id, int xoff, int compIdx, byte[] d, int sizeBytes); 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 [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/12/ |
android.jar | |
/prebuilt/sdk/4/ |
android.jar | |
/prebuilt/sdk/5/ |
android.jar | |