Home | History | Annotate | Download | only in dist

Lines Matching refs:current

48 static tmp_stack *current = &xxx;
62 ASSERT (((unsigned) current->alloc_point % __TMP_ALIGN) == 0);
64 if (size > (char *) current->end - (char *) current->alloc_point)
71 /* Allocate a chunk that makes the total current allocation somewhat
95 header->prev = current;
96 current = header;
99 that = current->alloc_point;
100 current->alloc_point = (char *) that + size;
111 mark->which_chunk = current;
112 mark->alloc_point = current->alloc_point;
119 while (mark->which_chunk != current)
123 tmp = current;
124 current = tmp->prev;
128 current->alloc_point = mark->alloc_point;