Lines Matching refs:input_ptr
456 Register input_ptr = scratch_registers.Acquire();
460 // Initialize `input_ptr` to the first element and `input_end` the address
462 __ Mov(input_ptr, Operand::From(kTests[i].inputs));
463 __ Add(input_end, input_ptr, static_cast<uint32_t>(input_stride));
475 __ Ldr(nzcv_bits, MemOperand(input_ptr, offsetof(Inputs, apsr)));
487 __ Ldr(q_bit, MemOperand(input_ptr, offsetof(Inputs, qbit)));
494 __ Ldr(ge_bits, MemOperand(input_ptr, offsetof(Inputs, ge)));
497 __ Ldr(rd, MemOperand(input_ptr, offsetof(Inputs, rd)));
498 __ Ldr(rn, MemOperand(input_ptr, offsetof(Inputs, rn)));
499 __ Ldr(rm, MemOperand(input_ptr, offsetof(Inputs, rm)));
533 // Loop back until `input_ptr` is lower than `input_base`.
534 __ Add(input_ptr, input_ptr, Operand::From(sizeof(kTests[i].inputs[0])));
535 __ Cmp(input_ptr, input_end);