OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:speex_realloc
(Results
1 - 4
of
4
) sorted by null
/external/speex/libspeex/
buffer.c
169
st->data =
speex_realloc
(st->data, len);
173
st->data =
speex_realloc
(st->data, len);
os_support.h
48
/** Speex wrapper for calloc. To do your own dynamic allocation, all you need to do is replace this function,
speex_realloc
and speex_free
71
static inline void *
speex_realloc
(void *ptr, int size)
function
77
/** Speex wrapper for calloc. To do your own dynamic allocation, all you need to do is replace this function,
speex_realloc
and speex_alloc */
bits.c
118
char *tmp = (char*)
speex_realloc
(bits->chars, nchars);
166
char *tmp = (char*)
speex_realloc
(bits->chars, (bits->nbBits>>LOG2_BITS_PER_CHAR)+nchars+1);
239
char *tmp = (char*)
speex_realloc
(bits->chars, new_nchars);
resample.c
67
static void *
speex_realloc
(void *ptr, int size) {return realloc(ptr, size);}
function
599
st->sinc_table = (spx_word16_t *)
speex_realloc
(st->sinc_table,st->filt_len*st->den_rate*sizeof(spx_word16_t));
625
st->sinc_table = (spx_word16_t *)
speex_realloc
(st->sinc_table,(st->filt_len*st->oversample+8)*sizeof(spx_word16_t));
659
st->mem = (spx_word16_t*)
speex_realloc
(st->mem, st->nb_channels*st->mem_alloc_size * sizeof(spx_word16_t));
672
st->mem = (spx_word16_t*)
speex_realloc
(st->mem, st->nb_channels*st->mem_alloc_size * sizeof(spx_word16_t));
[
all
...]
Completed in 3116 milliseconds