Searched refs:DecodeSigned (Results 1 – 8 of 8) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/stackmap/ |
D | ark_stackmap_parser.cpp | 167 panda::leb128::DecodeSigned<LLVMStackMapType::SLeb128Type>(ptr + offset); in ParseArkStackMap() 188 panda::leb128::DecodeSigned<LLVMStackMapType::SLeb128Type>(ptr + deoptOffset); in ParseArkDeopt() 194 panda::leb128::DecodeSigned<LLVMStackMapType::SLeb128Type>(ptr + deoptOffset); in ParseArkDeopt() 205 panda::leb128::DecodeSigned<LLVMStackMapType::SLeb128Type>(ptr + deoptOffset); in ParseArkDeopt()
|
/arkcompiler/runtime_core/libpandabase/tests/ |
D | leb128_test.cpp | 150 auto [value, size, is_full] = DecodeSigned<T>(t.data); in TestDecodeSigned() 157 TEST(Leb128, DecodeSigned) in TEST() argument
|
/arkcompiler/runtime_core/libpandabase/utils/ |
D | leb128.h | 95 inline std::tuple<T, size_t, bool> DecodeSigned(const uint8_t *data) in DecodeSigned() function
|
/arkcompiler/runtime_core/libpandafile/ |
D | line_number_program.h | 209 auto [regiser_number, n, is_full] = leb128::DecodeSigned<int32_t>(program_); in ReadRegisterNumber()
|
D | file_reader.cpp | 1073 std::tie(reg_number, n, is_full) = leb128::DecodeSigned<int32_t>(&opcode_sp[i]); in UpdateDebugInfoDependecies() 1094 std::tie(reg_number, n, is_full) = leb128::DecodeSigned<int32_t>(&opcode_sp[i]); in UpdateDebugInfoDependecies() 1120 std::tie(reg_number, n, is_full) = leb128::DecodeSigned<int32_t>(&opcode_sp[i]); in UpdateDebugInfoDependecies() 1167 auto [reg_number, n, is_full] = leb128::DecodeSigned<int32_t>(&opcode_sp[i]); in UpdateDebugInfo() 1186 auto [reg_number, n, is_full] = leb128::DecodeSigned<int32_t>(&opcode_sp[i]); in UpdateDebugInfo() 1209 auto [reg_number, n, is_full] = leb128::DecodeSigned<int32_t>(&opcode_sp[i]); in UpdateDebugInfo() 1217 auto [reg_number, n, is_full] = leb128::DecodeSigned<int32_t>(&opcode_sp[i]); in UpdateDebugInfo()
|
D | helpers.h | 160 std::tie(result, n, is_full) = leb128::DecodeSigned<int32_t>(sp->data()); in ReadLeb128()
|
/arkcompiler/runtime_core/assembler/tests/ |
D | emitter_test.cpp | 264 …std::tie(line_inc, size, is_full) = leb128::DecodeSigned<int32_t>(&constant_pool[constant_pool_off… in TEST()
|
D | assembler_emitter_test.cpp | 293 …std::tie(line_inc, size, is_full) = leb128::DecodeSigned<int32_t>(&constant_pool[constant_pool_off… in __anon654af7a10902()
|