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

  /external/webrtc/src/modules/audio_processing/utility/
delay_estimator.h 40 int history_size; member in struct:__anon37196
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:__anon19823
77 // - history_size : Size of the far-end binary spectrum history.
86 int 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
  /external/chromium_org/ui/events/gesture_detection/
scale_gesture_detector.cc 320 const int history_size = static_cast<int>(ev.GetHistorySize()); local
321 const int pointersample_count = history_size + 1;
324 if (h < history_size) {
347 touch_history_last_accepted_time_ = h < history_size

Completed in 359 milliseconds