HomeSort by relevance Sort by last modified time
    Searched defs:IntOperand (Results 1 - 2 of 2) sorted by null

  /frameworks/compile/mclinker/include/mcld/Script/
Operand.h 87 /** \class IntOperand
91 class IntOperand : public Operand {
93 friend class Chunk<IntOperand, MCLD_SYMBOLS_PER_INPUT>;
94 IntOperand();
95 explicit IntOperand(uint64_t pValue);
109 static IntOperand* create(uint64_t pValue);
110 static void destroy(IntOperand*& pOperand);
  /frameworks/compile/mclinker/lib/Script/
Operand.cpp 69 // IntOperand
71 typedef GCFactory<IntOperand, MCLD_SYMBOLS_PER_INPUT> IntOperandFactory;
74 IntOperand::IntOperand() : Operand(Operand::INTEGER), m_Value(0) {
77 IntOperand::IntOperand(uint64_t pValue)
81 void IntOperand::dump() const {
85 IntOperand* IntOperand::create(uint64_t pValue) {
86 IntOperand* result = g_IntOperandFactory->allocate()
    [all...]

Completed in 134 milliseconds