/external/oprofile/libutil/ |
op_libiberty.c | 18 /* some system have a valid libiberty without xcalloc */ 19 void * xcalloc(size_t n_elem, size_t sz) function 32 void * output = xcalloc(1, alloc_size);
|
op_libiberty.h | 51 void * xcalloc(size_t, size_t) OP_ATTRIB_MALLOC;
|
/external/elfutils/lib/ |
system.h | 23 extern void *xcalloc (size_t, size_t) __attribute__ ((__malloc__));
|
xmalloc.c | 45 xcalloc (n, s) function
|
fixedsizehash.h | 100 xcalloc (sizeof (struct CONCAT(PREFIX,fshash))
|
/external/bison/src/ |
nullable.c | 66 size_t *rcount = xcalloc (nrules, sizeof *rcount); 69 rule_list **rsets = xcalloc (nvars, sizeof *rsets); 74 nullable = xcalloc (nvars, sizeof *nullable);
|
relation.c | 102 INDEX = xcalloc (size + 1, sizeof *INDEX); 133 size_t *nedges = xcalloc (n, sizeof *nedges);
|
derives.c | 73 rule_list **dset = xcalloc (nvars, sizeof *dset);
|
lalr.c | 84 goto_map = xcalloc (nvars + 1, sizeof *goto_map); 119 from_state = xcalloc (ngotos, sizeof *from_state); 120 to_state = xcalloc (ngotos, sizeof *to_state); 389 lookback = xcalloc (nLA, sizeof *lookback);
|
tables.c | 757 table = xcalloc (table_size, sizeof *table); 758 conflict_table = xcalloc (table_size, sizeof *conflict_table); 814 froms = xcalloc (nvectors, sizeof *froms); 815 tos = xcalloc (nvectors, sizeof *tos); 816 conflict_tos = xcalloc (nvectors, sizeof *conflict_tos); 817 tally = xcalloc (nvectors, sizeof *tally); 827 order = xcalloc (nvectors, sizeof *order);
|
LR0.c | 106 size_t *symbol_count = xcalloc (nsyms + nuseless_nonterminals, 305 states = xcalloc (nstates, sizeof *states);
|
conflicts.c | 312 conflicts = xcalloc (nstates, sizeof *conflicts);
|
/external/bison/lib/ |
xalloc.h | 51 void *xcalloc (size_t n, size_t s);
|
xmalloc.c | 200 to xcalloc (N, S). */ 212 xcalloc (size_t n, size_t s) function
|
bitsetv.c | 47 bsetv = xcalloc (1, vector_bytes + bytes * n_vecs);
|
bitset_stats.c | 702 sbset = xcalloc (1, bytes); 708 sbset = xcalloc (1, bytes); 714 sbset = xcalloc (1, bytes); 720 sbset = xcalloc (1, bytes);
|
bitset.c | 141 bset = xcalloc (1, bytes);
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
xmalloc.c | 77 to xcalloc (N, S). */ 89 xcalloc (size_t n, size_t s) function
|
xalloc.h | 57 void *xcalloc (size_t n, size_t s) ATTRIBUTE_MALLOC; 100 /* extern t *XCALLOC (size_t n, typename t); */ 101 # define XCALLOC(n, t) \ 102 ((t *) (sizeof (t) == 1 ? xzalloc (n) : xcalloc (n, sizeof (t))))
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/ |
libiberty.h | 296 extern void *xcalloc (size_t, size_t) ATTRIBUTE_MALLOC; 325 #define XCNEW(T) ((T *) xcalloc (1, sizeof (T))) 333 #define XCNEWVEC(T, N) ((T *) xcalloc ((N), sizeof (T))) 342 #define XCNEWVAR(T, S) ((T *) xcalloc (1, (S)))
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/ |
libiberty.h | 296 extern void *xcalloc (size_t, size_t) ATTRIBUTE_MALLOC; 325 #define XCNEW(T) ((T *) xcalloc (1, sizeof (T))) 333 #define XCNEWVEC(T, N) ((T *) xcalloc ((N), sizeof (T))) 342 #define XCNEWVAR(T, S) ((T *) xcalloc (1, (S)))
|
/prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/ |
libiberty.h | 296 extern void *xcalloc (size_t, size_t) ATTRIBUTE_MALLOC; 325 #define XCNEW(T) ((T *) xcalloc (1, sizeof (T))) 333 #define XCNEWVEC(T, N) ((T *) xcalloc ((N), sizeof (T))) 342 #define XCNEWVAR(T, S) ((T *) xcalloc (1, (S)))
|
/external/elfutils/libelf/ |
nlist.c | 42 #define xcalloc(n, m) calloc (n, m) macro
|
/external/oprofile/opjitconv/ |
parse_dump.c | 37 entry = xcalloc(1, sizeof(struct jitentry));
|
/external/oprofile/daemon/liblegacy/ |
opd_proc.c | 133 xcalloc(OP_MAX_COUNTERS, sizeof(struct op_24_sfile *));
|