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

/art/runtime/
H A Dstack.cc170 bool success = is_float ? GetFPR(reg, &ptr_val) : GetGPR(reg, &ptr_val);
226 bool success = is_float ? GetFPR(reg_lo, &ptr_val_lo) : GetGPR(reg_lo, &ptr_val_lo);
227 success &= is_float ? GetFPR(reg_hi, &ptr_val_hi) : GetGPR(reg_hi, &ptr_val_hi);
277 bool success = is_float ? GetFPR(reg, &old_reg_val) : GetGPR(reg, &old_reg_val);
342 bool success = is_float ? GetFPR(reg_lo, &old_reg_val_lo) : GetGPR(reg_lo, &old_reg_val_lo);
343 success &= is_float ? GetFPR(reg_hi, &old_reg_val_hi) : GetGPR(reg_hi, &old_reg_val_hi);
389 bool StackVisitor::GetFPR(uint32_t reg, uintptr_t* val) const { function in class:art::StackVisitor
391 return context_->GetFPR(reg, val);

Completed in 459 milliseconds