Searched defs:total_regs (Results 1 - 3 of 3) sorted by relevance

/system/core/libunwindstack/tests/
H A DRegsFake.h30 RegsFake(uint16_t total_regs, uint16_t sp_reg) argument
31 : RegsImpl<TypeParam>(total_regs, sp_reg, Regs::Location(Regs::LOCATION_UNKNOWN, 0)) {}
H A DRegsTest.cpp55 RegsTestImpl(uint16_t total_regs, uint16_t regs_sp) argument
56 : RegsImpl<TypeParam>(total_regs, regs_sp, Regs::Location(Regs::LOCATION_UNKNOWN, 0)) {}
57 RegsTestImpl(uint16_t total_regs, uint16_t regs_sp, Regs::Location return_loc) argument
58 : RegsImpl<TypeParam>(total_regs, regs_sp, return_loc) {}
85 ASSERT_EQ(50U, regs32.total_regs());
108 ASSERT_EQ(30U, regs64.total_regs());
/system/core/libunwindstack/include/unwindstack/
H A DRegs.h48 Regs(uint16_t total_regs, uint16_t sp_reg, const Location& return_loc) argument
49 : total_regs_(total_regs), sp_reg_(sp_reg), return_loc_(return_loc) {}
65 uint16_t total_regs() { return total_regs_; } function in class:unwindstack::Regs
81 RegsImpl(uint16_t total_regs, uint16_t sp_reg, Location return_loc) argument
82 : Regs(total_regs, sp_reg, return_loc), regs_(total_regs) {}

Completed in 76 milliseconds