Searched refs:history_size (Results 1 - 18 of 18) sorted by relevance

/external/webrtc/src/modules/audio_processing/utility/
H A Ddelay_estimator.c95 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...]
H A Ddelay_estimator.h40 int history_size; member in struct:__anon32622
107 // - history_size : > 0 - Far-end history size.
/external/chromium_org/third_party/webrtc/modules/audio_processing/utility/
H A Ddelay_estimator.h26 int history_size; member in struct:__anon15210
77 // - history_size : Size of the far-end binary spectrum history.
86 int history_size);
H A Ddelay_estimator.c133 for (i = 0; i < self->farend->history_size; ++i) {
273 int history_size) {
276 if (history_size > 1) {
283 self->history_size = history_size;
286 self->binary_far_history = malloc(history_size * sizeof(uint32_t));
289 self->far_bit_counts = malloc(history_size * sizeof(int));
303 memset(self->binary_far_history, 0, sizeof(uint32_t) * self->history_size);
304 memset(self->far_bit_counts, 0, sizeof(int) * self->history_size);
316 shift_size = self->history_size
272 WebRtc_CreateBinaryDelayEstimatorFarend( int history_size) argument
[all...]
H A Ddelay_estimator_wrapper.h33 // - history_size : The far-end history buffer size. Note that the maximum
43 void* WebRtc_CreateDelayEstimatorFarend(int spectrum_size, int history_size);
119 // [-|lookahead|,... ,|history_size|-|lookahead|)
120 // where |history_size| was set upon creating the far-end
H A Ddelay_estimator_wrapper.c142 void* WebRtc_CreateDelayEstimatorFarend(int spectrum_size, int history_size) { argument
157 self->binary_farend = WebRtc_CreateBinaryDelayEstimatorFarend(history_size);
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_flags.h78 // 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
H A Dtsan_flags.cc60 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"
H A Dtsan_rtl_thread.cc111 thr->fast_state.SetHistorySize(flags()->history_size);
H A Dtsan_rtl.cc481 return (uptr)(1ull << (kTracePartSizeBits + flags()->history_size + 1));
/external/chromium_org/chrome/browser/drive/
H A Devent_logger.cc49 void EventLogger::SetHistorySize(size_t history_size) { argument
52 history_size_ = history_size;
H A Devent_logger.h52 void SetHistorySize(size_t history_size);
/external/chromium_org/ui/events/gesture_detection/
H A Dscale_gesture_detector.cc320 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
/external/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_flags_test.cc61 " 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/renderer_host/input/
H A Dmotion_event_android.cc105 jint history_size,
123 cached_history_size_(history_size),
129 DCHECK_GE(history_size, 0);
99 MotionEventAndroid(float pix_to_dip, JNIEnv* env, jobject event, jlong time_ms, jint android_action, jint pointer_count, jint history_size, jint action_index, jfloat pos_x_0_pixels, jfloat pos_y_0_pixels, jfloat pos_x_1_pixels, jfloat pos_y_1_pixels, jint pointer_id_0, jint pointer_id_1, jfloat touch_major_0_pixels, jfloat touch_major_1_pixels, jfloat raw_pos_x_pixels, jfloat raw_pos_y_pixels, jint android_tool_type_0, jint android_tool_type_1, jint android_button_state) argument
H A Dmotion_event_android.h31 jint history_size,
/external/chromium_org/content/browser/android/
H A Dcontent_view_core_impl.h107 jint history_size,
H A Dcontent_view_core_impl.cc945 jint history_size,
971 history_size,
939 OnTouchEvent(JNIEnv* env, jobject obj, jobject motion_event, jlong time_ms, jint android_action, jint pointer_count, jint history_size, jint action_index, jfloat pos_x_0, jfloat pos_y_0, jfloat pos_x_1, jfloat pos_y_1, jint pointer_id_0, jint pointer_id_1, jfloat touch_major_0, jfloat touch_major_1, jfloat raw_pos_x, jfloat raw_pos_y, jint android_tool_type_0, jint android_tool_type_1, jint android_button_state) argument

Completed in 715 milliseconds