Lines Matching refs:memory_
38 memory_.clear_func_offset(); in Init()
39 memory_.clear_text_offset(); in Init()
40 memory_.set_data_offset(offset); in Init()
41 memory_.set_cur_offset(offset); in Init()
46 if (!memory_.ReadBytes(data, 4)) { in Init()
48 last_error_.address = memory_.cur_offset(); in Init()
62 table_entry_size_ = memory_.template GetEncodedSize<AddressType>(table_encoding_); in Init()
72 memory_.set_pc_offset(memory_.cur_offset()); in Init()
73 if (!memory_.template ReadEncodedValue<AddressType>(ptr_encoding_, &ptr_offset_)) { in Init()
75 last_error_.address = memory_.cur_offset(); in Init()
79 memory_.set_pc_offset(memory_.cur_offset()); in Init()
80 if (!memory_.template ReadEncodedValue<AddressType>(fde_count_encoding, &fde_count_)) { in Init()
82 last_error_.address = memory_.cur_offset(); in Init()
91 entries_offset_ = memory_.cur_offset(); in Init()
127 memory_.set_data_offset(entries_data_offset_); in GetFdeInfoFromIndex()
128 memory_.set_cur_offset(entries_offset_ + 2 * index * table_entry_size_); in GetFdeInfoFromIndex()
129 memory_.set_pc_offset(0); in GetFdeInfoFromIndex()
131 if (!memory_.template ReadEncodedValue<AddressType>(table_encoding_, &value) || in GetFdeInfoFromIndex()
132 !memory_.template ReadEncodedValue<AddressType>(table_encoding_, &info->offset)) { in GetFdeInfoFromIndex()
134 last_error_.address = memory_.cur_offset(); in GetFdeInfoFromIndex()