Lines Matching refs:HOST_BITS_PER_WIDE_INT

680       gcc_assert (j < 2 * HOST_BITS_PER_WIDE_INT);  in c_readstr()
684 c[j / HOST_BITS_PER_WIDE_INT] |= ch << (j % HOST_BITS_PER_WIDE_INT); in c_readstr()
699 || CHAR_TYPE_SIZE > HOST_BITS_PER_WIDE_INT) in target_char_cast()
703 if (CHAR_TYPE_SIZE < HOST_BITS_PER_WIDE_INT) in target_char_cast()
707 if (HOST_BITS_PER_CHAR < HOST_BITS_PER_WIDE_INT) in target_char_cast()
8089 if (width > HOST_BITS_PER_WIDE_INT) in fold_builtin_bitop()
8092 if (width < 2 * HOST_BITS_PER_WIDE_INT) in fold_builtin_bitop()
8094 << (width - HOST_BITS_PER_WIDE_INT)); in fold_builtin_bitop()
8099 if (width < HOST_BITS_PER_WIDE_INT) in fold_builtin_bitop()
8109 result = HOST_BITS_PER_WIDE_INT + ffs_hwi (hi); in fold_builtin_bitop()
8116 result = width - floor_log2 (hi) - 1 - HOST_BITS_PER_WIDE_INT; in fold_builtin_bitop()
8127 result = HOST_BITS_PER_WIDE_INT + ctz_hwi (hi); in fold_builtin_bitop()
8133 if (width > HOST_BITS_PER_WIDE_INT in fold_builtin_bitop()
8135 << (width - HOST_BITS_PER_WIDE_INT - 1))) != 0) in fold_builtin_bitop()
8138 << (width - HOST_BITS_PER_WIDE_INT - 1)); in fold_builtin_bitop()
8141 else if (width <= HOST_BITS_PER_WIDE_INT in fold_builtin_bitop()
8145 result = width - floor_log2 (hi) - 2 - HOST_BITS_PER_WIDE_INT; in fold_builtin_bitop()
8211 if (s < HOST_BITS_PER_WIDE_INT) in fold_builtin_bswap()
8214 byte = (hi >> (s - HOST_BITS_PER_WIDE_INT)) & 0xff; in fold_builtin_bswap()
8216 if (d < HOST_BITS_PER_WIDE_INT) in fold_builtin_bswap()
8219 r_hi |= byte << (d - HOST_BITS_PER_WIDE_INT); in fold_builtin_bswap()
8229 if (width < HOST_BITS_PER_WIDE_INT) in fold_builtin_bswap()
8679 if (length > HOST_BITS_PER_WIDE_INT / BITS_PER_UNIT) in fold_builtin_memset()
8686 if (CHAR_BIT != 8 || BITS_PER_UNIT != 8 || HOST_BITS_PER_WIDE_INT > 64) in fold_builtin_memset()