Lines Matching refs:temp
792 Register temp = temps.AcquireW(); in GenUnsafeGet() local
794 invoke, trg_loc, base, 0U, offset_loc, temp, /* needs_null_check */ false); in GenUnsafeGet()
922 Register temp = temps.AcquireW(); in GenUnsafePut() local
923 __ Mov(temp.W(), value.W()); in GenUnsafePut()
924 codegen->GetAssembler()->PoisonHeapReference(temp.W()); in GenUnsafePut()
925 source = temp; in GenUnsafePut()
1150 Register temp = temps.AcquireW(); in VisitStringCharAt() local
1161 __ Ldr(temp, HeapOperand(obj, count_offset)); // temp = str.length. in VisitStringCharAt()
1163 __ Cmp(idx, temp); in VisitStringCharAt()
1225 Register temp = scratch_scope.AcquireW(); in VisitStringEquals() local
1253 __ Ldr(temp, MemOperand(str.X(), class_offset)); in VisitStringEquals()
1255 __ Cmp(temp, temp1); in VisitStringEquals()
1259 __ Ldr(temp, MemOperand(str.X(), count_offset)); in VisitStringEquals()
1262 __ Cmp(temp, temp1); in VisitStringEquals()
1267 __ Cbz(temp, &return_true); in VisitStringEquals()
1284 __ Sub(temp, temp, Operand(4), SetFlags); in VisitStringEquals()
1770 const Register& temp, in CheckSystemArrayCopyPosition() argument
1778 __ Ldr(temp, MemOperand(input, length_offset)); in CheckSystemArrayCopyPosition()
1779 __ Cmp(temp, OperandFrom(length, Primitive::kPrimInt)); in CheckSystemArrayCopyPosition()
1785 __ Subs(temp, input_len, pos_const); in CheckSystemArrayCopyPosition()
1789 __ Cmp(temp, OperandFrom(length, Primitive::kPrimInt)); in CheckSystemArrayCopyPosition()
1801 __ Ldr(temp, MemOperand(input, length_offset)); in CheckSystemArrayCopyPosition()
1802 __ Subs(temp, temp, pos_reg); in CheckSystemArrayCopyPosition()
1804 __ Ccmp(temp, OperandFrom(length, Primitive::kPrimInt), NFlag, ge); in CheckSystemArrayCopyPosition()