HomeSort by relevance Sort by last modified time
    Searched refs:yOff (Results 1 - 25 of 30) sorted by null

1 2

  /external/skia/gm/
anisotropic.cpp 70 int yOff;
72 yOff = kSpacer + i * (fBM.height() + kSpacer);
75 yOff = (SK_ARRAY_COUNT(gScales) - i) * (fBM.height() + kSpacer) - height;
78 this->draw(canvas, kSpacer, yOff, fBM.width(), height);
85 int xOff, yOff;
88 yOff = kSpacer + i * (fBM.height() + kSpacer);
92 yOff = kSpacer + (SK_ARRAY_COUNT(gScales) - i - 1) * (fBM.height() + kSpacer);
95 this->draw(canvas, xOff, yOff, width, fBM.height());
nested.cpp 94 SkScalar xOff = 2, yOff = 2;
107 canvas->translate(xOff, -yOff - 40.0f);
109 canvas->translate(xOff, yOff);
120 yOff += 45;
megalooper.cpp 164 SkLayerDrawLooper* create1Looper(SkScalar xOff, SkScalar yOff, SkColor color) {
171 info.fOffset.set(xOff, yOff);
208 SkLayerDrawLooper* create4Looper(SkScalar xOff, SkScalar yOff) {
220 info.fOffset.set(xOff+gBlurOffsets[i].fX, yOff+gBlurOffsets[i].fY);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
rsAllocationCopyTest.java 267 int yOff = random.nextInt(height);
269 int yCount = random.nextInt(height - yOff);
287 s.set_yOff(yOff);
298 if (yOff <= i && i < yOff + yCount &&
321 int yOff = random.nextInt(height);
323 int yCount = random.nextInt(height - yOff);
343 s.set_yOff(yOff);
354 if (yOff <= i && i < yOff + yCount &
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
Nat256.java 41 public static int add(int[] x, int xOff, int[] y, int yOff, int[] z, int zOff)
44 c += (x[xOff + 0] & M) + (y[yOff + 0] & M);
47 c += (x[xOff + 1] & M) + (y[yOff + 1] & M);
50 c += (x[xOff + 2] & M) + (y[yOff + 2] & M);
53 c += (x[xOff + 3] & M) + (y[yOff + 3] & M);
56 c += (x[xOff + 4] & M) + (y[yOff + 4] & M);
59 c += (x[xOff + 5] & M) + (y[yOff + 5] & M);
62 c += (x[xOff + 6] & M) + (y[yOff + 6] & M);
65 c += (x[xOff + 7] & M) + (y[yOff + 7] & M);
101 public static int addBothTo(int[] x, int xOff, int[] y, int yOff, int[] z, int zOff
    [all...]
Nat224.java 38 public static int add(int[] x, int xOff, int[] y, int yOff, int[] z, int zOff)
41 c += (x[xOff + 0] & M) + (y[yOff + 0] & M);
44 c += (x[xOff + 1] & M) + (y[yOff + 1] & M);
47 c += (x[xOff + 2] & M) + (y[yOff + 2] & M);
50 c += (x[xOff + 3] & M) + (y[yOff + 3] & M);
53 c += (x[xOff + 4] & M) + (y[yOff + 4] & M);
56 c += (x[xOff + 5] & M) + (y[yOff + 5] & M);
59 c += (x[xOff + 6] & M) + (y[yOff + 6] & M);
92 public static int addBothTo(int[] x, int xOff, int[] y, int yOff, int[] z, int zOff)
95 c += (x[xOff + 0] & M) + (y[yOff + 0] & M) + (z[zOff + 0] & M)
    [all...]
Nat192.java 174 public static boolean diff(int[] x, int xOff, int[] y, int yOff, int[] z, int zOff)
176 boolean pos = gte(x, xOff, y, yOff);
179 sub(x, xOff, y, yOff, z, zOff);
183 sub(y, yOff, x, xOff, z, zOff);
275 public static boolean gte(int[] x, int xOff, int[] y, int yOff)
280 int y_i = y[yOff + i] ^ Integer.MIN_VALUE;
402 public static void mul(int[] x, int xOff, int[] y, int yOff, int[] zz, int zzOff)
404 long y_0 = y[yOff + 0] & M;
405 long y_1 = y[yOff + 1] & M;
406 long y_2 = y[yOff + 2] & M
    [all...]
Nat.java 81 public static int addBothTo(int len, int[] x, int xOff, int[] y, int yOff, int[] z, int zOff)
86 c += (x[xOff + i] & M) + (y[yOff + i] & M) + (z[zOff + i] & M);
434 public static void mul(int len, int[] x, int xOff, int[] y, int yOff, int[] zz, int zzOff)
436 zz[zzOff + len] = mulWord(len, x[xOff], y, yOff, zz, zzOff);
440 zz[zzOff + i + len] = mulWordAddTo(len, x[xOff + i], y, yOff, zz, zzOff + i);
457 public static int mulAddTo(int len, int[] x, int xOff, int[] y, int yOff, int[] zz, int zzOff)
462 long c = mulWordAddTo(len, x[xOff + i], y, yOff, zz, zzOff) & M;
499 public static int mulWord(int len, int x, int[] y, int yOff, int[] z, int zOff)
505 c += xVal * (y[yOff + i] & M);
513 public static int mulWordAddTo(int len, int x, int[] y, int yOff, int[] z, int zOff
    [all...]
  /external/skia/tools/
sk_tool_utils.cpp 368 for (int yOff = 0; yOff < wh; ++yOff) {
370 temp[yOff*wh+xOff] = gaussian2d_value(xOff-halfFilterSize, yOff-halfFilterSize, sigma);
372 filterTot += temp[yOff*wh+xOff];
377 for (int yOff = 0; yOff < wh; ++yOff) {
379 temp[yOff*wh+xOff] /= filterTot
    [all...]
  /external/skia/tests/
DrawTextTest.cpp 36 const int yOff = itest.fTop - iref.fTop;
45 int refY = y + yOff;
FontHostStreamTest.cpp 40 const int yOff = itest.fTop - iref.fTop;
49 int refY = y + yOff;
BlurTest.cpp 76 const int yOff = itest.fTop - iref.fTop;
85 int refY = y + yOff;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/
shapeproto.h 82 INT16 yOff B16;
97 INT16 yOff B16;
112 INT16 yOff B16;
126 INT16 yOff B16;
xfixesproto.h 367 INT16 xOff B16, yOff B16;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/
shapeproto.h 82 INT16 yOff B16;
97 INT16 yOff B16;
112 INT16 yOff B16;
126 INT16 yOff B16;
xfixesproto.h 367 INT16 xOff B16, yOff B16;
  /hardware/ti/omap4-aah/camera/
ANativeWindowDisplayAdapter.cpp 1051 uint32_t xOff, yOff;
1053 CameraHal::getXYFromOffset(&xOff, &yOff, dispFrame.mOffset, PAGE_SIZE, mPixelFormat);
1056 if ((mXOff != xOff) || (mYOff != yOff)) {
1058 dispFrame.mOffset, xOff, yOff ,
1059 xOff + mPreviewWidth, yOff + mPreviewHeight);
1063 mANativeWindow->set_crop(mANativeWindow, xOff, yOff,
1064 xOff + mPreviewWidth, yOff + mPreviewHeight);
1068 mYOff = yOff;
    [all...]
AppCallbackNotifier.cpp 505 uint32_t yOff = offset / stride;
506 uint8_t *bufferSrcUV = ((uint8_t*)y_uv[1] + (stride/2)*yOff + xOff);
557 uint32_t yOff = offset / stride;
570 bufferSrc_UV = ( uint16_t * ) ((uint8_t*)y_uv[1] + (stride/2)*yOff + xOff);
    [all...]
  /hardware/ti/omap4xxx/camera/
ANativeWindowDisplayAdapter.cpp 1061 uint32_t yOff = (dispFrame.mOffset / PAGE_SIZE);
1064 if((mXOff!=xOff) || (mYOff!=yOff))
1066 CAMHAL_LOGDB("Offset %d xOff = %d, yOff = %d", dispFrame.mOffset, xOff, yOff);
1087 xOff/bytesPerPixel, yOff , (xOff/bytesPerPixel)+mPreviewWidth, yOff+mPreviewHeight);
1090 mANativeWindow->set_crop(mANativeWindow, xOff/bytesPerPixel, yOff,
1091 (xOff/bytesPerPixel)+mPreviewWidth, yOff+mPreviewHeight);
1095 mYOff = yOff;
    [all...]
AppCallbackNotifier.cpp 493 uint32_t yOff = offset / stride;
494 uint8_t *bufferSrcUV = ((uint8_t*)y_uv[1] + (stride/2)*yOff + xOff);
545 uint32_t yOff = offset / stride;
558 bufferSrc_UV = ( uint16_t * ) ((uint8_t*)y_uv[1] + (stride/2)*yOff + xOff);
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
LongArray.java 674 private static long addShiftedUp(long[] x, int xOff, long[] y, int yOff, int count, int shift)
680 long next = y[yOff + i];
687 private static long addShiftedDown(long[] x, int xOff, long[] y, int yOff, int count, int shift)
694 long next = y[yOff + i];
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/gcm/
GCMUtil.java 326 public static void xor(byte[] x, byte[] y, int yOff, int yLen)
330 x[yLen] ^= y[yOff + yLen];
  /cts/tests/tests/widget/src/android/widget/cts/
PopupWindowTest.java 581 final int yOff = 21;
588 () -> mPopupWindow.showAtLocation(upperAnchor, Gravity.NO_GRAVITY, xOff, yOff));
597 assertEquals(popupContentViewInWindowXY[1] + yOff, popupContentViewOnScreenXY[1]);
613 final int yOff = 12;
615 mInstrumentation.runOnMainSync(() -> mPopupWindow.showAsDropDown(upperAnchor, xOff, yOff));
621 assertEquals(anchorXY[1] + height + yOff + viewInWindowXY[1], viewOnScreenXY[1]);
    [all...]
  /hardware/intel/img/psb_video/src/
psb_texture.c 143 static void psb_create_coeffs(double yOff, double uOff, double vOff, double rgbOff,
    [all...]
  /external/deqp/modules/glshared/
glsLongStressCase.cpp 457 void setSubData (const ConstPixelBufferAccess& src, int xOff, int yOff, int width, int height) const;
560 void Texture::setSubData (const ConstPixelBufferAccess& src, const int xOff, const int yOff, const int width, const int height) const
575 glTexSubImage2D(GL_TEXTURE_2D, level, xOff>>level, yOff>>level, de::max(1, width>>level), de::max(1, height>>level), transfer.format, transfer.dataType, src.getDataPtr());
583 glTexSubImage2D(cubeFaceToGLFace((CubeFace)face), level, xOff>>level, yOff>>level, de::max(1, width>>level), de::max(1, height>>level), transfer.format, transfer.dataType, src.getDataPtr());
    [all...]

Completed in 706 milliseconds

1 2