/freebsd/crypto/openssl/fuzz/ |
H A D | bndiv.c | 27 static BIGNUM *b3; variable 35 b3 = BN_new(); in FuzzerInitialize() 83 OPENSSL_assert(BN_div(b3, b4, b1, b2, ctx)); in FuzzerTestOneInput() 85 success = BN_is_zero(b3) && BN_is_zero(b4); in FuzzerTestOneInput() 87 success = (BN_is_negative(b3) != BN_is_negative(b2) || BN_is_zero(b3)) in FuzzerTestOneInput() 90 success = (BN_is_negative(b3) == BN_is_negative(b2) || BN_is_zero(b3)) in FuzzerTestOneInput() 92 OPENSSL_assert(BN_mul(b5, b3, b2, ctx)); in FuzzerTestOneInput() 101 BN_print_fp(stdout, b3); in FuzzerTestOneInput() 109 BN_is_negative(b3), BN_is_negative(b4), BN_is_zero(b4), in FuzzerTestOneInput() 110 BN_is_negative(b3) != BN_is_negative(b2) in FuzzerTestOneInput() [all …]
|
H A D | bignum.c | 38 BIGNUM *b3; in FuzzerTestOneInput() local 44 b3 = BN_new(); in FuzzerTestOneInput() 50 * bytes to choose lengths, which generate b1, b2 and b3. Use three bits in FuzzerTestOneInput() 69 OPENSSL_assert(BN_bin2bn(buf + l1 + l2, l3, b3) == b3); in FuzzerTestOneInput() 70 BN_set_negative(b3, s3); in FuzzerTestOneInput() 73 if (BN_is_zero(b3)) { in FuzzerTestOneInput() 78 OPENSSL_assert(BN_mod_exp(b4, b1, b2, b3, ctx)); in FuzzerTestOneInput() 79 OPENSSL_assert(BN_mod_exp_simple(b5, b1, b2, b3, ctx)); in FuzzerTestOneInput() 87 BN_print_fp(stdout, b3); in FuzzerTestOneInput() 99 BN_free(b3); in FuzzerTestOneInput()
|
/freebsd/crypto/openssl/crypto/chacha/asm/ |
H A D | chacha-c64xplus.pl | 53 .asg B3,RA 121 my ($b0,$b1,$b2,$b3) = (4..7); 130 || ADD @X[$b3],@X[$a3],@X[$a3] 153 || XOR @X[$c3],@X[$b3],@X[$b3] 161 || ROTL @X[$b3],12,@X[$b3] 165 || ADD @Y[$b3],@Y[$a3],@Y[$a3] 174 || ADD @X[$b3],@X[$a3],@X[$a3] 198 || XOR @Y[$c3],@Y[$b3],@Y[$b3] 206 || XOR @X[$c3],@X[$b3],@X[$b3] 213 ROTL @X[$b0],7,@X[$b3] [all …]
|
H A D | chacha-ia64.pl | 104 my ($a3,$b3,$c3,$d3)=map(($_&~3)+(($_+1)&3),($a2,$b2,$c2,$d2)); 110 { .mmi; add @x[$a3]=@x[$a3],@x[$b3] 131 xor @x[$b3]=@x[$b3],@x[$c3] 138 extr.u @y[3]=@x[$b3],20,12 } 141 dep.z @x[$b3]=@x[$b3],12,20 };; 143 or @x[$b3]=@x[$b3],@y[3] 146 add @x[$a3]=@x[$a3],@x[$b3] 172 { .mii; xor @x[$b3]=@x[$b3],@x[$c3] 179 extr.u @y[3]=@x[$b3],25,7 180 dep.z @x[$b3]=@x[$b3],7,25 };; [all …]
|
H A D | chacha-s390x.pl | 68 my ($a3,$b3,$c3,$d3)=map(($_&~3)+(($_+1)&3),($a2,$b2,$c2,$d2)); 125 alr (@x[$a3],@x[$b3]); # Q4 134 xr (@x[$b3],$xc_); 136 rll (@x[$b3],@x[$b3],12); 139 alr (@x[$a3],@x[$b3]); 148 xr (@x[$b3],$xc_); 150 rll (@x[$b3],@x[$b3],7); 157 my ($a3,$b3,$c3,$d3)=map(($_&~3)+(($_+1)&3),($a2,$b2,$c2,$d2)); 169 vaf (@x[$a3],@x[$a3],@x[$b3]); # Q4 183 vx (@x[$b3],@x[$b3],@x[$c3]); [all …]
|
/freebsd/sys/dev/pms/RefTisa/sallsdk/api/ |
H A D | sa_spec.h | 184 /* b3-b0 PM Port. device port address that the PM should deliver the FIS to */ 190 /* b3 : F Far End Analog (AFE) Loopback (Optional) */ 205 /* b3-b0 : PM Port */ 218 /* b3-b0: PM Port */ 223 /* b3 : Reserved */ 237 /* b3-b0: PM Port */ 252 /* b3-b0: PM Port */ 451 /* b3-0 : address frame type */ 454 /* b3-0 : reason SAS2 */ 457 /* b3 : SSP initiator port */ [all …]
|
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/ |
H A D | u0.h | 7 __m128i b0, b1, b2, b3, b4, b5, b6, b7; variable 43 b3 = a3; 45 b3 = _mm_srli_epi32(b3, 14); 48 diag0 = _mm_xor_si128(diag0, b3); 115 b3 = a3; 117 b3 = _mm_srli_epi32(b3, 14); 120 diag0 = _mm_xor_si128(diag0, b3);
|
H A D | u1.h | 7 __m128i b0, b1, b2, b3, b4, b5, b6, b7; variable 44 b3 = a3; 46 b3 = _mm_srli_epi32(b3, 14); 49 diag0 = _mm_xor_si128(diag0, b3); 116 b3 = a3; 118 b3 = _mm_srli_epi32(b3, 14); 121 diag0 = _mm_xor_si128(diag0, b3);
|
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/ |
H A D | u8.h | 67 #define VEC8_ROUND_SEQ(A1, B1, C1, D1, A2, B2, C2, D2, A3, B3, C3, D3, A4, B4, \ argument 71 VEC8_LINE1(A3, B3, C3, D3); \ 75 VEC8_LINE2(A3, B3, C3, D3); \ 79 VEC8_LINE3(A3, B3, C3, D3); \ 83 VEC8_LINE4(A3, B3, C3, D3); \ 86 #define VEC8_ROUND_HALF(A1, B1, C1, D1, A2, B2, C2, D2, A3, B3, C3, D3, A4, \ argument 96 VEC8_LINE1(A3, B3, C3, D3); \ 98 VEC8_LINE2(A3, B3, C3, D3); \ 100 VEC8_LINE3(A3, B3, C3, D3); \ 102 VEC8_LINE4(A3, B3, C3, D3); \ [all …]
|
/freebsd/sys/contrib/openzfs/module/zcommon/ |
H A D | zfs_fletcher_superscalar4.c | 93 uint64_t a3, b3, c3, d3; in fletcher_4_superscalar4_native() local 105 b3 = ctx->superscalar[1].v[2]; in fletcher_4_superscalar4_native() 120 b3 += a3; in fletcher_4_superscalar4_native() 124 c3 += b3; in fletcher_4_superscalar4_native() 141 ctx->superscalar[1].v[2] = b3; in fletcher_4_superscalar4_native() 158 uint64_t a3, b3, c3, d3; in fletcher_4_superscalar4_byteswap() local 170 b3 = ctx->superscalar[1].v[2]; in fletcher_4_superscalar4_byteswap() 185 b3 += a3; in fletcher_4_superscalar4_byteswap() 189 c3 += b3; in fletcher_4_superscalar4_byteswap() 206 ctx->superscalar[1].v[2] = b3; in fletcher_4_superscalar4_byteswap()
|
/freebsd/contrib/bearssl/src/hash/ |
H A D | ghash_ctmul.c | 76 uint32_t b0, b1, b2, b3, b4, b5, b6, b7, b8; in bmul() local 89 * (x2+W*x3)*(y2+W*y3) -> a3:b3 in bmul() 99 b3 = y2 >> 2; in bmul() 103 b5 = b3 ^ b4; in bmul() 105 b6 = b0 ^ b3; in bmul() 114 MUL32(b3, a3, b3, a3); in bmul() 133 b3 &= (uint32_t)0x11111111; in bmul() 145 b5 ^= b3 ^ b4; in bmul() 147 b3 ^= (b5 << 1) ^ (b4 << 2); in bmul() 153 b6 ^= b0 ^ b3; in bmul() [all …]
|
/freebsd/contrib/arm-optimized-routines/math/test/rtest/ |
H A D | random.c | 35 uint32 b3 = b1 | b2; in random32() local 36 if ((b & b3) != 0 && (b & b3) != b3) in random32() 37 b ^= b3; in random32()
|
/freebsd/secure/caroot/trusted/ |
H A D | Telia_Root_CA_v2.pem | 31 ac:8e:00:ba:16:7b:eb:30:6a:00:c0:b3:74:68:7e: 32 b2:af:c7:d5:62:b3:7a:3f:50:ca:8c:36:44:24:63: 39 a4:d6:aa:20:92:cd:c1:a0:b3:96:b2:3a:84:42:8d: 40 7d:d5:95:e4:d6:db:e9:62:c4:58:b3:79:c5:8c:d3: 50 29:c6:b9:24:b3:6b:44:11:f4:a5:43:c2:4c:43:e5: 51 70:36:8c:b6:33:57:7a:95:2e:82:a0:f4:5c:10:b3: 90 40:c7:b3:d8:fd:9c:70:6a:c6:28:c3:85:e9:e2:ed:1a:93:a0: 96 4f:2d:c4:1c:3e:f4:b3:3f:ab:15:0e:3b:19:41:8a:a4:c1:57: 98 57:3c:bd:38:ad:98:64:b7:b8:03:9a:53:56:60:5d:b3:d8:42:
|
H A D | vTrus_Root_CA.pem | 18 43:e3:71:13:d8:b3:59:14:5d:b7:ce:8c:fd:35:fd:6f:bc:05:8d:45 33 63:5a:ba:9f:a3:0b:b0:b3:9a:5c:ba:11:b8:12:e9: 37 c0:16:ae:62:fe:96:4c:43:7e:55:14:be:1a:b3:d2: 47 1a:0a:c8:0d:a8:ed:27:c9:d4:e7:b3:b9:ab:82:22: 56 f5:3e:05:14:bd:bf:b3:59:b4:d8:8e:33:84:a3:90: 57 52:aa:b3:02:95:60:f9:0c:4c:68:f9:ee:d5:17:0d: 60 12:91:d6:39:74:ae:4c:41:82:db:f2:a6:48:d1:b3: 78 50:a4:fe:b7:0a:70:d5:a0:34:f1:75:d7:4d:49:ba:11:d1:b3: 98 16:b3:99:9e:4d:4f:4e:2d:3b:34:43:e1:9a:0e:0d:a4:66:97:
|
H A D | Microsoft_RSA_Root_Certificate_Authority_2017.pem | 18 1e:d3:97:09:5f:d8:b4:b3:47:70:1e:aa:be:7f:45:b3 35 90:80:83:64:35:39:04:fc:e5:e9:6c:b3:b6:1f:50: 38 b3:d9:ec:fc:3b:d5:57:72:bc:3f:c8:c9:b2:de:4b: 49 b3:4b:3f:c4:e3:c2:e6:86:61:a4:52:30:b9:7a:20: 60 9c:f9:f2:81:e1:12:6a:c0:45:d9:67:b3:ce:ff:23: 89 72:2b:86:f3:57:bb:30:ed:24:4d:dc:7d:56:bb:a3:b3:f8:34: 99 bd:12:af:be:0c:4e:70:7c:1b:6f:8d:b3:32:93:73:44:16:6d:
|
H A D | TrustAsia_Global_Root_CA_G4.pem | 29 04:f1:b3:cd:38:e4:25:43:e5:de:19:09:bb:81:79: 30 a2:15:5f:15:63:01:de:c2:ab:dd:b3:a6:1b:67:4b: 42 A5:BB:4A:97:CE:B3:2B:7F:A4:31:DE:97:83:59:83:A6:6F:71:CB:DE 44 A5:BB:4A:97:CE:B3:2B:7F:A4:31:DE:97:83:59:83:A6:6F:71:CB:DE
|
H A D | AffirmTrust_Premium.pem | 37 e6:89:af:66:c7:e9:ff:2b:e9:3c:ac:da:d2:b3:c3: 47 6c:b3:f9:ff:7d:ab:86:57:e3:ba:d6:85:78:77:ba: 50 3c:b3:d3:48:4b:e2:c8:f8:7f:92:a8:76:46:9c:42: 57 1a:0b:59:c4:59:32:77:b3:bc:60:69:56:39:fd:b4: 73 b3:57:4d:10:62:4e:3a:e4:ac:ea:b8:1c:af:32:23:c8:b3:49: 93 a5:cc:19:34:80:6f:b3:ac:1a:e3:9f:f0:7b:48:ad:d5:01:d9:
|
H A D | QuoVadis_Root_CA_3_G3.pem | 29 00:b3:cb:0e:10:67:8e:ea:14:97:a7:32:2a:0a:56: 30 36:7f:68:4c:c7:b3:6f:3a:23:14:91:ff:19:7f:a5: 31 ca:ac:ee:b3:76:9d:7a:e9:8b:1b:ab:6b:31:db:fa: 35 d3:74:4a:c2:62:0a:73:0a:dd:49:b3:57:d2:b0:0a: 37 35:d1:53:b3:b1:ee:c5:93:69:82:3e:16:b5:28:46: 41 fa:20:69:7d:d3:ee:61:f5:ba:b3:e7:30:d0:37:23: 75 bc:5f:61:62:e8:a5:fb:0b:37:b1:3c:b6:b3:fa:29:9d:7f:02:
|
/freebsd/sys/dev/pms/RefTisa/discovery/dm/ |
H A D | dmdefs.h | 315 /* B3-0 : reserved */ 318 /* B3-0 : negotiatedPhyLinkRate */ 321 /* B3 : attachedSspInitiator */ 328 /* B3 : attachedSspTarget */ 340 /* B3-0 : hardwareMinPhyLinkRate */ 343 /* B3-0 : hardwareMaxPhyLinkRate */ 348 /* B3-0 : partialPathwayTimeout */ 351 /* B3-0 : routingAttribute */ 514 /* b3-0 : reserved */ 517 /* b3-0 : reserved */ [all …]
|
/freebsd/crypto/libecc/src/curves/ |
H A D | ec_shortw.c | 80 ret = fp_init(&(crv->b3), b->ctx); EG(ret, err); in ec_shortw_crv_init() 84 ret = fp_add(&(crv->b3), b, b); EG(ret, err); in ec_shortw_crv_init() 85 ret = fp_add(&(crv->b3), &(crv->b3), b); EG(ret, err); in ec_shortw_crv_init() 87 ret = fp_redcify(&(crv->b3_monty), &(crv->b3)); EG(ret, err); in ec_shortw_crv_init()
|
/freebsd/sys/contrib/openzfs/module/unicode/ |
H A D | u8_textprep.c | 145 #define U8_PUT_3BYTES_INTO_UTF32(u, b1, b2, b3) \ argument 148 ((uint32_t)(b3) & 0x3F)); 225 /* B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF */ 466 uint16_t b3 = 0; in do_case_conv() local 479 b3 = u8s[0] = s[0]; in do_case_conv() 483 b3 = u8s[1] = s[1]; in do_case_conv() 488 b3 = u8s[2] = s[2]; in do_case_conv() 514 b3_tbl = u8_toupper_b3_tbl[uv][b2][b3].tbl_id; in do_case_conv() 525 b3_base = u8_toupper_b3_tbl[uv][b2][b3].base; in do_case_conv() 531 b3_tbl = u8_tolower_b3_tbl[uv][b2][b3].tbl_id; in do_case_conv() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | hexagon_types.h | 597 #define HEXAGON_V64_CREATE_B(b7, b6, b5, b4, b3, b2, b1, b0) \ argument 606 _HEXAGON_V64_internal_union.b[3] = (b3); \ 616 #define HEXAGON_V64_CREATE_B(b7, b6, b5, b4, b3, b2, b1, b0) \ argument 619 (((HEXAGON_Vect64)((b3) & 0xff)) << 24LL) | (((HEXAGON_Vect64)((b2) & 0xff)) << 16LL) | \ 634 signed char b3, signed char b2, signed char b1, signed char b0) in HEXAGON_Vect64C() argument 635 : data(HEXAGON_V64_CREATE_B(b7, b6, b5, b4, b3, b2, b1, b0)) {}; in HEXAGON_Vect64C() 705 signed char B3(void) { in B3() function 784 HEXAGON_Vect64C B3(signed char b) { in B3() function 1056 #define HEXAGON_V32_CREATE_B(b3, b2, b1, b0) \ argument 1065 _HEXAGON_V32_internal_union.b[3] = (b3); \ [all …]
|
/freebsd/crypto/openssl/crypto/sm4/ |
H A D | sm4.c | 181 B0 ^= F(B1 ^ B2 ^ B3 ^ ks->rk[k0]); \ 182 B1 ^= F(B0 ^ B2 ^ B3 ^ ks->rk[k1]); \ 183 B2 ^= F(B0 ^ B1 ^ B3 ^ ks->rk[k2]); \ 184 B3 ^= F(B0 ^ B1 ^ B2 ^ ks->rk[k3]); \ 192 uint32_t B3 = load_u32_be(in, 3); in ossl_sm4_encrypt() local 207 store_u32_be(B3, out); in ossl_sm4_encrypt() 218 uint32_t B3 = load_u32_be(in, 3); in ossl_sm4_decrypt() local 229 store_u32_be(B3, out); in ossl_sm4_decrypt()
|
/freebsd/sys/contrib/device-tree/src/arm/marvell/ |
H A D | kirkwood-b3.dts | 3 * Device Tree file for Excito Bubba B3 9 * L2 cache. If your B3 silently fails to boot, u-boot is probably too 21 model = "Excito B3"; 22 compatible = "excito,b3", "marvell,kirkwood-88f6281", "marvell,kirkwood";
|
/freebsd/contrib/bearssl/src/symcipher/ |
H A D | chacha20_sse2.c | 199 __m128i b0, b1, b2, b3; in br_chacha20_sse2_run() local 204 b3 = _mm_loadu_si128((const void *)(buf + 48)); in br_chacha20_sse2_run() 208 b3 = _mm_xor_si128(b3, s3); in br_chacha20_sse2_run() 212 _mm_storeu_si128((void *)(buf + 48), b3); in br_chacha20_sse2_run()
|