/external/wpa_supplicant_8/src/crypto/ |
aes-gcm.c | 192 static void aes_gcm_prepare_j0(const u8 *iv, size_t iv_len, const u8 *H, u8 *J0) 198 os_memcpy(J0, iv, iv_len); 199 os_memset(J0 + iv_len, 0, AES_BLOCK_SIZE - iv_len); 200 J0[AES_BLOCK_SIZE - 1] = 0x01; 206 ghash_start(J0); 207 ghash(H, iv, iv_len, J0); 210 ghash(H, len_buf, sizeof(len_buf), J0); 215 static void aes_gcm_gctr(void *aes, const u8 *J0, const u8 *in, size_t len, 223 os_memcpy(J0inc, J0, AES_BLOCK_SIZE); 259 u8 J0[AES_BLOCK_SIZE] [all...] |
/development/perftests/panorama/feature_stab/db_vlvm/ |
db_metrics.h | 222 double J[4],J0,J1,J2,J3; 231 J0=J[0];J1=J[1];J2=J[2];J3=J[3]; 232 Jf_dx[0]=J0*Jf_dx_loc[0]; 233 Jf_dx[1]=J0*Jf_dx_loc[1]; 234 Jf_dx[2]=J0*Jf_dx_loc[2]; 238 Jf_dx[6]=J0*Jf_dx_loc[6]+J1*Jf_dx_loc[15]; 239 Jf_dx[7]=J0*Jf_dx_loc[7]+J1*Jf_dx_loc[16]; 240 Jf_dx[8]=J0*Jf_dx_loc[8]+J1*Jf_dx_loc[17]; 301 double J[4],J0,J1,J2,J3; 310 J0=J[0];J1=J[1];J2=J[2];J3=J[3] [all...] |
/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/ |
db_metrics.h | 222 double J[4],J0,J1,J2,J3; 231 J0=J[0];J1=J[1];J2=J[2];J3=J[3]; 232 Jf_dx[0]=J0*Jf_dx_loc[0]; 233 Jf_dx[1]=J0*Jf_dx_loc[1]; 234 Jf_dx[2]=J0*Jf_dx_loc[2]; 238 Jf_dx[6]=J0*Jf_dx_loc[6]+J1*Jf_dx_loc[15]; 239 Jf_dx[7]=J0*Jf_dx_loc[7]+J1*Jf_dx_loc[16]; 240 Jf_dx[8]=J0*Jf_dx_loc[8]+J1*Jf_dx_loc[17]; 301 double J[4],J0,J1,J2,J3; 310 J0=J[0];J1=J[1];J2=J[2];J3=J[3] [all...] |
/frameworks/support/v7/appcompat/src/android/support/v7/app/ |
TwilightCalculator.java | 46 private static final float J0 = 0.0009f; 100 float n = Math.round(daysSince2000 - J0 - arcLongitude); 101 double solarTransitJ2000 = n + J0 + arcLongitude + 0.0053d * Math.sin(meanAnomaly)
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/ |
GCMBlockCipher.java | 44 private byte[] J0; 161 this.J0 = new byte[BLOCK_SIZE]; 165 System.arraycopy(nonce, 0, J0, 0, nonce.length); 166 this.J0[BLOCK_SIZE - 1] = 0x01; 170 gHASH(J0, nonce, nonce.length); 173 gHASHBlock(J0, X); 183 this.counter = Arrays.clone(J0); 441 // T = MSBt(GCTRk(J0,S)) 443 cipher.processBlock(J0, 0, tag, 0); 491 counter = Arrays.clone(J0); [all...] |
/external/clang/test/Analysis/ |
pr22954.c | 346 struct JJ J0 = {{{1, 2, 0}, {3, 4, 0}, {5, 6, 0}}, 0}; 347 J0.s2 = strdup("hello"); 348 J0.s1[0].s2 = strdup("hello"); 349 J0.s1[1].s2 = strdup("hi"); 350 J0.s1[2].s2 = strdup("world"); 352 memcpy(J0.s1[i].s1, input, 2); 353 clang_analyzer_eval(J0.s1[0].s1[0] == 1); // expected-warning{{UNKNOWN}}\ 355 expected-warning{{Potential leak of memory pointed to by 'J0.s2'}} 356 clang_analyzer_eval(J0.s1[0].s1[1] == 2); // expected-warning{{UNKNOWN}} 357 clang_analyzer_eval(J0.s1[1].s1[0] == 3); // expected-warning{{UNKNOWN} [all...] |
/libcore/luni/src/test/java/libcore/java/lang/ |
ClassCastExceptionTest.java | 81 A0, B0, C0, D0, E0, F0, G0, H0, I0, J0, K0, L0, M0, N0, O0, P0, Q0, R0, S0, T0, U0, V0, W0, X0, Y0, Z0, 86 A0, B0, C0, D0, E0, F0, G0, H0, I0, J0, K0, L0, M0, N0, O0, P0, Q0, R0, S0, T0, U0, V0, W0, X0, Y0, Z0,
|
/prebuilts/go/darwin-x86/src/math/ |
j0.go | 27 // Method -- j0(x): 28 // 1. For tiny x, we use j0(x) = 1 - x**2/4 + x**4/64 - ... 29 // 2. Reduce x to |x| since j0(x)=j0(-x), and 31 // j0(x) = 1-z/4+ z**2*R0/S0, where z = x*x; 32 // (precision: |j0-1+z/4-z**2R0/S0 |<2**-63.67 ) 34 // j0(x) = sqrt(2/(pi*x))*(p0(x)*cos(x0)-q0(x)*sin(x0)) 46 // j0(nan)= nan 47 // j0(0) = 1 48 // j0(inf) = [all...] |
jn.go | 33 // For n=0, j0(x) is called, 36 // from values of j0(x) and j1(x). 69 return J0(x) 119 for i, a := 1, J0(x); i < n; i++ { 218 b = t * J0(x) / b
|
all_test.go | 327 var j0 = []float64{ var [all...] |
/prebuilts/go/linux-x86/src/math/ |
j0.go | 27 // Method -- j0(x): 28 // 1. For tiny x, we use j0(x) = 1 - x**2/4 + x**4/64 - ... 29 // 2. Reduce x to |x| since j0(x)=j0(-x), and 31 // j0(x) = 1-z/4+ z**2*R0/S0, where z = x*x; 32 // (precision: |j0-1+z/4-z**2R0/S0 |<2**-63.67 ) 34 // j0(x) = sqrt(2/(pi*x))*(p0(x)*cos(x0)-q0(x)*sin(x0)) 46 // j0(nan)= nan 47 // j0(0) = 1 48 // j0(inf) = [all...] |
jn.go | 33 // For n=0, j0(x) is called, 36 // from values of j0(x) and j1(x). 69 return J0(x) 119 for i, a := 1, J0(x); i < n; i++ { 218 b = t * J0(x) / b
|
all_test.go | 327 var j0 = []float64{ var [all...] |
/external/guice/core/test/com/google/inject/ |
ScopesTest.java | [all...] |
/external/webrtc/data/voice_engine/stereo_rtp_files/ |
stereo_g729_jitter.rtp | [all...] |
hrtf_g722_1C_48.rtp | [all...] |
hrtf_g722_1C_48_jitterT2.rtp | [all...] |
/external/tlsdate/ca-roots/ |
tlsdate-ca-roots.conf | 264 J0/WwbgcQ3izDJr86iw8bmEbTUsp9Z8FHSbBuOmDAGJFtqkIk7mpM0sYmsL4h4hO [all...] |
/prebuilts/go/darwin-x86/src/crypto/x509/ |
root_darwin_armx.go | [all...] |
/prebuilts/go/linux-x86/src/crypto/x509/ |
root_darwin_armx.go | [all...] |
/prebuilts/sdk/current/support/v7/appcompat/libs/ |
android-support-v7-appcompat.jar | |
/external/google-tv-pairing-protocol/java/jar/ |
bcprov-jdk15-143.jar | |
/external/webrtc/talk/media/testdata/ |
h264-svc-99-640x360.rtpdump | 284 ?,?e6??Jv=?~\??!?i?7???q???6S|??mr"?F?R??8???+?4?v??X`?~??E?[??5??7g??#?80\S?`'=E?}M??"??X???o?b??:???? =????l?gAF?O?@????h<?R?&?]~?m?.??Q??t? .k?^!'(*X5z b??????CG?8<???Wi?*?f?x?RZf:?c?????hY?e???[?&?? @3?h??????CQF??k|??ƒv^ ?
?!?Rg\n/)???|?2??)?3?????2_NI?nJ???!?????:dd??*?Y????0??,?f
{)?E,??j0?:?VlY?0??|?@?|???(?K?????? 8?c%a??'??f?? f ??r 8 >??? ? .?? ?%v? ??;1?:??? ??LLp[??;?????Q?#?`@| ???\?GE??N??????'??En?\??C?m ?gL?> |