/external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/lz/ |
OutWindow.java | 14 public void Create (int windowSize) {
15 if (_buffer == null || _windowSize != windowSize) _buffer = new byte[windowSize];
16 _windowSize = windowSize;
|
/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/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;
|
/external/libgdx/gdx/src/com/badlogic/gdx/math/ |
FloatCounter.java | 44 * @param windowSize The size of the mean window or 1 or below to not use a windowed mean. */ 45 public FloatCounter (int windowSize) { 46 mean = (windowSize > 1) ? new WindowedMean(windowSize) : null;
|
/external/libgdx/gdx/src/com/badlogic/gdx/utils/ |
PerformanceCounters.java | 28 public PerformanceCounter add (final String name, final int windowSize) { 29 PerformanceCounter result = new PerformanceCounter(name, windowSize);
|
PerformanceCounter.java | 49 public PerformanceCounter (final String name, final int windowSize) { 51 this.time = new FloatCounter(windowSize);
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/ |
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...] |
SynchronizedDescriptiveStatistics.java | 129 public synchronized void setWindowSize(int windowSize) { 130 super.setWindowSize(windowSize);
|
/external/selinux/policycoreutils/sandbox/ |
sandbox.8 | 6 [\-C] [\-c] [\-s] [ \-d DPI ] [\-l level ] [[\-M | \-X] \-H homedir \-T tempdir ] [\-I includefile ] [ \-W windowmanager ] [ \-w windowsize ] [[\-i file ]...] [ \-t type ] cmd 10 [\-C] [\-c] [\-s] [ \-d DPI ] [\-l level ] [[\-M | \-X] \-H homedir \-T tempdir ] [\-I includefile ] [ \-W windowmanager ] [ \-w windowsize ] [[\-i file ]...] [ \-t type ] \-S 71 \fB\-w\fR \fB\-\-windowsize\fR 73 Specifies the windowsize when creating an X based Sandbox. The default windowsize is 1000x700.
|
sandbox | 306 sandbox [-h] [-l level ] [-[X|M] [-H homedir] [-T tempdir]] [-I includefile ] [-W windowmanager ] [ -w windowsize ] [[-i file ] ...] [ -t type ] command 308 sandbox [-h] [-l level ] [-[X|M] [-H homedir] [-T tempdir]] [-I includefile ] [-W windowmanager ] [ -w windowsize ] [[-i file ] ...] [ -t type ] -S 352 parser.add_option("-w", "--windowsize", dest="windowsize", 465 cmds += ["--", SANDBOXSH, self.__options.windowsize, dpi]
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
PageIndicator.java | 99 int windowSize = Math.min(mMarkers.size(), mMaxWindowSize); 100 int hWindowSize = (int) windowSize / 2; 101 float hfWindowSize = windowSize / 2f; 104 windowStart = windowEnd - Math.min(mMarkers.size(), windowSize); 143 if (mMarkers.size() > windowSize) {
|
/packages/apps/Launcher3/res/layout/ |
page_indicator.xml | 20 launcher:windowSize="@integer/config_maxNumberOfPageIndicatorsToShow">
|
/prebuilts/go/darwin-x86/src/compress/flate/ |
deflate.go | 20 windowSize = 1 << logWindowSize 21 windowMask = windowSize - 1 99 if d.index >= 2*windowSize-(minMatchLength+maxMatchLength) { 100 // shift the window by windowSize 101 copy(d.window, d.window[windowSize:2*windowSize]) 102 d.index -= windowSize 103 d.windowEnd -= windowSize 104 if d.blockStart >= windowSize { 105 d.blockStart -= windowSize [all...] |
/prebuilts/go/linux-x86/src/compress/flate/ |
deflate.go | 20 windowSize = 1 << logWindowSize 21 windowMask = windowSize - 1 99 if d.index >= 2*windowSize-(minMatchLength+maxMatchLength) { 100 // shift the window by windowSize 101 copy(d.window, d.window[windowSize:2*windowSize]) 102 d.index -= windowSize 103 d.windowEnd -= windowSize 104 if d.blockStart >= windowSize { 105 d.blockStart -= windowSize [all...] |
/external/libvorbis/lib/ |
synthesis.c | 48 /* read our mode and pre/post windowsize */ 112 /* read our mode and pre/post windowsize */ 160 /* read our mode and pre/post windowsize */
|
/external/zopfli/src/zopflipng/ |
zopflipng_lib.cc | 181 bool use_zopfli, int windowsize, const ZopfliPNGOptions* png_options, 186 state.encoder.zlibsettings.windowsize = windowsize; 292 int windowsize = 8192; local 297 strategies[i], false, windowsize, 0, &out); 344 int windowsize = 32768; local 406 windowsize, &png_options, &temp);
|
/external/opencv3/modules/objdetect/src/opencl/ |
cascadedetect.cl | 82 int4 normrect, int sqofs, int2 windowsize) 122 int2 worksize = (int2)(max(s->szi_width - windowsize.x, 0), max(s->szi_height - windowsize.y, 0)); 378 int2 windowsize) 393 int2 worksize = (int2)(max(s->szi_width - windowsize.x, 0), max(s->szi_height - windowsize.y, 0)); 466 int2 windowsize) 491 int2 worksize = (int2)(max(s->szi_width - windowsize.x, 0), max(s->szi_height - windowsize.y, 0));
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/ |
ntddpcm.h | 126 IN ULONG WindowSize OPTIONAL,
|
/external/speex/libspeex/ |
nb_celp.c | 135 st->windowSize = st->frameSize+st->subframeSize; 159 st->winBuf = (spx_word16_t*)speex_alloc((st->windowSize-st->frameSize)*sizeof(spx_word16_t)); 304 ALLOC(w_sig, st->windowSize, spx_word16_t); 307 for (i=0;i<st->windowSize-st->frameSize;i++) 309 for (;i<st->windowSize;i++) 310 w_sig[i] = EXTRACT16(SHR32(MULT16_16(in[i-st->windowSize+st->frameSize],st->window[i]),SIG_SHIFT)); 312 _spx_autocorr(w_sig, autocorr, st->lpcSize+1, st->windowSize); 339 int diff = st->windowSize-st->frameSize; 558 SPEEX_COPY(st->winBuf, in+2*st->frameSize-st->windowSize, st->windowSize-st->frameSize) [all...] |
sb_celp.c | 216 st->windowSize = st->frame_size+st->subframeSize; 233 st->high=(spx_word16_t*)speex_alloc((st->windowSize-st->frame_size)*sizeof(spx_word16_t)); 356 high = high - (st->windowSize-st->frame_size); 357 SPEEX_COPY(high, st->high, st->windowSize-st->frame_size); 358 SPEEX_COPY(st->high, &high[st->frame_size], st->windowSize-st->frame_size); 387 ALLOC(w_sig, st->windowSize, spx_word16_t); 392 for (i=0;i<st->windowSize;i++) 395 for (i=0;i<st->windowSize;i++) 399 _spx_autocorr(w_sig, autocorr, st->lpcSize+1, st->windowSize); [all...] |
sb_celp.h | 51 int windowSize; /**< Length of high-band LPC window*/
|
/hardware/intel/common/libmix/videoencoder/ |
VideoEncoderDef.h | 236 uint32_t windowSize; 253 this->windowSize = other.windowSize;
|
/frameworks/base/media/java/android/media/ |
ClosedCaptionRenderer.java | 814 void rollUp(int windowSize) { 816 for (i = 0; i <= mRow - windowSize; i++) { 819 int startRow = mRow - windowSize + 1; 881 private void moveBaselineTo(int baseRow, int windowSize) { 885 int actualWindowSize = windowSize; 906 for (i = 0; i <= baseRow - windowSize; i++) { [all...] |
/external/tremolo/Tremolo/ |
dsp.c | 191 /* read our mode and pre/post windowsize */ 221 /* read our mode and pre/post windowsize */
|
/packages/apps/Launcher3/res/values/ |
attrs.xml | 36 <attr name="windowSize" format="integer" />
|