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.h212 static const uint32_t TYPE_OFFSET = 7; variable
213 static const uint32_t TYPE_MASK = 0xF << TYPE_OFFSET;
244 static const uint32_t object_flag = Object << TYPE_OFFSET;
245 static const uint32_t function_flag = Function << TYPE_OFFSET;
246 static const uint32_t section_flag = Section << TYPE_OFFSET;
247 static const uint32_t file_flag = File << TYPE_OFFSET;
/frameworks/compile/mclinker/lib/LD/
DResolveInfo.cpp93 m_BitField |= ((pType << TYPE_OFFSET) & TYPE_MASK); in setType()
187 return (m_BitField & TYPE_MASK) >> TYPE_OFFSET; in type()