Home
last modified time | relevance | path

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

12

/freebsd-12-stable/sys/contrib/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/
Du8.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 …]
Du4.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-12-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
Dtsan_rtl.h98 x_ = tid << kTidShift; in FastState()
99 x_ |= epoch; in FastState()
106 : x_(x) { in FastState()
110 return x_; in raw()
114 u64 res = (x_ & ~kIgnoreBit) >> kTidShift; in tid()
119 u64 res = x_ >> kTidShift; in TidWithIgnore()
124 u64 res = x_ & ((1ull << kClkBits) - 1); in epoch()
130 x_ += 1; in IncrementEpoch()
135 void SetIgnoreBit() { x_ |= kIgnoreBit; } in SetIgnoreBit()
136 void ClearIgnoreBit() { x_ &= ~kIgnoreBit; } in ClearIgnoreBit()
[all …]
/freebsd-12-stable/contrib/googletest/googletest/test/
Dgtest_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()
Dproduction.h48 int x() const { return x_; } in x()
50 void set_x(int an_x) { x_ = an_x; } in set_x()
51 int x_; variable
Dproduction.cc35 PrivateCode::PrivateCode() : x_(0) {} in PrivateCode()
/freebsd-12-stable/contrib/lua/src/
Dlobject.h226 { TValue *io = (obj); TString *x_ = (x); \
227 val_(io).gc = obj2gco(x_); settt_(io, ctb(x_->tt)); \
231 { TValue *io = (obj); Udata *x_ = (x); \
232 val_(io).gc = obj2gco(x_); settt_(io, ctb(LUA_TUSERDATA)); \
236 { TValue *io = (obj); lua_State *x_ = (x); \
237 val_(io).gc = obj2gco(x_); settt_(io, ctb(LUA_TTHREAD)); \
241 { TValue *io = (obj); LClosure *x_ = (x); \
242 val_(io).gc = obj2gco(x_); settt_(io, ctb(LUA_TLCL)); \
246 { TValue *io = (obj); CClosure *x_ = (x); \
247 val_(io).gc = obj2gco(x_); settt_(io, ctb(LUA_TCCL)); \
[all …]
/freebsd-12-stable/contrib/netbsd-tests/usr.bin/xlint/lint1/
Dd_gcc_extension.c4 …if (__extension__(({ __typeof((__logbw)) x_ = (__logbw); !__builtin_isinf((x_)) && !__builtin_isna… in a()
/freebsd-12-stable/sys/contrib/libsodium/src/libsodium/crypto_verify/sodium/
Dverify.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-12-stable/crypto/openssl/crypto/ec/
Decp_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()
Dec2_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-12-stable/contrib/llvm-project/compiler-rt/lib/builtins/
Dint_math.h50 __typeof((x)) x_ = (x); \
51 !crt_isinf(x_) && !crt_isnan(x_); \
/freebsd-12-stable/contrib/unbound/
Dconfigure.ac573 if test x_$enable_alloc_nonregional = x_yes; then
576 if test x_$enable_alloc_checks = x_yes; then
583 if test x_$enable_alloc_lite = x_yes; then
618 if test x_$withval != x_no; then
666 if test x_$withval != x_no; then
667 if test x_$ub_have_pthreads != x_no; then
702 if test x_$withval != x_no; then
729 if test x_$withval != x_no; then
740 if test x_$withval != x_no; then
746 if test x_$ub_test_python != x_no; then
[all …]
Dconfigure16279 if test x_$enable_alloc_nonregional = x_yes; then
16284 if test x_$enable_alloc_checks = x_yes; then
16293 if test x_$enable_alloc_lite = x_yes; then
16427 if test x_$withval != x_no; then
17014 if test x_$withval != x_no; then
17015 if test x_$ub_have_pthreads != x_no; then
17151 if test x_$withval != x_no; then
17240 if test x_$withval != x_no; then
17256 if test x_$withval != x_no; then
17262 if test x_$ub_test_python != x_no; then
[all …]
Dacx_nlnetlabs.m4654 if test x_$withval != x_no; then
680 if test x_$withval = x_ -o x_$withval = x_yes; then
696 if test x_$found_ssl != x_yes; then
792 if test x_$withval = x_no; then
/freebsd-12-stable/contrib/googletest/googlemock/test/
Dgmock_stress_test.cc69 explicit Base(int a_x) : x_(a_x) {} in Base()
71 int x() const { return x_; } in x()
73 int x_; member in testing::__anon041f29310111::Base
/freebsd-12-stable/contrib/gcc/
Dtree-outof-ssa.c317 unsigned x_; \
319 for (x_ = 0; x_ < VEC_length (int, (GRAPH)->edge_list); x_ += 2) \
321 y_ = VEC_index (int, (GRAPH)->edge_list, x_); \
324 (VAR) = VEC_index (int, (GRAPH)->edge_list, x_ + 1); \
336 unsigned x_; \
338 for (x_ = 0; x_ < VEC_length (int, (GRAPH)->edge_list); x_ += 2) \
340 y_ = VEC_index (int, (GRAPH)->edge_list, x_ + 1); \
343 (VAR) = VEC_index (int, (GRAPH)->edge_list, x_); \
Dlonglong.h884 UDItype x_ = (USItype)(x); \
887 __asm__ ("nsb %1, %0" : "=r" (c_) : "r" (x_)); \
/freebsd-12-stable/contrib/ldns/
Dconfigure.ac128 if test x_$with_drill != x_no ; then
153 if test x_$with_examples != x_no ; then
214 if test x_$withval != x_no; then
231 if test x_$ldns_have_python != x_no; then
256 if test x_$ldns_have_python != x_no; then
269 if test x_$withval != x_no; then
270 if test x_$ldns_with_pyldns != x_no; then
274 if test x_$withval != x_with_pyldns; then
280 if test x_$ldns_with_pyldns != x_no; then
287 if test x_$ldns_with_pyldnsx != x_no; then
[all …]
Dacx_nlnetlabs.m4646 if test x_$withval != x_no; then
648 if test x_$withval = x_ -o x_$withval = x_yes; then
664 if test x_$found_ssl != x_yes; then
758 if test x_$withval = x_no; then
/freebsd-12-stable/contrib/netbsd-tests/usr.bin/make/
Dt_make.sh80 atfname="$(echo "${basename}" | tr "x-" "x_")"
/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
Dlobject.h206 TString *x_ = (x); \
207 val_(io).gc=cast(GCObject *, x_); settt_(io, ctb(x_->tsv.tt)); \
/freebsd-12-stable/crypto/openssl/crypto/bn/
Dbn_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-12-stable/contrib/less/
Dless.hlp134 -D xx_c_o_l_o_r . --color=xx_c_o_l_o_r
/freebsd-12-stable/contrib/libstdc++/include/tr1/
Drandom286 * linear function @f$x_{i+1}\leftarrow(ax_{i} + c) \bmod m @f$.
652 * numbers using @f$x_{i}\leftarrow(x_{i - s} - x_{i - r} -
713 * @f$, sets @f$ x_{-r} \dots x_{-1} @f$ to @f$ lcg(1) \bmod m
714 * \dots lcg(r) \bmod m @f$ respectively. If @f$ x_{-1} = 0 @f$

12