Lines Matching refs:OpOperand

222                                        OpOperand *trailingOperands,  in OperandStorage()
227 new (&operandStorage[i]) OpOperand(owner, values[i]); in OperandStorage()
232 operand.~OpOperand(); in ~OperandStorage()
242 MutableArrayRef<OpOperand> storageOperands = resize(owner, values.size()); in setOperands()
255 MutableArrayRef<OpOperand> storageOperands = getOperands(); in setOperands()
282 MutableArrayRef<OpOperand> operands = getOperands(); in eraseOperands()
292 operands[numOperands + i].~OpOperand(); in eraseOperands()
296 MutableArrayRef<OpOperand> operands = getOperands(); in eraseOperands()
309 for (OpOperand &operand : operands.drop_front(numOperands)) in eraseOperands()
310 operand.~OpOperand(); in eraseOperands()
315 MutableArrayRef<OpOperand> detail::OperandStorage::resize(Operation *owner, in resize()
319 MutableArrayRef<OpOperand> origOperands = getOperands(); in resize()
324 origOperands[i].~OpOperand(); in resize()
331 OpOperand *opBegin = origOperands.data(); in resize()
333 new (&opBegin[numOperands]) OpOperand(owner); in resize()
334 return MutableArrayRef<OpOperand>(opBegin, newSize); in resize()
340 OpOperand *newOperandStorage = in resize()
341 reinterpret_cast<OpOperand *>(malloc(sizeof(OpOperand) * newCapacity)); in resize()
344 MutableArrayRef<OpOperand> newOperands(newOperandStorage, newSize); in resize()
351 operand.~OpOperand(); in resize()
355 new (&newOperands[numOperands]) OpOperand(owner); in resize()
607 if (auto *operand = owner.dyn_cast<OpOperand *>()) in offset_base()
615 if (auto *operand = owner.dyn_cast<OpOperand *>()) in dereference_iterator()