OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:timedata
(Results
1 - 12
of
12
) sorted by null
/external/speex/libspeex/
kiss_fftr.h
29
void kiss_fftr(kiss_fftr_cfg cfg,const kiss_fft_scalar *
timedata
,kiss_fft_cpx *freqdata);
31
input
timedata
has nfft scalar points
35
void kiss_fftr2(kiss_fftr_cfg st,const kiss_fft_scalar *
timedata
,kiss_fft_scalar *freqdata);
37
void kiss_fftri(kiss_fftr_cfg cfg,const kiss_fft_cpx *freqdata,kiss_fft_scalar *
timedata
);
39
void kiss_fftri2(kiss_fftr_cfg st,const kiss_fft_scalar *freqdata, kiss_fft_scalar *
timedata
);
43
output
timedata
has nfft scalar points
kiss_fftr.c
81
void kiss_fftr(kiss_fftr_cfg st,const kiss_fft_scalar *
timedata
,kiss_fft_cpx *freqdata)
83
/* input buffer
timedata
is stored row-wise */
94
kiss_fft( st->substate , (const kiss_fft_cpx*)
timedata
, st->tmpbuf );
136
void kiss_fftri(kiss_fftr_cfg st,const kiss_fft_cpx *freqdata, kiss_fft_scalar *
timedata
)
138
/* input buffer
timedata
is stored row-wise */
170
kiss_fft (st->substate, st->tmpbuf, (kiss_fft_cpx *)
timedata
);
173
void kiss_fftr2(kiss_fftr_cfg st,const kiss_fft_scalar *
timedata
,kiss_fft_scalar *freqdata)
175
/* input buffer
timedata
is stored row-wise */
187
kiss_fft( st->substate , (const kiss_fft_cpx*)
timedata
, st->tmpbuf );
261
void kiss_fftri2(kiss_fftr_cfg st,const kiss_fft_scalar *freqdata,kiss_fft_scalar *
timedata
)
[
all
...]
/external/aac/libAACenc/src/
transform.cpp
113
const INT_PCM * RESTRICT
timeData
;
135
timeData
= pTimeData;
156
timeData
= pTimeData + 3*fl + (fl/2);
178
mdctData[(tl/2)+i] = - (FIXP_DBL)
timeData
[tl-i-1] >> ( 1 );
180
mdctData[(tl/2)+i] = - (FIXP_DBL)
timeData
[tl-i-1] << (DFRACT_BITS - SAMPLE_BITS - 1);
187
tmp0 = fMultDiv2((FIXP_PCM)
timeData
[i+nl], pLeftWindowPart[i].v.im);
188
mdctData[(tl/2)+i+nl] = fMultSubDiv2(tmp0, (FIXP_PCM)
timeData
[tl-nl-i-1], pLeftWindowPart[i].v.re);
195
mdctData[(tl/2)-1-i] = - (FIXP_DBL)
timeData
[tl+i] >> (1);
197
mdctData[(tl/2)-1-i] = - (FIXP_DBL)
timeData
[tl+i] << (DFRACT_BITS - SAMPLE_BITS - 1);
204
tmp1 = fMultDiv2((FIXP_PCM)
timeData
[tl+nr+i], pRightWindowPart[i].v.re)
[
all
...]
transform.h
102
* \param
timeData
pointer to time domain input signal.
113
INT FDKaacEnc_Transform_Real (const INT_PCM *
timeData
,
/external/chromium_org/third_party/icu/source/test/perf/perldriver/
Output.pm
324
my @
timedata
= @{shift(@_)};
353
for $j ( 0 .. $#
timedata
) {
354
my $perOperation = $
timedata
[$j]->divideByScalar($iterPerPass[$j]*$noopers[$j]); # time per operation
359
my $baseLinePO = $
timedata
[0]->divideByScalar($iterPerPass[0]*$noopers[0]);
360
for $j ( 1 .. $#
timedata
) {
361
my $perOperation = $
timedata
[$j]->divideByScalar($iterPerPass[$j]*$noopers[$j]); # time per operation
367
for $j ( 0 .. $#
timedata
) {
371
for $j ( 0 .. $#
timedata
) {
372
my $perEvent = $
timedata
[$j]->divideByScalar($iterPerPass[$j]*$noevents[$j]); # time per event
376
my $baseLinePO = $
timedata
[0]->divideByScalar($iterPerPass[0]*$noevents[0])
[
all
...]
PerfFramework.pm
111
my @
timedata
;
146
push(@
timedata
, $ds);
149
outputRow($i, \@iterPerPass, \@noopers, \@
timedata
, \@noevents);
/external/icu4c/test/perf/perldriver/
Output.pm
324
my @
timedata
= @{shift(@_)};
353
for $j ( 0 .. $#
timedata
) {
354
my $perOperation = $
timedata
[$j]->divideByScalar($iterPerPass[$j]*$noopers[$j]); # time per operation
359
my $baseLinePO = $
timedata
[0]->divideByScalar($iterPerPass[0]*$noopers[0]);
360
for $j ( 1 .. $#
timedata
) {
361
my $perOperation = $
timedata
[$j]->divideByScalar($iterPerPass[$j]*$noopers[$j]); # time per operation
367
for $j ( 0 .. $#
timedata
) {
371
for $j ( 0 .. $#
timedata
) {
372
my $perEvent = $
timedata
[$j]->divideByScalar($iterPerPass[$j]*$noevents[$j]); # time per event
376
my $baseLinePO = $
timedata
[0]->divideByScalar($iterPerPass[0]*$noevents[0])
[
all
...]
PerfFramework.pm
111
my @
timedata
;
146
push(@
timedata
, $ds);
149
outputRow($i, \@iterPerPass, \@noopers, \@
timedata
, \@noevents);
/external/aac/libSBRdec/src/
sbrdecoder.cpp
[
all
...]
/external/aac/libSBRdec/include/
sbrdecoder.h
289
* a time domain buffer
timeData
which can hold the completely decoded
297
* \param
timeData
Pointer to input and finally upsampled output data.
301
* \param interleaved Flag indicating if time data is stored interleaved (1: Interleaved time data, 0: non-interleaved
timedata
).
308
INT_PCM *
timeData
,
/external/doclava/src/com/google/doclava/
Doclava.java
811
Data
timedata
= Doclava.makeHDF();
local
812
ClearPage.write(
timedata
, "timestamp.cs", "timestamp.js");
[
all
...]
/device/samsung/manta/gps/
gpsd
Completed in 799 milliseconds