Lines Matching refs:uint32_t

31   uint32_t TotalSize() const PURE {  in TotalSize()
40 uint32_t DexToPcSize() const PURE { in DexToPcSize()
45 uint32_t total_size = DecodeUnsignedLeb128(&table); in DexToPcSize()
46 uint32_t pc_to_dex_size = DecodeUnsignedLeb128(&table); in DexToPcSize()
54 uint32_t total_size = DecodeUnsignedLeb128(&table); in FirstDexToPcPtr()
55 uint32_t pc_to_dex_size = DecodeUnsignedLeb128(&table); in FirstDexToPcPtr()
58 for (uint32_t i = 0; i < pc_to_dex_size; ++i) { in FirstDexToPcPtr()
68 DexToPcIterator(const MappingTable* table, uint32_t element) : in DexToPcIterator()
76 dex_pc_ = static_cast<uint32_t>(DecodeSignedLeb128(&encoded_table_ptr_)); in DexToPcIterator()
82 uint32_t NativePcOffset() const { in NativePcOffset()
85 uint32_t DexPc() const { in DexPc()
93 dex_pc_ += static_cast<uint32_t>(DecodeSignedLeb128(&encoded_table_ptr_));
107 uint32_t element_; // A value in the range 0 to end_.
108 const uint32_t end_; // Equal to table_->DexToPcSize().
110 uint32_t native_pc_offset_; // The current value of native pc offset.
111 uint32_t dex_pc_; // The current value of dex pc.
119 uint32_t size = DexToPcSize(); in DexToPcEnd()
123 uint32_t PcToDexSize() const PURE { in PcToDexSize()
129 uint32_t pc_to_dex_size = DecodeUnsignedLeb128(&table); in PcToDexSize()
145 PcToDexIterator(const MappingTable* table, uint32_t element) : in PcToDexIterator()
153 dex_pc_ = static_cast<uint32_t>(DecodeSignedLeb128(&encoded_table_ptr_)); in PcToDexIterator()
159 uint32_t NativePcOffset() const { in NativePcOffset()
162 uint32_t DexPc() const { in DexPc()
170 dex_pc_ += static_cast<uint32_t>(DecodeSignedLeb128(&encoded_table_ptr_));
184 uint32_t element_; // A value in the range 0 to PcToDexSize.
185 const uint32_t end_; // Equal to table_->PcToDexSize().
187 uint32_t native_pc_offset_; // The current value of native pc offset.
188 uint32_t dex_pc_; // The current value of dex pc.
196 uint32_t size = PcToDexSize(); in PcToDexEnd()