Home
last modified time | relevance | path

Searched refs:CALLOC (Results 1 – 25 of 177) sorted by relevance

12345678

/external/srec/srec/cfront/
Dfrontobj.c170 channel->prebuff = (fftdata *) CALLOC(freqobj->window_length + 1, in setup_channel_object()
172 channel->prerefbuff = (fftdata *) CALLOC(freqobj->window_length + 1, in setup_channel_object()
178 channel->filterbank = (cepdata *) CALLOC(channel->num_freq, in setup_channel_object()
180 channel->filterbankref = (cepdata *) CALLOC(channel->num_freq, in setup_channel_object()
184 channel->cep = (cepdata *) CALLOC((Q2 + 1) * (channel->mel_dim + 1), in setup_channel_object()
186 channel->rasta = (cepdata *) CALLOC((channel->mel_dim + 1), in setup_channel_object()
188 channel->framdata = (featdata *) CALLOC(3 * (channel->mel_dim + 1), in setup_channel_object()
203 channel->spectral_sub->sub_vector = (cepdata *) CALLOC(NUM_MEL_FREQS, in setup_channel_object()
468 freqobj->ham = (fftdata *) CALLOC(freqobj->window_length + 1, in setup_freq_object()
568 cepobj->mel_offset = (cepdata *) CALLOC(MEL_FREQ_ARRAY_SIZE, in setup_cep_object()
[all …]
Dsp_fft.c143 pthis = (srfft*) CALLOC(1, sizeof(srfft), "srfft"); in new_srfft()
189 butterflyIndex = (unsigned*) CALLOC(butterflyLength, sizeof(unsigned), "srfft.butterflyIndex"); in allocate_butterfly_tbl()
278 pcos1 = (trigonomydata*) CALLOC(nt, sizeof(trigonomydata), "srfft.trigonomydata"); in allocate_trigonomy_tbl()
279 psin1 = (trigonomydata*) CALLOC(nt, sizeof(trigonomydata), "srfft.trigonomydata"); in allocate_trigonomy_tbl()
280 pcos2 = (trigonomydata*) CALLOC(nt, sizeof(trigonomydata), "srfft.trigonomydata"); in allocate_trigonomy_tbl()
281 psin2 = (trigonomydata*) CALLOC(nt, sizeof(trigonomydata), "srfft.trigonomydata"); in allocate_trigonomy_tbl()
282 pcos3 = (trigonomydata*) CALLOC(nt, sizeof(trigonomydata), "srfft.trigonomydata"); in allocate_trigonomy_tbl()
283 psin3 = (trigonomydata*) CALLOC(nt, sizeof(trigonomydata), "srfft.trigonomydata"); in allocate_trigonomy_tbl()
335 tbl = (unsigned*) CALLOC(n, sizeof(unsigned), "srfft.bitreverseTbl"); in allocate_bitreverse_tbl()
828 fft->real = (fftdata*) CALLOC(size + 2, sizeof(fftdata), "srfft.fft_data"); in configure_fft()
Dwav_acc.c51 wave->income = (samdata *) CALLOC(window_size, sizeof(samdata), "cfront.wave.income"); in create_sample_buffer()
52 wave->outgo = (samdata *) CALLOC(window_size, sizeof(samdata), "cfront.wave.outgo"); in create_sample_buffer()
/external/srec/srec/clib/
Djacobi.c64 b = (double *) CALLOC(dim, sizeof(double), "clib.jacobi.b"); in Jacobi()
65 d = (double *) CALLOC(dim, sizeof(double), "clib.jacobi.d"); in Jacobi()
66 z = (double *) CALLOC(dim, sizeof(double), "clib.jacobi.z"); in Jacobi()
67 a = (double **) CALLOC(dim, sizeof(double *), "clib.jacobi.input_jacobi"); in Jacobi()
68 v = (double **) CALLOC(dim, sizeof(double *), "clib.jacobi.input_jacobi"); in Jacobi()
71 a[i] = (double *) CALLOC(dim, sizeof(double), "clib.jacobi.input_jacobi[]"); in Jacobi()
72 v[i] = (double *) CALLOC(dim, sizeof(double), "clib.jacobi.input_jacobi[]"); in Jacobi()
Dmatx_ops.c43 matrix = (covdata **) CALLOC(dimen, sizeof(covdata *), in create_matrix()
46 matrix[ii] = (covdata *) CALLOC(dimen, sizeof(covdata), in create_matrix()
129 matrix = (imeldata **) CALLOC(dimen, sizeof(imeldata *), in create_fixed_matrix()
132 matrix[ii] = (imeldata *) CALLOC(dimen, sizeof(imeldata), in create_fixed_matrix()
Dmatrix_i.c55 index = (int *) CALLOC(dim, sizeof(int), "clib.index_imatrix"); in invert_matrix()
56 col = (double *) CALLOC(dim, sizeof(double), "clib.col"); in invert_matrix()
57 input = (double **) CALLOC(dim, sizeof(double *), "clib.input_imatrix"); in invert_matrix()
60 input[ii] = (double *) CALLOC(dim, sizeof(double), "clib.input_imatrix[]"); in invert_matrix()
108 vv = (double *) CALLOC(dim + 5, sizeof(double), "clib.ludcmp.vv"); in ludcmp()
Dswimodel.c339 swimodel = (SWIModel*) CALLOC(1, sizeof(SWIModel), "clib.models.base"); in load_swimodel()
354 …SWIhmmState* hmmstates = (SWIhmmState*) CALLOC(swimodel->num_hmmstates, sizeof(SWIhmmState), "clib… in load_swimodel()
/external/mesa3d/src/gallium/auxiliary/util/
Du_memory.h50 #define CALLOC(_count, _size) os_calloc(_count, _size) macro
58 #define CALLOC_STRUCT(T) (struct T *) CALLOC(1, sizeof(struct T))
60 #define CALLOC_VARIANT_LENGTH_STRUCT(T,more_size) ((struct T *) CALLOC(1, sizeof(struct T) + more…
Du_surfaces.c50 us->u.array = CALLOC(pt->last_level + 1, sizeof(struct pipe_surface *)); in util_surfaces_do_get()
61 ps = (struct pipe_surface *)CALLOC(1, surface_struct_size); in util_surfaces_do_get()
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
Du_memory.h50 #define CALLOC(_count, _size) os_calloc(_count, _size) macro
58 #define CALLOC_STRUCT(T) (struct T *) CALLOC(1, sizeof(struct T))
60 #define CALLOC_VARIANT_LENGTH_STRUCT(T,more_size) ((struct T *) CALLOC(1, sizeof(struct T) + more…
Du_surfaces.c50 us->u.array = CALLOC(pt->last_level + 1, sizeof(struct pipe_surface *)); in util_surfaces_do_get()
61 ps = (struct pipe_surface *)CALLOC(1, surface_struct_size); in util_surfaces_do_get()
/external/srec/portable/include/
Dpmemory.h65 #define CALLOC(m, n, tag) calloc(m, n) macro
70 #define NEW_ARRAY(type, n, tag) ((type*)CALLOC(n, sizeof(type), tag))
113 #define CALLOC(nbElem, elemSize, tag) (pcalloc(nbElem, elemSize , tag, L(__FILE__), __LINE__)) macro
119 #define CALLOC(nbElem, elemSize, tag) (pcalloc(nbElem, elemSize)) macro
143 #define NEW_ARRAY(type, nbElem, tag) ((type *) CALLOC(nbElem, sizeof(type), tag))
/external/mesa3d/src/gallium/auxiliary/postprocess/
Dpp_init.c59 ppq = CALLOC(1, sizeof(struct pp_queue_t)); in pp_init()
60 tmp_q = CALLOC(curpos, sizeof(pp_func)); in pp_init()
61 ppq->shaders = CALLOC(curpos, sizeof(void *)); in pp_init()
62 ppq->verts = CALLOC(curpos, sizeof(unsigned int)); in pp_init()
81 CALLOC(pp_filters[i].shaders + 1, sizeof(void *)); in pp_init()
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/postprocess/
Dpp_init.c59 ppq = CALLOC(1, sizeof(struct pp_queue_t)); in pp_init()
60 tmp_q = CALLOC(curpos, sizeof(pp_func)); in pp_init()
61 ppq->shaders = CALLOC(curpos, sizeof(void *)); in pp_init()
62 ppq->verts = CALLOC(curpos, sizeof(unsigned int)); in pp_init()
81 CALLOC(pp_filters[i].shaders + 1, sizeof(void *)); in pp_init()
/external/mesa3d/src/gallium/winsys/i915/sw/
Di915_sw_buffer.c17 buf->ptr = CALLOC(size, 1); in i915_sw_buffer_create()
43 buf->ptr = CALLOC(*stride * height, 1); in i915_sw_buffer_create_tiled()
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/i915/sw/
Di915_sw_buffer.c17 buf->ptr = CALLOC(size, 1); in i915_sw_buffer_create()
43 buf->ptr = CALLOC(*stride * height, 1); in i915_sw_buffer_create_tiled()
/external/mesa3d/src/mesa/drivers/dri/r200/
Dradeon_queryobj.h45 radeon->query.queryobj.cmd = (uint32_t*)CALLOC((SZ) * sizeof(uint32_t)); in radeon_init_query_stateobj()
/external/mesa3d/src/mesa/drivers/dri/radeon/
Dradeon_queryobj.h45 radeon->query.queryobj.cmd = (uint32_t*)CALLOC((SZ) * sizeof(uint32_t)); in radeon_init_query_stateobj()
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
Dradeon_queryobj.h45 radeon->query.queryobj.cmd = (uint32_t*)CALLOC((SZ) * sizeof(uint32_t)); in radeon_init_query_stateobj()
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
Dradeon_queryobj.h45 radeon->query.queryobj.cmd = (uint32_t*)CALLOC((SZ) * sizeof(uint32_t)); in radeon_init_query_stateobj()
/external/mesa3d/src/gallium/state_trackers/vdpau/
Ddevice.c55 dev = CALLOC(1, sizeof(vlVdpDevice)); in vdp_imp_device_create_x11()
116 pqt = CALLOC(1, sizeof(vlVdpPresentationQueue)); in vlVdpPresentationQueueTargetCreateX11()
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vdpau/
Ddevice.c55 dev = CALLOC(1, sizeof(vlVdpDevice)); in vdp_imp_device_create_x11()
116 pqt = CALLOC(1, sizeof(vlVdpPresentationQueue)); in vlVdpPresentationQueueTargetCreateX11()
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/va/
Dva_context.c51 driver_context = CALLOC(1,sizeof(vlVaDriverContextPriv)); in __vaDriverInit_0_31()
/external/mesa3d/src/gallium/state_trackers/va/
Dva_context.c51 driver_context = CALLOC(1,sizeof(vlVaDriverContextPriv)); in __vaDriverInit_0_31()
/external/valgrind/main/coregrind/m_replacemalloc/
Dvg_replace_malloc.c591 #define CALLOC(soname, fnname) \ macro
619 CALLOC(VG_Z_LIBC_SONAME, calloc);
620 CALLOC(SO_SYN_MALLOC, calloc);
623 CALLOC(VG_Z_LIBC_SONAME, calloc);
624 CALLOC(SO_SYN_MALLOC, calloc);

12345678