/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/helpers/ |
H A D | dtoa_helper.h | 115 const uint64_t a = f_ >> BITS_PER_UINT32; in operator *() 117 const uint64_t c = rhs.f_ >> BITS_PER_UINT32; in operator *() 123 uint64_t tmp = (bd >> BITS_PER_UINT32) + (ad & M32) + (bc & M32); in operator *() 125 return DiyFp(ac + (ad >> BITS_PER_UINT32) + (bc >> BITS_PER_UINT32) + (tmp >> BITS_PER_UINT32), in operator *() 165 static constexpr uint32_t ROUND_BITS = BITS_PER_UINT32 - 1;
|
H A D | dtoa_helper.cpp | 25 return ((static_cast<uint64_t>(high32) << BITS_PER_UINT32) | static_cast<uint64_t>(low32)); in ConstructLong()
|
/arkcompiler/runtime_core/static_core/runtime/ |
H A D | cframe.cpp | 84 val |= static_cast<uint64_t>(GetValueFromSlot(helpers::ToSigned(vreg.GetValue()) - 1)) << BITS_PER_UINT32; in GetVRegValueSlot() 110 val |= static_cast<uint64_t>(GetValueFromSlot(static_cast<int>(regNum) - 1)) << BITS_PER_UINT32; in GetVRegValueRegister() 124 << BITS_PER_UINT32; in GetVRegValueRegister() 168 SetValueToSlot(locationValue - 1, value >> BITS_PER_UINT32); in SetVRegValue() 181 SetValueToSlot(regNum - 1, value >> BITS_PER_UINT32); in SetVRegValue() 189 WriteCalleeSavedRegister(locationValue + 1, value >> BITS_PER_UINT32, isFp, calleeStack); in SetVRegValue()
|
/arkcompiler/runtime_core/libpandabase/ |
H A D | globals.h | 25 static constexpr unsigned BITS_PER_UINT32 = sizeof(uint32_t) * BITS_PER_BYTE; member
|
/arkcompiler/runtime_core/static_core/libpandabase/ |
H A D | globals.h | 25 static constexpr unsigned BITS_PER_UINT32 = sizeof(uint32_t) * BITS_PER_BYTE; member
|
/arkcompiler/runtime_core/libpandabase/utils/ |
H A D | bit_memory_region.h | 251 for (; (i + BITS_PER_UINT32) < length; i += BITS_PER_UINT32) { 252 res += panda::Popcount(Read(first + i, BITS_PER_UINT32));
|
H A D | bit_memory_stream.h | 53 static constexpr size_t bits_per_word = BITS_PER_UINT32; in Write()
|
H A D | bit_utils.h | 293 return static_cast<uint32_t>(reinterpret_cast<uint64_t>(value) >> BITS_PER_UINT32); in High32Bits()
|
H A D | bit_vector.h | 459 return (BITS_PER_UINT32 - 1) - Clz(storage_[i]) + (i * WORD_BITS); in GetHighestBitSet()
|
/arkcompiler/runtime_core/static_core/compiler/code_info/ |
H A D | code_info_builder.cpp | 165 uint32_t low = value & ((1LLU << BITS_PER_UINT32) - 1); in AddConstant() 166 uint32_t hi = (value >> BITS_PER_UINT32) & ((1LLU << BITS_PER_UINT32) - 1); in AddConstant()
|
H A D | code_info.h | 270 inlineInfo.GetMethodLow() | (static_cast<uint64_t>(inlineInfo.GetMethodHi()) << BITS_PER_UINT32); in GetMethod() 284 return low | (hi << BITS_PER_UINT32); in GetConstant() 486 for (size_t i = 0; i < end; i += BITS_PER_UINT32) { in FillVRegList() 487 uint32_t mask = vregMask.Read(i, std::min<uint32_t>(end - i, BITS_PER_UINT32)); in FillVRegList() 587 ArenaBitVectorSpan vec(®Mask, BITS_PER_UINT32); in EnumerateRoots()
|
/arkcompiler/runtime_core/static_core/libpandabase/utils/ |
H A D | bit_memory_region.h | 254 for (; (i + BITS_PER_UINT32) < length; i += BITS_PER_UINT32) { 255 res += ark::Popcount(Read(first + i, BITS_PER_UINT32));
|
H A D | bit_memory_stream.h | 53 static constexpr size_t BITS_PER_WORD = BITS_PER_UINT32; in Write()
|
H A D | bit_utils.h | 295 return static_cast<uint32_t>(reinterpret_cast<uint64_t>(value) >> BITS_PER_UINT32); in High32Bits()
|
H A D | bit_vector.h | 478 return (BITS_PER_UINT32 - 1) - Clz(storage_[i]) + (i * WORD_BITS); in GetHighestBitSet()
|
/arkcompiler/runtime_core/static_core/runtime/entrypoints/ |
H A D | string_index_of.h | 116 return (mask << BITS_PER_UINT32) | mask; in BuildSearchPattern() 123 return (mask << BITS_PER_UINT32) | mask; in BuildSearchPattern() 150 mask = (mask << BITS_PER_UINT32) | mask; in BuildSearchPattern()
|
/arkcompiler/runtime_core/static_core/plugins/ets/tests/runtime/types/ |
H A D | ets_to_string_cache_test.cpp | 304 auto longValue = (static_cast<uint64_t>(dis(engine)) << BITS_PER_UINT32) | dis(engine); in TEST_F() 341 auto longValue = (static_cast<uint64_t>(dis(engine)) << BITS_PER_UINT32) | dis(engine); in TEST_F()
|
/arkcompiler/runtime_core/libpandabase/tests/ |
H A D | bit_memory_region_test.cpp | 66 for (size_t length = 0; length < BITS_PER_UINT32; length++) { in TEST()
|
/arkcompiler/runtime_core/static_core/libpandabase/tests/ |
H A D | bit_memory_region_test.cpp | 68 for (size_t length = 0; length < BITS_PER_UINT32; length++) { in TEST()
|
/arkcompiler/runtime_core/compiler/optimizer/ir/ |
H A D | inst.h | 2507 std::bitset<BITS_PER_UINT32> roots_regs_mask_ {0};
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/ |
H A D | codegen.cpp | 2142 CHECK_GE(dst.GetSize(), BITS_PER_UINT32); in EncodeDynamicCast()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/aarch64/ |
H A D | encode.cpp | 1465 CHECK_EQ(dst.GetSize(), BITS_PER_UINT32); in EncodeFastPathDynamicCast()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/amd64/ |
H A D | encode.cpp | 1077 CHECK_EQ(dst.GetSize(), BITS_PER_UINT32); in EncodeFastPathDynamicCast()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
H A D | inst.h | 3961 std::bitset<BITS_PER_UINT32> rootsRegsMask_ {0};
|