HomeSort by relevance Sort by last modified time
    Searched refs:windowSize (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /external/lzma/Java/SevenZip/Compression/LZ/
OutWindow.java 15 public void Create(int windowSize)
17 if (_buffer == null || _windowSize != windowSize)
18 _buffer = new byte[windowSize];
19 _windowSize = windowSize;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
SynchronizedDescriptiveStatistics.java 129 public synchronized void setWindowSize(int windowSize) {
130 super.setWindowSize(windowSize);
DescriptiveStatistics.java 41 * statistics based on stored data. The {@link #getWindowSize() windowSize}
47 * instead of this class. If <code>windowSize</code> is not INFINITE_WINDOW and
74 protected int windowSize = INFINITE_WINDOW;
153 * windowSize), the first (oldest) element in the dataset is discarded
159 if (windowSize != INFINITE_WINDOW) {
160 if (getN() == windowSize) {
162 } else if (getN() < windowSize) {
309 return windowSize;
313 * WindowSize controls the number of values which contribute
315 * windowSize is set to 3 and the values {1,2,3,4,5
    [all...]
  /external/lzma/CS/7zip/Compress/LZ/
LzOutWindow.cs 15 public void Create(uint windowSize)
17 if (_windowSize != windowSize)
20 _buffer = new byte[windowSize];
22 _windowSize = windowSize;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/pip/phone/
PipDismissViewController.java 63 final Point windowSize = new Point();
64 mWindowManager.getDefaultDisplay().getRealSize(windowSize);
89 0, windowSize.y - gradientHeight,
  /prebuilts/go/darwin-x86/src/compress/flate/
flate_test.go 290 // Testing multiples of windowSize triggers the case
292 windowSize * 1, windowSize * 2, windowSize * 3,
309 if testing.Short() && sz > windowSize {
331 // If the availWrite == windowSize, then that means that the
335 if r.(*decompressor).dict.availWrite() == windowSize {
deflate.go 33 windowSize = 1 << logWindowSize
34 windowMask = windowSize - 1
99 hashPrev [windowSize]uint32
124 if d.index >= 2*windowSize-(minMatchLength+maxMatchLength) {
125 // shift the window by windowSize
126 copy(d.window, d.window[windowSize:2*windowSize])
127 d.index -= windowSize
128 d.windowEnd -= windowSize
129 if d.blockStart >= windowSize {
    [all...]
  /prebuilts/go/linux-x86/src/compress/flate/
flate_test.go 290 // Testing multiples of windowSize triggers the case
292 windowSize * 1, windowSize * 2, windowSize * 3,
309 if testing.Short() && sz > windowSize {
331 // If the availWrite == windowSize, then that means that the
335 if r.(*decompressor).dict.availWrite() == windowSize {
deflate.go 33 windowSize = 1 << logWindowSize
34 windowMask = windowSize - 1
99 hashPrev [windowSize]uint32
124 if d.index >= 2*windowSize-(minMatchLength+maxMatchLength) {
125 // shift the window by windowSize
126 copy(d.window, d.window[windowSize:2*windowSize])
127 d.index -= windowSize
128 d.windowEnd -= windowSize
129 if d.blockStart >= windowSize {
    [all...]
  /frameworks/support/content/src/android/support/content/
ContentPager.java 399 int windowSize = cursor.getCount();
402 windowSize = window.getNumRows();
418 int disposition = (cursor.getCount() <= windowSize)
422 Cursor result = new CursorView(cursor, windowSize, disposition);
426 if (cursor.getCount() > windowSize) {
428 extras.putInt(EXTRA_SUGGESTED_LIMIT, (int) (windowSize * .85));
  /cts/tests/tests/media/libmediandkjni/
native_media_utils.cpp 108 int32_t frameNumFrom, int32_t frameNumTo, int32_t windowSize) const {
112 assert(windowSize < (frameNumTo - frameNumFrom));
116 if (i >= windowSize) {
117 sum -= mInfos[i - windowSize].size;
native_media_utils.h 185 int32_t getBitratePeak(int32_t frameNumFrom, int32_t frameNumTo, int32_t windowSize) const;
  /external/speex/libspeex/
sb_celp.h 51 int windowSize; /**< Length of high-band LPC window*/
nb_celp.h 56 int windowSize; /**< Analysis (LPC) window length */
  /prebuilts/devtools/adt/lib/
sdktestutils.jar 
  /hardware/intel/common/libmix/videoencoder/
VideoEncoderDef.h 236 uint32_t windowSize;
253 this->windowSize = other.windowSize;
  /frameworks/support/content/tests/java/android/support/content/
TestContentProvider.java 175 int windowSize = limit - 1;
184 for (int row = 0; row < windowSize; row++) {
  /prebuilts/gradle-plugin/com/android/tools/testutils/24.3.1/
testutils-24.3.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/testutils/24.4.0-alpha1/
testutils-24.4.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/testutils/24.4.0-beta3/
testutils-24.4.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/testutils/24.4.0-beta5/
testutils-24.4.0-beta5.jar 
  /prebuilts/gradle-plugin/com/android/tools/testutils/24.4.0-beta6/
testutils-24.4.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/testutils/24.5.0/
testutils-24.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/testutils/25.0.0/
testutils-25.0.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/testutils/25.0.0-alpha1/
testutils-25.0.0-alpha1.jar 

Completed in 1836 milliseconds

1 2 3 4