Home | History | Annotate | Download | only in aarch32

Lines Matching defs:input_ptr

710     Register input_ptr = scratch_registers.Acquire();
714 // Initialize `input_ptr` to the first element and `input_end` the address
716 __ Mov(input_ptr, Operand::From(kTests[i].inputs));
717 __ Add(input_end, input_ptr, static_cast<uint32_t>(input_stride));
721 __ Ldr(rd, MemOperand(input_ptr, offsetof(Inputs, rd)));
722 __ Ldr(rn, MemOperand(input_ptr, offsetof(Inputs, rn)));
723 __ Ldr(rm, MemOperand(input_ptr, offsetof(Inputs, rm)));
733 // Loop back until `input_ptr` is lower than `input_base`.
734 __ Add(input_ptr, input_ptr, Operand::From(sizeof(kTests[i].inputs[0])));
735 __ Cmp(input_ptr, input_end);