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 227 static const uint32_t DESC_OFFSET = 2;
228 static const uint32_t DESC_MASK = 0x3 << DESC_OFFSET;
264 static const uint32_t undefine_flag = 0 << DESC_OFFSET;
265 static const uint32_t define_flag = 1 << DESC_OFFSET;
266 static const uint32_t common_flag = 2 << DESC_OFFSET;
267 static const uint32_t indirect_flag = 3 << DESC_OFFSET;
  /frameworks/compile/mclinker/lib/LD/
ResolveInfo.cpp 108 m_BitField |= ((pDesc << DESC_OFFSET) & DESC_MASK);
221 return (m_BitField & DESC_MASK) >> DESC_OFFSET;

Completed in 41 milliseconds