| /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/chacha20/dolbeau/ |
| u4.h | 8 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); [all...] |
| u8.h | 7 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); [all...] |
| /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/ |
| tsan_shadow.h | 26 x_ = tid << kTidShift; 27 x_ |= epoch; 33 explicit FastState(u64 x) : x_(x) {} 35 u64 raw() const { return x_; } 38 u64 res = (x_ & ~kIgnoreBit) >> kTidShift; 43 u64 res = x_ >> kTidShift; 48 u64 res = x_ & ((1ull << kClkBits) - 1); 54 x_ += 1; 59 void SetIgnoreBit() { x_ |= kIgnoreBit; } 60 void ClearIgnoreBit() { x_ &= ~kIgnoreBit; 91 u64 x_; member in class:__tsan::FastState [all...] |
| /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_verify/sodium/ |
| verify.c | 35 crypto_verify_n(const unsigned char *x_, const unsigned char *y_, 44 (const volatile __m128i *volatile) (const void *) x_; 64 crypto_verify_n(const unsigned char *x_, const unsigned char *y_, 68 (const volatile unsigned char *volatile) x_;
|
| /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
| tsan_rtl.h | 109 x_ = tid << kTidShift; 110 x_ |= epoch; 117 : x_(x) { 121 return x_; 125 u64 res = (x_ & ~kIgnoreBit) >> kTidShift; 130 u64 res = x_ >> kTidShift; 135 u64 res = x_ & ((1ull << kClkBits) - 1); 141 x_ += 1; 146 void SetIgnoreBit() { x_ |= kIgnoreBit; } 147 void ClearIgnoreBit() { x_ &= ~kIgnoreBit; 180 u64 x_; member in class:__tsan::FastState [all...] |
| /src/sys/arch/playstation2/ee/ |
| sif.c | 63 typeof(x) x_ = x; \ 64 (((x_) >> 4) * 10 + ((x_) & 0xf)); \
|
| /src/tests/usr.bin/xlint/lint1/ |
| gcc.c | 38 __typeof((__logbw)) x_ = (__logbw); 39 !dbl_isinf((x_));
|
| /src/sys/external/bsd/compiler_rt/dist/lib/builtins/ |
| int_math.h | 54 __typeof((x)) x_ = (x); \ 55 !crt_isinf(x_) && !crt_isnan(x_); \
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| tree-outof-ssa.cc | 514 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) [all...] |
| opts.h | 520 if (!(OPTS_SET)->x_ ## OPTION) \ 521 (OPTS)->x_ ## OPTION = VALUE; \ 527 #define OPTION_SET_P(OPTION) global_options_set.x_ ## OPTION
|
| ipa-inline.cc | 295 (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 [all...] |
| tree.h | 5941 #define opt_for_fn(fndecl, opt) (opts_for_fn (fndecl)->x_##opt)
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/ |
| convert.d | 190 private Float parse(bool is_denormalized = false, T:real)(T x_) if (floatFormat!T != FloatFormat.Real80) 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_;
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/ |
| lifetime.d | 1687 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...] |
| /src/external/apache2/llvm/dist/clang/bindings/python/tests/cindex/ |
| test_cursor.py | 224 source = 'class X { int x_; mutable int y_; };' 228 x_ = get_cursor(tu, 'x_') 231 self.assertIsNotNone(x_) 234 self.assertFalse(x_.is_mutable_field())
|
| /src/external/bsd/unbound/dist/ |
| configure | 18926 if test x_$enable_alloc_nonregional = x_yes; then 18931 if test x_$enable_alloc_checks = x_yes; then 18940 if test x_$enable_alloc_lite = x_yes; then 19073 if test x_$withval != x_no; then 20274 if test x_$withval != x_no; then 20275 if test x_$ub_have_pthreads != x_no; then 20426 if test x_$withval != x_no; then 20528 if test x_$withval != x_no; then 20546 if test x_$withval != x_no; then 20552 if test x_$ub_test_python != x_no; the [all...] |
| /src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/allocator/building_blocks/ |
| bitmapped_block.d | 2460 const x_ = ~x; 2461 return x_ == 0 ? 64 : (63 - bsr(x_));
|
| /src/external/bsd/nsd/dist/ |
| configure | 6765 if test x_$withval = x_yes -o x_$withval != x_no; then 6768 if test x_$withval = x_ -o x_$withval = x_yes; then 6781 if test x_$found_libevent != x_yes; then 11134 if test x_$withval != x_no; then 11157 if test x_$withval = x_ -o x_$withval = x_yes; the [all...] |