HomeSort by relevance Sort by last modified time
    Searched refs:Encode (Results 176 - 200 of 355) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/brotli/go/cbrotli/
writer.go 13 #include <brotli/encode.h>
70 errEncode = errors.New("cbrotli: encode error")
150 // Encode returns content encoded with Brotli.
151 func Encode(content []byte, options WriterOptions) ([]byte, error) {
  /external/dng_sdk/source/
dng_fingerprint.h 189 static void Encode (uint8 *output,
  /external/llvm/unittests/MC/
DwarfLineTables.cpp 56 MCDwarfLineAddr::Encode(Ctxt, Params, LineDelta, AddrDelta, EncodingOS);
  /external/pdfium/fxbarcode/datamatrix/
BC_EdifactEncoder.cpp 128 void CBC_EdifactEncoder::Encode(CBC_EncoderContext& context, int32_t& e) {
  /external/python/cpython3/Lib/email/
quoprimime.py 8 to encode US ASCII-like 8-bit data called `quoted-printable'. It is used to
9 safely encode text that is in a character set similar to the 7-bit US ASCII
16 This module provides an interface to encode and decode both headers and bodies
60 for c in b'-!*+/' + ascii_letters.encode('ascii') + digits.encode('ascii'):
128 """Encode a single header line with quoted-printable (like) encoding.
153 """Encode with quoted-printable, wrapping at maxlinelen characters.
238 # BAW: see comment in encode() above. Again, we're building up the
  /external/skia/gm/
encode-alpha-jpeg.cpp 28 SkJpegEncoder::Encode(&dst, src, options);
38 return SkString("encode-alpha-jpeg");
60 // Encode 8888 premul.
66 // Encode 8888 unpremul
74 // Encode F16 premul
83 // Encode F16 unpremul
  /external/skia/src/images/
SkWebpEncoder.cpp 40 #include "webp/encode.h"
106 bool SkWebpEncoder::Encode(SkWStream* stream, const SkPixmap& pixmap, const Options& opts) {
156 // Otherwise, we will first encode to |tmp| and use a mux to add the ICC chunk. libwebp
  /external/skia/src/utils/
SkBase64.cpp 111 size_t SkBase64::Encode(const void* srcPtr, size_t length, void* dstPtr, const char* encodeMap) {
112 const char* encode;
114 encode = default_encode;
116 encode = encodeMap;
131 *dst++ = encode[a];
132 *dst++ = encode[b];
133 *dst++ = encode[c];
134 *dst++ = encode[d];
146 *dst++ = encode[a >> 2];
147 *dst++ = encode[(k1 | a << 4) & 0x3F]
    [all...]
  /external/skqp/gm/
encode-alpha-jpeg.cpp 28 SkJpegEncoder::Encode(&dst, src, options);
38 return SkString("encode-alpha-jpeg");
58 // Encode 8888 premul.
64 // Encode 8888 unpremul
73 // Encode F16 premul
82 // Encode F16 unpremul
  /external/skqp/src/images/
SkWebpEncoder.cpp 40 #include "webp/encode.h"
106 bool SkWebpEncoder::Encode(SkWStream* stream, const SkPixmap& pixmap, const Options& opts) {
156 // Otherwise, we will first encode to |tmp| and use a mux to add the ICC chunk. libwebp
  /external/skqp/src/utils/
SkBase64.cpp 111 size_t SkBase64::Encode(const void* srcPtr, size_t length, void* dstPtr, const char* encodeMap) {
112 const char* encode;
114 encode = default_encode;
116 encode = encodeMap;
131 *dst++ = encode[a];
132 *dst++ = encode[b];
133 *dst++ = encode[c];
134 *dst++ = encode[d];
146 *dst++ = encode[a >> 2];
147 *dst++ = encode[(k1 | a << 4) & 0x3F]
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCDwarf.h 218 /// Utility function to encode a Dwarf pair of LineDelta and AddrDeltas.
219 static void Encode(int64_t LineDelta, uint64_t AddrDelta, raw_ostream &OS);
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/MC/
DwarfLineTables.cpp 59 MCDwarfLineAddr::Encode(getContext(), Params, LineDelta, AddrDelta,
  /external/tensorflow/tensorflow/compiler/tf2xla/
cpu_function_runtime_test.cc 153 BufferInfo round_trip(buffer_info.Encode());
  /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/core/kernels/data/
optional_ops.h 65 void Encode(VariantTensorData* data) const {
  /external/webrtc/talk/media/webrtc/
fakewebrtcvideoengine.h 158 virtual int32_t Encode(const webrtc::VideoFrame& inputImage,
  /external/webrtc/webrtc/modules/audio_coding/acm2/
audio_coding_module_impl.h 216 int Encode(const InputData& input_data)
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/
audio_encoder_isac_t_impl.h 130 int r = T::Encode(isac_state_, audio.data(), encoded);
131 RTC_CHECK_GE(r, 0) << "Encode failed (error code "
134 // T::Encode doesn't allow us to tell it the size of the output
  /external/webrtc/webrtc/modules/utility/source/
file_recorder_impl.cc 188 // Encode the audio data before writing to file. Don't encode if the codec
197 if (_audioEncoder.Encode(*ptrAudioFrame, _audioBuffer,
202 << " not supported or failed to encode stream.";
  /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/golang-protobuf/proto/
deprecated.go 37 type Stats struct{ Emalloc, Dmalloc, Encode, Decode, Chit, Cmiss, Size uint64 }
  /external/lzma/CS/7zip/Compress/RangeCoder/
RangeCoderBit.cs 25 public void Encode(Encoder encoder, uint symbol)
  /external/pcre/dist2/
perltest.sh 7 # The Perl code has to have "use utf8" and "require Encode" at the start when
32 prefix="use utf8; require Encode;"
366 $xx = Encode::decode_utf8($xx) if $utf8;
  /external/syzkaller/pkg/ifuzz/
ifuzz_test.go 51 text0 := insn.Encode(cfg, r)

Completed in 1356 milliseconds

1 2 3 4 5 6 78 91011>>