HomeSort by: relevance | last modified time | path
    Searched defs:XMALLOC (Results 1 - 5 of 5) sorted by relevancy

  /src/external/gpl2/diffutils/dist/lib/
xalloc.h 56 void *xmalloc PARAMS ((size_t n));
61 # define XMALLOC(Type, N_items) ((Type *) xmalloc (sizeof (Type) * (N_items)))
67 # define NEW(Type, Var) Type *(Var) = XMALLOC (Type, 1)
78 (memcpy (xmalloc (sizeof (*Src) * (Num)), (Src), sizeof (*Src) * (Num)))
  /src/external/gpl2/grep/dist/lib/
xalloc.h 61 void *xmalloc PARAMS ((size_t n));
66 # define XMALLOC(Type, N_items) ((Type *) xmalloc (sizeof (Type) * (N_items)))
72 # define NEW(Type, Var) Type *(Var) = XMALLOC (Type, 1)
83 (memcpy (xmalloc (sizeof (*Src) * (Num)), (Src), sizeof (*Src) * (Num)))
  /src/external/gpl2/texinfo/dist/lib/
xalloc.h 50 void *xmalloc (size_t s);
80 # define NEW(type, var) type *var = xmalloc (sizeof (type))
82 # define XMALLOC(type, n) xnmalloc (n, sizeof (type))
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
tommath.h 112 #ifndef XMALLOC
113 #define XMALLOC malloc
119 extern void *XMALLOC(size_t n);
  /src/external/bsd/wpa/dist/src/tls/
libtommath.c 79 #define XMALLOC os_malloc
372 a->dp = OPT_CAST(mp_digit) XMALLOC (sizeof (mp_digit) * MP_PREC);
2500 a->dp = OPT_CAST(mp_digit) XMALLOC (sizeof (mp_digit) * size);

Completed in 29 milliseconds