Home
last modified time | relevance | path

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

123

/netbsd-src/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/chacha20/dolbeau/
H A 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 …]
H A 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 …]
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/tsan/
H A Dtsan_shadow.h26 x_ = tid << kTidShift; in FastState()
27 x_ |= epoch; in FastState()
33 explicit FastState(u64 x) : x_(x) {} in FastState()
35 u64 raw() const { return x_; } in raw()
38 u64 res = (x_ & ~kIgnoreBit) >> kTidShift; in tid()
43 u64 res = x_ >> kTidShift; in TidWithIgnore()
48 u64 res = x_ & ((1ull << kClkBits) - 1); in epoch()
54 x_ += 1; in IncrementEpoch()
59 void SetIgnoreBit() { x_ |= kIgnoreBit; } in SetIgnoreBit()
60 void ClearIgnoreBit() { x_ &= ~kIgnoreBit; } in ClearIgnoreBit()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
H A Dtsan_rtl.h105 x_ = tid << kTidShift; in FastState()
106 x_ |= epoch; in FastState()
113 : x_(x) { in FastState()
117 return x_; in raw()
121 u64 res = (x_ & ~kIgnoreBit) >> kTidShift; in tid()
126 u64 res = x_ >> kTidShift; in TidWithIgnore()
131 u64 res = x_ & ((1ull << kClkBits) - 1); in epoch()
137 x_ += 1; in IncrementEpoch()
142 void SetIgnoreBit() { x_ |= kIgnoreBit; } in SetIgnoreBit()
143 void ClearIgnoreBit() { x_ &= ~kIgnoreBit; } in ClearIgnoreBit()
[all …]
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
H A Dtsan_rtl.h109 x_ = tid << kTidShift; in FastState()
110 x_ |= epoch; in FastState()
117 : x_(x) { in FastState()
121 return x_; in raw()
125 u64 res = (x_ & ~kIgnoreBit) >> kTidShift; in tid()
130 u64 res = x_ >> kTidShift; in TidWithIgnore()
135 u64 res = x_ & ((1ull << kClkBits) - 1); in epoch()
141 x_ += 1; in IncrementEpoch()
146 void SetIgnoreBit() { x_ |= kIgnoreBit; } in SetIgnoreBit()
147 void ClearIgnoreBit() { x_ &= ~kIgnoreBit; } in ClearIgnoreBit()
[all …]
/netbsd-src/sys/external/isc/libsodium/dist/src/libsodium/crypto_verify/sodium/
H A 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()
/netbsd-src/external/mit/lua/dist/src/
H A Dlobject.h273 { TValue *io = (obj); lua_State *x_ = (x); \
274 val_(io).gc = obj2gco(x_); settt_(io, ctb(LUA_VTHREAD)); \
384 { TValue *io = (obj); TString *x_ = (x); \
385 val_(io).gc = obj2gco(x_); settt_(io, ctb(x_->tt)); \
457 { TValue *io = (obj); Udata *x_ = (x); \
458 val_(io).gc = obj2gco(x_); settt_(io, ctb(LUA_VUSERDATA)); \
623 { TValue *io = (obj); LClosure *x_ = (x); \
624 val_(io).gc = obj2gco(x_); settt_(io, ctb(LUA_VLCL)); \
633 { TValue *io = (obj); CClosure *x_ = (x); \
634 val_(io).gc = obj2gco(x_); settt_(io, ctb(LUA_VCCL)); \
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/ec/
H A 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()
H A 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()
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/ec/
H A Decp_oct.c24 const BIGNUM *x_, int y_bit, in ossl_ec_GFp_simple_set_compressed_coordinates() argument
54 if (!BN_nnmod(x, x_, group->field, ctx)) in ossl_ec_GFp_simple_set_compressed_coordinates()
58 if (!group->meth->field_sqr(group, tmp2, x_, ctx)) in ossl_ec_GFp_simple_set_compressed_coordinates()
60 if (!group->meth->field_mul(group, tmp1, tmp2, x_, ctx)) in ossl_ec_GFp_simple_set_compressed_coordinates()
63 if (!BN_mod_sqr(tmp2, x_, group->field, ctx)) in ossl_ec_GFp_simple_set_compressed_coordinates()
65 if (!BN_mod_mul(tmp1, tmp2, x_, group->field, ctx)) in ossl_ec_GFp_simple_set_compressed_coordinates()
H A Dec2_oct.c41 const BIGNUM *x_, int y_bit, in ossl_ec_GF2m_simple_set_compressed_coordinates() argument
66 if (!BN_GF2m_mod_arr(x, x_, group->poly)) in ossl_ec_GF2m_simple_set_compressed_coordinates()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dtree-outof-ssa.c514 unsigned x_; \
516 for (x_ = 0; x_ < (GRAPH)->edge_list.length (); x_ += 2) \
518 y_ = (GRAPH)->edge_list[x_]; \
521 (void) ((VAR) = (GRAPH)->edge_list[x_ + 1]); \
522 (void) ((LOCUS) = (GRAPH)->edge_locus[x_ / 2]); \
534 unsigned x_; \
536 for (x_ = 0; x_ < (GRAPH)->edge_list.length (); x_ += 2) \
538 y_ = (GRAPH)->edge_list[x_ + 1]; \
541 (void) ((VAR) = (GRAPH)->edge_list[x_]); \
542 (void) ((LOCUS) = (GRAPH)->edge_locus[x_ / 2]); \
H A Dopts.h473 if (!(OPTS_SET)->x_ ## OPTION) \
474 (OPTS)->x_ ## OPTION = VALUE; \
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dtree-outof-ssa.cc514 unsigned x_; \
516 for (x_ = 0; x_ < (GRAPH)->edge_list.length (); x_ += 2) \
518 y_ = (GRAPH)->edge_list[x_]; \
521 (void) ((VAR) = (GRAPH)->edge_list[x_ + 1]); \
522 (void) ((LOCUS) = (GRAPH)->edge_locus[x_ / 2]); \
534 unsigned x_; \
536 for (x_ = 0; x_ < (GRAPH)->edge_list.length (); x_ += 2) \
538 y_ = (GRAPH)->edge_list[x_ + 1]; \
541 (void) ((VAR) = (GRAPH)->edge_list[x_]); \
542 (void) ((LOCUS) = (GRAPH)->edge_locus[x_ / 2]); \
H A Dopts.h520 if (!(OPTS_SET)->x_ ## OPTION) \
521 (OPTS)->x_ ## OPTION = VALUE; \
527 #define OPTION_SET_P(OPTION) global_options_set.x_ ## OPTION
H A Dipa-inline.cc295 (opts_for_fn (caller->decl)->x_##flag \
296 != opts_for_fn (callee->decl)->x_##flag \
298 || opts_for_fn (caller->decl)->x_##flag \
299 < opts_for_fn (callee->decl)->x_##flag))
303 (opts_for_fn (caller->decl)->x_##flag \
304 != opts_for_fn (callee->decl)->x_##flag \
306 || opts_for_fn (caller->decl)->x_##flag \
307 > opts_for_fn (callee->decl)->x_##flag))
310 (opts_for_fn (caller->decl)->x_##flag \
311 != opts_for_fn (callee->decl)->x_##flag)
/netbsd-src/sys/arch/playstation2/ee/
H A Dsif.c63 typeof(x) x_ = x; \
64 (((x_) >> 4) * 10 + ((x_) & 0xf)); \
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/builtins/
H A Dint_math.h54 __typeof((x)) x_ = (x); \
55 !crt_isinf(x_) && !crt_isnan(x_); \
/netbsd-src/tests/usr.bin/xlint/lint1/
H A Dgcc.c38 __typeof((__logbw)) x_ = (__logbw); in extension_and_typeof()
39 !dbl_isinf((x_)); in extension_and_typeof()
/netbsd-src/external/bsd/libbind/dist/doc/
H A Dhesiod.cat312 iinntt hheessiioodd__iinniitt((vvooiidd ****_c_o_n_t_e_x_t))
13 …eessiioodd__rreessoollvvee((vvooiidd **_c_o_n_t_e_x_t,, ccoonnsstt…
15 …iioodd__ffrreeee__lliisstt((vvooiidd **_c_o_n_t_e_x_t,, cchhaarr *…
16 …eessiioodd__ttoo__bbiinndd((vvooiidd **_c_o_n_t_e_x_t,, ccoonnsstt…
18 vvooiidd hheessiioodd__eenndd((vvooiidd **_c_o_n_t_e_x_t))
23 perform lookups, you must first initialize a _c_o_n_t_e_x_t, an opaque object
26 …the location pointed to by the _c_o_n_t_e_x_t argument. _h_e_s_i_o_d___e_n_d fr…
/netbsd-src/external/bsd/unbound/dist/
H A Dconfigure.ac574 if test x_$enable_alloc_nonregional = x_yes; then
577 if test x_$enable_alloc_checks = x_yes; then
584 if test x_$enable_alloc_lite = x_yes; then
619 if test x_$withval != x_no; then
667 if test x_$withval != x_no; then
668 if test x_$ub_have_pthreads != x_no; then
703 if test x_$withval != x_no; then
730 if test x_$withval != x_no; then
741 if test x_$withval != x_no; then
747 if test x_$ub_test_python != x_no; then
[all …]
/netbsd-src/external/bsd/nsd/dist/
H A Dconfigure.ac358 if test x_$withval != x_no; then
385 if test x_$withval = x_ -o x_$withval = x_yes; then
392 if test x_$ssldir != x_/usr; then
404 if test x_$found_ssl != x_yes; then
410 if test x_$ssldir != x_/usr; then
413 if test x_$ssldir = x_/usr/sfw; then
424 if test x_$withval = x_yes -o x_$withval != x_no; then
426 if test x_$withval = x_ -o x_$withval = x_yes; then
440 if test x_$found_libevent != x_yes; then
/netbsd-src/external/mpl/dhcp/dist/contrib/
H A Dsethostname.sh14 if [ x$1 = x_ ]; then
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/
H A Dlifetime.d1687 private X x_;
1690 x_ = forward!x;
1696 private const X x_;
1699 x_ = forward!x;
1703 x_ = forward!x;
1722 assert(y1.x_.i == 1);
1725 assert(y2.x_.i == 0);
1729 assert(z1.x_.i == 1);
1732 assert(z2.x_.i == 0);
1735 assert(z3.x_.i == 1);
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/
H A Dconvert.d190 private Float parse(bool is_denormalized = false, T:real)(T x_) if (floatFormat!T != FloatFormat.Re…
193 Unqual!T x = x_;
249 private Float parse(bool _ = false, T:real)(T x_) if (floatFormat!T == FloatFormat.Real80)
252 Unqual!T x = x_;

123