HomeSort by relevance Sort by last modified time
    Searched refs:Encode (Results 151 - 175 of 283) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/remoting/codec/
audio_encoder_opus_unittest.cc 141 encoder_->Encode(source_packet.Pass());
  /external/chromium_org/remoting/host/
video_frame_recorder_host_extension.cc 141 // Encode the frame into a raw ARGB VideoPacket.
143 verbatim_encoder_.Encode(*frame));
159 // JSON-encode the reply into a string.
  /external/chromium_org/sdch/open-vcdiff/src/
vcdecoder_test.cc 81 VarintBE<int32_t>::Encode(static_cast<int32_t>(strlen(s)), varint_buf);
vcdiffengine.cc 108 // Create an ADD instruction to encode all target bytes
119 // this function creates an ADD instruction to encode all target bytes
140 VCD_DFATAL << "Internal error in VCDiffEngine::Encode: "
154 VCD_DFATAL << "Internal error: VCDiffEngine::Encode() "
234 void VCDiffEngine::Encode(const char* target_data,
  /external/chromium_org/third_party/leveldatabase/src/db/
version_set_test.cc 38 return FindFile(cmp, files_, target.Encode());
  /external/chromium_org/third_party/skia/src/utils/
SkBase64.cpp 112 size_t SkBase64::Encode(const void* srcPtr, size_t length, void* dstPtr, const char* encodeMap) {
113 const char* encode;
115 encode = default_encode;
117 encode = encodeMap;
132 *dst++ = encode[a];
133 *dst++ = encode[b];
134 *dst++ = encode[c];
135 *dst++ = encode[d];
147 *dst++ = encode[a >> 2];
148 *dst++ = encode[(k1 | a << 4) & 0x3F]
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
audio_coding_module_unittest_oldapi.cc 179 virtual void Encode() {
362 Encode();
454 Encode();
499 void Encode() { ASSERT_GE(acm_->Process(), 0); }
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
normal_async_test.h 101 virtual bool Encode();
  /external/chromium_org/tools/relocation_packer/src/
run_length_encoder.cc 99 // Encode relative relocations into a run-length encoded (packed)
101 void RelocationRunLengthCodec::Encode(const std::vector<ELF::Rel>& relocations,
  /external/chromium_org/ui/snapshot/
snapshot_win.cc 92 // encode it into a useful format for posting to the bug report
94 gfx::PNGCodec::Encode(bit_ptr, gfx::PNGCodec::FORMAT_BGRA,
  /external/chromium_org/v8/src/
unicode.h 102 // 4 bytes and the 3 bytes that were used to encode the lead surrogate
129 static inline unsigned Encode(char* out,
uri.js 184 function Encode(uri, unescape) {
352 return Encode(string, unescapePredicate);
373 return Encode(string, unescapePredicate);
  /external/lzma/CPP/7zip/Compress/
RangeCoder.h 47 void Encode(UInt32 start, UInt32 size, UInt32 total)
  /external/pcre/dist/
perltest.pl 7 # also used this method to supply "require Encode" for the UTF-8 tests, so that
8 # the main test will still run where Encode is not installed.
11 #require Encode;
233 $xx = Encode::decode_utf8($xx) if $utf8;
  /external/skia/src/utils/
SkBase64.cpp 112 size_t SkBase64::Encode(const void* srcPtr, size_t length, void* dstPtr, const char* encodeMap) {
113 const char* encode;
115 encode = default_encode;
117 encode = encodeMap;
132 *dst++ = encode[a];
133 *dst++ = encode[b];
134 *dst++ = encode[c];
135 *dst++ = encode[d];
147 *dst++ = encode[a >> 2];
148 *dst++ = encode[(k1 | a << 4) & 0x3F]
    [all...]
  /bootable/recovery/updater/
Android.mk 62 # Encode the value of TARGET_RECOVERY_UPDATER_LIBS into the filename of the dependency.
  /external/chromium_org/third_party/brotli/src/woff2/
transform.cc 84 bool Encode(int glyph_id, const Glyph& glyph) {
243 encoder.Encode(i, glyph);
  /external/lzma/CS/7zip/Compress/RangeCoder/
RangeCoderBit.cs 25 public void Encode(Encoder encoder, uint symbol)
  /external/chromium_org/ui/gfx/codec/
png_codec_unittest.cc 125 DLOG(ERROR) << "libpng encode error: " << error_msg;
132 DLOG(ERROR) << "libpng encode warning: " << warning_msg;
136 // PNGCodec::Encode supports all of the required values.
147 // PNG encoder used for testing. Required because PNGCodec::Encode doesn't do
282 // encode
284 ASSERT_TRUE(PNGCodec::Encode(&original[0], PNGCodec::FORMAT_RGB,
311 // encode
313 ASSERT_TRUE(PNGCodec::Encode(&original[0], PNGCodec::FORMAT_RGBA,
340 // Encode.
342 ASSERT_TRUE(PNGCodec::Encode(&original[0], PNGCodec::FORMAT_BGRA
    [all...]
  /external/chromium_org/components/bookmarks/browser/
bookmark_codec.cc 54 base::Value* BookmarkCodec::Encode(BookmarkModel* model) {
55 return Encode(model->bookmark_bar_node(),
62 base::Value* BookmarkCodec::Encode(
bookmark_codec_unittest.cc 149 scoped_ptr<base::Value> value(encoder.Encode(model));
244 // Encode two identical models and make sure the check-sums are same as long
326 scoped_ptr<base::Value> model_value(encoder.Encode(model_to_encode.get()));
347 scoped_ptr<base::Value> model_value2(encoder2.Encode(decoded_model.get()));
398 // Add meta info and encode.
422 // Add sync transaction version and encode.
  /external/chromium_org/courgette/
assembly_program.cc 389 EncodedProgram* AssemblyProgram::Encode() const {
572 Status Encode(AssemblyProgram* program, EncodedProgram** output) {
574 EncodedProgram *encoded = program->Encode();
  /external/chromium_org/tools/imagediff/
image_diff_png.cc 601 bool Encode(const unsigned char* input, ColorFormat format,
620 // Encode an RGBA pixel array into a PNG.
626 return Encode(input, FORMAT_RGBA,
631 // Encode an BGRA pixel array into a PNG.
638 return Encode(input, FORMAT_BGRA,
  /external/chromium_org/v8/src/compiler/ia32/
instruction-selector-ia32.cc 76 Emit(opcode | AddressingModeField::encode(kMode_MI),
79 Emit(opcode | AddressingModeField::encode(kMode_MRI),
84 Emit(opcode | AddressingModeField::encode(kMode_MRI),
87 Emit(opcode | AddressingModeField::encode(kMode_MR1I),
147 Emit(opcode | AddressingModeField::encode(kMode_MI), NULL,
150 Emit(opcode | AddressingModeField::encode(kMode_MRI), NULL,
154 Emit(opcode | AddressingModeField::encode(kMode_MRI), NULL,
157 Emit(opcode | AddressingModeField::encode(kMode_MR1I), NULL,
201 Instruction* instr = selector->Emit(cont->Encode(opcode), output_count,
446 selector->Emit(cont->Encode(opcode), NULL, left, right
    [all...]
  /external/openfst/src/include/fst/
encode.h 0 // encode.h
19 // Class to encode and decoder an fst.
45 enum EncodeType { ENCODE = 1, DECODE = 2 };
47 // Identifies stream data as an encode table (and its endianity)
54 // stores both the Tuple of encode labels and weights to a unique
84 // Hash function for EncodeTabe Tuples. Based on the encode flags
130 // Given an arc encode either input/ouptut labels or input/costs or both
131 Label Encode(const A &arc) {
158 // Given an encode arc Label decode back to input/output labels and costs
249 LOG(ERROR) << "EncodeTable::Read: Bad encode table header: " << source
    [all...]

Completed in 2171 milliseconds

1 2 3 4 5 67 8 91011>>