Searched refs:shift_amount (Results 1 – 3 of 3) sorted by relevance
249 uint32_t shift_amount = 0; in GetHexMaxU32() local266 result |= ((uint32_t)nibble_hi << (shift_amount + 4)); in GetHexMaxU32()267 result |= ((uint32_t)nibble_lo << shift_amount); in GetHexMaxU32()269 shift_amount += 8; in GetHexMaxU32()273 result |= ((uint32_t)nibble_hi << shift_amount); in GetHexMaxU32()275 shift_amount += 4; in GetHexMaxU32()311 uint32_t shift_amount = 0; in GetHexMaxU64() local328 result |= ((uint64_t)nibble_hi << (shift_amount + 4)); in GetHexMaxU64()329 result |= ((uint64_t)nibble_lo << shift_amount); in GetHexMaxU64()331 shift_amount += 8; in GetHexMaxU64()[all …]
1329 int shift_amount; in integer_all_onesp() local1331 shift_amount = prec - HOST_BITS_PER_WIDE_INT; in integer_all_onesp()1334 gcc_assert (shift_amount <= HOST_BITS_PER_WIDE_INT); in integer_all_onesp()1335 if (shift_amount == HOST_BITS_PER_WIDE_INT) in integer_all_onesp()1340 high_value = ((HOST_WIDE_INT) 1 << shift_amount) - 1; in integer_all_onesp()
660 tree shift_amount; in convert_move() local680 shift_amount = build_int_cst (NULL_TREE, in convert_move()684 tmp = expand_shift (LSHIFT_EXPR, to_mode, from, shift_amount, in convert_move()686 tmp = expand_shift (RSHIFT_EXPR, to_mode, tmp, shift_amount, in convert_move()