HomeSort by: relevance | last modified time | path
    Searched refs:ALLOC (Results 1 - 25 of 229) sorted by relevancy

1 2 3 4 5 6 7 8 910

  /src/external/lgpl3/gmp/dist/mpz/
clear.c 38 if (ALLOC (x))
39 __GMP_FREE_FUNC_LIMBS (PTR (x), ALLOC(x));
swap.c 36 MP_SIZE_T_SWAP (ALLOC(u), ALLOC(v));
clears.c 43 if (ALLOC (x))
44 __GMP_FREE_FUNC_LIMBS (PTR (x), ALLOC (x));
realloc.c 61 if (ALLOC (m) == 0)
67 mp = __GMP_REALLOCATE_FUNC_LIMBS (PTR (m), ALLOC (m), new_alloc);
76 ALLOC(m) = new_alloc;
realloc2.c 52 if (ALLOC (m) == 0)
58 PTR (m) = __GMP_REALLOCATE_FUNC_LIMBS (PTR(m), ALLOC(m), new_alloc);
66 ALLOC(m) = new_alloc;
init.c 38 ALLOC (x) = 0;
iset_d.c 39 ALLOC (dest) = 0;
iset_str.c 40 ALLOC (x) = 0;
iset.c 44 ALLOC (w) = MAX (size, 1);
45 wp = __GMP_ALLOCATE_FUNC_LIMBS (ALLOC (w));
iset_ui.c 42 ALLOC (dest) = 2;
50 ALLOC (dest) = 1;
init2.c 53 ALLOC(x) = new_alloc;
inits.c 44 ALLOC (x) = 0;
roinit_n.c 39 ALLOC (x) = 0;
  /src/external/lgpl3/gmp/dist/mpq/
clear.c 37 if (ALLOC (NUM(x)))
38 __GMP_FREE_FUNC_LIMBS (PTR(NUM(x)), ALLOC(NUM(x)));
39 if (ALLOC (DEN(x)))
40 __GMP_FREE_FUNC_LIMBS (PTR(DEN(x)), ALLOC(DEN(x)));
clears.c 43 if (ALLOC (NUM(x)))
44 __GMP_FREE_FUNC_LIMBS (PTR(NUM(x)), ALLOC(NUM(x)));
45 if (ALLOC (DEN(x)))
46 __GMP_FREE_FUNC_LIMBS (PTR(DEN(x)), ALLOC(DEN(x)));
init.c 38 ALLOC(NUM(x)) = 0;
41 ALLOC(DEN(x)) = 1;
swap.c 36 MP_SIZE_T_SWAP (ALLOC(NUM(u)), ALLOC(NUM(v)));
37 MP_SIZE_T_SWAP (ALLOC(DEN(u)), ALLOC(DEN(v)));
inv.c 57 MP_SIZE_T_SWAP (ALLOC(NUM(dest)), ALLOC(DEN(dest)));
  /src/sys/arch/epoc32/include/
loadfile_machdep.h 53 #define ALLOC(a) alloc(a)
56 #define ALLOC(a) alloc(a)
  /src/sys/arch/evbcf/include/
loadfile_machdep.h 57 #define ALLOC(a) alloc(a)
64 #define ALLOC(a) malloc(a)
  /src/sys/arch/landisk/include/
loadfile_machdep.h 53 #define ALLOC(a) alloc(a)
56 #define ALLOC(a) alloc(a)
  /src/sys/arch/zaurus/include/
loadfile_machdep.h 53 #define ALLOC(a) alloc(a)
56 #define ALLOC(a) alloc(a)
  /src/sys/arch/landisk/stand/boot/
bootinfo.h 41 #define BI_ALLOC(max) (bootinfo = ALLOC(sizeof(struct btinfo) \
  /src/sys/arch/zaurus/stand/zboot/
bootinfo.h 41 #define BI_ALLOC(max) (bootinfo = ALLOC(sizeof(struct btinfo) \
  /src/crypto/external/bsd/heimdal/dist/lib/krb5/
generate_subkey.c 59 ALLOC(*subkey, 1);

Completed in 26 milliseconds

1 2 3 4 5 6 7 8 910