Lines Matching refs:size
97 // host, force the size of pointer types to the native AArch64 pointer size.
98 unsigned size = is_pointer_type ? 8 : sizeof(T);
99 // The size of the 'operand' reserved for the argument.
100 unsigned operand_size = AlignUp(size, kWRegSizeInBytes);
101 if (size > 8) {
108 return GenericOperand(VRegister(NSRN_++, size * kBitsPerByte));
121 if ((is_integral_type || is_pointer_type) && (size <= 8) && (NGRN_ < 8)) {
129 if (is_integral_type && (size == 16) && (NGRN_ < 7)) {
140 VIXL_ASSERT(size <= 8u);
141 size = std::max(size, 8u);
143 stack_offset_ += size;