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

  /src/external/lgpl3/mpfr/dist/src/
mpfr-gmp.h 291 MPFR_ALLOCA_MAX needs to be 0 (see the definition of TMP_ALLOC below);
329 #define TMP_ALLOC(n) (MPFR_ASSERTD ((n) > 0), \
335 #define TMP_ALLOC(n) (mpfr_tmp_allocate (&tmp_marker, (n)))
344 the allocation is done on the stack (see TMP_ALLOC above). */
  /src/external/lgpl3/gmp/dist/
gmp-impl.h 333 ptr = TMP_ALLOC (bytes);
337 TMP_BALLOC. Allocations that might be small or big should use TMP_ALLOC.
343 in a list of variables. TMP_MARK must be done before any TMP_ALLOC.
344 TMP_ALLOC(0) is not allowed. TMP_FREE doesn't need to be done if a
361 the WANT_TMP_NOTREENTRANT version of TMP_ALLOC below will be a noop. */
383 #define TMP_ALLOC(n) \
398 #define TMP_SALLOC(n) TMP_ALLOC(n)
399 #define TMP_BALLOC(n) TMP_ALLOC(n)
400 #define TMP_ALLOC(n) __gmp_tmp_reentrant_alloc (&__tmp_marker, n)
418 #define TMP_SALLOC(n) TMP_ALLOC(n
    [all...]

Completed in 26 milliseconds