HomeSort by relevance Sort by last modified time
    Searched refs:CALLOC (Results 1 - 25 of 40) sorted by null

1 2

  /external/srec/srec/clib/
matx_ops.c 43 matrix = (covdata **) CALLOC(dimen, sizeof(covdata *),
46 matrix[ii] = (covdata *) CALLOC(dimen, sizeof(covdata),
129 matrix = (imeldata **) CALLOC(dimen, sizeof(imeldata *),
132 matrix[ii] = (imeldata *) CALLOC(dimen, sizeof(imeldata),
jacobi.c 64 b = (double *) CALLOC(dim, sizeof(double), "clib.jacobi.b");
65 d = (double *) CALLOC(dim, sizeof(double), "clib.jacobi.d");
66 z = (double *) CALLOC(dim, sizeof(double), "clib.jacobi.z");
67 a = (double **) CALLOC(dim, sizeof(double *), "clib.jacobi.input_jacobi");
68 v = (double **) CALLOC(dim, sizeof(double *), "clib.jacobi.input_jacobi");
71 a[i] = (double *) CALLOC(dim, sizeof(double), "clib.jacobi.input_jacobi[]");
72 v[i] = (double *) CALLOC(dim, sizeof(double), "clib.jacobi.input_jacobi[]");
matrix_i.c 55 index = (int *) CALLOC(dim, sizeof(int), "clib.index_imatrix");
56 col = (double *) CALLOC(dim, sizeof(double), "clib.col");
57 input = (double **) CALLOC(dim, sizeof(double *), "clib.input_imatrix");
60 input[ii] = (double *) CALLOC(dim, sizeof(double), "clib.input_imatrix[]");
108 vv = (double *) CALLOC(dim + 5, sizeof(double), "clib.ludcmp.vv");
log_add.c 58 prdata* table = (prdata *) CALLOC(logtab->add_log_limit + 2, sizeof(prdata), "clib.logadd");
swimodel.c 339 swimodel = (SWIModel*) CALLOC(1, sizeof(SWIModel), "clib.models.base");
354 SWIhmmState* hmmstates = (SWIhmmState*) CALLOC(swimodel->num_hmmstates, sizeof(SWIhmmState), "clib.models.states");
imeld_rd.c 60 prep->offset = (imeldata *) CALLOC(matdim,
  /external/srec/portable/include/
pmemory.h 65 #define CALLOC(m, n, tag) calloc(m, n)
66 #define CALLOC_CLR(m, n, tag) calloc(m, n)
70 #define NEW_ARRAY(type, n, tag) ((type*)CALLOC(n, sizeof(type), tag))
86 #define calloc #error macro
111 * Portable calloc()
113 #define CALLOC(nbElem, elemSize, tag) (pcalloc(nbElem, elemSize , tag, L(__FILE__), __LINE__))
117 * Portable calloc()
119 #define CALLOC(nbElem, elemSize, tag) (pcalloc(nbElem, elemSize))
143 #define NEW_ARRAY(type, nbElem, tag) ((type *) CALLOC(nbElem, sizeof(type), tag)
    [all...]
  /external/srec/srec/cfront/
frontobj.c 170 channel->prebuff = (fftdata *) CALLOC(freqobj->window_length + 1,
172 channel->prerefbuff = (fftdata *) CALLOC(freqobj->window_length + 1,
178 channel->filterbank = (cepdata *) CALLOC(channel->num_freq,
180 channel->filterbankref = (cepdata *) CALLOC(channel->num_freq,
184 channel->cep = (cepdata *) CALLOC((Q2 + 1) * (channel->mel_dim + 1),
186 channel->rasta = (cepdata *) CALLOC((channel->mel_dim + 1),
188 channel->framdata = (featdata *) CALLOC(3 * (channel->mel_dim + 1),
203 channel->spectral_sub->sub_vector = (cepdata *) CALLOC(NUM_MEL_FREQS,
468 freqobj->ham = (fftdata *) CALLOC(freqobj->window_length + 1,
568 cepobj->mel_offset = (cepdata *) CALLOC(MEL_FREQ_ARRAY_SIZE
    [all...]
sp_fft.c 143 pthis = (srfft*) CALLOC(1, sizeof(srfft), "srfft");
189 butterflyIndex = (unsigned*) CALLOC(butterflyLength, sizeof(unsigned), "srfft.butterflyIndex");
278 pcos1 = (trigonomydata*) CALLOC(nt, sizeof(trigonomydata), "srfft.trigonomydata");
279 psin1 = (trigonomydata*) CALLOC(nt, sizeof(trigonomydata), "srfft.trigonomydata");
280 pcos2 = (trigonomydata*) CALLOC(nt, sizeof(trigonomydata), "srfft.trigonomydata");
281 psin2 = (trigonomydata*) CALLOC(nt, sizeof(trigonomydata), "srfft.trigonomydata");
282 pcos3 = (trigonomydata*) CALLOC(nt, sizeof(trigonomydata), "srfft.trigonomydata");
283 psin3 = (trigonomydata*) CALLOC(nt, sizeof(trigonomydata), "srfft.trigonomydata");
335 tbl = (unsigned*) CALLOC(n, sizeof(unsigned), "srfft.bitreverseTbl");
828 fft->real = (fftdata*) CALLOC(size + 2, sizeof(fftdata), "srfft.fft_data")
    [all...]
wav_acc.c 51 wave->income = (samdata *) CALLOC(window_size, sizeof(samdata), "cfront.wave.income");
52 wave->outgo = (samdata *) CALLOC(window_size, sizeof(samdata), "cfront.wave.outgo");
log_tabl.c 65 int* table = (int *) CALLOC(logtab->size + 1, sizeof(int), "cfront.logtable");
  /build/tools/apriori/
debug.h 51 static inline void *CALLOC(unsigned int num_entries, unsigned int entry_size) {
52 void *m = calloc(num_entries, entry_size);
53 FAILIF(NULL == m, "calloc(%d, %d) failed!\n", num_entries, entry_size);
  /build/tools/iself/
debug.h 53 static inline void *CALLOC(unsigned int num_entries, unsigned int entry_size) {
54 void *m = calloc(num_entries, entry_size);
55 FAILIF(NULL == m, "calloc(%d, %d) failed!\n", num_entries, entry_size);
  /build/tools/isprelinked/
debug.h 51 static inline void *CALLOC(unsigned int num_entries, unsigned int entry_size) {
52 void *m = calloc(num_entries, entry_size);
53 FAILIF(NULL == m, "calloc(%d, %d) failed!\n", num_entries, entry_size);
  /build/tools/lsd/
debug.h 52 static inline void *CALLOC(unsigned int num_entries, unsigned int entry_size)
54 void *m = calloc(num_entries, entry_size);
55 FAILIF(NULL == m, "calloc(%d, %d) failed!\n", num_entries, entry_size);
  /build/tools/soslim/
debug.h 51 static inline void *CALLOC(unsigned int num_entries, unsigned int entry_size) {
52 void *m = calloc(num_entries, entry_size);
53 FAILIF(NULL == m, "calloc(%d, %d) failed!\n", num_entries, entry_size);
soslim.c 81 phdr_info = (GElf_Phdr *)CALLOC(ehdr->e_phnum, sizeof(GElf_Phdr));
110 shdr_info = (shdr_info_t *)CALLOC(shdr_info_len, sizeof (shdr_info_t));
symfilter.c 83 filter->symbols_to_keep = (bool *)CALLOC(filter->num_symbols_to_keep,
  /development/tools/yuv420sp2rgb/
debug.h 53 static inline void *CALLOC(unsigned int num_entries, unsigned int entry_size) {
54 void *m = calloc(num_entries, entry_size);
55 FAILIF(NULL == m, "calloc(%d, %d) failed!\n", num_entries, entry_size);
  /external/elfcopy/
debug.h 51 static inline void *CALLOC(unsigned int num_entries, unsigned int entry_size) {
52 void *m = calloc(num_entries, entry_size);
53 FAILIF(NULL == m, "calloc(%d, %d) failed!\n", num_entries, entry_size);
hash.c 14 hash_data->d_buf = CALLOC(hash_data->d_size, sizeof(Elf32_Word));
  /external/srec/srec/crec/
get_fram.c 108 prep->seq = (imeldata *) CALLOC(prep->dim, sizeof(imeldata),
110 prep->seq_unnorm = (imeldata *) CALLOC(prep->dim, sizeof(imeldata),
112 prep->last_frame = (featdata *) CALLOC(prep->dim, sizeof(featdata),
srec_eosd.c 36 eosd = (srec_eos_detector_parms*)CALLOC(1, sizeof(srec_eos_detector_parms), "search.endpointer");
  /external/srec/seti/sltsEngine/src/
SWIslts.c 136 pEng = CALLOC(1, sizeof(SLTS_Engine), MTAG);
303 pBlock = (LCHAR *)CALLOC(sizeof(int) + nNbrOfTranscriptions * sizeof(SWIsltsTranscription), sizeof(LCHAR), MTAG);
  /external/srec/srec/Semproc/src/
SymbolTable.c 137 copyValue = (LCHAR*) CALLOC(LSTRLEN(pvalue) + 1, sizeof(LCHAR), _MTAG);

Completed in 140 milliseconds

1 2