OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:history_size
(Results
1 - 10
of
10
) sorted by null
/external/webrtc/src/modules/audio_processing/utility/
delay_estimator.c
95
int
history_size
= max_delay + lookahead;
local
106
if (
history_size
< 2) {
122
self->
history_size
=
history_size
;
126
self->mean_bit_counts = malloc(
history_size
* sizeof(int32_t));
132
self->bit_counts = malloc(
history_size
* sizeof(int32_t));
139
self->binary_far_history = malloc(
history_size
* sizeof(uint32_t));
152
self->far_bit_counts = malloc(
history_size
* sizeof(int));
166
memset(handle->bit_counts, 0, sizeof(int32_t) * handle->
history_size
);
168
sizeof(uint32_t) * handle->
history_size
);
[
all
...]
delay_estimator.h
40
int
history_size
;
member in struct:__anon16682
107
// -
history_size
: > 0 - Far-end history size.
/frameworks/base/include/androidfw/
VelocityTracker.h
173
static const uint32_t
HISTORY_SIZE
= 20;
190
Movement mMovements[
HISTORY_SIZE
];
248
static const uint32_t
HISTORY_SIZE
= 20;
264
Movement mMovements[
HISTORY_SIZE
];
/frameworks/base/libs/androidfw/
VelocityTracker.cpp
356
const uint32_t LeastSquaresVelocityTrackerStrategy::
HISTORY_SIZE
;
379
if (++mIndex ==
HISTORY_SIZE
) {
563
float x[
HISTORY_SIZE
];
564
float y[
HISTORY_SIZE
];
565
float w[
HISTORY_SIZE
];
566
float time[
HISTORY_SIZE
];
586
index = (index == 0 ?
HISTORY_SIZE
: index) - 1;
587
} while (++m <
HISTORY_SIZE
);
636
uint32_t nextIndex = (index + 1) %
HISTORY_SIZE
;
813
const uint32_t LegacyVelocityTrackerStrategy::
HISTORY_SIZE
;
[
all
...]
/frameworks/base/voip/jni/rtp/
AudioGroup.cpp
89
#define
HISTORY_SIZE
100
370
mBufferHead = tick -
HISTORY_SIZE
;
374
if (tick - mBufferHead >
HISTORY_SIZE
) {
376
mBufferHead = tick -
HISTORY_SIZE
;
/external/grub/stage2/
shared.h
114
#define
HISTORY_SIZE
5
115
#define HISTORY_BUFLEN (MAX_CMDLINE *
HISTORY_SIZE
)
char_io.c
267
if (num_history <
HISTORY_SIZE
)
/frameworks/base/core/java/android/widget/
Editor.java
[
all
...]
/external/icu4c/i18n/
usearch.cpp
[
all
...]
/external/grub/
ChangeLog
[
all
...]
Completed in 856 milliseconds