Home
last modified time | relevance | path

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

/frameworks/compile/mclinker/include/mcld/LD/
DResolveInfo.h238 static const uint32_t TYPE_OFFSET = 7; variable
239 static const uint32_t TYPE_MASK = 0xF << TYPE_OFFSET;
270 static const uint32_t object_flag = Object << TYPE_OFFSET;
271 static const uint32_t function_flag = Function << TYPE_OFFSET;
272 static const uint32_t section_flag = Section << TYPE_OFFSET;
273 static const uint32_t file_flag = File << TYPE_OFFSET;
/frameworks/compile/mclinker/lib/LD/
DResolveInfo.cpp102 m_BitField |= ((pType << TYPE_OFFSET) & TYPE_MASK); in setType()
216 return (m_BitField & TYPE_MASK) >> TYPE_OFFSET; in type()