Searched defs:history_size (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/chrome/browser/drive/
H A Devent_logger.cc49 void EventLogger::SetHistorySize(size_t history_size) { argument
52 history_size_ = history_size;
/external/webrtc/src/modules/audio_processing/utility/
H A Ddelay_estimator.h40 int history_size; member in struct:__anon33504
107 // - history_size : > 0 - Far-end history size.
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...]
/external/chromium_org/third_party/webrtc/modules/audio_processing/utility/
H A Ddelay_estimator.h26 int history_size; member in struct:__anon15915
39 int history_size; member in struct:__anon15916
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
[all...]
H A Ddelay_estimator_wrapper.c142 void* WebRtc_CreateDelayEstimatorFarend(int spectrum_size, int history_size) { argument
157 self->binary_farend = WebRtc_CreateBinaryDelayEstimatorFarend(history_size);
330 int WebRtc_set_history_size(void* handle, int history_size) { argument
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;
H A Ddelay_estimator.c101 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 * sizeo
273 WebRtc_CreateBinaryDelayEstimatorFarend( int history_size) argument
295 WebRtc_AllocateFarendBufferMemory(BinaryDelayEstimatorFarend* self, int history_size) argument
436 WebRtc_AllocateHistoryBufferMemory(BinaryDelayEstimator* self, int history_size) argument
[all...]
/external/chromium_org/content/browser/renderer_host/input/
H A Dmotion_event_android_unittest.cc52 int history_size = 0; local
65 history_size,
109 EXPECT_EQ(static_cast<size_t>(history_size), event.GetHistorySize());
H A Dmotion_event_android.cc130 jint history_size,
153 cached_history_size_(history_size),
160 DCHECK_GE(history_size, 0);
124 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 touch_minor_0_pixels, jfloat touch_minor_1_pixels, jfloat orientation_0_rad, jfloat orientation_1_rad, jfloat raw_pos_x_pixels, jfloat raw_pos_y_pixels, jint android_tool_type_0, jint android_tool_type_1, jint android_button_state, jint meta_state) argument
/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
/external/chromium_org/ui/events/gesture_detection/
H A Dscale_gesture_detector.cc301 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/android/
H A Dcontent_view_core_impl.cc856 jint history_size,
888 history_size,
850 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 touch_minor_0, jfloat touch_minor_1, jfloat orientation_0, jfloat orientation_1, jfloat raw_pos_x, jfloat raw_pos_y, jint android_tool_type_0, jint android_tool_type_1, jint android_button_state, jint android_meta_state, jboolean is_touch_handle_event) argument

Completed in 6219 milliseconds