Home
last modified time | relevance | path

Searched refs:bitwidth (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/runtime_core/libpandabase/tests/
Dleb128_test.cpp120 constexpr size_t bitwidth = std::numeric_limits<T>::digits; in TestDecodeUnsigned() local
123 EXPECT_EQ(is_full, MinimumBitsToStore(t.value) <= bitwidth && !is_partial) << ss.str(); in TestDecodeUnsigned()
124 EXPECT_EQ(size, is_full ? t.size : (bitwidth + 6) / 7) << ss.str(); in TestDecodeUnsigned()
148 constexpr size_t bitwidth = std::numeric_limits<std::make_unsigned_t<T>>::digits; in TestDecodeSigned() local
152 EXPECT_EQ(size, is_full ? t.size : (bitwidth + 6) / 7) << ss.str(); in TestDecodeSigned()
/arkcompiler/ets_frontend/es2panda/ir/
Dirnode.h55 constexpr FormatItem(OperandKind kind, uint32_t bitwidth) : kind_(kind), bitwidth_(bitwidth) {} in FormatItem() argument