Lines Matching defs:T
357 #define XALLOCA(T) ((T *) alloca (sizeof (T))) argument
358 #define XNEW(T) ((T *) xmalloc (sizeof (T))) argument
359 #define XCNEW(T) ((T *) xcalloc (1, sizeof (T))) argument
360 #define XDUP(T, P) ((T *) xmemdup ((P), sizeof (T), sizeof (T))) argument
365 #define XALLOCAVEC(T, N) ((T *) alloca (sizeof (T) * (N))) argument
366 #define XNEWVEC(T, N) ((T *) xmalloc (sizeof (T) * (N))) argument
367 #define XCNEWVEC(T, N) ((T *) xcalloc ((N), sizeof (T))) argument
368 #define XDUPVEC(T, P, N) ((T *) xmemdup ((P), sizeof (T) * (N), sizeof (T) * (N))) argument
369 #define XRESIZEVEC(T, P, N) ((T *) xrealloc ((void *) (P), sizeof (T) * (N))) argument
374 #define XALLOCAVAR(T, S) ((T *) alloca ((S))) argument
375 #define XNEWVAR(T, S) ((T *) xmalloc ((S))) argument
376 #define XCNEWVAR(T, S) ((T *) xcalloc (1, (S))) argument
377 #define XDUPVAR(T, P, S1, S2) ((T *) xmemdup ((P), (S1), (S2))) argument
378 #define XRESIZEVAR(T, P, S) ((T *) xrealloc ((P), (S))) argument
382 #define XOBNEW(O, T) ((T *) obstack_alloc ((O), sizeof (T))) argument
383 #define XOBNEWVEC(O, T, N) ((T *) obstack_alloc ((O), sizeof (T) * (N))) argument
384 #define XOBNEWVAR(O, T, S) ((T *) obstack_alloc ((O), (S))) argument
385 #define XOBFINISH(O, T) ((T) obstack_finish ((O))) argument