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

1 2 3 4 5 6 7 8

  /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 57 * The generic round function. The application is so specific that
62 #define ROUND(f, a, b, c, d, x, s) \
75 /* Round 1 */
76 ROUND(F, a, b, c, d, in[0] + K1, 3);
77 ROUND(F, d, a, b, c, in[1] + K1, 7);
78 ROUND(F, c, d, a, b, in[2] + K1, 11);
79 ROUND(F, b, c, d, a, in[3] + K1, 19);
80 ROUND(F, a, b, c, d, in[4] + K1, 3);
81 ROUND(F, d, a, b, c, in[5] + K1, 7);
82 ROUND(F, c, d, a, b, in[6] + K1, 11)
    [all...]
  /external/valgrind/coregrind/
link_tool_exe_solaris.in 60 LOAD_SEGMENT text { VADDR = $ala; ROUND = 0x1000 };
61 LOAD_SEGMENT data { ROUND = 0x1000 };
  /cts/tests/tests/graphics/src/android/graphics/cts/
Paint_CapTest.java 35 assertEquals(Cap.ROUND, Cap.valueOf("ROUND"));
46 assertEquals(Cap.ROUND, actual[1]);
55 assertEquals(Cap.ROUND, p.getStrokeCap());
Paint_JoinTest.java 36 assertEquals(Join.ROUND, Join.valueOf("ROUND"));
46 assertEquals(Join.ROUND, actual[1]);
55 assertEquals(Join.ROUND, p.getStrokeJoin());
  /external/python/cpython3/Modules/_blake2/impl/
blake2b-ref.c 257 #define ROUND(r) \
268 ROUND( 0 );
269 ROUND( 1 );
270 ROUND( 2 );
271 ROUND( 3 );
272 ROUND( 4 );
273 ROUND( 5 );
274 ROUND( 6 );
275 ROUND( 7 );
276 ROUND( 8 )
    [all...]
blake2b.c 42 #include "blake2b-round.h"
306 ROUND( 0 );
307 ROUND( 1 );
308 ROUND( 2 );
309 ROUND( 3 );
310 ROUND( 4 );
311 ROUND( 5 );
312 ROUND( 6 );
313 ROUND( 7 );
314 ROUND( 8 )
    [all...]
blake2s-ref.c 250 #define ROUND(r) \
261 ROUND( 0 );
262 ROUND( 1 );
263 ROUND( 2 );
264 ROUND( 3 );
265 ROUND( 4 );
266 ROUND( 5 );
267 ROUND( 6 );
268 ROUND( 7 );
269 ROUND( 8 )
    [all...]
blake2s.c 40 #include "blake2s-round.h"
288 ROUND( 0 );
289 ROUND( 1 );
290 ROUND( 2 );
291 ROUND( 3 );
292 ROUND( 4 );
293 ROUND( 5 );
294 ROUND( 6 );
295 ROUND( 7 );
296 ROUND( 8 )
    [all...]
blake2s-round.h 77 #define ROUND(r) \
  /external/python/cpython2/Lib/lib-tk/
Tkconstants.py 102 ROUND='round'
  /external/python/cpython3/Lib/tkinter/
constants.py 102 ROUND='round'
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
Tkconstants.py 102 ROUND='round'
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
Tkconstants.py 102 ROUND='round'
  /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'
  /frameworks/base/core/java/android/view/
RoundScrollbarRenderer.java 26 * Helper class for drawing round scroll bars on round Wear devices.
43 // Paints for the round scrollbar.
46 mThumbPaint.setStrokeCap(Paint.Cap.ROUND);
51 mTrackPaint.setStrokeCap(Paint.Cap.ROUND);
  /external/subsampling-scale-image-view/sample/src/main/java/com/davemorrissey/labs/subscaleview/test/extension/views/
CircleView.java 47 paint.setStrokeCap(Cap.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/mesa3d/src/mesa/drivers/dri/i965/
brw_eu.h 149 #define ROUND(OP) \
191 ROUND(RNDZ)
192 ROUND(RNDE)
197 #undef ROUND
  /external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
DynamicXYPlotActivity.java 75 formatter1.getLinePaint().setStrokeJoin(Paint.Join.ROUND);
83 formatter2.getLinePaint().setStrokeJoin(Paint.Join.ROUND);
  /external/libyuv/files/unit_test/
color_test.cc 231 #define ROUND(f) static_cast<int>(f + 0.5f)
232 // #define ROUND(f) lrintf(f)
233 // #define ROUND(f) static_cast<int>(round(f))
234 // #define ROUND(f) _mm_cvt_ss2si(_mm_load_ss(&f))
238 int i = ROUND(f);
306 return clamptable[ROUND(f) + 276];
310 int i = ROUND(f);
315 int i = ROUND(f);

Completed in 770 milliseconds

1 2 3 4 5 6 7 8