HomeSort by relevance Sort by last modified time
    Searched defs:Encode (Results 76 - 100 of 145) sorted by null

1 2 34 5 6

  /external/webrtc/webrtc/test/
fake_encoder.cc 48 int32_t FakeEncoder::Encode(const VideoFrame& input_image,
107 // Always encode something on the first frame.
200 int32_t DelayedEncoder::Encode(const VideoFrame& input_image,
204 return FakeEncoder::Encode(input_image, codec_specific_info, frame_types);
  /frameworks/native/services/vr/virtual_touchpad/tests/
VirtualTouchpad_test.cpp 53 s_ += Encode(&count, sizeof(count));
55 s_ += Encode(buf, count);
62 s_ += Encode(&request, sizeof(request));
69 s_ += Encode(&request, sizeof(request));
71 s_ += Encode(&value, sizeof(value));
79 std::string Encode(const void* buf, size_t count) {
  /hardware/libhardware/modules/camera/3_4/arc/
jpeg_compressor.cpp 37 if (!Encode(image, width, height, quality, app1Buffer, app1Size)) {
85 bool JpegCompressor::Encode(const void* inYuv, int width, int height,
  /prebuilts/go/darwin-x86/src/encoding/asn1/
marshal.go 25 // Encode encodes this element by writing Len() bytes to dst.
26 Encode(dst []byte)
35 func (c byteEncoder) Encode(dst []byte) {
45 func (b bytesEncoder) Encode(dst []byte) {
57 func (s stringEncoder) Encode(dst []byte) {
73 func (m multiEncoder) Encode(dst []byte) {
76 e.Encode(dst[off:])
93 func (t *taggedEncoder) Encode(dst []byte) {
94 t.tag.Encode(dst)
95 t.body.Encode(dst[t.tag.Len():]
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/base32/
base32.go 24 encode string
41 e.encode = encoder
78 for i := 0; i < len(enc.encode); i++ {
79 if rune(enc.encode[i]) == padding {
92 // Encode encodes src using the encoding enc, writing
96 // so Encode is not appropriate for use on individual blocks
98 func (enc *Encoding) Encode(dst, src []byte) {
132 // Encode 5-bit blocks using the base32 alphabet
136 dst[0] = enc.encode[b[0]]
137 dst[1] = enc.encode[b[1]
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/base64/
base64.go 24 encode [64]byte
55 copy(e.encode[:], encoder)
76 for i := 0; i < len(enc.encode); i++ {
77 if rune(enc.encode[i]) == padding {
116 // Encode encodes src using the encoding enc, writing
120 // so Encode is not appropriate for use on individual blocks
122 func (enc *Encoding) Encode(dst, src []byte) {
133 dst[di+0] = enc.encode[val>>18&0x3F]
134 dst[di+1] = enc.encode[val>>12&0x3F]
135 dst[di+2] = enc.encode[val>>6&0x3F
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/json/
stream.go 190 // Encode writes the JSON encoding of v to the stream,
195 func (enc *Encoder) Encode(v interface{}) error {
  /prebuilts/go/darwin-x86/src/mime/
encodedword.go 33 // Encode returns the encoded-word form of s. If s is ASCII without special
36 func (e WordEncoder) Encode(charset, s string) string {
  /prebuilts/go/linux-x86/src/encoding/asn1/
marshal.go 25 // Encode encodes this element by writing Len() bytes to dst.
26 Encode(dst []byte)
35 func (c byteEncoder) Encode(dst []byte) {
45 func (b bytesEncoder) Encode(dst []byte) {
57 func (s stringEncoder) Encode(dst []byte) {
73 func (m multiEncoder) Encode(dst []byte) {
76 e.Encode(dst[off:])
93 func (t *taggedEncoder) Encode(dst []byte) {
94 t.tag.Encode(dst)
95 t.body.Encode(dst[t.tag.Len():]
    [all...]
  /prebuilts/go/linux-x86/src/encoding/base32/
base32.go 24 encode string
41 e.encode = encoder
78 for i := 0; i < len(enc.encode); i++ {
79 if rune(enc.encode[i]) == padding {
92 // Encode encodes src using the encoding enc, writing
96 // so Encode is not appropriate for use on individual blocks
98 func (enc *Encoding) Encode(dst, src []byte) {
132 // Encode 5-bit blocks using the base32 alphabet
136 dst[0] = enc.encode[b[0]]
137 dst[1] = enc.encode[b[1]
    [all...]
  /prebuilts/go/linux-x86/src/encoding/base64/
base64.go 24 encode [64]byte
55 copy(e.encode[:], encoder)
76 for i := 0; i < len(enc.encode); i++ {
77 if rune(enc.encode[i]) == padding {
116 // Encode encodes src using the encoding enc, writing
120 // so Encode is not appropriate for use on individual blocks
122 func (enc *Encoding) Encode(dst, src []byte) {
133 dst[di+0] = enc.encode[val>>18&0x3F]
134 dst[di+1] = enc.encode[val>>12&0x3F]
135 dst[di+2] = enc.encode[val>>6&0x3F
    [all...]
  /prebuilts/go/linux-x86/src/encoding/json/
stream.go 190 // Encode writes the JSON encoding of v to the stream,
195 func (enc *Encoder) Encode(v interface{}) error {
  /prebuilts/go/linux-x86/src/mime/
encodedword.go 33 // Encode returns the encoded-word form of s. If s is ASCII without special
36 func (e WordEncoder) Encode(charset, s string) string {
  /system/nvram/messages/include/nvram/messages/
proto.hpp 21 // to encode and decode.
22 // * Encoding works by going through the declared fields, and encode the
56 // if (!nvram::proto::Encode(employee, &stream)) {
72 // needs to encode or decode messages. Rather, this header should only be
74 // |nvram::proto::Encode()| and |nvram::proto::Decode()| templates to obtain
76 // in decode and encode logic getting compiled in only one translation unit,
107 // * |static bool Encode(const Type& object, ProtoWriter* writer)| writes the
119 // then you are attempting to encode or decode a struct that contains a field
131 // noinline to prevent the compiler from inlining |Codec::Encode| for every
135 return Codec::Encode(value, writer)
    [all...]
  /external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java 78 public void Encode(SevenZip.Compression.RangeCoder.Encoder rangeEncoder, byte symbol) throws IOException
84 rangeEncoder.Encode(m_Encoders, context, bit);
103 rangeEncoder.Encode(m_Encoders, state, bit);
196 public void Encode(SevenZip.Compression.RangeCoder.Encoder rangeEncoder, int symbol, int posState) throws IOException
200 rangeEncoder.Encode(_choice, 0, 0);
201 _lowCoder[posState].Encode(rangeEncoder, symbol);
206 rangeEncoder.Encode(_choice, 0, 1);
209 rangeEncoder.Encode(_choice, 1, 0);
210 _midCoder[posState].Encode(rangeEncoder, symbol);
214 rangeEncoder.Encode(_choice, 1, 1);
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/
LzmaCompress.c 60 " -e: encode file\n"
96 static SRes Encode(ISeqOutStream *outStream, ISeqInStream *inStream, UInt64 fileSize)
344 res = Encode(&outStream.s, &inStream.s, fileSize);
  /external/dng_sdk/source/
dng_fingerprint.cpp 331 Encode (bits, count, 8);
347 Encode (result.data, state, 16);
364 void dng_md5_printer::Encode (uint8 *output,
  /external/libjpeg-turbo/md5/
md5.c 46 #define Encode memcpy
65 Encode (unsigned char *output, unsigned int *input, unsigned int len)
203 Encode (bits, context->count, 8);
228 Encode (digest, context->state, 16);
  /external/lzma/C/Util/Lzma/
LzmaUtil.c 25 " e: encode file\n"
130 static SRes Encode(ISeqOutStream *outStream, ISeqInStream *inStream, UInt64 fileSize, char *rs)
218 res = Encode(&outStream.s, &inStream.s, fileSize, rs);
  /external/pdfium/fxbarcode/oned/
BC_OneDimWriter.cpp 102 uint8_t* CBC_OneDimWriter::Encode(const ByteString& contents,
  /external/skia/src/images/
SkPngEncoder.cpp 33 SkDebugf("libpng encode error: %s\n", msg);
423 bool SkPngEncoder::Encode(SkWStream* dst, const SkPixmap& src, const Options& options) {
  /external/skqp/src/images/
SkPngEncoder.cpp 33 SkDebugf("libpng encode error: %s\n", msg);
423 bool SkPngEncoder::Encode(SkWStream* dst, const SkPixmap& src, const Options& options) {
  /external/syslinux/com32/libutil/
md5.c 35 #define Encode memcpy
140 Encode(bits, context->count, 8);
162 Encode(digest, context->state, 16);
  /external/tensorflow/tensorflow/core/framework/
dataset.cc 31 // `DatasetBase` object, so the `Encode()` and `Decode()` methods are not
59 void Encode(VariantTensorData* data) const {
60 LOG(ERROR) << "The Encode() method is not implemented for "
variant_op_copy_test.cc 62 void Encode(VariantTensorData* data) const { data->tensors_ = {stored}; }
172 from.Encode(&data);
206 from.Encode(&data);
249 from.Encode(&data);

Completed in 1270 milliseconds

1 2 34 5 6