Searched refs:MIN_ARRAY_SIZE (Results 1 – 4 of 4) sorted by relevance
46 #define MIN_ARRAY_SIZE 16 macro337 want_alloc = MAX (want_alloc, MIN_ARRAY_SIZE); in g_array_maybe_expand()413 array->alloc = MAX (array->alloc, MIN_ARRAY_SIZE); in g_ptr_array_maybe_expand()
45 #define MIN_ARRAY_SIZE 16 macro391 new_size = MAX (new_size, MIN_ARRAY_SIZE); in g_memory_output_stream_write()
110 #define MIN_ARRAY_SIZE (static_cast<size_t>(14)) macro285 numBlocks = max(MIN_ARRAY_SIZE, numBlocks * GROWTH_FACTOR); in allocateBlock()308 …if (m_heap.numBlocks > MIN_ARRAY_SIZE && m_heap.usedBlocks < m_heap.numBlocks / LOW_WATER_FACTOR) { in freeBlock()
5098 … in allocateBlock(). Changed MIN_ARRAY_SIZE to be explicitly size_t, as this type is different5164 * kjs/collector.cpp: Changed MIN_ARRAY_SIZE to a #define to avoid a PIC branch. Removed