Home
last modified time | relevance | path

Searched refs:J0 (Results 1 – 25 of 43) sorted by relevance

12

/external/wpa_supplicant_8/src/crypto/
Daes-gcm.c192 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/
DGCMBlockCipher.java48 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/
DGCMBlockCipher.java48 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/
DGCMBlockCipher.java46 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/
Daes_gcm_test.txt575 # 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/
Dpr22954.c346 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/
Dpr22954.c346 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/
Dforeach-eval.td42 class J0<list<dag> pattern> {
46 : J0<[!foreach(tmp, pattern, !subst(d1, d0,
51 : J0<!foreach(t0, patterns,
/external/llvm-project/clang/test/CodeGenObjC/
Dmetadata-symbols-32.m78 @interface J0 interface
81 @implementation J0(Category) @end implementation in Category
/external/clang/test/CodeGenObjC/
Dmetadata-symbols-32.m79 @interface J0 interface
82 @implementation J0(Category) @end implementation in Category
/external/llvm-project/mlir/test/Dialect/Affine/
Dops.mlir159 // 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/
DScopesTest.java1110 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/
Dinvalid-manglings.test33 ??B@$$J0
35 ; CHECK-NEXT: ??B@$$J0
/external/llvm-project/llvm/test/Transforms/PGOProfile/
Dchr.ll646 ; 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/
Dsample_ait.ts76 …��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/
DDifference.miff19 …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/
DlangtagTest.txt145 …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/
DSharpen.miff20 …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…
DEmboss.miff35 ����"����L�J0��@{'������cUg. �I�~F��$��v�UX�'H�\ ���+"��s�)�ros
DModulate.miff17 …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/
Dword_break_fwd.bigendian.dfa124 �H*�H���?��H��I�I:�IH��?��It�I��I:�I��I��I��I���?��J��?��J0�J>�JX�J��J��J��K…
198 …��w��xf��?��x��x��y�y��?��yH�yb�y�y��y��I��y���?��y���?��J0�J>�y��zR�J��zx�…
252 …:��T�����?��3����3���8��?���^��r�3�����E�I������?��MV��?��J0�J>�����"�J���<�…
339 …8��X�����?���(��6��h��v��?���������h������I�����?���<��?��J0�J>��P����J�����…
766 …����Z��?���������?��<�V��v���I�����?�����?��J0�J>���F�J��l�…
/external/ImageMagick/PerlMagick/t/reference/write/jng/
Dread_prog.miff13 …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/
DEmboss.miff103 ��G9�P5�I�r��VF_���������x�Q2�h�FJ<!Ri>F�9F6 ]J0�PM�vF�_"�< �AZqv`kk@l�oN�^I��k�]X�|������…
DShear.miff42 …+�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/
Dtest_image.miff78 J1+Z5,P-!J05"6#9#:#:$9# ;$:$

12