Home
last modified time | relevance | path

Searched refs:m_IntValue (Results 1 – 2 of 2) sorted by relevance

/frameworks/compile/mclinker/include/mcld/Target/
DELFAttributeValue.h40 ELFAttributeValue() : m_Type(Uninitialized), m_IntValue(0), m_StringValue() {} in ELFAttributeValue()
49 unsigned int getIntValue() const { return m_IntValue; } in getIntValue()
51 void setIntValue(unsigned int pIntValue) { m_IntValue = pIntValue; } in setIntValue()
99 m_IntValue = 0; in reset()
107 unsigned int m_IntValue; variable
/frameworks/compile/mclinker/lib/Target/
DELFAttributeValue.cpp22 size += leb128::size<uint32_t>(m_IntValue); in getSize()
39 if (isIntValue() && (m_IntValue != 0)) in isDefaultValue()
56 if (isIntValue() && (m_IntValue != pValue.getIntValue())) in equals()