Home | History | Annotate | Download | only in aarch32

Lines Matching defs:input_ptr

1546     Register input_ptr = scratch_registers.Acquire();
1550 // Initialize `input_ptr` to the first element and `input_end` the address
1552 __ Mov(input_ptr, Operand::From(kTests[i].inputs));
1553 __ Add(input_end, input_ptr, static_cast<uint32_t>(input_stride));
1565 __ Ldr(nzcv_bits, MemOperand(input_ptr, offsetof(Inputs, apsr)));
1577 __ Ldr(q_bit, MemOperand(input_ptr, offsetof(Inputs, qbit)));
1584 __ Ldr(ge_bits, MemOperand(input_ptr, offsetof(Inputs, ge)));
1587 __ Ldr(rd, MemOperand(input_ptr, offsetof(Inputs, rd)));
1588 __ Ldr(rn, MemOperand(input_ptr, offsetof(Inputs, rn)));
1589 __ Ldr(rm, MemOperand(input_ptr, offsetof(Inputs, rm)));
1623 // Loop back until `input_ptr` is lower than `input_base`.
1624 __ Add(input_ptr, input_ptr, Operand::From(sizeof(kTests[i].inputs[0])));
1625 __ Cmp(input_ptr, input_end);