HomeSort by: relevance | last modified time | path
    Searched refs:tmp_marker (Results 1 - 4 of 4) sorted by relevancy

  /src/external/lgpl3/mpfr/dist/src/
mpfr-gmp.c 341 mpfr_tmp_allocate (struct tmp_marker **tmp_marker, size_t size)
343 struct tmp_marker *head;
345 head = (struct tmp_marker *)
346 mpfr_allocate_func (sizeof (struct tmp_marker));
349 head->next = *tmp_marker;
350 *tmp_marker = head;
355 mpfr_tmp_free (struct tmp_marker *tmp_marker)
357 struct tmp_marker *t
    [all...]
mpfr-gmp.h 276 struct tmp_marker struct
280 struct tmp_marker *next;
283 __MPFR_DECLSPEC void *mpfr_tmp_allocate (struct tmp_marker **,
285 __MPFR_DECLSPEC void mpfr_tmp_free (struct tmp_marker *);
331 alloca (n) : mpfr_tmp_allocate (&tmp_marker, (n)))
335 #define TMP_ALLOC(n) (mpfr_tmp_allocate (&tmp_marker, (n)))
339 #define TMP_DECL(m) struct tmp_marker *tmp_marker
341 #define TMP_MARK(m) (tmp_marker = 0)
343 /* Note about TMP_FREE: For small precisions, tmp_marker is null a
    [all...]
  /src/external/lgpl3/gmp/dist/
tal-notreent.c 109 __gmp_tmp_mark (struct tmp_marker *mark)
117 __gmp_tmp_free (struct tmp_marker *mark)
gmp-impl.h 406 struct tmp_marker struct
412 __GMP_DECLSPEC void __gmp_tmp_mark (struct tmp_marker *);
413 __GMP_DECLSPEC void __gmp_tmp_free (struct tmp_marker *);
415 #define TMP_DECL struct tmp_marker __tmp_marker

Completed in 20 milliseconds