/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) */
|
/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/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
|
/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...] |
/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);
|
/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...] |
/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...] |
/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
|
brw_eu_emit.c | 861 * Sandybridge and later appear to round correctly without an ADD. 863 #define ROUND(OP) \ 874 /* turn on round-increments */ \ 906 ROUND(RNDZ) 907 ROUND(RNDE) [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_eu.h | 848 #define ROUND(OP) \ 879 ROUND(RNDZ) 880 ROUND(RNDE) 885 #undef ROUND
|
brw_eu_emit.c | 861 * Sandybridge and later appear to round correctly without an ADD. 863 #define ROUND(OP) \ 874 /* turn on round-increments */ \ 906 ROUND(RNDZ) 907 ROUND(RNDE) [all...] |
/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));
|
/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/chromium_org/third_party/freetype/src/smooth/ |
ftgrays.c | 302 #define ROUND( x ) ( ( (x) + ONE_PIXEL / 2 ) & -ONE_PIXEL ) [all...] |
/external/freetype/src/smooth/ |
ftgrays.c | 302 #define ROUND( x ) ( ( (x) + ONE_PIXEL / 2 ) & -ONE_PIXEL ) [all...] |
/frameworks/base/graphics/java/android/graphics/ |
Paint.java | 81 Cap.BUTT, Cap.ROUND, Cap.SQUARE 84 Join.MITER, Join.ROUND, Join.BEVEL 371 ROUND (1), 396 ROUND (1), [all...] |
/external/robolectric/lib/main/ |
h2-1.2.147.jar | |
/prebuilts/sdk/10/ |
android.jar | |
/prebuilts/sdk/12/ |
android.jar | |
/prebuilts/sdk/13/ |
android.jar | |
/prebuilts/sdk/14/ |
android.jar | |
/prebuilts/sdk/15/ |
android.jar | |