Lines Matching defs:offset

73     int64_t offset = 0;

85 DFXLOGU("DW_CFA_set_loc: new offset=%{public}" PRIu64 "", static_cast<uint64_t>(pcOffset));
90 DFXLOGU("DW_CFA_advance_loc1: new offset=%{public}" PRIu64 "", static_cast<uint64_t>(pcOffset));
101 DFXLOGU("DW_CFA_advance_loc4: new offset=%{public}" PRIu64 "", static_cast<uint64_t>(pcOffset));
105 offset = (int64_t)(memory_->ReadUleb128(instPtr) * cie.codeAlignFactor);
112 rsState.locs[qutIdx].val = offset;
133 rsState.locs[qutIdx].type = REG_LOC_UNDEFINED; // cfa offset
174 offset = (int64_t)memory_->ReadUleb128(instPtr);
176 rsState.cfaRegOffset = (int32_t)offset;
177 DFXLOGU("DW_CFA_def_cfa: reg=%{public}d, offset=%{public}" PRIu64 "", (int)reg, offset);
190 offset = (int64_t)(memory_->ReadSleb128(instPtr)) * cie.dataAlignFactor;
196 rsState.locs[qutIdx].val = offset;
200 offset = (int64_t)(memory_->ReadSleb128(instPtr)) * cie.dataAlignFactor;
201 DFXLOGU("DW_CFA_def_cfa_sf: reg=%{public}d, offset=%{public}d", rsState.cfaReg, rsState.cfaRegOffset);
203 rsState.cfaRegOffset = (int32_t)offset;
206 offset = (int64_t)(memory_->ReadSleb128(instPtr)) * cie.dataAlignFactor;
207 rsState.cfaRegOffset = (int32_t)offset;
208 DFXLOGU("DW_CFA_def_cfa_offset_sf: offset=%{public}d", rsState.cfaRegOffset);
212 offset = (int64_t)(memory_->ReadUleb128(instPtr) * cie.codeAlignFactor);
213 DFXLOGU("DW_CFA_val_offset: reg=%{public}d, offset=%{public}" PRIu64 "", (int)reg, offset);
219 rsState.locs[qutIdx].val = offset;
223 offset = memory_->ReadSleb128(instPtr) * static_cast<int64_t>(cie.codeAlignFactor);
224 DFXLOGU("DW_CFA_val_offset_sf: reg=%{public}d, offset=%{public}" PRIu64 "", (int)reg, offset);
230 rsState.locs[qutIdx].val = offset;
264 offset = -(int64_t)memory_->ReadUleb128(instPtr);
265 DFXLOGU("DW_CFA_GNU_negative_offset_extended: reg=%{public}d, offset=%{public}" PRIu64 "",
266 (int)reg, offset);
272 rsState.locs[qutIdx].val = offset;
285 offset = (int64_t)memory_->ReadUleb128(instPtr) * cie.dataAlignFactor;
286 DFXLOGU("DW_CFA_offset: reg=%{public}d, offset=%{public}" PRId64 "", (int)reg, offset);
292 rsState.locs[qutIdx].val = offset;