Searched refs:VARRAY_HDR_SIZE (Results 1 - 1 of 1) sorted by relevance

/freebsd-10.1-release/contrib/gcc/
H A Dvarray.c32 #define VARRAY_HDR_SIZE (sizeof (struct varray_head_tag) - sizeof (varray_data)) macro
127 desc->allocated += data_size + VARRAY_HDR_SIZE;
130 ptr = ggc_alloc_cleared (VARRAY_HDR_SIZE + data_size);
132 ptr = xcalloc (VARRAY_HDR_SIZE + data_size, 1);
163 va = ggc_realloc (va, VARRAY_HDR_SIZE + data_size);
165 va = xrealloc (va, VARRAY_HDR_SIZE + data_size);

Completed in 46 milliseconds