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

1 2

  /external/wpa_supplicant_8/src/crypto/
aes-internal-enc.c 32 * and add initial round key:
39 #define ROUND(i,d,s) \
47 ROUND(1,t,s);
48 ROUND(2,s,t);
49 ROUND(3,t,s);
50 ROUND(4,s,t);
51 ROUND(5,t,s);
52 ROUND(6,s,t);
53 ROUND(7,t,s);
54 ROUND(8,s,t)
    [all...]
aes-internal-dec.c 37 /* invert the order of the round keys: */
44 /* apply the inverse MixColumn transform to all round keys but the
85 * and add initial round key:
92 #define ROUND(i,d,s) \
100 ROUND(1,t,s);
101 ROUND(2,s,t);
102 ROUND(3,t,s);
103 ROUND(4,s,t);
104 ROUND(5,t,s);
105 ROUND(6,s,t)
    [all...]
  /external/e2fsprogs/lib/ext2fs/
dirhash.c 56 * The generic round function. The application is so specific that
61 #define ROUND(f, a, b, c, d, x, s) \
74 /* Round 1 */
75 ROUND(F, a, b, c, d, in[0] + K1, 3);
76 ROUND(F, d, a, b, c, in[1] + K1, 7);
77 ROUND(F, c, d, a, b, in[2] + K1, 11);
78 ROUND(F, b, c, d, a, in[3] + K1, 19);
79 ROUND(F, a, b, c, d, in[4] + K1, 3);
80 ROUND(F, d, a, b, c, in[5] + K1, 7);
81 ROUND(F, c, d, a, b, in[6] + K1, 11)
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
Paint_CapTest.java 28 assertEquals(Cap.ROUND, Cap.valueOf("ROUND"));
38 assertEquals(Cap.ROUND, actual[1]);
47 assertEquals(Cap.ROUND, p.getStrokeCap());
Paint_JoinTest.java 28 assertEquals(Join.ROUND, Join.valueOf("ROUND"));
37 assertEquals(Join.ROUND, actual[1]);
46 assertEquals(Join.ROUND, p.getStrokeJoin());
PaintTest.java 214 p.setStrokeCap(Cap.ROUND);
215 assertEquals(Cap.ROUND, p.getStrokeCap());
308 p.setStrokeJoin(Join.ROUND);
309 assertEquals(Join.ROUND, p.getStrokeJoin());
813 assertEquals(Math.round(p.ascent()), fmi.ascent);
814 assertEquals(Math.round(p.descent()), fmi.descent);
818 assertEquals(Math.round(p.ascent()), fmi.ascent);
819 assertEquals(Math.round(p.descent()), fmi.descent);
832 assertEquals(Math.round(p.ascent()), fmi.ascent);
833 assertEquals(Math.round(p.descent()), fmi.descent)
    [all...]
  /external/chromium/crypto/third_party/nss/
sha512.cc 286 #define ROUND(n,a,b,c,d,e,f,g,h) \
295 ROUND(t+0,a,b,c,d,e,f,g,h)
296 ROUND(t+1,h,a,b,c,d,e,f,g)
297 ROUND(t+2,g,h,a,b,c,d,e,f)
298 ROUND(t+3,f,g,h,a,b,c,d,e)
299 ROUND(t+4,e,f,g,h,a,b,c,d)
300 ROUND(t+5,d,e,f,g,h,a,b,c)
301 ROUND(t+6,c,d,e,f,g,h,a,b)
302 ROUND(t+7,b,c,d,e,f,g,h,a)
306 ROUND( 0,a,b,c,d,e,f,g,h
    [all...]
  /external/dropbear/libtomcrypt/src/ciphers/safer/
saferp.c 34 /* ROUND(b,i)
39 * The value of 'i' is the current round number which allows this
47 #define ROUND(b, i) \
122 * Each round of LT starts in 'b' and ends in 'b2'.
141 ROUND(b, i);
159 #undef ROUND
160 #define ROUND(b, i) _round(b, i, skey)
246 /* make round keys */
274 /* make round keys */
301 /* make round keys *
    [all...]
  /external/dropbear/libtomcrypt/src/ciphers/
noekeon.c 128 #define ROUND(i) \
136 ROUND(r);
139 #undef ROUND
183 #define ROUND(i) \
191 ROUND(r);
194 #undef ROUND
  /frameworks/base/core/java/android/gesture/
Gesture.java 196 paint.setStrokeJoin(Paint.Join.ROUND);
197 paint.setStrokeCap(Paint.Cap.ROUND);
230 paint.setStrokeJoin(Paint.Join.ROUND);
231 paint.setStrokeCap(Paint.Cap.ROUND);
GestureOverlayView.java 181 gesturePaint.setStrokeJoin(Paint.Join.ROUND);
182 gesturePaint.setStrokeCap(Paint.Cap.ROUND);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
MeasureText.java 62 mPaint.setStrokeCap(Paint.Cap.ROUND);
FingerPaint.java 40 mPaint.setStrokeJoin(Paint.Join.ROUND);
41 mPaint.setStrokeCap(Paint.Cap.ROUND);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
PointsActivity.java 119 p.setStrokeCap(Paint.Cap.ROUND);
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis1/
Visualization1.java 84 paint.setStrokeCap(Paint.Cap.ROUND);
  /frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
DisplayModifier.java 170 put("round", new DisplayModifier() {
173 paint.setStrokeCap(Paint.Cap.ROUND);
194 put("round", new DisplayModifier() {
197 paint.setStrokeJoin(Paint.Join.ROUND);
  /development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube1/
CubeWallpaper1.java 74 paint.setStrokeCap(Paint.Cap.ROUND);
  /development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube2/
CubeWallpaper2.java 95 paint.setStrokeCap(Paint.Cap.ROUND);
  /frameworks/base/graphics/java/android/graphics/
Paint.java 81 Cap.BUTT, Cap.ROUND, Cap.SQUARE
84 Join.MITER, Join.ROUND, Join.BEVEL
273 ROUND (1),
298 ROUND (1),
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
ZoomControlWheel.java 165 mBackgroundPaint.setStrokeCap(Paint.Cap.ROUND);
IndicatorControlWheel.java 488 mBackgroundPaint.setStrokeCap(Paint.Cap.ROUND);
  /external/openssh/openbsd-compat/
bsd-snprintf.c 622 static LLONG ROUND(LDOUBLE value)
715 if (max == 0) ufvalue += 0.5; /* if max = 0 we must round */
732 fracpart = ROUND((POW10(max)) * (ufvalue - intpart));
  /external/dropbear/libtomcrypt/notes/etc/
saferp_optimizer.c 20 #define ROUND(b, i) \
60 /* do 8 rounds of ROUND; LT; */
62 /* ROUND(..., x*2) */
99 /* do 4 rounds of ROUND; LT; */
101 /* ROUND(..., x*2) */
139 /* do 4 rounds of ROUND; LT; */
141 /* ROUND(..., x*2) */
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternView.java 266 mPathPaint.setStrokeJoin(Paint.Join.ROUND);
267 mPathPaint.setStrokeCap(Paint.Cap.ROUND);
724 mTmpInvalidateRect.union(Math.round(left), Math.round(top),
725 Math.round(right), Math.round(bottom));
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Paint_Delegate.java 159 case ROUND:
172 case ROUND:
    [all...]

Completed in 687 milliseconds

1 2