Home
last modified time | relevance | path

Searched refs:x_ (Results 1 – 25 of 28) sorted by relevance

12

/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/
HDu8.h7 x_##A = _mm256_add_epi32(x_##A, x_##B); \
8 t_##A = _mm256_xor_si256(x_##D, x_##A); \
9 x_##D = VEC8_ROT(t_##A, 16); \
10 x_##C = _mm256_add_epi32(x_##C, x_##D); \
11 t_##C = _mm256_xor_si256(x_##B, x_##C); \
12 x_##B = VEC8_ROT(t_##C, 12); \
13 x_##A = _mm256_add_epi32(x_##A, x_##B); \
14 t_##A = _mm256_xor_si256(x_##D, x_##A); \
15 x_##D = VEC8_ROT(t_##A, 8); \
16 x_##C = _mm256_add_epi32(x_##C, x_##D); \
[all …]
HDu4.h8 x_##A = _mm_add_epi32(x_##A, x_##B); \
9 t_##A = _mm_xor_si128(x_##D, x_##A); \
10 x_##D = _mm_shuffle_epi8(t_##A, rot16); \
11 x_##C = _mm_add_epi32(x_##C, x_##D); \
12 t_##C = _mm_xor_si128(x_##B, x_##C); \
13 x_##B = VEC4_ROT(t_##C, 12); \
14 x_##A = _mm_add_epi32(x_##A, x_##B); \
15 t_##A = _mm_xor_si128(x_##D, x_##A); \
16 x_##D = _mm_shuffle_epi8(t_##A, rot8); \
17 x_##C = _mm_add_epi32(x_##C, x_##D); \
[all …]
/freebsd-13-stable/contrib/googletest/googletest/test/
HDgtest_prod_test.cc40 EXPECT_EQ(0, a.x_); in TEST()
43 EXPECT_EQ(1, a.x_); in TEST()
52 EXPECT_EQ(0, a.x_); in TEST_F()
55 EXPECT_EQ(2, a.x_); in TEST_F()
HDproduction.h48 int x() const { return x_; } in x()
51 void set_x(int an_x) { x_ = an_x; } in set_x()
52 int x_; variable
HDproduction.cc35 PrivateCode::PrivateCode() : x_(0) {} in PrivateCode()
/freebsd-13-stable/contrib/netbsd-tests/usr.bin/xlint/lint1/
HDd_gcc_extension.c4 …if (__extension__(({ __typeof((__logbw)) x_ = (__logbw); !__builtin_isinf((x_)) && !__builtin_isna… in a()
/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_verify/sodium/
HDverify.c35 crypto_verify_n(const unsigned char *x_, const unsigned char *y_, in crypto_verify_n() argument
44 (const volatile __m128i *volatile) (const void *) x_; in crypto_verify_n()
64 crypto_verify_n(const unsigned char *x_, const unsigned char *y_, in crypto_verify_n() argument
68 (const volatile unsigned char *volatile) x_; in crypto_verify_n()
/freebsd-13-stable/contrib/lua/src/
HDlobject.h247 { TValue *io = (obj); lua_State *x_ = (x); \
248 val_(io).gc = obj2gco(x_); settt_(io, ctb(LUA_VTHREAD)); \
350 { TValue *io = (obj); TString *x_ = (x); \
351 val_(io).gc = obj2gco(x_); settt_(io, ctb(x_->tt)); \
423 { TValue *io = (obj); Udata *x_ = (x); \
424 val_(io).gc = obj2gco(x_); settt_(io, ctb(LUA_VUSERDATA)); \
588 { TValue *io = (obj); LClosure *x_ = (x); \
589 val_(io).gc = obj2gco(x_); settt_(io, ctb(LUA_VLCL)); \
598 { TValue *io = (obj); CClosure *x_ = (x); \
599 val_(io).gc = obj2gco(x_); settt_(io, ctb(LUA_VCCL)); \
[all …]
/freebsd-13-stable/crypto/openssl/crypto/ec/
HDecp_oct.c18 const BIGNUM *x_, int y_bit, in ec_GFp_simple_set_compressed_coordinates() argument
51 if (!BN_nnmod(x, x_, group->field, ctx)) in ec_GFp_simple_set_compressed_coordinates()
55 if (!group->meth->field_sqr(group, tmp2, x_, ctx)) in ec_GFp_simple_set_compressed_coordinates()
57 if (!group->meth->field_mul(group, tmp1, tmp2, x_, ctx)) in ec_GFp_simple_set_compressed_coordinates()
60 if (!BN_mod_sqr(tmp2, x_, group->field, ctx)) in ec_GFp_simple_set_compressed_coordinates()
62 if (!BN_mod_mul(tmp1, tmp2, x_, group->field, ctx)) in ec_GFp_simple_set_compressed_coordinates()
HDec2_oct.c35 const BIGNUM *x_, int y_bit, in ec_GF2m_simple_set_compressed_coordinates() argument
61 if (!BN_GF2m_mod_arr(x, x_, group->poly)) in ec_GF2m_simple_set_compressed_coordinates()
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/builtins/
HDint_math.h50 __typeof((x)) x_ = (x); \
51 !crt_isinf(x_) && !crt_isnan(x_); \
/freebsd-13-stable/crypto/libecc/src/examples/sig/dsa/
HDdsa.c134 nn x_; in dsa_compute_pub_from_priv() local
135 x_.magic = WORD(0); in dsa_compute_pub_from_priv()
161 ret = nn_init(&x_, 0); EG(ret, err); in dsa_compute_pub_from_priv()
165 ret = _blind_scalar(x, q, &x_); EG(ret, err); in dsa_compute_pub_from_priv()
166 ret = _fix_scalar_msb(&x_, q, &x_); EG(ret, err); in dsa_compute_pub_from_priv()
169 ret = nn_mod_pow(&(pub->y), g, &x_, p); EG(ret, err); in dsa_compute_pub_from_priv()
181 nn_uninit(&x_); in dsa_compute_pub_from_priv()
/freebsd-13-stable/contrib/unbound/
HDconfigure.ac628 if test x_$enable_alloc_nonregional = x_yes; then
631 if test x_$enable_alloc_checks = x_yes; then
638 if test x_$enable_alloc_lite = x_yes; then
673 if test x_$withval != x_no; then
721 if test x_$withval != x_no; then
722 if test x_$ub_have_pthreads != x_no; then
757 if test x_$withval != x_no; then
784 if test x_$withval != x_no; then
795 if test x_$withval != x_no; then
801 if test x_$ub_test_python != x_no; then
[all …]
HDconfigure17951 if test x_$enable_alloc_nonregional = x_yes; then
17956 if test x_$enable_alloc_checks = x_yes; then
17965 if test x_$enable_alloc_lite = x_yes; then
18094 if test x_$withval != x_no; then
19001 if test x_$withval != x_no; then
19002 if test x_$ub_have_pthreads != x_no; then
19142 if test x_$withval != x_no; then
19235 if test x_$withval != x_no; then
19252 if test x_$withval != x_no; then
19258 if test x_$ub_test_python != x_no; then
[all …]
HDacx_nlnetlabs.m4657 if test x_$withval != x_no; then
683 if test x_$withval = x_ -o x_$withval = x_yes; then
699 if test x_$found_ssl != x_yes; then
828 if test x_$withval = x_no; then
/freebsd-13-stable/crypto/libecc/src/examples/sig/gostr34_10_94/
HDgostr34_10_94.c475 nn x_; in main() local
476 x_.magic = WORD(0); in main()
505 ret = nn_get_random_mod(&x_, &(pub.q)); EG(ret, err); in main()
506 ret = _i2osp(&x_, &x[0], sizeof(x)); EG(ret, err); in main()
518 nn_uninit(&x_); in main()
/freebsd-13-stable/contrib/ldns/
HDconfigure.ac158 if test x_$with_drill != x_no ; then
183 if test x_$with_examples != x_no ; then
244 if test x_$withval != x_no; then
261 if test x_$ldns_have_python != x_no; then
286 if test x_$ldns_have_python != x_no; then
299 if test x_$withval != x_no; then
300 if test x_$ldns_with_pyldns != x_no; then
304 if test x_$withval != x_with_pyldns; then
310 if test x_$ldns_with_pyldns != x_no; then
317 if test x_$ldns_with_pyldnsx != x_no; then
[all …]
HDacx_nlnetlabs.m4648 if test x_$withval != x_no; then
650 if test x_$withval = x_ -o x_$withval = x_yes; then
666 if test x_$found_ssl != x_yes; then
765 if test x_$withval = x_no; then
HDconfigure14742 if test x_$with_drill != x_no ; then
14783 if test x_$with_examples != x_no ; then
14962 if test x_$withval != x_no; then
15423 if test x_$ldns_have_python != x_no; then
15765 if test x_$ldns_have_python != x_no; then
15908 if test x_$withval != x_no; then
15909 if test x_$ldns_with_pyldns != x_no; then
15914 if test x_$withval != x_with_pyldns; then
15920 if test x_$ldns_with_pyldns != x_no; then
15929 if test x_$ldns_with_pyldnsx != x_no; then
[all …]
/freebsd-13-stable/contrib/netbsd-tests/usr.bin/make/
HDt_make.sh80 atfname="$(echo "${basename}" | tr "x-" "x_")"
/freebsd-13-stable/sys/contrib/openzfs/module/lua/
HDlobject.h205 TString *x_ = (x); \
206 val_(io).gc=cast(GCObject *, x_); settt_(io, ctb(x_->tsv.tt)); \
/freebsd-13-stable/contrib/less/
HDless.hlp141 -D xx_c_o_l_o_r . --color=xx_c_o_l_o_r
230 --lesskey-context=_t_e_x_t
/freebsd-13-stable/crypto/openssl/crypto/bn/
HDbn_exp.c594 #define MOD_EXP_CTIME_ALIGN(x_) \ argument
595 …((unsigned char*)(x_) + (MOD_EXP_CTIME_MIN_CACHE_LINE_WIDTH - (((size_t)(x_)) & (MOD_EXP_CTIME_MIN…
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
HDarm_mve_defs.td426 class PolymorphicNameType<int nt_, string x_> {
428 string ExtraSuffixToDiscard = x_;
/freebsd-13-stable/crypto/openssh/openbsd-compat/
HDsha2.c45 #define MAKE_CLONE(x, y) void __ssh_compat_make_clone_##x_##y(void)

12