Home | History | Annotate | Download | only in Script

Lines Matching defs:IntOperand

78 // IntOperand
80 typedef GCFactory<IntOperand, MCLD_SYMBOLS_PER_INPUT> IntOperandFactory;
83 IntOperand::IntOperand()
88 IntOperand::IntOperand(uint64_t pValue)
93 void IntOperand::dump() const
98 IntOperand* IntOperand::create(uint64_t pValue)
100 IntOperand* result = g_IntOperandFactory->allocate();
101 new (result) IntOperand(pValue);
105 void IntOperand::destroy(IntOperand*& pOperand)
112 void IntOperand::clear()