/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/ |
H A D | intrinsics.def | 42 /* core.bitop intrinsics. */ 44 DEF_D_BUILTIN (BSF, BSF, "bsf", "core.bitop", "FNaNbNiNfkZi") 45 DEF_D_BUILTIN (BSR, BSR, "bsr", "core.bitop", "FNaNbNiNfkZi") 46 DEF_D_BUILTIN (BT, BT, "bt", "core.bitop", "FNaNbNixPkkZi") 47 DEF_D_BUILTIN (BTC, BTC, "btc", "core.bitop", "FNaNbNiPkkZi") 48 DEF_D_BUILTIN (BTR, BTR, "btr", "core.bitop", "FNaNbNiPkkZi") 49 DEF_D_BUILTIN (BTS, BTS, "bts", "core.bitop", "FNaNbNiPkkZi") 50 DEF_D_BUILTIN (BSF64, BSF, "bsf", "core.bitop", "FNaNbNiNfmZi") 51 DEF_D_BUILTIN (BSR64, BSR, "bsr", "core.bitop", "FNaNbNiNfmZi") 52 DEF_D_BUILTIN (BT64, BT, "bt", "core.bitop", "FNaNbNixPmmZi") [all …]
|
/netbsd-src/external/gpl3/gcc/dist/gcc/d/ |
H A D | intrinsics.def | 41 /* core.bitop intrinsics. */ 43 DEF_D_BUILTIN (INTRINSIC_BSF, BUILT_IN_NONE, "bsf", "core.bitop", 45 DEF_D_BUILTIN (INTRINSIC_BSR, BUILT_IN_NONE, "bsr", "core.bitop", 47 DEF_D_BUILTIN (INTRINSIC_BT, BUILT_IN_NONE, "bt", "core.bitop", 49 DEF_D_BUILTIN (INTRINSIC_BTC, BUILT_IN_NONE, "btc", "core.bitop", 51 DEF_D_BUILTIN (INTRINSIC_BTR, BUILT_IN_NONE, "btr", "core.bitop", 53 DEF_D_BUILTIN (INTRINSIC_BTS, BUILT_IN_NONE, "bts", "core.bitop", 55 DEF_D_BUILTIN (INTRINSIC_BSF64, BUILT_IN_NONE, "bsf", "core.bitop", 57 DEF_D_BUILTIN (INTRINSIC_BSR64, BUILT_IN_NONE, "bsr", "core.bitop", 59 DEF_D_BUILTIN (INTRINSIC_BT64, BUILT_IN_NONE, "bt", "core.bitop", [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/ |
H A D | __builtins.di | 74 import core.bitop; 75 return core.bitop.byteswap(value); 80 import core.bitop; 81 return core.bitop.bswap(value); 86 import core.bitop; 87 return core.bitop.bswap(value);
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/digest/ |
H A D | sha.d | 114 import core.bitop; 325 …uint BigSigma0(uint x) { return core.bitop.ror(x, 2) ^ core.bitop.ror(x, 13) ^ core.bitop.ror(x, 2… in SHA() 326 …uint BigSigma1(uint x) { return core.bitop.ror(x, 6) ^ core.bitop.ror(x, 11) ^ core.bitop.ror(x, 2… in SHA() 327 uint SmSigma0(uint x) { return core.bitop.ror(x, 7) ^ core.bitop.ror(x, 18) ^ x >> 3; } in SHA() 328 … uint SmSigma1(uint x) { return core.bitop.ror(x, 17) ^ core.bitop.ror(x, 19) ^ x >> 10; } in SHA() 331 …ulong BigSigma0(ulong x) { return core.bitop.ror(x, 28) ^ core.bitop.ror(x, 34) ^ core.bitop.ror(x… in SHA() 332 …ulong BigSigma1(ulong x) { return core.bitop.ror(x, 14) ^ core.bitop.ror(x, 18) ^ core.bitop.ror(x… in SHA() 333 ulong SmSigma0(ulong x) { return core.bitop.ror(x, 1) ^ core.bitop.ror(x, 8) ^ x >> 7; } in SHA() 334 … ulong SmSigma1(ulong x) { return core.bitop.ror(x, 19) ^ core.bitop.ror(x, 61) ^ x >> 6; } in SHA() 344 T = Ch(B, C, D) + E + core.bitop.rol(A, 5) + Wi + 0x5a827999; in SHA() [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/libdruntime/gc/ |
H A D | bits.d | 17 import core.bitop; 58 return core.bitop.bt(data, i); 68 return core.bitop.bts(data, i); 78 return core.bitop.btr(data, i);
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/gc/ |
H A D | bits.d | 12 import core.bitop; 70 return core.bitop.bt(data, i); 80 return core.bitop.bts(data, i); 90 return core.bitop.btr(data, i); 423 assert(!bits.test(start + r*len + i) == !core.bitop.bt(src.ptr, i));
|
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/root/ |
H A D | bitarray.d | 56 import core.bitop : bt; in opIndex() 64 import core.bitop : btc, bts; in opIndexAssign()
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/testsuite/libphobos.betterc/ |
H A D | test19924.d | 4 import core.bitop;
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.allocations/ |
H A D | tls_gc_integration.d | 1 import core.memory, core.thread, core.bitop;
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/posix/arpa/ |
H A D | inet.d | 172 import core.bitop : bswap, byteswap; in version() 250 import core.bitop : bswap, byteswap; in version()
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
H A D | match.pd | 789 (for bitop (bit_and bit_ior) 795 (bitop (cmp @0 integer_zerop@2) (cmp @1 integer_zerop)) 804 (bitop (cmp @0 integer_all_onesp@2) (cmp @1 integer_all_onesp)) 902 (for bitop (bit_and bit_ior bit_xor) 904 (bit_and (op:s (bitop:s@0 @3 INTEGER_CST@4) @1) INTEGER_CST@2) 907 tree utype = fold_bit_and_mask (TREE_TYPE (@0), @2, op, @0, bitop, 915 (bit_and (op:s @0 (bitop:s@1 @3 INTEGER_CST@4)) INTEGER_CST@2) 919 NULL_TREE, NULL_TREE, @1, bitop, @3, 936 (for bitop (bit_and bit_ior bit_xor) 938 (bit_and (negate:s (bitop:s@0 @2 INTEGER_CST@3)) INTEGER_CST@1) [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/rt/ |
H A D | minfo.d | 63 import core.bitop : bt, btc, bts; in genCyclePath() 167 import core.bitop : bts, btr, bt, BitRange; in sortCtors() 590 import core.bitop; in sortCtorsOld() 895 import core.bitop; in setImports()
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/libdruntime/rt/ |
H A D | minfo.d | 63 import core.bitop : bt, btc, bts; in genCyclePath() 167 import core.bitop : bts, btr, bt, BitRange; in sortCtors() 590 import core.bitop; in sortCtorsOld() 895 import core.bitop; in setImports()
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/linux/ |
H A D | sched.d | 19 import core.bitop : popcnt;
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/allocator/ |
H A D | gc_allocator.d | 97 import core.bitop : bsr; in goodAllocSize()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/ |
H A D | match.pd | 998 (for bitop (bit_and bit_ior) 1004 (bitop (cmp @0 integer_zerop@2) (cmp @1 integer_zerop)) 1013 (bitop (cmp @0 integer_all_onesp@2) (cmp @1 integer_all_onesp)) 1131 (for bitop (bit_and bit_ior bit_xor) 1133 (bit_and (op:s (bitop:s@0 @3 INTEGER_CST@4) @1) INTEGER_CST@2) 1136 tree utype = fold_bit_and_mask (TREE_TYPE (@0), @2, op, @0, bitop, 1144 (bit_and (op:s @0 (bitop:s@1 @3 INTEGER_CST@4)) INTEGER_CST@2) 1148 NULL_TREE, NULL_TREE, @1, bitop, @3, 1165 (for bitop (bit_and bit_ior bit_xor) 1167 (bit_and (negate:s (bitop:s@0 @2 INTEGER_CST@3)) INTEGER_CST@1) [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/experimental/allocator/ |
H A D | gc_allocator.d | 104 import core.bitop : bsr; in goodAllocSize()
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/c-family/ |
H A D | c-warn.c | 355 tree bitop; in warn_tautological_bitwise_comparison() local 362 bitop = lhs, cst = stripped_rhs; in warn_tautological_bitwise_comparison() 366 bitop = rhs, cst = stripped_lhs; in warn_tautological_bitwise_comparison() 371 tree bitop_op0 = fold_for_warn (TREE_OPERAND (bitop, 0)); in warn_tautological_bitwise_comparison() 375 tree bitop_op1 = fold_for_warn (TREE_OPERAND (bitop, 1)); in warn_tautological_bitwise_comparison() 393 if (TREE_CODE (bitop) == BIT_AND_EXPR) in warn_tautological_bitwise_comparison()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/c-family/ |
H A D | c-warn.cc | 357 tree bitop; in warn_tautological_bitwise_comparison() local 364 bitop = lhs, cst = stripped_rhs; in warn_tautological_bitwise_comparison() 368 bitop = rhs, cst = stripped_lhs; in warn_tautological_bitwise_comparison() 373 tree bitop_op0 = fold_for_warn (TREE_OPERAND (bitop, 0)); in warn_tautological_bitwise_comparison() 377 tree bitop_op1 = fold_for_warn (TREE_OPERAND (bitop, 1)); in warn_tautological_bitwise_comparison() 395 if (TREE_CODE (bitop) == BIT_AND_EXPR) in warn_tautological_bitwise_comparison()
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/gcn/ |
H A D | gcn-valu.md | 1988 (define_code_iterator bitop [and ior xor]) 2003 (bitop:V_INT_1REG 2015 (bitop:V_DI 2024 (bitop:<VnSI> (match_dup 5) (match_dup 7))) 2026 (bitop:<VnSI> (match_dup 6) (match_dup 8)))] 2041 (bitop:V_DI 2055 (bitop:<VnSI> (match_dup 7) (match_dup 9)) 2060 (bitop:<VnSI> (match_dup 8) (match_dup 10))
|
/netbsd-src/external/gpl3/gcc/dist/gcc/config/gcn/ |
H A D | gcn-valu.md | 1998 (define_code_iterator bitop [and ior xor]) 2013 (bitop:V_INT_1REG 2025 (bitop:V_DI 2034 (bitop:<VnSI> (match_dup 5) (match_dup 7))) 2036 (bitop:<VnSI> (match_dup 6) (match_dup 8)))] 2051 (bitop:V_DI 2065 (bitop:<VnSI> (match_dup 7) (match_dup 9)) 2070 (bitop:<VnSI> (match_dup 8) (match_dup 10))
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
H A D | numeric.d | 250 import core.bitop : bsr; in toNormalized() 2640 import core.bitop : bsf; 2768 import core.bitop : bsf; 3338 import core.bitop : bsf; in Stride() 3447 import core.bitop : bsr;
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/windows/ |
H A D | registry.d | 523 import core.bitop : bswap; 636 import core.bitop : bswap;
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/windows/ |
H A D | registry.d | 523 import core.bitop : bswap; 636 import core.bitop : bswap;
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/ |
H A D | bitmanip.d | 982 import core.bitop : btc, bts, btr, bsf, bt; 2867 import core.bitop : bswap, byteswap; 4552 import core.bitop : popcnt; 4557 import core.bitop : popcnt; 4631 import core.bitop : bsf; 4656 import core.bitop : bsf;
|