HomeSort by relevance Sort by last modified time
    Searched refs:prefill (Results 1 - 13 of 13) sorted by null

  /external/apache-commons-compress/src/test/java/org/apache/commons/compress/compressors/lz77support/
AbstractLZ77CompressorInputStreamTest.java 56 s.prefill(new byte[] { 1, 2, 3 });
64 s.prefill(data);
78 s.prefill(data);
LZ77CompressorTest.java 218 c.prefill(Arrays.copyOfRange(BLA, 0, 6));
246 c.prefill(Arrays.copyOfRange(BLA, 0, 2));
275 c.prefill(Arrays.copyOfRange(BLA, 0, 6));
293 c.prefill(Arrays.copyOfRange(BLA, 0, 2));
294 c.prefill(Arrays.copyOfRange(BLA, 2, 4));
305 c.prefill(Arrays.copyOfRange(BLA, 2, 4));
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/prefill/
PreFillQueue.java 1 package com.bumptech.glide.load.engine.prefill;
PreFillType.java 1 package com.bumptech.glide.load.engine.prefill;
110 * Constructor for a builder that uses the given size as the width and height of the Bitmaps to prefill.
111 * @param size The width and height in pixels of the Bitmaps to prefill.
118 * Constructor for a builder that uses the given dimensions as the dimensions of the Bitmaps to prefill.
119 * @param width The width in pixels of the Bitmaps to prefill.
120 * @param height The height in pixels of the Bitmaps to prefill.
BitmapPreFiller.java 1 package com.bumptech.glide.load.engine.prefill;
34 public void preFill(PreFillType.Builder... bitmapAttributeBuilders) {
BitmapPreFillRunner.java 1 package com.bumptech.glide.load.engine.prefill;
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/lz77support/
AbstractLZ77CompressorInputStream.java 37 * {@link #prefill prefill} method has been used to provide initial
180 public void prefill(byte[] data) { method in class:AbstractLZ77CompressorInputStream
182 throw new IllegalStateException("the stream has already been read from, can't prefill anymore");
LZ77Compressor.java 335 public void prefill(byte[] data) { method in class:LZ77Compressor
337 throw new IllegalStateException("the compressor has already started to accept data, can't prefill anymore");
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/lz4/
BlockLZ4CompressorOutputStream.java 173 * @see LZ77Compressor#prefill
175 public void prefill(byte[] data, int off, int len) { method in class:BlockLZ4CompressorOutputStream
178 compressor.prefill(b);
FramedLZ4CompressorOutputStream.java 276 o.prefill(blockDependencyBuffer, blockDependencyBuffer.length - collectedBlockDependencyBytes,
FramedLZ4CompressorInputStream.java 274 s.prefill(blockDependencyBuffer);
  /external/glide/library/src/main/java/com/bumptech/glide/
Glide.java 23 import com.bumptech.glide.load.engine.prefill.BitmapPreFiller;
24 import com.bumptech.glide.load.engine.prefill.PreFillType;
339 * {@link com.bumptech.glide.load.engine.prefill.PreFillType.Builder Builders} representing
343 bitmapPreFiller.preFill(bitmapAttributeBuilders);
  /external/libopus/src/
opus_encoder.c 1078 int prefill=0; local
    [all...]

Completed in 357 milliseconds