HomeSort by relevance Sort by last modified time
    Searched refs:Encoder (Results 101 - 125 of 270) sorted by null

1 2 3 45 6 7 8 91011

  /external/libvpx/libvpx/vp9/common/
vp9_rtcd_defs.pl 24 /* Encoder forward decls */
107 # Encoder functions below this point.
205 # End vp9_high encoder functions
214 # end encoder functions
  /external/glide/library/src/main/java/com/bumptech/glide/
BitmapRequestBuilder.java 10 import com.bumptech.glide.load.Encoder;
186 public BitmapRequestBuilder<ModelType, TranscodeType> encoder(ResourceEncoder<Bitmap> encoder) { method in class:BitmapRequestBuilder
187 super.encoder(encoder);
441 public BitmapRequestBuilder<ModelType, TranscodeType> sourceEncoder(Encoder<ImageVideoWrapper> sourceEncoder) {
  /external/libvpx/libvpx/test/
vp9_ethread_test.cc 19 #include "vp9/encoder/vp9_firstpass.h"
66 // For first pass stats test, only run first pass encoder.
72 ::libvpx_test::Encoder *encoder) {
75 encoder->Control(VP9E_SET_TILE_COLUMNS, tiles_);
76 encoder->Control(VP8E_SET_CPUUSED, set_cpu_used_);
77 encoder->Control(VP8E_SET_ENABLEAUTOALTREF, 1);
78 encoder->Control(VP8E_SET_ARNR_MAXFRAMES, 7);
79 encoder->Control(VP8E_SET_ARNR_STRENGTH, 5);
80 encoder->Control(VP8E_SET_ARNR_TYPE, 3)
    [all...]
resize_test.cc 340 libvpx_test::Encoder *encoder) {
345 encoder->Control(VP8E_SET_SCALEMODE, &mode);
349 encoder->Control(VP8E_SET_SCALEMODE, &mode);
351 encoder->Config(&cfg_);
356 encoder->Control(VP8E_SET_SCALEMODE, &mode);
360 encoder->Control(VP8E_SET_SCALEMODE, &mode);
437 libvpx_test::Encoder *encoder) {
439 encoder->Control(VP9E_SET_AQ_MODE, 3)
    [all...]
decode_perf_test.cc 139 ::libvpx_test::Encoder *encoder) {
141 encoder->Control(VP8E_SET_CPUUSED, speed_);
142 encoder->Control(VP9E_SET_FRAME_PARALLEL_DECODING, 1);
143 encoder->Control(VP9E_SET_TILE_COLUMNS, 2);
  /external/lzma/Java/SevenZip/
LzmaBench.java 303 SevenZip.Compression.LZMA.Encoder encoder = new SevenZip.Compression.LZMA.Encoder(); local
306 if (!encoder.SetDictionarySize(dictionarySize))
313 encoder.WriteCoderProperties(propStream);
345 encoder.Code(inStream, compressedStream, -1, -1, progressInfo);
  /prebuilts/go/darwin-x86/src/encoding/gob/
example_interface_test.go 33 // We must register the concrete type for the encoder and decoder (which would
34 // normally be on a separate machine from the encoder). On each end, this tells the
38 // Create an encoder and send some values.
57 // interfaceEncode encodes the interface value into the encoder.
58 func interfaceEncode(enc *gob.Encoder, p Pythagoras) {
doc.go 7 Encoder (transmitter) and a Decoder (receiver). A typical use is transporting
12 is most efficient when a single Encoder is used to transmit a stream of values,
24 To use gobs, create an Encoder and present it with a series of data items as
25 values or addresses that can be dereferenced to values. The Encoder makes sure
185 connection between an Encoder and Decoder, it is assigned a signed integer type
186 id. When Encoder.Encode(v) is called, it makes sure there is an id assigned for
191 To define a type, the encoder chooses an unused, positive type id and sends the
336 we've sent on this Encoder, so it has type id 65 (0 through 64 are
  /prebuilts/go/linux-x86/src/encoding/gob/
example_interface_test.go 33 // We must register the concrete type for the encoder and decoder (which would
34 // normally be on a separate machine from the encoder). On each end, this tells the
38 // Create an encoder and send some values.
57 // interfaceEncode encodes the interface value into the encoder.
58 func interfaceEncode(enc *gob.Encoder, p Pythagoras) {
doc.go 7 Encoder (transmitter) and a Decoder (receiver). A typical use is transporting
12 is most efficient when a single Encoder is used to transmit a stream of values,
24 To use gobs, create an Encoder and present it with a series of data items as
25 values or addresses that can be dereferenced to values. The Encoder makes sure
185 connection between an Encoder and Decoder, it is assigned a signed integer type
186 id. When Encoder.Encode(v) is called, it makes sure there is an id assigned for
191 To define a type, the encoder chooses an unused, positive type id and sends the
336 we've sent on this Encoder, so it has type id 65 (0 through 64 are
  /prebuilts/go/darwin-x86/src/encoding/xml/
marshal.go 100 MarshalXML(e *Encoder, start StartElement) error
131 // An Encoder writes XML data to an output stream.
132 type Encoder struct {
136 // NewEncoder returns a new encoder that writes to w.
137 func NewEncoder(w io.Writer) *Encoder {
138 e := &Encoder{printer{Writer: bufio.NewWriter(w)}}
139 e.p.encoder = e
143 // Indent sets the encoder to generate XML in which each element
146 func (enc *Encoder) Indent(prefix, indent string) {
157 func (enc *Encoder) Encode(v interface{}) error
    [all...]
  /prebuilts/go/linux-x86/src/encoding/xml/
marshal.go 100 MarshalXML(e *Encoder, start StartElement) error
131 // An Encoder writes XML data to an output stream.
132 type Encoder struct {
136 // NewEncoder returns a new encoder that writes to w.
137 func NewEncoder(w io.Writer) *Encoder {
138 e := &Encoder{printer{Writer: bufio.NewWriter(w)}}
139 e.p.encoder = e
143 // Indent sets the encoder to generate XML in which each element
146 func (enc *Encoder) Indent(prefix, indent string) {
157 func (enc *Encoder) Encode(v interface{}) error
    [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs 9 public class Encoder : ICoder, ISetCoderProperties, IWriteCoderProperties
21 static Encoder()
78 public void Encode(RangeCoder.Encoder rangeEncoder, byte symbol)
89 public void EncodeMatched(RangeCoder.Encoder rangeEncoder, byte matchByte, byte symbol)
196 public void Encode(RangeCoder.Encoder rangeEncoder, UInt32 symbol, UInt32 posState)
271 public new void Encode(RangeCoder.Encoder rangeEncoder, UInt32 symbol, UInt32 posState)
305 RangeCoder.Encoder _rangeEncoder = new RangeCoder.Encoder();
382 public Encoder()
    [all...]
  /external/lzma/CS/7zip/Compress/RangeCoder/
RangeCoder.cs 5 class Encoder
  /prebuilts/go/darwin-x86/src/net/rpc/jsonrpc/
client.go 21 enc *json.Encoder // for writing JSON values
server.go 19 enc *json.Encoder // for writing JSON values
  /prebuilts/go/linux-x86/src/net/rpc/jsonrpc/
client.go 21 enc *json.Encoder // for writing JSON values
server.go 19 enc *json.Encoder // for writing JSON values
  /prebuilts/misc/common/robolectric/3.1.1/lib/
commons-codec-1.3.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
commons-codec-1.3.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
commons-codec-1.3.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
commons-codec-1.3.jar 
  /prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.3/
commons-codec-1.3.jar 
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
Base64Encoder.java 7 * A streaming Base64 encoder.
10 implements Encoder
  /external/lzma/CPP/7zip/UI/Common/
LoadCodecs.h 71 CLSID Encoder;

Completed in 1148 milliseconds

1 2 3 45 6 7 8 91011