Home | History | Annotate | Download | only in include

Lines Matching defs:alloca

179    strings.  Allocates memory using alloca.  The arguments are
182 (libiberty_concat_ptr = (char *) alloca (concat_length ACONCAT_PARAMS + 1), \
341 #define XALLOCA(T) ((T *) alloca (sizeof (T)))
349 #define XALLOCAVEC(T, N) ((T *) alloca (sizeof (T) * (N)))
358 #define XALLOCAVAR(T, S) ((T *) alloca ((S)))
649 /* Drastically simplified alloca configurator. If we're using GCC,
650 we use __builtin_alloca; otherwise we use the C alloca. The C
651 alloca is always available. You can override GCC by defining
654 to call alloca(0). */
656 #undef alloca
658 # define alloca(x) __builtin_alloca(x)
663 char *const libiberty_nptr = (char *const) alloca (libiberty_len); \
666 # define alloca(x) C_alloca(x)
677 libiberty_nptr = (char *) alloca (libiberty_len), \