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

1 2

  /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 83 public static int addTo(int[] x, int xOff, int[] z, int zOff, int cIn)
86 c += (x[xOff + 0] & M) + (z[zOff + 0] & M);
89 c += (x[xOff + 1] & M) + (z[zOff + 1] & M);
92 c += (x[xOff + 2] & M) + (z[zOff + 2] & M);
95 c += (x[xOff + 3] & M) + (z[zOff + 3] & M);
98 c += (x[xOff + 4] & M) + (z[zOff + 4] & M);
101 c += (x[xOff + 5] & M) + (z[zOff + 5] & M);
157 public static boolean diff(int[] x, int xOff, int[] y, int yOff, int[] z, int zOff)
159 boolean pos = gte(x, xOff, y, yOff);
162 sub(x, xOff, y, yOff, z, zOff)
    [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);
151 public static int addTo(int len, int[] x, int xOff, int[] z, int zOff)
156 c += (x[xOff + i] & M) + (z[zOff + i] & M);
429 public static void mul(int len, int[] x, int xOff, int[] y, int yOff, int[] zz, int zzOff)
431 zz[zzOff + len] = mulWord(len, x[xOff], y, yOff, zz, zzOff);
435 zz[zzOff + i + len] = mulWordAddTo(len, x[xOff + i], y, yOff, zz, zzOff + i);
452 public static int mulAddTo(int len, int[] x, int xOff, int[] y, int yOff, int[] zz, int zzOff)
457 long c = mulWordAddTo(len, x[xOff + i], y, yOff, zz, zzOff) & M;
574 public static int shiftDownBit(int len, int[] x, int xOff, int c, int[] z, int zOff
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
SHA1Digest.java 21 private int xOff;
52 xOff = Pack.bigEndianToInt(encodedState, 36);
53 for (int i = 0; i != xOff; i++)
68 xOff = t.xOff;
86 // X[xOff] = Pack.bigEndianToInt(in, inOff);
91 X[xOff] = n;
93 if (++xOff == 16)
102 if (xOff > 14)
141 xOff = 0
    [all...]
SHA224Digest.java 28 private int xOff;
63 xOff = t.xOff;
79 xOff = Pack.bigEndianToInt(encodedState, 48);
80 for (int i = 0; i != xOff; i++)
101 // X[xOff] = Pack.bigEndianToInt(in, inOff);
106 X[xOff] = n;
108 if (++xOff == 16)
117 if (xOff > 14)
164 xOff = 0
    [all...]
SHA256Digest.java 28 private int xOff;
63 xOff = t.xOff;
79 xOff = Pack.bigEndianToInt(encodedState, 48);
80 for (int i = 0; i != xOff; i++)
102 // X[xOff] = Pack.bigEndianToInt(in, inOff);
107 X[xOff] = n;
109 if (++xOff == 16)
118 if (xOff > 14)
168 xOff = 0
    [all...]
MD5Digest.java 17 private int xOff;
48 xOff = t.xOff;
65 X[xOff++] = (in[inOff] & 0xff) | ((in[inOff + 1] & 0xff) << 8)
68 if (xOff == 16)
77 if (xOff > 14)
125 xOff = 0;
305 xOff = 0;
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
rsAllocationCopyTest.java 266 int xOff = random.nextInt(width);
268 int xCount = random.nextInt(width - xOff);
286 s.set_xOff(xOff);
299 xOff <= j && j < xOff + xCount) {
320 int xOff = random.nextInt(width);
322 int xCount = random.nextInt(width - xOff);
342 s.set_xOff(xOff);
355 xOff <= j && j < xOff + xCount)
    [all...]
  /external/skia/gm/
anisotropic.cpp 85 int xOff, yOff;
87 xOff = fBM.width() + 2*kSpacer;
91 xOff = fBM.width() + 2*kSpacer + fBM.width() - width;
95 this->draw(canvas, xOff, yOff, width, fBM.height());
simpleaaclip.cpp 161 int xOff = 0;
174 if (xOff >= 400) {
176 xOff = 0;
179 xOff += 200;
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);
  /external/skia/bench/
RectoriBench.cpp 73 SkLayerDrawLooper* createLooper(SkScalar xOff, SkScalar sigma) {
83 info.fOffset.set(xOff, 0);
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestPhysicsCar.java 129 float xOff = 1f;
139 vehicle.addWheel(node1, new Vector3f(-xOff, yOff, zOff),
147 vehicle.addWheel(node2, new Vector3f(xOff, yOff, zOff),
155 vehicle.addWheel(node3, new Vector3f(-xOff, yOff, -zOff),
163 vehicle.addWheel(node4, new Vector3f(xOff, yOff, -zOff),
TestAttachDriver.java 157 float xOff = 1f;
167 vehicle.addWheel(node1, new Vector3f(-xOff, yOff, zOff),
175 vehicle.addWheel(node2, new Vector3f(xOff, yOff, zOff),
183 vehicle.addWheel(node3, new Vector3f(-xOff, yOff, -zOff),
191 vehicle.addWheel(node4, new Vector3f(xOff, yOff, -zOff),
TestWalkingChar.java 170 float xOff = -144;
172 float startpt = bLength / 4 - xOff;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
LongArray.java 574 // private static long shiftUp(long[] x, int xOff, int count)
579 // long next = x[xOff + i];
580 // x[xOff + i] = (next << 1) | prev;
586 private static long shiftUp(long[] x, int xOff, int count, int shift)
592 long next = x[xOff + i];
593 x[xOff + i] = (next << shift) | prev;
599 private static long shiftUp(long[] x, int xOff, long[] z, int zOff, int count, int shift)
605 long next = x[xOff + i];
672 private static long addShiftedUp(long[] x, int xOff, long[] y, int yOff, int count, int shift)
679 x[xOff + i] ^= (next << shift) | prev
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/selector/
MSOutlookKeyIdCalculator.java 172 private int xOff;
197 // X[xOff] = Pack.bigEndianToInt(in, inOff);
202 X[xOff] = n;
204 if (++xOff == 16)
213 if (xOff > 14)
252 xOff = 0;
415 xOff = 0;
  /external/skia/tests/
DrawTextTest.cpp 35 const int xOff = itest.fLeft - iref.fLeft;
44 int refX = x + xOff;
FontHostStreamTest.cpp 39 const int xOff = itest.fLeft - iref.fLeft;
48 int refX = x + xOff;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/
shapeproto.h 81 INT16 xOff B16;
96 INT16 xOff B16;
111 INT16 xOff B16;
125 INT16 xOff B16;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/
shapeproto.h 81 INT16 xOff B16;
96 INT16 xOff B16;
111 INT16 xOff B16;
125 INT16 xOff 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);
1067 mXOff = xOff;
    [all...]
  /hardware/ti/omap4xxx/camera/
ANativeWindowDisplayAdapter.cpp 1060 uint32_t xOff = (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);
1094 mXOff = xOff;
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
PopupWindowTest.java 282 final int xOff = 10;
291 mPopupWindow.showAtLocation(upperAnchor, Gravity.NO_GRAVITY, xOff, yOff);
301 assertEquals(popupContentViewInWindowXY[0] + xOff, popupContentViewOnScreenXY[0]);
317 final int xOff = 11;
322 mPopupWindow.showAsDropDown(upperAnchor, xOff, yOff);
329 assertEquals(anchorXY[0] + xOff + viewInWindowXY[0], viewOnScreenXY[0]);
    [all...]

Completed in 625 milliseconds

1 2