64 static inline unsigned 84 const int ALLOC_SIZE = 128;
87 unsigned alloc_size = (
UINT64_ONE << slot_index);
89 word_list*& slot = free_words[slot_index];
92 slot =
new word_list[ALLOC_SIZE * alloc_size];
94 for (i = 0; i < alloc_size * (ALLOC_SIZE - 1) ; i += alloc_size) {
101 free_words[slot_index] = slot[0].
m_next_p;
112 wl_p->
m_next_p = free_words[slot_index];
113 free_words[slot_index] = wl_p;
static const uint64 UINT64_ONE
static unsigned next_pow2_index(std::size_t size)
int scfx_find_msb(unsigned long x)
static void free_word(word *array, std::size_t size)
static word * alloc_word(std::size_t size)
static word_list * free_words[32]