HomeSort by relevance Sort by last modified time
    Searched refs:history_size (Results 1 - 19 of 19) sorted by null

  /external/chromium_org/third_party/webrtc/modules/audio_processing/utility/
delay_estimator.c 101 assert(self->history_size == self->farend->history_size);
134 for (i = 0; i < self->history_size; ++i) {
274 int history_size) {
277 if (history_size > 1) {
285 self->history_size = 0;
288 if (WebRtc_AllocateFarendBufferMemory(self, history_size) == 0) {
296 int history_size) {
301 history_size * sizeof(*self->binary_far_history));
303 history_size * sizeof(*self->far_bit_counts))
    [all...]
delay_estimator.h 26 int history_size; member in struct:__anon20533
39 int history_size; member in struct:__anon20534
78 // - history_size : Size of the far-end binary spectrum history.
87 int history_size);
95 // - history_size : Size of the far-end binary spectrum history.
98 // - history_size : The history size allocated.
100 int history_size);
158 // Re-allocates |history_size| dependent buffers. The far-end buffers will be
165 // - history_size : Size of the history buffers.
168 // - history_size : The history size allocated
    [all...]
delay_estimator_wrapper.h 30 // - history_size : The far-end history buffer size. A change in buffer
39 void* WebRtc_CreateDelayEstimatorFarend(int spectrum_size, int history_size);
107 // [-|lookahead|,... ,|history_size|-|lookahead|)
108 // where |history_size| is set through
130 // Sets the effective |history_size| used. Valid values from 2. We simply need
131 // at least two delays to compare to perform an estimate. If |history_size| is
133 // Note that changing the |history_size| affects both buffers in far-end and
135 // same reference far-end, to the same |history_size| value.
138 // - history_size : Effective history size to be used.
142 int WebRtc_set_history_size(void* handle, int history_size);
    [all...]
delay_estimator_wrapper.c 142 void* WebRtc_CreateDelayEstimatorFarend(int spectrum_size, int history_size) {
157 self->binary_farend = WebRtc_CreateBinaryDelayEstimatorFarend(history_size);
330 int WebRtc_set_history_size(void* handle, int history_size) {
333 if ((self == NULL) || (history_size <= 1)) {
336 return WebRtc_AllocateHistoryBufferMemory(self->binary_handle, history_size);
345 if (self->binary_handle->farend->history_size !=
346 self->binary_handle->history_size) {
350 return self->binary_handle->history_size;
  /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:__anon38083
107 // - history_size : > 0 - Far-end history size.
  /external/compiler-rt/lib/tsan/rtl/
tsan_flags.h 78 // history_size=0 amounts to 32K memory accesses. Each next value doubles
79 // the amount of memory accesses, up to history_size=7 that amounts to
81 int history_size; member in struct:__tsan::Flags
tsan_flags.cc 60 ParseFlag(env, &f->history_size, "history_size", "");
95 f->history_size = kGoMode ? 1 : 2; // There are a lot of goroutines in Go.
126 if (f->history_size < 0 || f->history_size > 7) {
127 Printf("ThreadSanitizer: incorrect value for history_size"
tsan_rtl_thread.cc 111 thr->fast_state.SetHistorySize(flags()->history_size);
tsan_rtl.cc 481 return (uptr)(1ull << (kTracePartSizeBits + flags()->history_size + 1));
  /external/chromium_org/chrome/browser/drive/
event_logger.cc 49 void EventLogger::SetHistorySize(size_t history_size) {
52 history_size_ = history_size;
event_logger.h 52 void SetHistorySize(size_t history_size);
  /external/chromium_org/ui/events/gesture_detection/
scale_gesture_detector.cc 301 const int history_size = static_cast<int>(ev.GetHistorySize()); local
302 const int pointersample_count = history_size + 1;
305 if (h < history_size) {
330 touch_history_last_accepted_time_ = h < history_size
  /external/chromium_org/content/browser/renderer_host/input/
motion_event_android_unittest.cc 52 int history_size = 0; local
65 history_size,
109 EXPECT_EQ(static_cast<size_t>(history_size), event.GetHistorySize());
motion_event_android.cc 130 jint history_size,
153 cached_history_size_(history_size),
160 DCHECK_GE(history_size, 0);
motion_event_android.h 32 jint history_size,
  /external/compiler-rt/lib/tsan/tests/unit/
tsan_flags_test.cc 61 " history_size=5"
106 " history_size=6"
151 EXPECT_EQ(f->history_size, 5);
196 EXPECT_EQ(f->history_size, 6);
  /external/chromium_org/content/browser/android/
content_view_core_impl.h 92 jint history_size,
content_view_core_impl.cc 856 jint history_size,
    [all...]

Completed in 618 milliseconds