/external/wpa_supplicant_8/src/crypto/ |
D | aes-gcm.c | 192 static void aes_gcm_prepare_j0(const u8 *iv, size_t iv_len, const u8 *H, u8 *J0) in aes_gcm_prepare_j0() argument 198 os_memcpy(J0, iv, iv_len); in aes_gcm_prepare_j0() 199 os_memset(J0 + iv_len, 0, AES_BLOCK_SIZE - iv_len); in aes_gcm_prepare_j0() 200 J0[AES_BLOCK_SIZE - 1] = 0x01; in aes_gcm_prepare_j0() 206 ghash_start(J0); in aes_gcm_prepare_j0() 207 ghash(H, iv, iv_len, J0); in aes_gcm_prepare_j0() 210 ghash(H, len_buf, sizeof(len_buf), J0); in aes_gcm_prepare_j0() 215 static void aes_gcm_gctr(void *aes, const u8 *J0, const u8 *in, size_t len, in aes_gcm_gctr() argument 223 os_memcpy(J0inc, J0, AES_BLOCK_SIZE); in aes_gcm_gctr() 259 u8 J0[AES_BLOCK_SIZE]; in aes_gcm_ae() local [all …]
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/modes/ |
D | GCMBlockCipher.java | 48 private byte[] J0; field in GCMBlockCipher 188 this.J0 = new byte[BLOCK_SIZE]; in init() 192 System.arraycopy(nonce, 0, J0, 0, nonce.length); in init() 193 this.J0[BLOCK_SIZE - 1] = 0x01; in init() 197 gHASH(J0, nonce, nonce.length); in init() 200 gHASHBlock(J0, X); in init() 210 this.counter = Arrays.clone(J0); in init() 510 cipher.processBlock(J0, 0, tag, 0); in doFinal() 560 counter = Arrays.clone(J0); in reset()
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/crypto/modes/ |
D | GCMBlockCipher.java | 48 private byte[] J0; field in GCMBlockCipher 188 this.J0 = new byte[BLOCK_SIZE]; in init() 192 System.arraycopy(nonce, 0, J0, 0, nonce.length); in init() 193 this.J0[BLOCK_SIZE - 1] = 0x01; in init() 197 gHASH(J0, nonce, nonce.length); in init() 200 gHASHBlock(J0, X); in init() 210 this.counter = Arrays.clone(J0); in init() 510 cipher.processBlock(J0, 0, tag, 0); in doFinal() 560 counter = Arrays.clone(J0); in reset()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/ |
D | GCMBlockCipher.java | 46 private byte[] J0; field in GCMBlockCipher 186 this.J0 = new byte[BLOCK_SIZE]; in init() 190 System.arraycopy(nonce, 0, J0, 0, nonce.length); in init() 191 this.J0[BLOCK_SIZE - 1] = 0x01; in init() 195 gHASH(J0, nonce, nonce.length); in init() 198 gHASHBlock(J0, X); in init() 208 this.counter = Arrays.clone(J0); in init() 508 cipher.processBlock(J0, 0, tag, 0); in doFinal() 558 counter = Arrays.clone(J0); in reset()
|
/external/boringssl/src/third_party/wycheproof_testvectors/ |
D | aes_gcm_test.txt | 575 # J0:000102030405060708090a0b0c0d0e0f 586 # J0:00000000000000000000000000000000 597 # J0:ffffffffffffffffffffffffffffffff 608 # J0:fffffffffffffffffffffffffffffffe 619 # J0:fffffffffffffffffffffffffffffffd 630 # J0:000102030405060708090a0bffffffff 641 # J0:000102030405060708090a0bfffffffe 652 # J0:000102030405060708090a0bfffffffd 663 # J0:000102030405060708090a0b7fffffff 674 # J0:000102030405060708090a0b7ffffffe [all …]
|
/external/clang/test/Analysis/ |
D | pr22954.c | 346 struct JJ J0 = {{{1, 2, 0}, {3, 4, 0}, {5, 6, 0}}, 0}; in f19() local 347 J0.s2 = strdup("hello"); in f19() 348 J0.s1[0].s2 = strdup("hello"); in f19() 349 J0.s1[1].s2 = strdup("hi"); in f19() 350 J0.s1[2].s2 = strdup("world"); in f19() 352 memcpy(J0.s1[i].s1, input, 2); in f19() 353 clang_analyzer_eval(J0.s1[0].s1[0] == 1); // expected-warning{{UNKNOWN}}\ in f19() 356 clang_analyzer_eval(J0.s1[0].s1[1] == 2); // expected-warning{{UNKNOWN}} in f19() 357 clang_analyzer_eval(J0.s1[1].s1[0] == 3); // expected-warning{{UNKNOWN}} in f19() 358 clang_analyzer_eval(J0.s1[1].s1[1] == 4); // expected-warning{{UNKNOWN}} in f19() [all …]
|
/external/llvm-project/clang/test/Analysis/ |
D | pr22954.c | 346 struct JJ J0 = {{{1, 2, 0}, {3, 4, 0}, {5, 6, 0}}, 0}; in f19() local 347 J0.s2 = strdup("hello"); in f19() 348 J0.s1[0].s2 = strdup("hello"); in f19() 349 J0.s1[1].s2 = strdup("hi"); in f19() 350 J0.s1[2].s2 = strdup("world"); in f19() 352 memcpy(J0.s1[i].s1, input, 2); in f19() 353 clang_analyzer_eval(J0.s1[0].s1[0] == 1); // expected-warning{{UNKNOWN}}\ in f19() 358 clang_analyzer_eval(J0.s1[0].s1[1] == 2); // expected-warning{{UNKNOWN}} in f19() 359 clang_analyzer_eval(J0.s1[1].s1[0] == 3); // expected-warning{{UNKNOWN}} in f19() 360 clang_analyzer_eval(J0.s1[1].s1[1] == 4); // expected-warning{{UNKNOWN}} in f19() [all …]
|
/external/llvm-project/llvm/test/TableGen/ |
D | foreach-eval.td | 42 class J0<list<dag> pattern> { 46 : J0<[!foreach(tmp, pattern, !subst(d1, d0, 51 : J0<!foreach(t0, patterns,
|
/external/llvm-project/clang/test/CodeGenObjC/ |
D | metadata-symbols-32.m | 78 @interface J0 interface 81 @implementation J0(Category) @end implementation in Category
|
/external/clang/test/CodeGenObjC/ |
D | metadata-symbols-32.m | 79 @interface J0 interface 82 @implementation J0(Category) @end implementation in Category
|
/external/llvm-project/mlir/test/Dialect/Affine/ |
D | ops.mlir | 159 // CHECK: affine.parallel (%[[I0:.*]], %[[J0:.*]]) = (0, 0) to (symbol(%[[N]]), 100) step (10, 10) 161 …// CHECK: affine.parallel (%{{.*}}, %{{.*}}) = (%[[I0]], %[[J0]]) to (%[[I0]] + 10, %[[J0]] + 10) …
|
/external/guice/core/test/com/google/inject/ |
D | ScopesTest.java | 1110 static class J0 { 1114 J0(J1 j) {} 1188 FutureTask<J0> secondThreadResult = new FutureTask<>(fetchClass(injector, J0.class)); 1250 errorMessage.contains(I0.class.getName()) && errorMessage.contains(J0.class.getName())); 1253 errorMessage.contains(J0.class.getName()) && errorMessage.contains(K0.class.getName()));
|
/external/llvm-project/llvm/test/Demangle/ |
D | invalid-manglings.test | 33 ??B@$$J0 35 ; CHECK-NEXT: ??B@$$J0
|
/external/llvm-project/llvm/test/Transforms/PGOProfile/ |
D | chr.ll | 646 ; CHECK-NEXT: [[J0:%.*]] = load i32, i32* [[J:%.*]], align 4 647 ; CHECK-NEXT: [[V9:%.*]] = and i32 [[J0]], 4 666 ; CHECK-NEXT: [[V9_NONCHR:%.*]] = and i32 [[J0]], 4 734 ; CHECK-NEXT: [[J0:%.*]] = load i32, i32* [[J:%.*]], align 4 735 ; CHECK-NEXT: [[V9:%.*]] = and i32 [[J0]], 4 800 ; CHECK-NEXT: [[J0:%.*]] = load i32, i32* [[J:%.*]], align 4 801 ; CHECK-NEXT: [[TMP0:%.*]] = and i32 [[J0]], 12 809 ; CHECK-NEXT: [[V9:%.*]] = and i32 [[J0]], 4 816 ; CHECK-NEXT: [[V11_NONCHR:%.*]] = and i32 [[J0]], 8 1289 ; CHECK-NEXT: [[J0:%.*]] = load i32, i32* [[J:%.*]], align 4 [all …]
|
/external/exoplayer/tree/testdata/src/test/assets/ts/ |
D | sample_ait.ts | 76 …��9���s&�B�+w:�G���GJf�]h(�c���4���z���@� Q!P�n�nj�)#�6M�WpT�~s��a�GJ0����J�MX��㜒b6�Tg�…
|
/external/ImageMagick/PerlMagick/t/reference/composite/ |
D | Difference.miff | 19 …f3igY^>UkNDfB[:[TQ�fQ�cKnXBaO6UF-H@&D<$OA&WC^Lh_\��p{�gn�IPt7+R@'RA%U;J03" .-J1O[Og�������…
|
/external/cldr/tools/java/org/unicode/cldr/util/data/ |
D | langtagTest.txt | 145 …vT-h-dP1Md-0h7-0Z3ir-K-Srkm-kA-7LXM-Z-whb2MiO-2mNsvbLm-W3O-4r-U-KceIxHdI-gvMVgUBV-2uRUni-J0-7C8yTK2
|
/external/ImageMagick/PerlMagick/t/reference/filter/ |
D | Sharpen.miff | 20 …s��lx�0$�GP�BJ�31�0,�0%�-&�;&�=0�45�7<�56�6+�8"�,(�/9�&'�)�C9����-r�6}hLA%J0"5M)i�L`�:c�Gp�Ze�H…
|
D | Emboss.miff | 35 "�L�J0��@{'������cUg.�I�~F��$��v�UX�'H�\���+"��s�)�ros
|
D | Modulate.miff | 17 …O0|L0xJ/uL-qM0qR4pZ:m_5ib6��qQbK+6,0=/2=01;/180173182071/5/082,950>40D0.D,2J0?_>Af@Z|WYwY/>6or]or]…
|
/external/rust/crates/bstr/src/unicode/fsm/ |
D | word_break_fwd.bigendian.dfa | 124 H*H�?�H�II:IH?�ItI�I:I�I�I�I�?�J?�J0J>JXJ�J�J�K… 198 …�w�xf?�x�x�yy?�yHybyy�y�I�y�?�y�?�J0J>y�zRJ�zx… 252 …:�T��?�3��3��8?��^�r3���EI���?�MV?�J0J>���"J��<… 339 …8�X��?��(�6�h�v?������h���I��?��<?�J0J>�P��J���… 766 …��Z?���?�<Vv�I��?��?�J0J>�FJ�l…
|
/external/ImageMagick/PerlMagick/t/reference/write/jng/ |
D | read_prog.miff | 13 …6�85�21�/(�5"�<(�C6�:7�,8�Zp�C]�Sfk85/<[iE�����Vg�N[�Hk�On�Mi�Jd�De�Ej�J0.388803(:B3Xc]WamX]�w…
|
/external/ImageMagick/PerlMagick/t/reference/write/filter/ |
D | Emboss.miff | 103 �G9�P5�I�r��VF_���������x�Q2�h�FJ<!Ri>F�9F6]J0�PM�vF�_"�< �AZqv`kk@l�oN�^I��k�]X�|������…
|
D | Shear.miff | 42 …+�n:2�r?8�o?7�j;2�k71�k60�f5/�f6.�f6-�i6/�g5-�_/%�d4*��MG�wXL�YRB�IN<�>K5�<J0�?J/�8<*�9;1�69/�9B.�…
|
/external/ImageMagick/Magick++/tests/ |
D | test_image.miff | 78 J1+Z5,P-!J05"6#9#:#:$9#;$:$
|