/external/libvpx/libvpx/test/ |
codec_factory.h | 43 virtual Encoder* CreateEncoder(vpx_codec_enc_cfg_t cfg, 94 class VP8Encoder : public Encoder { 98 : Encoder(cfg, deadline, init_flags, stats) {} 129 virtual Encoder* CreateEncoder(vpx_codec_enc_cfg_t cfg, 186 class VP9Encoder : public Encoder { 190 : Encoder(cfg, deadline, init_flags, stats) {} 221 virtual Encoder* CreateEncoder(vpx_codec_enc_cfg_t cfg, 279 class VP10Encoder : public Encoder { 283 : Encoder(cfg, deadline, init_flags, stats) {} 314 virtual Encoder* CreateEncoder(vpx_codec_enc_cfg_t cfg [all...] |
altref_test.cc | 37 libvpx_test::Encoder *encoder) { 39 encoder->Control(VP8E_SET_ENABLEAUTOALTREF, 1); 40 encoder->Control(VP8E_SET_CPUUSED, 3);
|
encode_test_driver.cc | 23 void Encoder::InitEncoder(VideoSource *video) { 64 void Encoder::EncodeFrame(VideoSource *video, const unsigned long frame_flags) { 81 void Encoder::EncodeFrameInternal(const VideoSource &video, 101 void Encoder::Flush() { 192 Encoder* const encoder = codec_->CreateEncoder(cfg_, deadline_, init_flags_, local 194 ASSERT_TRUE(encoder != NULL); 197 encoder->InitEncoder(video); 201 // Use fragment decoder if encoder outputs partitions. 202 // NOTE: fragment decoder and partition encoder are only supported by VP8 [all...] |
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/ |
ImageVideoGifDrawableLoadProvider.java | 5 import com.bumptech.glide.load.Encoder; 25 private final ResourceEncoder<GifBitmapWrapper> encoder; field in class:ImageVideoGifDrawableLoadProvider 26 private final Encoder<ImageVideoWrapper> sourceEncoder; 38 encoder = new GifBitmapWrapperResourceEncoder(bitmapProvider.getEncoder(), gifProvider.getEncoder()); 55 public Encoder<ImageVideoWrapper> getSourceEncoder() { 61 return encoder;
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/cer/ |
encoder.py | 1 # CER encoder 3 from pyasn1.codec.ber import encoder 6 class BooleanEncoder(encoder.IntegerEncoder): 14 class BitStringEncoder(encoder.BitStringEncoder): 16 return encoder.BitStringEncoder.encodeValue( 20 class OctetStringEncoder(encoder.OctetStringEncoder): 22 return encoder.OctetStringEncoder.encodeValue( 31 class SetOfEncoder(encoder.SequenceOfEncoder): 67 tagMap = encoder.tagMap.copy() 75 typeMap = encoder.typeMap.copy( [all...] |
/external/glide/library/src/main/java/com/bumptech/glide/provider/ |
ChildLoadProvider.java | 3 import com.bumptech.glide.load.Encoder; 25 private ResourceEncoder<Z> encoder; field in class:ChildLoadProvider 27 private Encoder<T> sourceEncoder; 60 * @param encoder The encoder to use. 62 public void setEncoder(ResourceEncoder<Z> encoder) { 63 this.encoder = encoder; 77 * Sets the {@link com.bumptech.glide.load.Encoder} to use to write the original data to the disk cache. 79 * @param sourceEncoder The encoder to use [all...] |
FixedLoadProvider.java | 3 import com.bumptech.glide.load.Encoder; 79 public Encoder<T> getSourceEncoder() {
|
/device/generic/goldfish/opengl/system/GLESv1_enc/ |
Android.mk | 3 ### GLESv1_enc Encoder ###########################################
|
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/ |
ImageVideoDataLoadProvider.java | 6 import com.bumptech.glide.load.Encoder; 23 private final ResourceEncoder<Bitmap> encoder; field in class:ImageVideoDataLoadProvider 28 encoder = streamBitmapProvider.getEncoder(); 47 public Encoder<ImageVideoWrapper> getSourceEncoder() { 53 return encoder;
|
StreamBitmapDataLoadProvider.java | 6 import com.bumptech.glide.load.Encoder; 23 private final BitmapEncoder encoder; field in class:StreamBitmapDataLoadProvider 30 encoder = new BitmapEncoder(); 45 public Encoder<InputStream> getSourceEncoder() { 51 return encoder;
|
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/ |
GifDrawableLoadProvider.java | 5 import com.bumptech.glide.load.Encoder; 22 private final GifResourceEncoder encoder; field in class:GifDrawableLoadProvider 29 encoder = new GifResourceEncoder(bitmapPool); 44 public Encoder<InputStream> getSourceEncoder() { 50 return encoder;
|
/cts/tests/tests/media/src/android/media/cts/ |
VideoEncoderTest.java | 240 // returns true if encoder supports the size 273 // Some extra configure before starting the encoder. 280 Log.i(TAG, "encoder input format " + mEncoder.getInputFormat() + " from " + outFmt); 357 if (DEBUG) Log.v(TAG, "encoder received output #" + ix 373 Log.d(TAG, "encoder received output EOS"); 435 assertTrue("could not configure encoder for supported size", optional); 451 // wait for an encoder input buffer and a decoder output buffer 466 Log.d(TAG, "No more input but still getting output from encoder."); 471 + " encoder input buffers"); 561 assertNotNull("could not get encoder image for " + mEncoder.getInputFormat(), encImage) [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/lzma/ |
Encoder.java | 24 public class Encoder {
75 com.badlogic.gdx.utils.compression.rangecoder.Encoder.InitBitModels(m_Encoders);
78 public void Encode (com.badlogic.gdx.utils.compression.rangecoder.Encoder rangeEncoder, byte symbol) throws IOException {
87 public void EncodeMatched (com.badlogic.gdx.utils.compression.rangecoder.Encoder rangeEncoder, byte matchByte,
112 price += com.badlogic.gdx.utils.compression.rangecoder.Encoder.GetPrice(m_Encoders[((1 + matchBit) << 8)
123 price += com.badlogic.gdx.utils.compression.rangecoder.Encoder.GetPrice(m_Encoders[context], bit);
171 com.badlogic.gdx.utils.compression.rangecoder.Encoder.InitBitModels(_choice);
180 public void Encode (com.badlogic.gdx.utils.compression.rangecoder.Encoder rangeEncoder, int symbol, int posState)
199 int a0 = com.badlogic.gdx.utils.compression.rangecoder.Encoder.GetPrice0(_choice[0]);
200 int a1 = com.badlogic.gdx.utils.compression.rangecoder.Encoder.GetPrice1(_choice[0]); 1167 BitTreeEncoder encoder = _posSlotEncoder[lenToPosState]; local [all...] |
/external/lzma/Java/SevenZip/Compression/LZMA/ |
Encoder.java | 9 public class Encoder
74 public void Init() { SevenZip.Compression.RangeCoder.Encoder.InitBitModels(m_Encoders); }
78 public void Encode(SevenZip.Compression.RangeCoder.Encoder rangeEncoder, byte symbol) throws IOException
89 public void EncodeMatched(SevenZip.Compression.RangeCoder.Encoder rangeEncoder, byte matchByte, byte symbol) throws IOException
119 price += SevenZip.Compression.RangeCoder.Encoder.GetPrice(m_Encoders[((1 + matchBit) << 8) + context], bit);
131 price += SevenZip.Compression.RangeCoder.Encoder.GetPrice(m_Encoders[context], bit);
186 SevenZip.Compression.RangeCoder.Encoder.InitBitModels(_choice);
196 public void Encode(SevenZip.Compression.RangeCoder.Encoder rangeEncoder, int symbol, int posState) throws IOException
222 int a0 = SevenZip.Compression.RangeCoder.Encoder.GetPrice0(_choice[0]);
223 int a1 = SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_choice[0]); 1328 BitTreeEncoder encoder = _posSlotEncoder[lenToPosState]; local [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/ |
altref_test.cc | 37 libvpx_test::Encoder *encoder) { 39 encoder->Control(VP8E_SET_ENABLEAUTOALTREF, 1); 40 encoder->Control(VP8E_SET_CPUUSED, 3);
|
encode_test_driver.h | 52 explicit CxDataIterator(vpx_codec_ctx_t *encoder) 53 : encoder_(encoder), iter_(NULL) {} 91 class Encoder { 93 Encoder(vpx_codec_enc_cfg_t cfg, unsigned long deadline, 99 virtual ~Encoder() { 157 // Flush the encoder on EOS 167 // Common test functionality for all Encoder tests. 170 // encoder tests. It provides hooks which can be overridden by subclasses 199 virtual void PreEncodeFrameHook(VideoSource *video, Encoder *encoder) {} [all...] |
/prebuilts/go/darwin-x86/src/encoding/gob/ |
encoder.go | 14 // An Encoder manages the transmission of type and data information to the 16 type Encoder struct { 32 // NewEncoder returns a new encoder that will transmit on the io.Writer. 33 func NewEncoder(w io.Writer) *Encoder { 34 enc := new(Encoder) 41 // writer() returns the innermost writer the encoder is using 42 func (enc *Encoder) writer() io.Writer { 46 // pushWriter adds a writer to the encoder. 47 func (enc *Encoder) pushWriter(w io.Writer) { 52 func (enc *Encoder) popWriter() [all...] |
/prebuilts/go/linux-x86/src/encoding/gob/ |
encoder.go | 14 // An Encoder manages the transmission of type and data information to the 16 type Encoder struct { 32 // NewEncoder returns a new encoder that will transmit on the io.Writer. 33 func NewEncoder(w io.Writer) *Encoder { 34 enc := new(Encoder) 41 // writer() returns the innermost writer the encoder is using 42 func (enc *Encoder) writer() io.Writer { 46 // pushWriter adds a writer to the encoder. 47 func (enc *Encoder) pushWriter(w io.Writer) { 52 func (enc *Encoder) popWriter() [all...] |
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
CharsetCallback.java | 144 * Encoder Callback interface 147 public interface Encoder { 155 public CoderResult call(CharsetEncoderICU encoder, Object context, 163 public static final Encoder FROM_U_CALLBACK_SKIP = new Encoder() { 164 public CoderResult call(CharsetEncoderICU encoder, Object context, 203 public static final Encoder FROM_U_CALLBACK_SUBSTITUTE = new Encoder(){ 204 public CoderResult call(CharsetEncoderICU encoder, Object context, 210 return encoder.cbFromUWriteSub(encoder, source, target, offsets) [all...] |
/external/lzma/CS/7zip/Compress/RangeCoder/ |
RangeCoderBitTree.cs | 22 public void Encode(Encoder rangeEncoder, UInt32 symbol)
34 public void ReverseEncode(Encoder rangeEncoder, UInt32 symbol)
90 Encoder rangeEncoder, int NumBitLevels, UInt32 symbol)
|
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/ |
kv_pb.py | 181 0: ProtocolBuffer.Encoder.NUMERIC, 182 1: ProtocolBuffer.Encoder.STRING, 183 2: ProtocolBuffer.Encoder.STRING, 184 }, 2, ProtocolBuffer.Encoder.MAX_TYPE) 359 0: ProtocolBuffer.Encoder.NUMERIC, 360 1: ProtocolBuffer.Encoder.STRING, 361 2: ProtocolBuffer.Encoder.STRING, 362 }, 2, ProtocolBuffer.Encoder.MAX_TYPE)
|
/external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/ |
Lzma.java | 65 com.badlogic.gdx.utils.compression.lzma.Encoder encoder = new com.badlogic.gdx.utils.compression.lzma.Encoder();
local 66 if (!encoder.SetAlgorithm(params.Algorithm)) throw new RuntimeException("Incorrect compression mode");
67 if (!encoder.SetDictionarySize(params.DictionarySize)) throw new RuntimeException("Incorrect dictionary size");
68 if (!encoder.SetNumFastBytes(params.Fb)) throw new RuntimeException("Incorrect -fb value");
69 if (!encoder.SetMatchFinder(params.MatchFinder)) throw new RuntimeException("Incorrect -mf value");
70 if (!encoder.SetLcLpPb(params.Lc, params.Lp, params.Pb)) throw new RuntimeException("Incorrect -lc or -lp or -pb value");
71 encoder.SetEndMarkerMode(eos);
72 encoder.WriteCoderProperties(out); [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/rangecoder/ |
Encoder.java | 21 public class Encoder {
81 if ((Range & Encoder.kTopMask) == 0) {
|
/external/lzma/Java/SevenZip/Compression/RangeCoder/ |
Encoder.java | 4 public class Encoder
77 if ((Range & Encoder.kTopMask) == 0)
|
/external/skia/src/core/ |
SkRemote.cpp | 90 explicit Canvas(Encoder* encoder) 92 , fEncoder(encoder) {} 95 // Calls Encoder::define() when created, Encoder::undefine() when destroyed. 99 explicit AutoID(Encoder* encoder, const T& val) 100 : fEncoder(encoder) 101 , fID(encoder->define(val)) {} 112 Encoder* fEncoder [all...] |