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

1 2 3

  /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/chromium_org/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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Tkconstants.py 102 ROUND='round'
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Tkconstants.py 102 ROUND='round'
  /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);
  /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);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_opcode_tmp.h 67 OP11(ROUND)
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_opcode_tmp.h 67 OP11(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);
  /hardware/qcom/camera/QCamera2/stack/mm-jpeg-interface/src/
mm_jpeg_exif.c 40 #define ROUND(a)((a >= 0) ? (long)(a + 0.5) : (long)(a - 0.5))
376 val_rat.denom = ROUND(1.0/p_ae_params->exp_time);
  /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);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_eu.h 848 #define ROUND(OP) \
879 ROUND(RNDZ)
880 ROUND(RNDE)
885 #undef ROUND
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_eu.h 848 #define ROUND(OP) \
879 ROUND(RNDZ)
880 ROUND(RNDE)
885 #undef ROUND

Completed in 1835 milliseconds

1 2 3