Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:speex_alloc
(Results
1 - 13
of
13
) sorted by relevance
/third_party/pulseaudio/speex/libspeexdsp/
H
A
D
scal.c
88
SpeexDecorrState *st =
speex_alloc
(sizeof(SpeexDecorrState));
in speex_decorrelate_new()
95
st->wola_mem =
speex_alloc
(frame_size*sizeof(float));
in speex_decorrelate_new()
96
st->curve =
speex_alloc
(frame_size*sizeof(float));
in speex_decorrelate_new()
98
st->y =
speex_alloc
(frame_size*sizeof(float));
in speex_decorrelate_new()
100
st->buff =
speex_alloc
(channels*2*frame_size*sizeof(float));
in speex_decorrelate_new()
101
st->ringID =
speex_alloc
(channels*sizeof(int));
in speex_decorrelate_new()
102
st->order =
speex_alloc
(channels*sizeof(int));
in speex_decorrelate_new()
103
st->alpha =
speex_alloc
(channels*sizeof(float));
in speex_decorrelate_new()
104
st->ring =
speex_alloc
(channels*ALLPASS_ORDER*sizeof(float));
in speex_decorrelate_new()
107
st->vorbis_win =
speex_alloc
((
in speex_decorrelate_new()
[all...]
H
A
D
filterbank.c
66
bank = (FilterBank*)
speex_alloc
(sizeof(FilterBank));
in filterbank_new()
69
bank->bank_left = (int*)
speex_alloc
(len*sizeof(int));
in filterbank_new()
70
bank->bank_right = (int*)
speex_alloc
(len*sizeof(int));
in filterbank_new()
71
bank->filter_left = (spx_word16_t*)
speex_alloc
(len*sizeof(spx_word16_t));
in filterbank_new()
72
bank->filter_right = (spx_word16_t*)
speex_alloc
(len*sizeof(spx_word16_t));
in filterbank_new()
75
bank->scaling = (float*)
speex_alloc
(banks*sizeof(float));
in filterbank_new()
H
A
D
mdf.c
404
SpeexEchoState *st = (SpeexEchoState *)
speex_alloc
(sizeof(SpeexEchoState));
in speex_echo_state_init_mc()
440
st->e = (spx_word16_t*)
speex_alloc
(C*N*sizeof(spx_word16_t));
in speex_echo_state_init_mc()
441
st->x = (spx_word16_t*)
speex_alloc
(K*N*sizeof(spx_word16_t));
in speex_echo_state_init_mc()
442
st->input = (spx_word16_t*)
speex_alloc
(C*st->frame_size*sizeof(spx_word16_t));
in speex_echo_state_init_mc()
443
st->y = (spx_word16_t*)
speex_alloc
(C*N*sizeof(spx_word16_t));
in speex_echo_state_init_mc()
444
st->last_y = (spx_word16_t*)
speex_alloc
(C*N*sizeof(spx_word16_t));
in speex_echo_state_init_mc()
445
st->Yf = (spx_word32_t*)
speex_alloc
((st->frame_size+1)*sizeof(spx_word32_t));
in speex_echo_state_init_mc()
446
st->Rf = (spx_word32_t*)
speex_alloc
((st->frame_size+1)*sizeof(spx_word32_t));
in speex_echo_state_init_mc()
447
st->Xf = (spx_word32_t*)
speex_alloc
((st->frame_size+1)*sizeof(spx_word32_t));
in speex_echo_state_init_mc()
448
st->Yh = (spx_word32_t*)
speex_alloc
((s
in speex_echo_state_init_mc()
[all...]
H
A
D
preprocess.c
396
SpeexPreprocessState *st = (SpeexPreprocessState *)
speex_alloc
(sizeof(SpeexPreprocessState));
in speex_preprocess_state_init()
444
st->frame = (spx_word16_t*)
speex_alloc
(2*N*sizeof(spx_word16_t));
in speex_preprocess_state_init()
445
st->window = (spx_word16_t*)
speex_alloc
(2*N*sizeof(spx_word16_t));
in speex_preprocess_state_init()
446
st->ft = (spx_word16_t*)
speex_alloc
(2*N*sizeof(spx_word16_t));
in speex_preprocess_state_init()
448
st->ps = (spx_word32_t*)
speex_alloc
((N+M)*sizeof(spx_word32_t));
in speex_preprocess_state_init()
449
st->noise = (spx_word32_t*)
speex_alloc
((N+M)*sizeof(spx_word32_t));
in speex_preprocess_state_init()
450
st->echo_noise = (spx_word32_t*)
speex_alloc
((N+M)*sizeof(spx_word32_t));
in speex_preprocess_state_init()
451
st->residual_echo = (spx_word32_t*)
speex_alloc
((N+M)*sizeof(spx_word32_t));
in speex_preprocess_state_init()
452
st->reverb_estimate = (spx_word32_t*)
speex_alloc
((N+M)*sizeof(spx_word32_t));
in speex_preprocess_state_init()
453
st->old_ps = (spx_word32_t*)
speex_alloc
((
in speex_preprocess_state_init()
[all...]
H
A
D
fftwrap.c
87
table =
speex_alloc
(sizeof(struct drft_lookup));
in spx_fft_init()
139
struct mkl_config *table = (struct mkl_config *)
speex_alloc
(sizeof(struct mkl_config));
in spx_fft_init()
184
table = (struct ipp_fft_config *)
speex_alloc
(sizeof(struct ipp_fft_config));
in spx_fft_init()
233
struct fftw_config *table = (struct fftw_config *)
speex_alloc
(sizeof(struct fftw_config));
in spx_fft_init()
307
table = (struct kiss_config*)
speex_alloc
(sizeof(struct kiss_config));
in spx_fft_init()
H
A
D
buffer.c
53
SpeexBuffer *st =
speex_alloc
(sizeof(SpeexBuffer));
in speex_buffer_init()
54
st->data =
speex_alloc
(size);
in speex_buffer_init()
H
A
D
kiss_fft.h
30
#define KISS_FFT_MALLOC
speex_alloc
H
A
D
os_support.h
49
NOTE:
speex_alloc
needs to CLEAR THE MEMORY */
51
static inline void *
speex_alloc
(int size)
in speex_alloc()
function
60
/** Same as
speex_alloc
, except that the area is only needed inside a Speex call (might cause problem with wideband though) */
69
/** Speex wrapper for realloc. To do your own dynamic allocation, all you need to do is replace this function,
speex_alloc
and speex_free */
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
*/
H
A
D
resample.c
66
static void *
speex_alloc
(int size) {return calloc(size,1);}
in speex_alloc()
function
812
st = (SpeexResamplerState *)
speex_alloc
(sizeof(SpeexResamplerState));
in speex_resampler_init_frac()
840
if (!(st->last_sample = (spx_int32_t*)
speex_alloc
(nb_channels*sizeof(spx_int32_t))))
in speex_resampler_init_frac()
842
if (!(st->magic_samples = (spx_uint32_t*)
speex_alloc
(nb_channels*sizeof(spx_uint32_t))))
in speex_resampler_init_frac()
844
if (!(st->samp_frac_num = (spx_uint32_t*)
speex_alloc
(nb_channels*sizeof(spx_uint32_t))))
in speex_resampler_init_frac()
H
A
D
jitter.c
272
JitterBuffer *jitter = (JitterBuffer*)
speex_alloc
(sizeof(JitterBuffer));
in jitter_buffer_init()
444
jitter->packets[i].data=(char*)
speex_alloc
(packet->len);
in jitter_buffer_put()
H
A
D
smallft.c
1247
l->trigcache=(float*)
speex_alloc
(3*n*sizeof(*l->trigcache));
in spx_drft_init()
1248
l->splitcache=(int*)
speex_alloc
(32*sizeof(*l->splitcache));
in spx_drft_init()
/third_party/pulseaudio/speex/tmv/
H
A
D
misc_tm.h
44
void *
speex_alloc
(int size)
in speex_alloc()
function
/third_party/pulseaudio/speex/ti/
H
A
D
os_support_custom.h
57
static inline void *
speex_alloc
(int size)
in speex_alloc()
function
Completed in 11 milliseconds