/freebsd/crypto/openssl/crypto/bn/ |
H A D | rsaz_exp.c | 60 BN_ULONG k0) 85 rsaz_1024_mul_avx2(R2, R2, R2, m, k0); 86 rsaz_1024_mul_avx2(R2, R2, two80, m, k0); 89 rsaz_1024_mul_avx2(result, R2, one, m, k0); 91 rsaz_1024_mul_avx2(a_inv, a_inv, R2, m, k0); 97 rsaz_1024_sqr_avx2(result, a_inv, m, k0, 1); 102 rsaz_1024_mul_avx2(result, result, a_inv, m, k0); 107 rsaz_1024_sqr_avx2(result, result, m, k0, 1); 110 rsaz_1024_sqr_avx2(result, result, m, k0, 1); 113 rsaz_1024_sqr_avx2(result, result, m, k0, 1); [all …]
|
H A D | rsaz_exp_x2.c | 59 const BN_ULONG *exp, const BN_ULONG *m, BN_ULONG k0); 62 const BN_ULONG *rr, const BN_ULONG k0[2]); 79 BN_ULONG k0); 82 const BN_ULONG *rr, const BN_ULONG k0[2]); 85 const BN_ULONG k0[2]); 151 BN_ULONG k0[2] = {0}; 214 k0[0] = k0_1; 215 k0[1] = k0_2; 217 exp_x2(rr1_red, base1_red, exp, m1_red, rr1_red, k0); 262 const BN_ULONG k0[2]) [all …]
|
H A D | rsaz_exp.h | 32 BN_ULONG k0); 37 const BN_ULONG m_norm[8], BN_ULONG k0,
|
/freebsd/contrib/bzip2/ |
H A D | bzlib.c | 568 s->state_out_ch = s->k0; in unRLE_obuf_to_output_FAST() 572 if (k1 != s->k0) { s->k0 = k1; continue; }; in unRLE_obuf_to_output_FAST() 578 if (k1 != s->k0) { s->k0 = k1; continue; }; in unRLE_obuf_to_output_FAST() 584 if (k1 != s->k0) { s->k0 = k1; continue; }; in unRLE_obuf_to_output_FAST() 589 BZ_GET_FAST(s->k0); BZ_RAND_UPD_MASK; in unRLE_obuf_to_output_FAST() 590 s->k0 ^= BZ_RAND_MASK; s->nblock_used++; in unRLE_obuf_to_output_FAST() 600 Int32 c_k0 = s->k0; in unRLE_obuf_to_output_FAST() 678 s->k0 = c_k0; in unRLE_obuf_to_output_FAST() 738 s->state_out_ch = s->k0; in unRLE_obuf_to_output_SMALL() 742 if (k1 != s->k0) { s->k0 = k1; continue; }; in unRLE_obuf_to_output_SMALL() [all …]
|
H A D | decompress.c | 557 BZ_GET_SMALL(s->k0); s->nblock_used++; in BZ2_decompress() 558 BZ_RAND_UPD_MASK; s->k0 ^= BZ_RAND_MASK; in BZ2_decompress() 560 BZ_GET_SMALL(s->k0); s->nblock_used++; in BZ2_decompress() 576 BZ_GET_FAST(s->k0); s->nblock_used++; in BZ2_decompress() 577 BZ_RAND_UPD_MASK; s->k0 ^= BZ_RAND_MASK; in BZ2_decompress() 579 BZ_GET_FAST(s->k0); s->nblock_used++; in BZ2_decompress()
|
H A D | bzlib_private.h | 374 Int32 k0; member
|
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/ |
H A D | shorthash_siphash24_ref.c | 15 uint64_t k0 = LOAD64_LE(k); in crypto_shorthash_siphash24() local 23 v2 ^= k0; in crypto_shorthash_siphash24() 25 v0 ^= k0; in crypto_shorthash_siphash24()
|
H A D | shorthash_siphashx24_ref.c | 14 uint64_t k0 = LOAD64_LE(k); in crypto_shorthash_siphashx24() local 22 v2 ^= k0; in crypto_shorthash_siphashx24() 24 v0 ^= k0; in crypto_shorthash_siphashx24()
|
/freebsd/crypto/openssh/ |
H A D | umac.c | 344 UINT32 k0,k1,k2,k3,k4,k5,k6,k7; in nh_aux() local 352 k0 = *(k+0); k1 = *(k+1); k2 = *(k+2); k3 = *(k+3); in nh_aux() 354 h += MUL64((k0 + d0), (k4 + d4)); in nh_aux() 377 UINT32 k0,k1,k2,k3,k4,k5,k6,k7, in nh_aux() local 382 k0 = *(k+0); k1 = *(k+1); k2 = *(k+2); k3 = *(k+3); in nh_aux() 391 h1 += MUL64((k0 + d0), (k4 + d4)); in nh_aux() 403 k0 = k8; k1 = k9; k2 = k10; k3 = k11; in nh_aux() 424 UINT32 k0,k1,k2,k3,k4,k5,k6,k7, in nh_aux() local 430 k0 = *(k+0); k1 = *(k+1); k2 = *(k+2); k3 = *(k+3); in nh_aux() 440 h1 += MUL64((k0 + d0), (k4 + d4)); in nh_aux() [all …]
|
/freebsd/contrib/llvm-project/libcxx/src/ |
H A D | hash.cpp | 76 // Start searching list of potential primes: L * k0 + indices[in] 80 size_t k0 = n / L; 81 size_t in = static_cast<size_t>(std::lower_bound(indices, indices + M, n - k0 * L) - indices); 82 n = L * k0 + indices[in]; 445 ++k0; in __next_prime() 448 n = L * k0 + indices[in]; in __next_prime() 182 size_t k0 = n / L; __next_prime() local
|
/freebsd/contrib/unbound/util/ |
H A D | siphash.c | 97 uint64_t k0 = U8TO64_LE(k); in siphash() local 109 v2 ^= k0; in siphash() 111 v0 ^= k0; in siphash()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | SipHash.cpp | 74 uint64_t k0 = endian::read64le(kk); in siphash() local 82 v2 ^= k0; in siphash() 84 v0 ^= k0; in siphash()
|
/freebsd/contrib/arm-optimized-routines/math/aarch64/advsimd/ |
H A D | v_log1p_inline.h | 103 uint64x2_t k0 = vceqzq_f64 (k); in log1p_inline() local 104 cm = v_zerofy_f64 (cm, k0); in log1p_inline() 105 f = vbslq_f64 (k0, x, f); in log1p_inline()
|
/freebsd/crypto/openssl/crypto/siphash/ |
H A D | siphash.c | 111 uint64_t k0 = U8TO64_LE(k); in SipHash_Init() local 128 ctx->v0 = 0x736f6d6570736575ULL ^ k0; in SipHash_Init() 130 ctx->v2 = 0x6c7967656e657261ULL ^ k0; in SipHash_Init()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | Hashing.h | 153 static constexpr uint64_t k0 = 0xc3a5c85c97cb3127ULL; variable 205 uint64_t d = fetch64(s + len - 16) * k0; in hash_17to32_bytes() 213 uint64_t a = fetch64(s) + (len + fetch64(s + len - 16)) * k0; in hash_33to64_bytes() 230 uint64_t r = shift_mix((vf + ws) * k2 + (wf + vs) * k0); in hash_33to64_bytes() 231 return shift_mix((seed ^ (r * k0)) + vs) * k2; in hash_33to64_bytes()
|
/freebsd/secure/lib/libcrypt/ |
H A D | crypt-des.c | 368 u_int32_t k0, k1, rawkey0, rawkey1; in des_setkey() local 394 k0 = key_perm_maskl[0][rawkey0 >> 25] in des_setkey() 419 t0 = (k0 << shifts) | (k0 >> (28 - shifts)); in des_setkey()
|
/freebsd/contrib/bearssl/src/hash/ |
H A D | ghash_pclmul.c | 156 #define PBK(k0, k1, kw, kx) do { \ argument 157 kw = _mm_unpacklo_epi64(k1, k0); \ 158 kx = _mm_xor_si128(k0, k1); \
|
/freebsd/crypto/openssl/crypto/bn/asm/ |
H A D | rsaz-avx512.pl | 112 my ($res,$a,$b,$m,$k0) = @_6_args_universal_ABI; 357 &amm52x20_x1(0,8*$idx,$acc0_0,$R0_0,$R0_0h,$R1_0,$R1_0h,$R2_0,$k0); 468 &amm52x20_x1( 0, 0,$acc0_0,$R0_0,$R0_0h,$R1_0,$R1_0h,$R2_0,"($k0)"); 470 &amm52x20_x1(20*8,20*8,$acc0_1,$R0_1,$R0_1h,$R1_1,$R1_1h,$R2_1,"8($k0)");
|
/freebsd/crypto/openssl/crypto/sm4/ |
H A D | sm4.c | 179 #define SM4_RNDS(k0, k1, k2, k3, F) \ argument 181 B0 ^= F(B1 ^ B2 ^ B3 ^ ks->rk[k0]); \
|
/freebsd/contrib/gdtoa/ |
H A D | dtoa.c | 119 j, j1, k, k0, k_check, leftright, m2, m5, s2, s5, local 340 k0 = k; 432 k = k0;
|
H A D | gdtoa.c | 157 int j, j1, k, k0, k_check, kind, leftright, m2, m5, nbits; local 341 k0 = k; 438 k = k0;
|
/freebsd/crypto/openssl/test/smime-eml/ |
H A D | SignedInvalidMappingFromanyPolicyTest7.eml | 50 AjwKDwbjPQQ7GuKu0bUPL5Aoi/u5jDH9Npgb2OqnXTyvi6Qr2hWUkxRhWcF+0/k0
|
/freebsd/share/termcap/ |
H A D | termcap | 176 :k0=^A@\r:k1=^AA\r:k2=^AB\r:k3=^AC\r:kd=^J:kl=^H:kr=^L:ku=^K:\ 335 :k0=\Ey\r:k1=\Ep\r:k2=\Eq\r:k3=\Er\r:k4=\Es\r:\ 447 :k0=\E<:I0=f10:kI=\000:kh=\EH:kR=\EG:kP=\Eg:kF=\EE:kN=\EE:\ 468 :k6=\E[006q:k7=\E[007q:k8=\E[008q:k9=\E[009q:k0=\E[010q:\ 563 :k7=\E[S:k8=\E[T:k9=\E[U:k0=\E[V:\ 596 :k0=\EA:k1=\EB:k2=\EC:k3=\ED:k4=\EE:k5=\EF:k6=\EG:k7=\EH:\ 613 :dc=\EW:dl=\ER:ei=\Er:ho=^^:im=\Eq:k0=^A0\r:kd=^J:kl=^H:pt:\ 627 :dl=2*\E[M:k0=\EP:k1=\EQ:k2=\ER:k3=\ES:kd=\EB:ke=\E>:kl=\ED:kr=\EC:\ 641 :k0=^AI:k1=^A@:k2=^AA:k3=^AB:k4=^AC:k5=^AD:k6=^AE:k7=^AF:\ 675 :kn#10:k0=^A0^M:k1=^A1^M:k2=^A2^M:k3=^A3^M:k4=^A4^M:k5=^A5^M:\ [all …]
|
/freebsd/sys/dev/vt/ |
H A D | vt_core.c | 1042 keyboard_t *k0, *k; in vt_allocate_keyboard() local 1060 k0 = kbd_get_keyboard(idx0); in vt_allocate_keyboard() 1075 kbdd_ioctl(k0, KBADDKBD, (caddr_t) &ki); in vt_allocate_keyboard() 1084 k0 = kbd_get_keyboard(idx0); in vt_allocate_keyboard() 1086 vd->vd_keyboard = k0; in vt_allocate_keyboard()
|
/freebsd/sys/dev/usb/wlan/ |
H A D | if_mtw.c | 2035 struct ieee80211_key *k0; in mtw_key_delete() local 2051 k0 = &sc->cmdq[i].key; in mtw_key_delete() 2052 k0->wk_flags = k->wk_flags; in mtw_key_delete() 2053 k0->wk_keyix = k->wk_keyix; in mtw_key_delete() 2055 k0->wk_pad = k->wk_pad; in mtw_key_delete()
|