HomeSort by: relevance | last modified time | path
    Searched defs:trailing_zeros (Results 1 - 10 of 10) sorted by relevancy

  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/
floating_to_chars.cc 894 const int trailing_zeros = __countr_zero(effective_mantissa) / 4; local
895 const int shortest_full_precision = full_hex_precision - trailing_zeros;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/
floating_to_chars.cc 738 const int trailing_zeros = __countr_zero(effective_mantissa) / 4; local
739 const int shortest_full_precision = full_hex_precision - trailing_zeros;
  /src/external/gpl3/gcc/dist/gcc/
double-int.cc 1070 double_int::trailing_zeros () const function in class:double_int
tree-ssa-loop-ivopts.cc 2233 unsigned int trailing_zeros = tree_ctz (step); local
2234 if (trailing_zeros < HOST_BITS_PER_INT
2235 && (1U << trailing_zeros) * BITS_PER_UNIT < align)
builtins.cc 359 unsigned int trailing_zeros = tree_ctz (offset); local
360 if (trailing_zeros < HOST_BITS_PER_INT)
362 unsigned int inner = (1U << trailing_zeros) * BITS_PER_UNIT;
442 unsigned int trailing_zeros = tree_ctz (TREE_OPERAND (exp, 1)); local
443 if (trailing_zeros < HOST_BITS_PER_INT)
445 unsigned int inner = (1U << trailing_zeros) * BITS_PER_UNIT;
expr.cc 8949 int trailing_zeros = tree_ctz (exp);
8950 if (trailing_zeros >= HOST_BITS_PER_WIDE_INT)
8952 ret = HOST_WIDE_INT_1U << trailing_zeros;
8931 int trailing_zeros = tree_ctz (exp); local
  /src/external/gpl3/gcc.old/dist/gcc/
double-int.cc 1070 double_int::trailing_zeros () const function in class:double_int
builtins.cc 356 unsigned int trailing_zeros = tree_ctz (offset); local
357 if (trailing_zeros < HOST_BITS_PER_INT)
359 unsigned int inner = (1U << trailing_zeros) * BITS_PER_UNIT;
439 unsigned int trailing_zeros = tree_ctz (TREE_OPERAND (exp, 1)); local
440 if (trailing_zeros < HOST_BITS_PER_INT)
442 unsigned int inner = (1U << trailing_zeros) * BITS_PER_UNIT;
tree-ssa-loop-ivopts.cc 2228 unsigned int trailing_zeros = tree_ctz (step); local
2229 if (trailing_zeros < HOST_BITS_PER_INT
2230 && (1U << trailing_zeros) * BITS_PER_UNIT < align)
expr.cc 8236 int trailing_zeros = tree_ctz (exp);
8237 if (trailing_zeros >= HOST_BITS_PER_WIDE_INT)
8239 ret = HOST_WIDE_INT_1U << trailing_zeros;
8218 int trailing_zeros = tree_ctz (exp); local

Completed in 76 milliseconds