Lines Matching refs:success
170 bool success = is_float ? GetFPR(reg, &ptr_val) : GetGPR(reg, &ptr_val); in GetVReg() local
171 if (!success) { in GetVReg()
226 bool success = is_float ? GetFPR(reg_lo, &ptr_val_lo) : GetGPR(reg_lo, &ptr_val_lo); in GetVRegPair() local
227 success &= is_float ? GetFPR(reg_hi, &ptr_val_hi) : GetGPR(reg_hi, &ptr_val_hi); in GetVRegPair()
228 if (!success) { in GetVRegPair()
277 bool success = is_float ? GetFPR(reg, &old_reg_val) : GetGPR(reg, &old_reg_val); in SetVReg() local
278 if (!success) { in SetVReg()
342 bool success = is_float ? GetFPR(reg_lo, &old_reg_val_lo) : GetGPR(reg_lo, &old_reg_val_lo); in SetVRegPair() local
343 success &= is_float ? GetFPR(reg_hi, &old_reg_val_hi) : GetGPR(reg_hi, &old_reg_val_hi); in SetVRegPair()
344 if (!success) { in SetVRegPair()
356 bool success = is_float ? SetFPR(reg_lo, new_value_lo) : SetGPR(reg_lo, new_value_lo); in SetVRegPair() local
357 success &= is_float ? SetFPR(reg_hi, new_value_hi) : SetGPR(reg_hi, new_value_hi); in SetVRegPair()
358 return success; in SetVRegPair()