Searched refs:ExtractBits (Results 1 - 6 of 6) sorted by relevance
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/ |
H A D | debug_info_cache.cpp | 201 return TypedValue::U1(static_cast<bool>(ExtractBits(reg, 0U, 1U))); in CreateTypedValueFromReg() 203 return TypedValue::I8(static_cast<int8_t>(ExtractBits(reg, 0U, 8U))); in CreateTypedValueFromReg() 205 return TypedValue::U8(static_cast<uint8_t>(ExtractBits(reg, 0U, 8U))); in CreateTypedValueFromReg() 207 return TypedValue::I16(static_cast<int16_t>(ExtractBits(reg, 0U, 16U))); in CreateTypedValueFromReg() 209 return TypedValue::U16(static_cast<uint16_t>(ExtractBits(reg, 0U, 16U))); in CreateTypedValueFromReg() 211 return TypedValue::I32(static_cast<int32_t>(ExtractBits(reg, 0U, 32U))); in CreateTypedValueFromReg() 213 return TypedValue::U32(static_cast<uint32_t>(ExtractBits(reg, 0U, 32U))); in CreateTypedValueFromReg() 215 return TypedValue::F32(bit_cast<float>(static_cast<int32_t>(ExtractBits(reg, 0U, 32U)))); in CreateTypedValueFromReg()
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/tooling/ |
H A D | helpers.h | 70 static_cast<int32_t>(ExtractBits(static_cast<uint64_t>(value.GetValue()), 0U, bitsCount))); in VRegValueToEtsValue()
|
/arkcompiler/runtime_core/libpandabase/utils/ |
H A D | bit_utils.h | 273 inline constexpr T ExtractBits(T value, size_t offset, size_t count) in ExtractBits() function
|
H A D | bit_table.h | 42 values[i] = ExtractBits(data, i * INLINE_BITS, INLINE_BITS); in Read()
|
/arkcompiler/runtime_core/static_core/libpandabase/utils/ |
H A D | bit_utils.h | 275 inline constexpr T ExtractBits(T value, size_t offset, size_t count) in ExtractBits() function
|
H A D | bit_table.h | 42 values[i] = ExtractBits(data, i * INLINE_BITS, INLINE_BITS); in Read()
|
Completed in 5 milliseconds