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

  /external/webrtc/src/modules/audio_processing/utility/
delay_estimator.h 40 int history_size; member in struct:__anon38083
107 // - history_size : > 0 - Far-end history size.
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...]
  /external/chromium_org/third_party/webrtc/modules/audio_processing/utility/
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...]
  /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());
  /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
  /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

Completed in 196 milliseconds