/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...] |
/development/simulator/app/ |
DeviceWindow.cpp | 247 int xoff = 0; 254 dc.DrawLine(xoff, yoff+9, xoff, yoff); 255 dc.DrawLine(xoff, yoff, xoff+10, yoff); 256 dc.DrawLine(xoff+width-10, yoff, xoff+width, yoff); 257 dc.DrawLine(xoff+width-1, yoff, xoff+width-1, yoff+10); 258 dc.DrawLine(xoff, yoff+height-10, xoff, yoff+height) [all...] |
/frameworks/base/libs/rs/ |
rsHandcode.h | 25 static inline void rsHCAPI_Allocation1DSubData (RsContext rsc, RsAllocation va, uint32_t xoff, uint32_t count, const void * data, uint32_t sizeBytes) 34 cmd->xoff = xoff;
|
rsAdapter.cpp | 57 void Adapter1D::subData(uint32_t xoff, uint32_t count, const void *data) 60 void *ptr = getElement(xoff); 115 void rsi_Adapter1DSubData(Context *rsc, RsAdapter1D va, uint32_t xoff, uint32_t count, const void *data) 118 a->subData(xoff, count, data); 164 void Adapter2D::subData(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, const void *data) 176 memcpy(getElement(xoff, line), src, lineSize); 238 void rsi_Adapter2DSubData(Context *rsc, RsAdapter2D va, uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, const void *data) 241 a->subData(xoff, yoff, w, h, data);
|
rsAllocation.h | 60 void subData(uint32_t xoff, uint32_t count, const void *data, uint32_t sizeBytes); 61 void subData(uint32_t xoff, uint32_t yoff, 63 void subData(uint32_t xoff, uint32_t yoff, uint32_t zoff,
|
rsAdapter.h | 50 void subData(uint32_t xoff, uint32_t count, const void *data); 83 void subData(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, const void *data);
|
rs.spec | 148 param uint32_t xoff 158 param uint32_t xoff 193 param uint32_t xoff 220 param uint32_t xoff
|
rsAllocation.cpp | 237 void Allocation::subData(uint32_t xoff, uint32_t count, const void *data, uint32_t sizeBytes) 241 ptr += eSize * xoff; 254 void Allocation::subData(uint32_t xoff, uint32_t yoff, 263 dst += eSize * (xoff + yoff * destW); 280 void Allocation::subData(uint32_t xoff, uint32_t yoff, uint32_t zoff, 598 void rsi_Allocation1DSubData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t count, const void *data, uint32_t sizeBytes) 601 a->subData(xoff, count, data, sizeBytes); 604 void rsi_Allocation2DSubData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, const void *data, uint32_t sizeBytes) 607 a->subData(xoff, yoff, w, h, data, sizeBytes);
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/digests/ |
SHA1Digest.java | 17 private int xOff; 42 xOff = t.xOff; 59 X[xOff++] = (in[inOff] & 0xff) << 24 | (in[inOff + 1] & 0xff) << 16 62 if (xOff == 16) 82 if (xOff > 14) 121 xOff = 0; 284 xOff = 0;
|
SHA224Digest.java | 26 private int xOff; 54 xOff = t.xOff; 71 X[xOff++] = ((in[inOff] & 0xff) << 24) | ((in[inOff + 1] & 0xff) << 16) 74 if (xOff == 16) 94 if (xOff > 14) 141 xOff = 0; 227 xOff = 0;
|
SHA256Digest.java | 26 private int xOff; 54 xOff = t.xOff; 71 X[xOff++] = ((in[inOff] & 0xff) << 24) | ((in[inOff + 1] & 0xff) << 16) 74 if (xOff == 16) 94 if (xOff > 14) 144 xOff = 0; 229 xOff = 0;
|
MD4Digest.java | 19 private int xOff; 43 xOff = t.xOff; 60 X[xOff++] = (in[inOff] & 0xff) | ((in[inOff + 1] & 0xff) << 8) 63 if (xOff == 16) 72 if (xOff > 14) 120 xOff = 0; 264 xOff = 0;
|
MD5Digest.java | 15 private int xOff; 39 xOff = t.xOff; 56 X[xOff++] = (in[inOff] & 0xff) | ((in[inOff + 1] & 0xff) << 8) 59 if (xOff == 16) 68 if (xOff > 14) 116 xOff = 0; 296 xOff = 0;
|
/frameworks/base/graphics/java/android/renderscript/ |
Allocation.java | 112 public void subData2D(int xoff, int yoff, int w, int h, int[] d) { 114 mRS.nAllocationSubData2D(mID, xoff, yoff, w, h, d, d.length * 4); 117 public void subData2D(int xoff, int yoff, int w, int h, float[] d) { 119 mRS.nAllocationSubData2D(mID, xoff, yoff, w, h, d, d.length * 4); 211 public void subData(int xoff, int yoff, int w, int h, int[] d) { 213 mRS.nAdapter2DSubData(mID, xoff, yoff, w, h, d); 216 public void subData(int xoff, int yoff, int w, int h, float[] d) { 218 mRS.nAdapter2DSubData(mID, xoff, yoff, w, h, d);
|
RenderScript.java | 113 native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, int[] d, int sizeBytes); 114 native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, float[] d, int sizeBytes); 132 native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, int[] d); 133 native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, float[] d);
|
/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...] |
/external/openssl/crypto/0.9.9-dev/sha/ |
sha512-armv4.pl | 53 $Xoff=8*8; 251 str $Tlo,[sp,#$Xoff+0] 252 str $Thi,[sp,#$Xoff+4] 261 ldr $t0,[sp,#`$Xoff+8*(16-1)`+0] 262 ldr $t1,[sp,#`$Xoff+8*(16-1)`+4] 263 ldr $t2,[sp,#`$Xoff+8*(16-14)`+0] 264 ldr $t3,[sp,#`$Xoff+8*(16-14)`+4] 296 ldr $t2,[sp,#`$Xoff+8*(16-9)`+0] 297 ldr $t3,[sp,#`$Xoff+8*(16-9)`+4] 301 ldr $t0,[sp,#`$Xoff+8*16`+0 [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/core/java/android/widget/ |
PopupWindow.java | 720 public void showAsDropDown(View anchor, int xoff, int yoff) { 725 registerForScrollChanged(anchor, xoff, yoff); 733 updateAboveAnchor(findDropDownPosition(anchor, p, xoff, yoff)); [all...] |
/external/webkit/WebCore/bindings/js/ |
JSWebGLRenderingContextCustom.cpp | 433 unsigned xoff = args.at(2).toInt32(exec); local 457 context->texSubImage2D(target, level, xoff, yoff, data, flipY, premultiplyAlpha, ec); 460 context->texSubImage2D(target, level, xoff, yoff, element, flipY, premultiplyAlpha, ec); 463 context->texSubImage2D(target, level, xoff, yoff, element, flipY, premultiplyAlpha, ec); 466 context->texSubImage2D(target, level, xoff, yoff, element, flipY, premultiplyAlpha, ec); 492 context->texSubImage2D(target, level, xoff, yoff, width, height, format, type, 0, ec); 498 context->texSubImage2D(target, level, xoff, yoff, width, height, format, type, obj, ec);
|
/frameworks/base/graphics/jni/ |
android_renderscript_RenderScript.cpp | 619 nAllocationSubData2D_i(JNIEnv *_env, jobject _this, jint alloc, jint xoff, jint yoff, jint w, jint h, jintArray data, int sizeBytes) 623 LOG_API("nAllocation2DSubData_i, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, w, h, len); 625 rsAllocation2DSubData(con, (RsAllocation)alloc, xoff, yoff, w, h, ptr, sizeBytes); 630 nAllocationSubData2D_f(JNIEnv *_env, jobject _this, jint alloc, jint xoff, jint yoff, jint w, jint h, jfloatArray data, int sizeBytes) 634 LOG_API("nAllocation2DSubData_i, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, w, h, len); 636 rsAllocation2DSubData(con, (RsAllocation)alloc, xoff, yoff, w, h, ptr, sizeBytes); 815 nAdapter2DSubData_i(JNIEnv *_env, jobject _this, jint adapter, jint xoff, jint yoff, jint w, jint h, jintArray data) 819 LOG_API("nAdapter2DSubData_i, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)" [all...] |
/external/webkit/WebCore/bindings/v8/custom/ |
V8WebGLRenderingContextCustom.cpp | 629 int xoff = toInt32(args[2], ok); local 654 context->texSubImage2D(target, level, xoff, yoff, element, flipY, premultiplyAlpha, ec); 657 context->texSubImage2D(target, level, xoff, yoff, element, flipY, premultiplyAlpha, ec); 660 context->texSubImage2D(target, level, xoff, yoff, imageElement, flipY, premultiplyAlpha, ec); 663 context->texSubImage2D(target, level, xoff, yoff, element, flipY, premultiplyAlpha, ec); 697 xoff, 709 xoff, [all...] |
/cts/tests/tests/widget/src/android/widget/cts/ |
PopupWindowTest.java | 429 final int xOff = 10; 438 mPopupWindow.showAtLocation(upperAnchor, Gravity.NO_GRAVITY, xOff, yOff); 448 assertEquals(viewInWindowXY[0] + xOff, viewOnScreenXY[0]); 469 final int xOff = 11; 474 mPopupWindow.showAsDropDown(upperAnchor, xOff, yOff); 481 assertEquals(anchorXY[0] + xOff + viewInWindowXY[0], viewOnScreenXY[0]); [all...] |
/system/extras/tests/framebuffer/ |
fb_test.c | 124 fprintf(stderr,"vi.xoff = %d\n", vi->xoffset);
|