Home | History | Annotate | Download | only in include

Lines Matching defs:alloca

181    strings.  Allocates memory using alloca.  The arguments are
184 (libiberty_concat_ptr = (char *) alloca (concat_length ACONCAT_PARAMS + 1), \
348 #define XALLOCA(T) ((T *) alloca (sizeof (T)))
356 #define XALLOCAVEC(T, N) ((T *) alloca (sizeof (T) * (N)))
365 #define XALLOCAVAR(T, S) ((T *) alloca ((S)))
702 /* Drastically simplified alloca configurator. If we're using GCC,
703 we use __builtin_alloca; otherwise we use the C alloca. The C
704 alloca is always available. You can override GCC by defining
707 to call alloca(0). */
709 #undef alloca
711 # define alloca(x) __builtin_alloca(x)
716 char *const libiberty_nptr = (char *const) alloca (libiberty_len); \
719 # define alloca(x) C_alloca(x)
730 libiberty_nptr = (char *) alloca (libiberty_len), \