Searched refs:c_segno (Results 1 – 2 of 2) sorted by relevance
230 …uintptr_t c_segno; /* index of the next element in the segments free-list, c_free_segno_hea… member2135 c_segments[segno].c_segno = c_free_segno_head; in c_seg_free_locked()4147 uint32_t c_segno; in c_seg_allocate() local4195 for (c_segno = c_segments_available + 1; c_segno < c_segments_available_new; c_segno++) { in c_seg_allocate()4196 c_segments[c_segno - 1].c_segno = c_segno; /* next free is the one after you */ in c_seg_allocate()4201 c_segments[c_segno - 1].c_segno = c_free_segno_head; /* link to the rest of, existing freelist */ in c_seg_allocate()4208 c_segno = c_free_segno_head; in c_seg_allocate()4209 assert(c_segno >= 0 && c_segno < c_segments_limit); in c_seg_allocate()4211 c_free_segno_head = (uint32_t)c_segments[c_segno].c_segno; in c_seg_allocate()4227 c_seg->c_store.c_buffer = (int32_t *)C_SEG_BUFFER_ADDRESS(c_segno); in c_seg_allocate()[all …]
287 #define C_SEG_BUFFER_ADDRESS(c_segno) ((c_buffers + ((uint64_t)c_segno * (uint64_t)c_seg_allocsiz… argument