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

/barrelfish-2018-10-04/lib/tommath/
H A Dbn_mp_init.c24 a->dp = OPT_CAST(mp_digit) XMALLOC (sizeof (mp_digit) * MP_PREC);
H A Dbn_mp_init_size.c27 a->dp = OPT_CAST(mp_digit) XMALLOC (sizeof (mp_digit) * size);
H A Dbn_mp_fwrite.c27 buf = OPT_CAST(char) XMALLOC (len);
H A Dbn_mp_prime_random_ex.c52 tmp = OPT_CAST(unsigned char) XMALLOC(bsize);
H A Dtommath.h110 #ifndef XMALLOC
111 #define XMALLOC malloc macro
117 extern void *XMALLOC(size_t n);
H A Dtommath.tex800 was a memory error. The function XMALLOC is what actually allocates the memory. Technically XMALLOC is not a function
801 but a macro defined in ``tommath.h``. By default, XMALLOC will evaluate to malloc() which is the C library's built--in
865 The digits are deallocated off the heap via the XFREE macro. Similar to XMALLOC the XFREE macro actually evaluates to
/barrelfish-2018-10-04/lib/tommath/pre_gen/
H A Dmpi.c3131 buf = OPT_CAST(char) XMALLOC (len);
3403 a->dp = OPT_CAST(mp_digit) XMALLOC (sizeof (mp_digit) * MP_PREC);
3626 a->dp = OPT_CAST(mp_digit) XMALLOC (sizeof (mp_digit) * size);
6123 tmp = OPT_CAST(unsigned char) XMALLOC(bsize);

Completed in 110 milliseconds