Searched refs:xOff (Results 1 - 25 of 31) sorted by relevance

12

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
H A DSHA1Digest.java20 private int xOff; field in class:SHA1Digest
50 xOff = t.xOff;
68 // X[xOff] = Pack.bigEndianToInt(in, inOff);
73 X[xOff] = n;
75 if (++xOff == 16)
84 if (xOff > 14)
123 xOff = 0;
286 xOff = 0;
H A DSHA224Digest.java27 private int xOff; field in class:SHA224Digest
62 xOff = t.xOff;
80 // X[xOff] = Pack.bigEndianToInt(in, inOff);
85 X[xOff] = n;
87 if (++xOff == 16)
96 if (xOff > 14)
143 xOff = 0;
237 xOff = 0;
H A DSHA256Digest.java27 private int xOff; field in class:SHA256Digest
62 xOff = t.xOff;
80 // X[xOff] = Pack.bigEndianToInt(in, inOff);
85 X[xOff] = n;
87 if (++xOff == 16)
96 if (xOff > 14)
146 xOff = 0;
239 xOff = 0;
H A DMD5Digest.java17 private int xOff; field in class:MD5Digest
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;
/external/chromium_org/third_party/skia/gm/
H A Dsimpleaaclip.cpp159 int xOff = 0; local
172 if (xOff >= 400) {
174 xOff = 0;
177 xOff += 200;
H A Dmegalooper.cpp164 SkLayerDrawLooper* create1Looper(SkScalar xOff, SkScalar yOff, SkColor color) { argument
171 info.fOffset.set(xOff, yOff);
208 SkLayerDrawLooper* create4Looper(SkScalar xOff, SkScalar yOff) { argument
220 info.fOffset.set(xOff+gBlurOffsets[i].fX, yOff+gBlurOffsets[i].fY);
/external/skia/gm/
H A Dsimpleaaclip.cpp162 int xOff = 0; local
175 if (xOff >= 400) {
177 xOff = 0;
180 xOff += 200;
H A Dmegalooper.cpp164 SkLayerDrawLooper* create1Looper(SkScalar xOff, SkScalar yOff, SkColor color) { argument
171 info.fOffset.set(xOff, yOff);
208 SkLayerDrawLooper* create4Looper(SkScalar xOff, SkScalar yOff) { argument
220 info.fOffset.set(xOff+gBlurOffsets[i].fX, yOff+gBlurOffsets[i].fY);
/external/chromium_org/third_party/skia/bench/
H A DRectoriBench.cpp73 SkLayerDrawLooper* createLooper(SkScalar xOff, SkScalar sigma) { argument
83 info.fOffset.set(xOff, 0);
/external/skia/bench/
H A DRectoriBench.cpp73 SkLayerDrawLooper* createLooper(SkScalar xOff, SkScalar sigma) { argument
83 info.fOffset.set(xOff, 0);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderFieldset.cpp159 LayoutUnit xOff = (legend->x() > 0) ? LayoutUnit() : (legend->width() - borderLeft()) / 2; local
160 paintRect.setWidth(paintRect.width() - xOff);
161 paintRect.setX(paintRect.x() + xOff);
212 LayoutUnit xOff = (legend->x() > 0) ? LayoutUnit() : (legend->width() - borderLeft()) / 2; local
213 paintRect.expand(-xOff, 0);
214 paintRect.move(xOff, 0);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DLongArray.java557 // private static long shiftUp(long[] x, int xOff, int count)
562 // long next = x[xOff + i];
563 // x[xOff + i] = (next << 1) | prev;
569 private static long shiftUp(long[] x, int xOff, int count, int shift) argument
575 long next = x[xOff + i];
576 x[xOff + i] = (next << shift) | prev;
582 private static long shiftUp(long[] x, int xOff, long[] z, int zOff, int count, int shift) argument
588 long next = x[xOff + i];
655 private static long addShiftedUp(long[] x, int xOff, long[] y, int yOff, int count, int shift) argument
662 x[xOff
668 addShiftedDown(long[] x, int xOff, long[] y, int yOff, int count, int shift) argument
699 add(long[] x, int xOff, long[] y, int yOff, int count) argument
707 add(long[] x, int xOff, long[] y, int yOff, long[] z, int zOff, int count) argument
715 addBoth(long[] x, int xOff, long[] y1, int y1Off, long[] y2, int y2Off, int count) argument
1467 flipVector(long[] x, int xOff, long[] y, int yOff, int yLen, int bits) argument
1537 interleave(long[] x, int xOff, long[] z, int zOff, int count, int width) argument
1556 interleave3(long[] x, int xOff, long[] z, int zOff, int count) argument
1596 interleave5(long[] x, int xOff, long[] z, int zOff, int count) argument
1635 interleave7(long[] x, int xOff, long[] z, int zOff, int count) argument
1670 interleave2_n(long[] x, int xOff, long[] z, int zOff, int count, int rounds) argument
[all...]
H A DIntArray.java323 private static int addShiftedByBits(int[] x, int xOff, int[] y, int yOff, int count, int shift) argument
329 x[xOff + i] ^= (next << shift) | prev;
355 private static void addShiftedByWords(int[] x, int xOff, int[] y, int count) argument
359 x[xOff + i] ^= y[i];
583 // private static void deInterleave(int[] x, int xOff, int[] z, int zOff, int count, int rounds)
704 private static void interleave(int[] x, int xOff, int[] z, int zOff, int count, int rounds) argument
708 z[zOff + i] = interleave(x[xOff + i], rounds);
/external/chromium_org/third_party/skia/tests/
H A DDrawTextTest.cpp35 const int xOff = itest.fLeft - iref.fLeft; local
44 int refX = x + xOff;
H A DFontHostStreamTest.cpp40 const int xOff = itest.fLeft - iref.fLeft; local
49 int refX = x + xOff;
H A DBlurTest.cpp74 const int xOff = itest.fLeft - iref.fLeft; local
83 int refX = x + xOff;
/external/skia/tests/
H A DDrawTextTest.cpp35 const int xOff = itest.fLeft - iref.fLeft; local
44 int refX = x + xOff;
H A DFontHostStreamTest.cpp39 const int xOff = itest.fLeft - iref.fLeft; local
48 int refX = x + xOff;
H A DBlurTest.cpp74 const int xOff = itest.fLeft - iref.fLeft; local
83 int refX = x + xOff;
/external/chromium_org/third_party/skia/src/core/
H A DSkPath.cpp1021 SkScalar xOff[kCornerPts]; local
1028 xOff[0] = xOff[1] = 0;
1029 xOff[2] = midPtX;
1030 xOff[3] = offPtX;
1031 xOff[4] = rx;
1037 xOff[0] = rx;
1038 xOff[1] = offPtX;
1039 xOff[2] = midPtX;
1040 xOff[
[all...]
/external/skia/src/core/
H A DSkPath.cpp1019 SkScalar xOff[kCornerPts]; local
1026 xOff[0] = xOff[1] = 0;
1027 xOff[2] = midPtX;
1028 xOff[3] = offPtX;
1029 xOff[4] = rx;
1035 xOff[0] = rx;
1036 xOff[1] = offPtX;
1037 xOff[2] = midPtX;
1038 xOff[
[all...]
/external/deqp/modules/glshared/
H A DglsLongStressCase.cpp457 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 argument
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());
H A DglsLifetimeTests.cpp497 const GLint xOff = rnd.getInt(0, width - maxWidth); local
501 return Rectangle(xOff, yOff, width, height);
/external/deqp/modules/gles31/functional/
H A Des31fSeparateShaderTests.cpp984 GLint xOff = rnd.getInt(0, target.getWidth() - width);
988 return Rectangle(xOff, yOff, width, height);
/external/valgrind/main/VEX/priv/
H A Dguest_arm_toIR.c12644 UInt xReg[16], xOff[16]; local
12659 xOff[nX] = 4 * m;
12673 reordering xOff/xReg. */
12677 vex_printf("reg %d off %d\n", xReg[i], xOff[i]);
12688 UInt tOff = xOff[i];
12694 xOff[m-1] = xOff[m];
12698 xOff[m-1] = tOff;
12705 xOff[m+1] = xOff[
[all...]

Completed in 2272 milliseconds

12