Home
last modified time | relevance | path

Searched refs:POOL_SIZE (Results 1 – 5 of 5) sorted by relevance

/external/compiler-rt/lib/interception/
Dinterception_win.cc61 const int POOL_SIZE = 1024; in GetMemoryForTrampoline() local
65 pool = (char *)VirtualAlloc(NULL, POOL_SIZE, MEM_RESERVE | MEM_COMMIT, in GetMemoryForTrampoline()
71 _memset(pool, 0xCC /* int 3 */, POOL_SIZE); in GetMemoryForTrampoline()
74 if (pool_used + size > POOL_SIZE) in GetMemoryForTrampoline()
/external/clang/lib/Sema/
DIdentifierResolver.cpp32 static const unsigned int POOL_SIZE = 512; member in IdentifierResolver::IdDeclInfoMap
41 IdDeclInfo Pool[POOL_SIZE];
48 IdDeclInfoMap() : CurPool(nullptr), CurIndex(POOL_SIZE) {} in IdDeclInfoMap()
391 if (CurIndex == POOL_SIZE) { in operator []()
/external/oprofile/libop/
Dop_config_24.h72 #define POOL_SIZE 65536 macro
Dop_interface.h85 #define OP_HASH_MAP_SIZE (OP_HASH_MAP_NR * sizeof(struct op_hash_index) + POOL_SIZE)
/external/oprofile/module/
Dop_dname.c57 op_pool_end = op_pool_start + POOL_SIZE; in oprof_init_hashmap()