Home
last modified time | relevance | path

Searched refs:trailing_zeros (Results 1 – 12 of 12) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Ddouble-int.h100 int trailing_zeros () const;
H A Ddouble-int.c1070 double_int::trailing_zeros () const in trailing_zeros() function
H A Dbuiltins.c358 unsigned int trailing_zeros = tree_ctz (offset); in get_object_alignment_2() local
359 if (trailing_zeros < HOST_BITS_PER_INT) in get_object_alignment_2()
361 unsigned int inner = (1U << trailing_zeros) * BITS_PER_UNIT; in get_object_alignment_2()
437 unsigned int trailing_zeros = tree_ctz (TREE_OPERAND (exp, 1)); in get_pointer_alignment_1() local
438 if (trailing_zeros < HOST_BITS_PER_INT) in get_pointer_alignment_1()
440 unsigned int inner = (1U << trailing_zeros) * BITS_PER_UNIT; in get_pointer_alignment_1()
H A Dtree-ssa-loop-ivopts.c2226 unsigned int trailing_zeros = tree_ctz (step); in may_be_unaligned_p() local
2227 if (trailing_zeros < HOST_BITS_PER_INT in may_be_unaligned_p()
2228 && (1U << trailing_zeros) * BITS_PER_UNIT < align) in may_be_unaligned_p()
H A Dexpr.c7857 int trailing_zeros = tree_ctz (exp); in highest_pow2_factor() local
7858 if (trailing_zeros >= HOST_BITS_PER_WIDE_INT) in highest_pow2_factor()
7860 ret = HOST_WIDE_INT_1U << trailing_zeros; in highest_pow2_factor()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Ddouble-int.h100 int trailing_zeros () const;
H A Ddouble-int.cc1070 double_int::trailing_zeros () const in trailing_zeros() function in double_int
H A Dbuiltins.cc356 unsigned int trailing_zeros = tree_ctz (offset); in get_object_alignment_2() local
357 if (trailing_zeros < HOST_BITS_PER_INT) in get_object_alignment_2()
359 unsigned int inner = (1U << trailing_zeros) * BITS_PER_UNIT; in get_object_alignment_2()
439 unsigned int trailing_zeros = tree_ctz (TREE_OPERAND (exp, 1)); in get_pointer_alignment_1() local
440 if (trailing_zeros < HOST_BITS_PER_INT) in get_pointer_alignment_1()
442 unsigned int inner = (1U << trailing_zeros) * BITS_PER_UNIT; in get_pointer_alignment_1()
H A Dtree-ssa-loop-ivopts.cc2227 unsigned int trailing_zeros = tree_ctz (step); in may_be_unaligned_p() local
2228 if (trailing_zeros < HOST_BITS_PER_INT in may_be_unaligned_p()
2229 && (1U << trailing_zeros) * BITS_PER_UNIT < align) in may_be_unaligned_p()
H A Dexpr.cc8218 int trailing_zeros = tree_ctz (exp); in highest_pow2_factor() local
8219 if (trailing_zeros >= HOST_BITS_PER_WIDE_INT) in highest_pow2_factor()
8221 ret = HOST_WIDE_INT_1U << trailing_zeros; in highest_pow2_factor()
H A DChangeLog-201214277 (double_int::trailing_zeros): New.
14436 double_int::trailing_zeros.
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/
H A Dfloating_to_chars.cc738 const int trailing_zeros = __countr_zero(effective_mantissa) / 4; in __floating_to_chars_hex() local
739 const int shortest_full_precision = full_hex_precision - trailing_zeros; in __floating_to_chars_hex()