Searched defs:Encode (Results 51 - 75 of 84) sorted by relevance

1234

/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Dgeneric_encoder.cc99 VCMGenericEncoder::Encode(const I420VideoFrame& inputFrame, function in class:webrtc::VCMGenericEncoder
105 return _encoder.Encode(inputFrame, codecSpecificInfo, &video_frame_types);
161 return _encoder.Encode(image, NULL, &video_frame_types);
/external/chromium_org/third_party/webrtc/test/
H A Dfake_encoder.cc47 int32_t FakeEncoder::Encode( function in class:webrtc::test::FakeEncoder
/external/lzma/C/Util/Lzma/
H A DLzmaUtil.c134 static SRes Encode(ISeqOutStream *outStream, ISeqInStream *inStream, UInt64 fileSize, char *rs) function
222 res = Encode(&outStream.s, &inStream.s, fileSize, rs);
/external/lzma/CPP/7zip/Compress/
H A DRangeCoder.h47 void Encode(UInt32 start, UInt32 size, UInt32 total) function in class:NCompress::NRangeCoder::CEncoder
/external/webp/src/enc/
H A Dpicture.c231 static size_t Encode(const uint8_t* rgba, int width, int height, int stride, function
266 return Encode(in, w, h, bps, IMPORTER, q, 0, out); \
279 return Encode(in, w, h, bps, IMPORTER, LOSSLESS_DEFAULT_QUALITY, 1, out); \
/external/chromium_org/google_apis/gaia/
H A Doauth_request_signer.cc82 OAuthRequestSigner::Encode(
84 OAuthRequestSigner::Encode(
101 result += OAuthRequestSigner::Encode(cursor->first);
103 result += OAuthRequestSigner::Encode(cursor->second);
337 std::string OAuthRequestSigner::Encode(const std::string& text) { function in class:OAuthRequestSigner
453 OAuthRequestSigner::Encode(param->first).c_str(),
454 OAuthRequestSigner::Encode(param->second).c_str());
/external/chromium_org/remoting/codec/
H A Dvideo_encoder_vpx.cc242 scoped_ptr<VideoPacket> VideoEncoderVpx::Encode( function in class:remoting::VideoEncoderVpx
/external/chromium_org/tools/grit/grit/
H A Dutil.py33 def Encode(message, encoding): function
/external/chromium_org/ui/gfx/codec/
H A Djpeg_codec.cc174 // scope. It simplifies the error handling in Encode (and even applies to the
199 bool JPEGCodec::Encode(const unsigned char* input, ColorFormat format, function in class:gfx::JPEGCodec
467 // See note in JPEGCodec::Encode() for why we need to destroy the cinfo
500 // Same as JPEGCodec::Encode(), libjpeg-turbo supports all input formats
548 // without conversions same as JPEGCodec::Encode().
H A Dpng_codec.cc757 bool PNGCodec::Encode(const unsigned char* input, function in class:gfx::PNGCodec
/external/chromium_org/v8/src/compiler/
H A Dinstruction-selector-impl.h313 InstructionCode Encode(InstructionCode opcode) { function in class:v8::internal::compiler::FINAL
/external/lzma/CPP/7zip/Archive/7z/
H A D7zEncode.cpp135 HRESULT CEncoder::Encode( function in class:NArchive::N7z::CEncoder
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dencode.h109 Label Encode(const A &arc) { function in class:fst::EncodeTable
193 // The Encode mapper stores the encoding in a local hash table (EncodeTable)
201 // Encode -> Determinize -> Decode
238 Label label = table_->Encode(arc);
321 void Encode(MutableFst<A> *fst, EncodeMapper<A>* mapper) { function in namespace:fst
/external/chromium_org/components/bookmarks/browser/
H A Dbookmark_codec.cc54 base::Value* BookmarkCodec::Encode(BookmarkModel* model) { function in class:bookmarks::BookmarkCodec
55 return Encode(model->bookmark_bar_node(),
62 base::Value* BookmarkCodec::Encode( function in class:bookmarks::BookmarkCodec
/external/chromium_org/content/common/gpu/media/
H A Dv4l2_video_encode_accelerator.cc188 void V4L2VideoEncodeAccelerator::Encode( function in class:content::V4L2VideoEncodeAccelerator
191 DVLOG(3) << "Encode(): force_keyframe=" << force_keyframe;
H A Dvaapi_video_encode_accelerator.cc580 void VaapiVideoEncodeAccelerator::Encode( function in class:content::VaapiVideoEncodeAccelerator
/external/chromium_org/content/renderer/media/
H A Drtc_video_encoder.cc159 // webrtc::VideoEncoder expects InitEncode() and Encode() to be synchronous.
184 // Input buffers ready to be filled with input from Encode(). As a LIFO since
258 // unblock Encode(). If there are no free input buffers but there is a free
260 // Encode().
262 // The caller of Encode() holds a webrtc lock. The deadlock happens when:
263 // (1) Encode() is waiting for the frame to be encoded in EncodeOneFrame().
268 // for the same webrtc lock held by the caller of Encode().
271 // buffers. Returning an error in Encode() is not fatal and WebRTC will just
273 // Besides, webrtc will drop a frame if Encode() blocks too long.
458 // EncodeOneFrame() may re-enter EncodeFrameFinished() if VEA::Encode() fail
597 int32_t RTCVideoEncoder::Encode( function in class:content::RTCVideoEncoder
[all...]
/external/chromium_org/courgette/
H A Dassembly_program.cc389 EncodedProgram* AssemblyProgram::Encode() const { function in class:courgette::AssemblyProgram
572 Status Encode(AssemblyProgram* program, EncodedProgram** output) { function in namespace:courgette
574 EncodedProgram *encoded = program->Encode();
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/vp8/
H A Dvp8_impl.cc322 int VP8EncoderImpl::Encode(const I420VideoFrame& input_frame, function in class:webrtc::VP8EncoderImpl
325 TRACE_EVENT1("webrtc", "VP8::Encode", "timestamp", input_frame.timestamp());
/external/chromium_org/tools/imagediff/
H A Dimage_diff_png.cc601 bool Encode(const unsigned char* input, ColorFormat format, function in namespace:image_diff_png
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/test/cctest/
H A Dtest-serialize.cc56 static uint32_t Encode(const ExternalReferenceEncoder& encoder, T id) { function
57 return encoder.Encode(AddressOf(id));
72 Encode(encoder, Builtins::kArrayCode));
74 Encode(encoder, Runtime::kAbort));
78 encoder.Encode(stack_limit_address.address()));
82 encoder.Encode(real_stack_limit_address.address()));
84 encoder.Encode(ExternalReference::debug_break(isolate).address()));
87 encoder.Encode(ExternalReference::new_space_start(isolate).address()));
90 encoder.Encode(ExternalReference::roots_array_start(isolate).address()));
92 encoder.Encode(ExternalReferenc
[all...]
/external/openfst/src/include/fst/
H A Dencode.h131 Label Encode(const A &arc) { function in class:fst::EncodeTable
292 // The Encode mapper stores the encoding in a local hash table (EncodeTable)
300 // Encode -> Determinize -> Decode
427 Label label = table_->Encode(arc);
466 void Encode(MutableFst<A> *fst, EncodeMapper<A>* mapper) { function in namespace:fst
/external/chromium_org/sdch/open-vcdiff/src/
H A Dvcdiffengine_test.cc322 engine_.Encode("", 0, target_matching, &diff_output_string_, &coder);
331 engine_.Encode(text,
338 void Encode(bool interleaved, bool target_matching) { function in class:open_vcdiff::__anon10660::VCDiffEngineTest
416 Encode(/* interleaved = */ false, /* target matching = */ false);
447 Encode(/* interleaved = */ true, /* target matching = */ false);
482 Encode(/* interleaved = */ false, /* target matching = */ true);
513 Encode(/* interleaved = */ true, /* target matching = */ true);
619 engine_.Encode(text,
626 void Encode(bool interleaved, bool target_matching) { function in class:open_vcdiff::__anon10660::WeaselsToMoonpiesTest
876 Encode(/* interleave
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
H A Daudio_coding_module_unittest_oldapi.cc179 virtual void Encode() { function in class:webrtc::AudioCodingModuleTestOldApi
362 Encode();
454 Encode();
499 void Encode() { ASSERT_GE(acm_->Process(), 0); } function in class:webrtc::AcmIsacMtTestOldApi
/external/pdfium/core/src/fxcodec/codec/
H A Dfx_codec_fax.cpp899 void Encode(FX_LPBYTE& dest_buf, FX_DWORD& dest_size);
932 void CCodec_FaxEncoder::Encode(FX_LPBYTE& dest_buf, FX_DWORD& dest_size) function in class:CCodec_FaxEncoder
953 FX_BOOL CCodec_FaxModule::Encode(FX_LPCBYTE src_buf, int width, int height, int pitch, FX_LPBYTE& dest_buf, FX_DWORD& dest_size) function in class:CCodec_FaxModule
956 encoder.Encode(dest_buf, dest_size);

Completed in 785 milliseconds

1234