Home | History | Annotate | Download | only in libiberty

Lines Matching defs:current_ptr

63      current_ptr when this chunk was allocated.  If this chunk
65 char *current_ptr;
104 chunk->current_ptr = NULL;
106 ret->current_ptr = (char *) chunk + CHUNK_HEADER_SIZE;
133 o->current_ptr += len;
135 return (void *) (o->current_ptr - len);
149 chunk->current_ptr = o->current_ptr;
163 chunk->current_ptr = NULL;
165 o->current_ptr = (char *) chunk + CHUNK_HEADER_SIZE;
212 if (p->current_ptr == NULL)
229 if (p->current_ptr == NULL)
238 chunk if the current_ptr is greater than or equal to B. We
239 can then reset the new current_ptr to B. */
254 else if (q->current_ptr > b)
267 o->current_ptr = b;
273 char *current_ptr;
278 objects, setting current_ptr from the value stored with the
281 current_ptr = p->current_ptr;
296 while (p->current_ptr != NULL)
299 o->current_ptr = current_ptr;
300 o->current_space = ((char *) p + CHUNK_SIZE) - current_ptr;