Lines Matching refs:memory_
42 memory_.clear_func_offset(); in Init()
43 memory_.clear_text_offset(); in Init()
44 memory_.set_data_offset(offset); in Init()
45 memory_.set_cur_offset(offset); in Init()
51 if (!memory_.ReadBytes(data, 4)) { in Init()
53 last_error_.address = memory_.cur_offset(); in Init()
67 table_entry_size_ = memory_.template GetEncodedSize<AddressType>(table_encoding_); in Init()
77 memory_.set_pc_offset(memory_.cur_offset()); in Init()
79 if (!memory_.template ReadEncodedValue<AddressType>(ptr_encoding, &ptr_offset)) { in Init()
81 last_error_.address = memory_.cur_offset(); in Init()
85 memory_.set_pc_offset(memory_.cur_offset()); in Init()
86 if (!memory_.template ReadEncodedValue<AddressType>(fde_count_encoding, &fde_count_)) { in Init()
88 last_error_.address = memory_.cur_offset(); in Init()
97 hdr_entries_offset_ = memory_.cur_offset(); in Init()
141 memory_.set_data_offset(hdr_entries_data_offset_); in GetFdeInfoFromIndex()
142 memory_.set_cur_offset(hdr_entries_offset_ + 2 * index * table_entry_size_); in GetFdeInfoFromIndex()
143 memory_.set_pc_offset(0); in GetFdeInfoFromIndex()
145 if (!memory_.template ReadEncodedValue<AddressType>(table_encoding_, &value) || in GetFdeInfoFromIndex()
146 !memory_.template ReadEncodedValue<AddressType>(table_encoding_, &info->offset)) { in GetFdeInfoFromIndex()
148 last_error_.address = memory_.cur_offset(); in GetFdeInfoFromIndex()