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

12 3 4 5 6

  /external/pdfium/fxbarcode/qrcode/
BC_QRCodeWriter.cpp 58 uint8_t* CBC_QRCodeWriter::Encode(const WideString& contents,
80 if (!CBC_QRCoderEncoder::Encode(contents, ec, &qr))
  /external/v8/src/snapshot/
serializer-common.cc 34 uint32_t ExternalReferenceEncoder::Encode(Address address) const {
  /external/v8/src/
unicode-inl.h 71 // Encode encodes the UTF-16 code units c and previous into the given str
75 unsigned Utf8::Encode(char* str,
90 return Encode(str - kUnmatchedSize,
  /external/webrtc/webrtc/modules/utility/source/
coder.cc 77 int32_t AudioCoder::Encode(const AudioFrame& audio,
  /external/webrtc/webrtc/test/
configurable_frame_size_encoder.cc 41 int32_t ConfigurableFrameSizeEncoder::Encode(
  /external/webrtc/webrtc/video/
video_encoder.cc 94 // encoder after a failed Encode call.
138 int32_t VideoEncoderSoftwareFallbackWrapper::Encode(
143 return fallback_encoder_->Encode(frame, codec_specific_info, frame_types);
144 int32_t ret = encoder_->Encode(frame, codec_specific_info, frame_types);
148 return fallback_encoder_->Encode(frame, codec_specific_info, frame_types);
  /prebuilts/go/darwin-x86/src/encoding/ascii85/
ascii85.go 18 // Encode encodes src into at most MaxEncodedLen(len(src))
22 // for the last fragment, so Encode is not appropriate for use on
26 // Encode does not add these.
27 func Encode(dst, src []byte) int {
120 nout := Encode(e.out[0:], e.buf[0:])
135 nout := Encode(e.out[0:], p[0:nn])
158 nout := Encode(e.out[0:], e.buf[0:e.nbuf])
  /prebuilts/go/darwin-x86/src/encoding/gob/
encoder.go 26 // Before we encode a message, we reserve space at the head of the
27 // buffer in which to encode its length. This means we can use the
74 // Encode the length.
105 enc.encode(state.b, reflect.ValueOf(info.wire), wireTypeUserInfo)
171 // Encode transmits the data item represented by the empty interface value,
174 func (enc *Encoder) Encode(e interface{}) error {
219 return errors.New("gob: cannot encode nil value")
222 panic("gob: cannot encode nil pointer of type " + value.Type().String())
249 // Encode the object.
250 enc.encode(state.b, value, ut
    [all...]
  /prebuilts/go/darwin-x86/src/unicode/utf16/
utf16.go 55 // Encode returns the UTF-16 encoding of the Unicode code point sequence s.
56 func Encode(s []rune) []uint16 {
  /prebuilts/go/linux-x86/src/encoding/ascii85/
ascii85.go 18 // Encode encodes src into at most MaxEncodedLen(len(src))
22 // for the last fragment, so Encode is not appropriate for use on
26 // Encode does not add these.
27 func Encode(dst, src []byte) int {
120 nout := Encode(e.out[0:], e.buf[0:])
135 nout := Encode(e.out[0:], p[0:nn])
158 nout := Encode(e.out[0:], e.buf[0:e.nbuf])
  /prebuilts/go/linux-x86/src/encoding/gob/
encoder.go 26 // Before we encode a message, we reserve space at the head of the
27 // buffer in which to encode its length. This means we can use the
74 // Encode the length.
105 enc.encode(state.b, reflect.ValueOf(info.wire), wireTypeUserInfo)
171 // Encode transmits the data item represented by the empty interface value,
174 func (enc *Encoder) Encode(e interface{}) error {
219 return errors.New("gob: cannot encode nil value")
222 panic("gob: cannot encode nil pointer of type " + value.Type().String())
249 // Encode the object.
250 enc.encode(state.b, value, ut
    [all...]
  /prebuilts/go/linux-x86/src/unicode/utf16/
utf16.go 55 // Encode returns the UTF-16 encoding of the Unicode code point sequence s.
56 func Encode(s []rune) []uint16 {
  /system/nvram/messages/
message_codec.cpp 29 bool MessageEncoderBase::Encode(const void* object,
34 return encoder.Encode(writer);
43 bool MessageEncoderBase::Encode(ProtoWriter* writer) {
54 // * Reserve bytes in |writer| for the encoded size. Once |Encode()|
  /tools/dexter/slicer/
debuginfo_encoder.cc 40 // encode the annotation itself
121 void DebugInfoEncoder::Encode(ir::EncodedMethod* ir_method, std::shared_ptr<ir::DexFile> dex_ir) {
  /external/lzma/CS/7zip/Compress/RangeCoder/
RangeCoderBit.cs 25 public void Encode(Encoder encoder, uint symbol)
  /external/pdfium/fxbarcode/
cbc_codabar.cpp 50 bool CBC_Codabar::Encode(const WideStringView& contents) {
62 pWriter->Encode(byteString, format, outWidth, outHeight));
  /external/pdfium/fxbarcode/datamatrix/
BC_DataMatrixWriter.cpp 111 uint8_t* CBC_DataMatrixWriter::Encode(const WideString& contents,
BC_C40Encoder.cpp 52 void CBC_C40Encoder::Encode(CBC_EncoderContext& context, int32_t& e) {
  /external/skia/src/images/
SkWebpEncoder.cpp 40 #include "webp/encode.h"
115 bool SkWebpEncoder::Encode(SkWStream* stream, const SkPixmap& pixmap, const Options& opts) {
167 // Otherwise, we will first encode to |tmp| and use a mux to add the ICC chunk. libwebp
  /external/skqp/src/images/
SkWebpEncoder.cpp 40 #include "webp/encode.h"
115 bool SkWebpEncoder::Encode(SkWStream* stream, const SkPixmap& pixmap, const Options& opts) {
167 // Otherwise, we will first encode to |tmp| and use a mux to add the ICC chunk. libwebp
  /external/tensorflow/tensorflow/contrib/coder/kernels/
range_coder.cc 37 void RangeEncoder::Encode(int32 lower, int32 upper, string* sink) {
47 // are quantized to up to 16 bits, the smallest interval size the encode may
91 // Each Encode() has up to two places where the interval changes:
103 // Recall that at the beginning of each Encode(), the encoder requires
118 // out to `output` string, since any further Encode() only narrows down the
149 // After Encode() refines the interval, there are three possibilities:
263 // Finalize the encode by writing out any number in the interval
  /external/tensorflow/tensorflow/contrib/ffmpeg/
encode_audio_op.cc 31 void Encode(OpKernelContext* context, const Tensor& contents,
115 Encode(context, contents, file_format, bits_per_second, samples_per_second);
188 Encode(context, contents, file_format_, bits_per_second_,
  /external/tensorflow/tensorflow/core/framework/
variant_test.cc 145 void Encode(VariantTensorData* data) const { data->tensors_ = vec; }
186 x.Encode(&serialized);
257 x.Encode(&serialized);
274 x.Encode(&serialized);
  /prebuilts/go/darwin-x86/src/encoding/pem/
pem.go 255 // Encode writes the PEM encoding of b to out.
256 func Encode(out io.Writer, b *Block) error {
260 return errors.New("pem: cannot encode a header key that contains a colon")
325 // report details about this error case, use Encode instead.
328 if err := Encode(&buf, b); err != nil {
  /prebuilts/go/linux-x86/src/encoding/pem/
pem.go 255 // Encode writes the PEM encoding of b to out.
256 func Encode(out io.Writer, b *Block) error {
260 return errors.New("pem: cannot encode a header key that contains a colon")
325 // report details about this error case, use Encode instead.
328 if err := Encode(&buf, b); err != nil {

Completed in 1317 milliseconds

12 3 4 5 6