Home | History | Annotate | Download | only in LD

Lines Matching full:static

97   static ResolveInfo* Create(const key_type& pKey);
99 static void Destroy(ResolveInfo*& pInfo);
101 static ResolveInfo* Null();
215 static const uint32_t GLOBAL_OFFSET = 0;
216 static const uint32_t GLOBAL_MASK = 1;
218 static const uint32_t DYN_OFFSET = 1;
219 static const uint32_t DYN_MASK = 1 << DYN_OFFSET;
221 static const uint32_t DESC_OFFSET = 2;
222 static const uint32_t DESC_MASK = 0x3 << DESC_OFFSET;
224 static const uint32_t LOCAL_OFFSET = 4;
225 static const uint32_t LOCAL_MASK = 1 << LOCAL_OFFSET;
227 static const uint32_t BINDING_MASK = GLOBAL_MASK | LOCAL_MASK;
229 static const uint32_t VISIBILITY_OFFSET = 5;
230 static const uint32_t VISIBILITY_MASK = 0x3 << VISIBILITY_OFFSET;
232 static const uint32_t TYPE_OFFSET = 7;
233 static const uint32_t TYPE_MASK = 0xF << TYPE_OFFSET;
235 static const uint32_t SYMBOL_OFFSET = 11;
236 static const uint32_t SYMBOL_MASK = 1 << SYMBOL_OFFSET;
238 static const uint32_t RESERVED_OFFSET = 12;
239 static const uint32_t RESERVED_MASK = 0xF << RESERVED_OFFSET;
240 static const uint32_t NAME_LENGTH_OFFSET = 16;
241 static const uint32_t INFO_MASK = 0xF;
242 static const uint32_t RESOLVE_MASK = 0xFFFF;
250 static const uint32_t global_flag = 0 << GLOBAL_OFFSET;
251 static const uint32_t weak_flag = 1 << GLOBAL_OFFSET;
252 static const uint32_t regular_flag = 0 << DYN_OFFSET;
253 static const uint32_t dynamic_flag = 1 << DYN_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;
258 static const uint32_t local_flag = 1 << LOCAL_OFFSET;
259 static const uint32_t absolute_flag = BINDING_MASK;
260 static const uint32_t object_flag = Object << TYPE_OFFSET;
261 static const uint32_t function_flag = Function << TYPE_OFFSET;
262 static const uint32_t section_flag = Section << TYPE_OFFSET;
263 static const uint32_t file_flag = File << TYPE_OFFSET;
264 static const uint32_t string_flag = 0 << SYMBOL_OFFSET;
265 static const uint32_t symbol_flag = 1 << SYMBOL_OFFSET;