/external/webrtc/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:__anon26590 39 int history_size; member in struct:__anon26591 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;
|
delay_estimator_unittest.cc | 274 // 2) |history_size| <= 1.
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
SignalController.java | 37 static final int HISTORY_SIZE = 64; 54 // Save the previous HISTORY_SIZE states for logging. 69 mHistory = new State[HISTORY_SIZE]; 70 for (int i = 0; i < HISTORY_SIZE; i++) { 181 mHistory[mHistoryIndex++ & (HISTORY_SIZE - 1)].copyFrom(mLastState); 190 for (int i = 0; i < HISTORY_SIZE; i++) { 194 for (int i = mHistoryIndex + HISTORY_SIZE - 1; 195 i >= mHistoryIndex + HISTORY_SIZE - size; i--) { 196 pw.println(" Previous State(" + (mHistoryIndex + HISTORY_SIZE - i) + "): " 197 + mHistory[i & (HISTORY_SIZE - 1)]) [all...] |
/external/compiler-rt/lib/tsan/rtl/ |
tsan_flags.cc | 117 if (f->history_size < 0 || f->history_size > 7) { 118 Printf("ThreadSanitizer: incorrect value for history_size"
|
tsan_flags.inc | 65 int, history_size, kGoMode ? 1 : 3, // There are a lot of goroutines in Go. 68 "history_size=0 amounts to 32K memory accesses. Each next value doubles " 69 "the amount of memory accesses, up to history_size=7 that amounts to "
|
tsan_rtl_thread.cc | 116 thr->fast_state.SetHistorySize(flags()->history_size);
|
tsan_rtl.cc | 78 // value of history_size. However, the constructor writes to the whole trace. 520 return (uptr)(1ull << (kTracePartSizeBits + flags()->history_size + 1));
|
tsan_rtl.h | 89 // history_size : 3
|
/external/compiler-rt/lib/tsan/tests/unit/ |
tsan_flags_test.cc | 55 " history_size=5" 80 " history_size=6" 105 EXPECT_EQ(f->history_size, 5); 130 EXPECT_EQ(f->history_size, 6);
|
/frameworks/base/services/usage/java/com/android/server/usage/ |
AppIdleHistory.java | 59 private static final int HISTORY_SIZE = 100; 90 final byte[] recent = new byte[HISTORY_SIZE]; 187 packageHistory.recent[HISTORY_SIZE - 1] = FLAG_LAST_STATE | FLAG_PARTIAL_ACTIVE; 197 packageHistory.recent[HISTORY_SIZE - 1] &= ~FLAG_LAST_STATE; 205 && (thisPeriod - mLastPeriod) < HISTORY_SIZE - 1) { 213 HISTORY_SIZE - diff); 216 idleState.recent[HISTORY_SIZE - i - 1] = 217 (byte) (idleState.recent[HISTORY_SIZE - diff - 1] & FLAG_LAST_STATE); 410 for (int i = 0; i < HISTORY_SIZE; i++) {
|
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/ |
OrientationSensorExampleActivity.java | 42 private static final int HISTORY_SIZE = 300; // number of points to plot in history
111 aprHistoryPlot.setDomainBoundaries(0, HISTORY_SIZE, BoundaryMode.FIXED);
122 aprHistoryPlot.setDomainStepValue(HISTORY_SIZE/10);
232 if (rollHistorySeries.size() > HISTORY_SIZE) {
|
/frameworks/native/include/input/ |
VelocityTracker.h | 173 static const uint32_t HISTORY_SIZE = 20; 190 Movement mMovements[HISTORY_SIZE]; 248 static const uint32_t HISTORY_SIZE = 20; 264 Movement mMovements[HISTORY_SIZE];
|
/frameworks/native/libs/input/ |
VelocityTracker.cpp | 357 const uint32_t LeastSquaresVelocityTrackerStrategy::HISTORY_SIZE; 380 if (++mIndex == HISTORY_SIZE) { 565 float x[HISTORY_SIZE]; 566 float y[HISTORY_SIZE]; 567 float w[HISTORY_SIZE]; 568 float time[HISTORY_SIZE]; 588 index = (index == 0 ? HISTORY_SIZE : index) - 1; 589 } while (++m < HISTORY_SIZE); 638 uint32_t nextIndex = (index + 1) % HISTORY_SIZE; 815 const uint32_t LegacyVelocityTrackerStrategy::HISTORY_SIZE; [all...] |
/frameworks/base/services/core/java/com/android/server/ |
GraphicsStatsService.java | 52 * 3) ASHMEM_SIZE * HISTORY_SIZE 63 private static final int HISTORY_SIZE = 20; 69 private HistoricalData[] mHistoricalLog = new HistoricalData[HISTORY_SIZE];
|
/external/v8/build/sanitizers/ |
sanitizer_options.cc | 124 // history_size=7 - make the history buffer proportional to 2^7 (the maximum 130 "report_thread_leaks=0 print_suppressions=1 history_size=7 "
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/ |
NetworkControllerSignalTest.java | 282 assertEquals(0, SignalController.HISTORY_SIZE & (SignalController.HISTORY_SIZE - 1));
|
/prebuilts/go/darwin-x86/doc/articles/ |
race_detector.html | 126 <code>history_size</code> (default <code>1</code>): The per-goroutine memory 127 access history is <code>32K * 2**history_size elements</code>.
|
/prebuilts/go/linux-x86/doc/articles/ |
race_detector.html | 126 <code>history_size</code> (default <code>1</code>): The per-goroutine memory 127 access history is <code>32K * 2**history_size elements</code>.
|
/frameworks/opt/net/voip/src/jni/rtp/ |
AudioGroup.cpp | 91 #define HISTORY_SIZE 100 372 mBufferHead = tick - HISTORY_SIZE; 376 if (tick - mBufferHead > HISTORY_SIZE) { 378 mBufferHead = tick - HISTORY_SIZE;
|
/frameworks/base/core/java/android/widget/ |
Editor.java | [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
StringSearch.java | [all...] |
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/ |
StringSearch.java | [all...] |