/freebsd/sys/contrib/libsodium/src/libsodium/crypto_pwhash/argon2/ |
H A D | blamka-round-avx2.h | 12 #define G1_AVX2(A0, A1, B0, B1, C0, C1, D0, D1) \ argument 20 ml = _mm256_mul_epu32(C0, D0); \ 22 C0 = _mm256_add_epi64(C0, _mm256_add_epi64(D0, ml)); \ 24 B0 = _mm256_xor_si256(B0, C0); \ 41 #define G2_AVX2(A0, A1, B0, B1, C0, C1, D0, D1) \ argument 49 ml = _mm256_mul_epu32(C0, D0); \ 51 C0 = _mm256_add_epi64(C0, _mm256_add_epi64(D0, ml)); \ 52 B0 = _mm256_xor_si256(B0, C0); \ 68 #define DIAGONALIZE_1(A0, B0, C0, D0, A1, B1, C1, D1) \ argument 71 C0 = _mm256_permute4x64_epi64(C0, _MM_SHUFFLE(1, 0, 3, 2)); \ [all …]
|
H A D | blamka-round-avx512f.h | 17 #define G1_AVX512F(A0, B0, C0, D0, A1, B1, C1, D1) \ argument 28 C0 = muladd(C0, D0); \ 31 B0 = _mm512_xor_si512(B0, C0); \ 38 #define G2_AVX512F(A0, B0, C0, D0, A1, B1, C1, D1) \ argument 49 C0 = muladd(C0, D0); \ 52 B0 = _mm512_xor_si512(B0, C0); \ 59 #define DIAGONALIZE(A0, B0, C0, D0, A1, B1, C1, D1) \ argument 64 C0 = _mm512_permutex_epi64(C0, _MM_SHUFFLE(1, 0, 3, 2)); \ 71 #define UNDIAGONALIZE(A0, B0, C0, D0, A1, B1, C1, D1) \ argument 76 C0 = _mm512_permutex_epi64(C0, _MM_SHUFFLE(1, 0, 3, 2)); \ [all …]
|
H A D | blamka-round-ssse3.h | 31 #define G1(A0, B0, C0, D0, A1, B1, C1, D1) \ argument 42 C0 = fBlaMka(C0, D0); \ 45 B0 = _mm_xor_si128(B0, C0); \ 52 #define G2(A0, B0, C0, D0, A1, B1, C1, D1) \ argument 63 C0 = fBlaMka(C0, D0); \ 66 B0 = _mm_xor_si128(B0, C0); \ 73 #define DIAGONALIZE(A0, B0, C0, D0, A1, B1, C1, D1) \ argument 80 t0 = C0; \ 81 C0 = C1; \ 90 #define UNDIAGONALIZE(A0, B0, C0, D0, A1, B1, C1, D1) \ argument [all …]
|
/freebsd/crypto/openssl/crypto/modes/asm/ |
H A D | ghash-sparcv9.pl | 360 ($Hhl,$Hlo,$Hhi,$Xlo,$Xhi,$xE1,$sqr, $C0,$C1,$C2,$C3,$V)= 377 srax $Hhi,63,$C0 ! broadcast carry 380 and $C0,$Xlo,$Xlo 381 and $C0,$Xhi,$Xhi 415 xmulx $Xlo,$Hlo,$C0 423 sll $C0,3,$sqr 425 xor $C0,$sqr,$sqr 426 sllx $sqr,57,$sqr ! ($C0·0xE1)<<1<<56 [implicit &0x7f] 428 xor $C0,$C1,$C1 ! Karatsuba post-processing 436 xmulxhi $C0,$xE1,$Xlo ! ·0xE1<<1<<56 [all …]
|
/freebsd/crypto/openssl/crypto/whrlpool/ |
H A D | wp_block.c | 182 # define C0(K,i) (Cx.q[K.c[(i)*8+0]]) macro 200 # define C0(K,i) (Cx.q[0+8*K.c[(i)*8+0]]) macro 213 # define C0(K,i) (((u64*)(Cx.c+0))[2*K.c[(i)*8+0]]) macro 521 L[i] ^= C0(K, i) ^ C1(K, (i - 1) & 7) ^ in whirlpool_block() 528 L[i] ^= C0(S, i) ^ C1(S, (i - 1) & 7) ^ in whirlpool_block() 567 L0 = C0(K, 0) ^ C1(K, 7) ^ C2(K, 6) ^ C3(K, 5) ^ in whirlpool_block() 569 L1 = C0(K, 1) ^ C1(K, 0) ^ C2(K, 7) ^ C3(K, 6) ^ in whirlpool_block() 571 L2 = C0(K, 2) ^ C1(K, 1) ^ C2(K, 0) ^ C3(K, 7) ^ in whirlpool_block() 573 L3 = C0(K, 3) ^ C1(K, 2) ^ C2(K, 1) ^ C3(K, 0) ^ in whirlpool_block() 575 L4 = C0(K, 4) ^ C1(K, 3) ^ C2(K, 2) ^ C3(K, 1) ^ in whirlpool_block() [all …]
|
/freebsd/crypto/openssl/doc/life-cycles/ |
H A D | pkey.dot | 15 paramgen [label="parameter\ngeneration", fontcolor="#2879C0", color="#2879C0"] 44 newed -> paramgen [label="EVP_PKEY_paramgen_init", fontcolor="#2879C0", color="#2879C0"]; 45 …ramgen -> paramgen [label="EVP_PKEY_paramgen\nEVP_PKEY_gen", fontcolor="#2879C0", color="#2879C0"];
|
/freebsd/contrib/arm-optimized-routines/math/aarch64/ |
H A D | cospif_2u6.c | 14 #define C0 0x1.921fb6p1f macro 53 return 1 - (C0 * x); in arm_math_cospif() 71 y = fmaf (y, r2, C0); in arm_math_cospif()
|
H A D | sinpif_2u5.c | 14 #define C0 0x1.921fb6p1f macro 48 return C0 * x; in arm_math_sinpif() 72 y = fmaf (y, r2, C0); in arm_math_sinpif()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-xray/ |
H A D | xray-color-helper.cpp | 172 interpolateHSV(const std::tuple<double, double, double> &C0, in interpolateHSV() argument 174 double H = interpolateHue(std::get<0>(C0), std::get<0>(C1), T); in interpolateHSV() 175 double S = std::get<1>(C0) + T * (std::get<1>(C1) - std::get<1>(C0)); in interpolateHSV() 176 double V = std::get<2>(C0) + T * (std::get<2>(C1) - std::get<2>(C0)); in interpolateHSV()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ConstantFolding.cpp | 1221 Constant *C0 = ConstantFoldIntegerCast(CE0->getOperand(0), IntPtrTy, in ConstantFoldCompareInstOperands() local 1225 if (C0 && C1) in ConstantFoldCompareInstOperands() 1226 return ConstantFoldCompareInstOperands(Predicate, C0, C1, DL, TLI); in ConstantFoldCompareInstOperands() 2785 const APInt *C0, *C1; in ConstantFoldIntrinsicCall2() local 2786 if (!getConstIntOrUndef(Operands[0], C0) || in ConstantFoldIntrinsicCall2() 2801 if (!C0 && !C1) in ConstantFoldIntrinsicCall2() 2803 if (!C0 || !C1) in ConstantFoldIntrinsicCall2() 2806 Ty, ICmpInst::compare(*C0, *C1, in ConstantFoldIntrinsicCall2() 2808 ? *C0 in ConstantFoldIntrinsicCall2() 2816 if (!C0 || !C1) in ConstantFoldIntrinsicCall2() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/ |
H A D | OMPContext.cpp | 99 template <typename T> static bool isSubset(ArrayRef<T> C0, ArrayRef<T> C1) { in isSubset() argument 101 assert(llvm::is_sorted(C0) && llvm::is_sorted(C1) && in isSubset() 104 if (C0.size() > C1.size()) in isSubset() 106 auto It0 = C0.begin(), End0 = C0.end(); in isSubset() 124 static bool isStrictSubset(ArrayRef<T> C0, ArrayRef<T> C1) { in isStrictSubset() argument 125 if (C0.size() >= C1.size()) in isStrictSubset() 127 return isSubset<T>(C0, C1); in isStrictSubset()
|
/freebsd/lib/msun/src/ |
H A D | k_cosf.c | 23 C0 = -0x1ffffffd0c5e81.0p-54, /* -0.499999997251031003120 */ variable 40 return ((one+z*C0) + w*C1) + (w*z)*r; in __kernel_cosdf()
|
H A D | k_sincosf.h | 23 C0 = -0x1ffffffd0c5e81.0p-54, /* -0.499999997251031003120 */ variable 39 *cs = ((1 + z * C0) + w * C1) + (w * z) * r; in __kernel_sincosdf()
|
/freebsd/secure/caroot/trusted/ |
H A D | CommScope_Public_Trust_ECC_Root-01.pem | 44 8E:07:62:C0:50:DD:C6:19:06:00:46:74:04:F7:F3:AE:7D:75:4D:30 53 SHA1 Fingerprint=07:86:C0:D8:DD:8E:C0:80:98:06:98:D0:58:7A:EF:DE:A6:CC:A2:5D
|
H A D | e-Szigno_Root_CA_2017.pem | 42 87:11:15:08:D1:AA:C1:78:0C:B1:AF:CE:C6:C9:90:EF:BF:30:04:C0 44 87:11:15:08:D1:AA:C1:78:0C:B1:AF:CE:C6:C9:90:EF:BF:30:04:C0
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | InterleavedLoadCombinePass.cpp | 1060 for (auto C0 = Candidates.begin(), E0 = Candidates.end(); C0 != E0; ++C0) { in findPattern() local 1063 unsigned Size = DL.getTypeAllocSize(C0->VTy->getElementType()); in findPattern() 1069 if (C->VTy != C0->VTy) in findPattern() 1071 if (C->BB != C0->BB) in findPattern() 1073 if (C->PV != C0->PV) in findPattern() 1078 if (C->EI[0].Ofs.isProvenEqualTo(C0->EI[0].Ofs + i * Size)) { in findPattern() 1088 Res[0] = C0; in findPattern()
|
/freebsd/crypto/openssl/crypto/chacha/asm/ |
H A D | chacha-ppc.pl | 414 my ($A0,$B0,$C0,$D0,$A1,$B1,$C1,$D1,$A2,$B2,$C2,$D2) 573 vmr $C0,@K[2] 601 my @thread0=&VMXROUND($A0,$B0,$C0,$D0,0); 617 @thread0=&VMXROUND($A0,$B0,$C0,$D0,1); 667 vadduwm $C0,$C0,@K[2] 758 vxor $C0,$C0,@D[2] 767 vperm $C0,$C0,$C0,$outperm 805 vsel @D[1],$B0,$C0,$outmask 806 vsel @D[2],$C0,$D0,$outmask 809 vsel $C0,$B1,$C1,$outmask [all …]
|
H A D | chacha-armv8.pl | 809 my ($A0,$B0,$C0,$D0,$A1,$B1,$C1,$D1,$A2,$B2,$C2,$D2, 923 mov $C0,@K[2] 946 my @thread0=&NEONROUND($A0,$B0,$C0,$D0,$T0,0); 965 @thread0=&NEONROUND($A0,$B0,$C0,$D0,$T0,1); 1060 @thread0=&NEONROUND($A0,$B0,$C0,$D0,$T0,0); 1077 @thread0=&NEONROUND($A0,$B0,$C0,$D0,$T0,1); 1116 add $C0,$C0,@K[2] 1176 eor $C0,$C0,$T2 1201 eor $C2,$C2,$C0
|
/freebsd/crypto/heimdal/lib/wind/ |
H A D | NormalizationTest.txt | 57 …C0 05C4 05AD;05B0 05B7 05BC 05A5 0592 05C0 05AD 05C4;05B0 05B7 05BC 05A5 0592 05C0 05AD 05C4;05B0 … 76 00C0;00C0;0041 0300;00C0;0041 0300; # (À; À; A◌̀; À; A◌̀; ) LATIN CAPITAL LETTER A WITH GRAVE 402 03D6;03D6;03D6;03C0;03C0; # (ϖ; ϖ; ϖ; π; π; ) GREEK PI SYMBOL 471 06C0;06C0;06D5 0654;06C0;06D5 0654; # (ۀ; ۀ; ە◌ٔ; ۀ; ە◌ٔ; ) ARABIC LETTER HEH WITH YEH ABOVE 1386 24C0;24C0;24C0;004B;004B; # (Ⓚ; Ⓚ; Ⓚ; K; K; ) CIRCLED LATIN CAPITAL LETTER K 1695 30C0;30C0;30BF 3099;30C0;30BF 3099; # (ダ; ダ; タ◌゙; ダ; タ◌゙; ) KATAKANA LETTER DA 2002 32C0;32C0;32C0;0031 6708;0031 6708; # (㋀; ㋀; ㋀; 1月; 1月; ) IDEOGRAPHIC TELEGRAPH SYMBOL FOR JANUARY 2084 3313;3313;3313;30AE 30EB 30C0 30FC;30AD 3099 30EB 30BF 3099 30FC; # (㌓; ㌓; ㌓; ギルダー; キ◌゙ルタ◌゙ー; ) SQU… 2101 3324;3324;3324;30C0 30FC 30B9;30BF 3099 30FC 30B9; # (㌤; ㌤; ㌤; ダース; タ◌゙ース; ) SQUARE DAASU 2257 33C0;33C0;33C0;006B 03A9;006B 03A9; # (㏀; ㏀; ㏀; kΩ; kΩ; ) SQUARE K OHM [all …]
|
/freebsd/sys/contrib/device-tree/src/arm/aspeed/ |
H A D | aspeed-bmc-qcom-dc-scm-v1.dts | 97 /*C0-C7*/ "","","","","","","","", 134 /*C0-C7*/ "","","","","","","","",
|
H A D | aspeed-bmc-vegman-n110.dts | 17 /*C0-C7*/ "","","","","","","","", 54 /*C0-C7*/ "","","","","CPU2_MISMATCH","","CPU2_MEM_THERM_EVENT","","","","","","","","","",
|
/freebsd/sys/contrib/device-tree/src/arm/rockchip/ |
H A D | rk3128-xpi-3128.dts | 288 /* GPIO0 C0-C7 */ 303 /* GPIO1 C0-C7 */ 318 /* GPIO2 C0-C7 */ 333 /* GPIO3 C0-C7 */
|
/freebsd/sys/contrib/device-tree/Bindings/pci/ |
H A D | nvidia,tegra194-pcie.txt | 13 TEGRA194_POWER_DOMAIN_PCIEX8B: C0 50 0: C0 92 In Tegra194, Only controllers C0, C4 & C5 support EP mode. 112 1. If C0/C4/C5 run at x1/x2 link widths (irrespective of speed and MPS) 113 2. If C0/C1/C2/C3/C4/C5 operate at their respective max link widths and
|
/freebsd/sys/contrib/device-tree/Bindings/net/ |
H A D | qca,qca7000.txt | 54 local-mac-address = [ A0 B0 C0 D0 E0 F0 ]; 84 local-mac-address = [ A0 B0 C0 D0 E0 F0 ];
|
/freebsd/crypto/openssl/test/ct/ |
H A D | tls1.sct | 10 E5:E2:3E:06:02:21:00:E4:ED:C0:DB:3A:C5:72:B1:E2:
|