/external/pdfium/fxbarcode/datamatrix/ |
BC_EdifactEncoder.cpp | 128 void CBC_EdifactEncoder::Encode(CBC_EncoderContext& context, int32_t& e) {
|
/external/pdfium/fxbarcode/pdf417/ |
BC_PDF417Writer.cpp | 51 uint8_t* CBC_PDF417Writer::Encode(const WideString& contents,
|
/external/pdfium/xfa/fwl/ |
cfx_barcode.cpp | 297 bool CFX_Barcode::Encode(const WideStringView& contents) { 298 return m_pBCEngine && m_pBCEngine->Encode(contents);
|
/external/skia/src/images/ |
SkJpegEncoder.cpp | 177 // slower encode performance. 254 bool SkJpegEncoder::Encode(SkWStream* dst, const SkPixmap& src, const Options& options) {
|
/external/skqp/src/images/ |
SkJpegEncoder.cpp | 177 // slower encode performance. 254 bool SkJpegEncoder::Encode(SkWStream* dst, const SkPixmap& src, const Options& options) {
|
/external/tensorflow/tensorflow/core/framework/ |
variant.h | 69 // void Encode(VariantTensorData* data) const; 72 // Simple POD types can elide the Encode/Decode functions, they are provided by 97 // other classes have to provide Encode/Decode functions to handle 121 // x.Encode(&serialized_f); 140 // x.Encode(&serialized_data_f); 237 void Encode(VariantTensorData* data) const { 239 value_->Encode(data); 252 void Encode(string* buf) const { 254 value_->Encode(buf); 294 virtual void Encode(VariantTensorData* data) const = 0 [all...] |
/external/tensorflow/tensorflow/core/kernels/ |
shape_op_test.cc | 51 void Encode(VariantTensorData* d) const { d->set_metadata(shape_value); }
|
list_kernels.cc | 47 void TensorList::Encode(VariantTensorData* data) const {
|
/external/webrtc/webrtc/base/ |
base64.h | 68 static inline std::string Encode(const std::string& data) {
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
isac_fix_type.h | 53 static inline int Encode(instance_type* inst,
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/ |
isac_float_type.h | 52 static inline int Encode(instance_type* inst,
|
/external/webrtc/webrtc/modules/video_coding/codecs/i420/ |
i420.cc | 74 int I420Encoder::Encode(const VideoFrame& inputImage,
|
/prebuilts/go/darwin-x86/src/encoding/hex/ |
hex.go | 21 // Encode encodes src into EncodedLen(len(src)) 24 // Encode implements hexadecimal encoding. 25 func Encode(dst, src []byte) int { 98 Encode(dst, src) 148 encoded := Encode(e.out[:], p[:chunkSize]) 235 Encode(h.buf[4:], h.buf[:4]) 243 Encode(h.buf[:], data[i:i+1])
|
/prebuilts/go/darwin-x86/src/image/gif/ |
writer.go | 201 return 0, errors.New("gif: cannot encode color table with more than 256 entries") 205 return 0, errors.New("gif: cannot encode color table with nil entries") 247 e.err = errors.New("gif: cannot encode image block with empty palette") 253 e.err = errors.New("gif: image block is too large to encode") 264 e.err = errors.New("gif: cannot encode color table with nil entries") 420 // Encode writes the Image m to w in GIF format. 421 func Encode(w io.Writer, m image.Image, o *Options) error { 425 return errors.New("gif: image is too large to encode") 449 // When calling Encode instead of EncodeAll, the single-frame image is
|
/prebuilts/go/darwin-x86/src/image/png/ |
writer.go | 521 // Encode writes the Image m to w in PNG format. Any Image may be 523 func Encode(w io.Writer, m image.Image) error { 525 return e.Encode(w, m) 528 // Encode writes the Image m to w in PNG format. 529 func (enc *Encoder) Encode(w io.Writer, m image.Image) error {
|
/prebuilts/go/linux-x86/src/encoding/hex/ |
hex.go | 21 // Encode encodes src into EncodedLen(len(src)) 24 // Encode implements hexadecimal encoding. 25 func Encode(dst, src []byte) int { 98 Encode(dst, src) 148 encoded := Encode(e.out[:], p[:chunkSize]) 235 Encode(h.buf[4:], h.buf[:4]) 243 Encode(h.buf[:], data[i:i+1])
|
/prebuilts/go/linux-x86/src/image/gif/ |
writer.go | 201 return 0, errors.New("gif: cannot encode color table with more than 256 entries") 205 return 0, errors.New("gif: cannot encode color table with nil entries") 247 e.err = errors.New("gif: cannot encode image block with empty palette") 253 e.err = errors.New("gif: image block is too large to encode") 264 e.err = errors.New("gif: cannot encode color table with nil entries") 420 // Encode writes the Image m to w in GIF format. 421 func Encode(w io.Writer, m image.Image, o *Options) error { 425 return errors.New("gif: image is too large to encode") 449 // When calling Encode instead of EncodeAll, the single-frame image is
|
/prebuilts/go/linux-x86/src/image/png/ |
writer.go | 521 // Encode writes the Image m to w in PNG format. Any Image may be 523 func Encode(w io.Writer, m image.Image) error { 525 return e.Encode(w, m) 528 // Encode writes the Image m to w in PNG format. 529 func (enc *Encoder) Encode(w io.Writer, m image.Image) error {
|
/bionic/tools/relocation_packer/src/ |
delta_encoder.cc | 34 // Encode relocations into a delta encoded (packed) representation. 36 void RelocationDeltaCodec<ELF>::Encode(const std::vector<ElfRela>& relocations,
|
/external/dng_sdk/source/ |
dng_jpeg_image.cpp | 165 void dng_jpeg_image::Encode (dng_host &host, 172 dng_timer timer ("Encode JPEG Proxy time"); 175 DNG_ASSERT (image.PixelType () == ttByte, "Cannot JPEG encode non-byte image");
|
/external/lzma/CS/7zip/Compress/RangeCoder/ |
RangeCoder.cs | 54 public void Encode(uint start, uint size, uint total)
|
/external/lzma/Java/SevenZip/Compression/RangeCoder/ |
Encoder.java | 102 public void Encode(short []probs, int index, int symbol) throws IOException
|
/external/webrtc/webrtc/modules/audio_coding/codecs/cng/ |
audio_encoder_cng_unittest.cc | 76 void Encode() { 78 encoded_info_ = cng_->Encode( 113 Encode(); 118 Encode(); 141 Encode(); 158 // With this call to Encode(), |mock_vad_| should be called according to the 160 Encode(); 182 Encode(); 227 Encode(); 265 Encode(); [all...] |
/external/webrtc/webrtc/modules/audio_coding/codecs/red/ |
audio_encoder_copy_red_unittest.cc | 61 void Encode() { 63 encoded_info_ = red_->Encode( 87 AudioEncoder::EncodedInfo Encode(uint32_t timestamp, 137 // Checks that the an Encode() call is immediately propagated to the speech 142 // Encode call. 149 Encode(); 157 // Start with one Encode() call that will produce output. 163 Encode(); 173 Encode(); 180 Encode(); [all...] |
/external/webrtc/webrtc/modules/video_coding/ |
generic_encoder.cc | 136 int32_t VCMGenericEncoder::Encode(const VideoFrame& inputFrame, 139 TRACE_EVENT1("webrtc", "VCMGenericEncoder::Encode", "timestamp", 154 int32_t result = encoder_->Encode(inputFrame, codecSpecificInfo, &frameTypes); 164 return encoder_->Encode(inputFrame, codecSpecificInfo, &frameTypes); 207 return encoder_->Encode(image, NULL, &frame_types);
|