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

  /frameworks/compile/mclinker/include/mcld/LD/
ResolveInfo.h 221 static const uint32_t DESC_OFFSET = 2;
222 static const uint32_t DESC_MASK = 0x3 << DESC_OFFSET;
254 static const uint32_t undefine_flag = 0 << DESC_OFFSET;
255 static const uint32_t define_flag = 1 << DESC_OFFSET;
256 static const uint32_t common_flag = 2 << DESC_OFFSET;
257 static const uint32_t indirect_flag = 3 << DESC_OFFSET;
  /frameworks/compile/mclinker/lib/LD/
ResolveInfo.cpp 99 m_BitField |= ((pDesc << DESC_OFFSET) & DESC_MASK);
207 return (m_BitField & DESC_MASK) >> DESC_OFFSET;

Completed in 187 milliseconds