Home
last modified time | relevance | path

Searched refs:shift_amount (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DStringExtractor.cpp187 uint32_t shift_amount = 0; in GetHexMaxU32() local
202 result |= ((uint32_t)nibble_lo << shift_amount); in GetHexMaxU32()
204 shift_amount += 8; in GetHexMaxU32()
206 result |= ((uint32_t)nibble_hi << shift_amount); in GetHexMaxU32()
208 shift_amount += 4; in GetHexMaxU32()
238 uint32_t shift_amount = 0; in GetHexMaxU64() local
253 result |= ((uint64_t)nibble_lo << shift_amount); in GetHexMaxU64()
255 shift_amount += 8; in GetHexMaxU64()
259 shift_amount += 4; in GetHexMaxU64()
338 uint32_t shift_amount; in GetHexWithFixedSize() local
[all …]
/freebsd-12.1/contrib/gcc/
H A Dtree.c1329 int shift_amount; in integer_all_onesp() local
1331 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()
H A Dexpr.c660 tree shift_amount; in convert_move() local
680 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()