HomeSort by relevance Sort by last modified time
    Searched refs:Decode (Results 76 - 100 of 420) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/lzma/CS/7zip/Compress/RangeCoder/
RangeCoderBitTree.cs 120 public uint Decode(RangeCoder.Decoder rangeDecoder)
124 m = (m << 1) + Models[m].Decode(rangeDecoder);
134 uint bit = Models[m].Decode(rangeDecoder);
149 uint bit = Models[startIndex + m].Decode(rangeDecoder);
  /external/lzma/C/
Ppmd7Dec.c 72 p->p.Decode = Range_Decode;
90 rc->Decode(rc, 0, s->Freq);
103 rc->Decode(rc, hiCnt - s->Freq, s->Freq);
114 rc->Decode(rc, hiCnt, p->MinContext->SummFreq - hiCnt);
174 rc->Decode(rc, hiCnt - s->Freq, s->Freq);
183 rc->Decode(rc, hiCnt, freqSum - hiCnt);
  /external/chromium_org/ui/gfx/codec/
png_codec_unittest.cc 148 // interlaced, palette-based, or grayscale images, but PNGCodec::Decode is
149 // actually asked to decode these types of images by Chrome.
289 // decode, it should have the same size as the original
292 ASSERT_TRUE(PNGCodec::Decode(&encoded[0], encoded.size(),
318 // decode, it should have the same size as the original
321 ASSERT_TRUE(PNGCodec::Decode(&encoded[0], encoded.size(),
347 // Decode, it should have the same size as the original.
350 ASSERT_TRUE(PNGCodec::Decode(&encoded[0], encoded.size(),
380 // decode
383 ASSERT_TRUE(PNGCodec::Decode(&encoded[0], encoded.size()
    [all...]
  /external/lzma/Java/SevenZip/Compression/LZMA/
Decoder.java 38 public int Decode(SevenZip.Compression.RangeCoder.Decoder rangeDecoder, int posState) throws IOException
41 return m_LowCoder[posState].Decode(rangeDecoder);
44 symbol += m_MidCoder[posState].Decode(rangeDecoder);
46 symbol += Base.kNumMidLenSymbols + m_HighCoder.Decode(rangeDecoder);
262 len = m_RepLenDecoder.Decode(m_RangeDecoder, posState) + Base.kMatchMinLen;
271 len = Base.kMatchMinLen + m_LenDecoder.Decode(m_RangeDecoder, posState);
273 int posSlot = m_PosSlotDecoder[Base.GetLenToPosState(len)].Decode(m_RangeDecoder);
  /external/chromium_org/content/browser/indexed_db/
indexed_db_leveldb_coding.h 138 static bool Decode(base::StringPiece* slice, KeyPrefix* result);
203 static bool Decode(base::StringPiece* slice, DatabaseFreeListKey* result);
215 static bool Decode(base::StringPiece* slice, DatabaseNameKey* result);
268 static bool Decode(base::StringPiece* slice, ObjectStoreMetaDataKey* result);
294 static bool Decode(base::StringPiece* slice, IndexMetaDataKey* result);
317 static bool Decode(base::StringPiece* slice, ObjectStoreFreeListKey* result);
331 static bool Decode(base::StringPiece* slice, IndexFreeListKey* result);
351 static bool Decode(base::StringPiece* slice, ObjectStoreNamesKey* result);
368 static bool Decode(base::StringPiece* slice, IndexNamesKey* result);
387 static bool Decode(base::StringPiece* slice, ObjectStoreDataKey* result)
    [all...]
indexed_db_leveldb_coding.cc 26 // for metadata. See KeyPrefix::Decode() for details of the prefix coding.
35 // encode, decode, and compare that key type.
882 if (!KeyType::Decode(&slice_a, &key_a)) {
887 if (!KeyType::Decode(&slice_b, &key_b)) {
970 bool ok_a = KeyPrefix::Decode(&slice_a, &prefix_a);
971 bool ok_b = KeyPrefix::Decode(&slice_b, &prefix_b);
    [all...]
  /external/chromium_org/media/filters/
fake_video_decoder_unittest.cc 67 // Callback for VideoDecoder::Decode().
110 void Decode() {
125 decoder_->Decode(
134 Decode();
140 Decode();
306 // Hold all decodes and satisfy one decode at a time.
311 Decode();
decrypting_audio_decoder.h 27 // Decryptor-based AudioDecoder implementation that can decrypt and decode
35 // Decryptor implementations to decode audio into a fixed integer sample
50 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer,
118 // Indicates the situation where new key is added during pending decode
decrypting_video_decoder.h 23 // Decryptor-based VideoDecoder implementation that can decrypt and decode
40 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer,
100 // Indicates the situation where new key is added during pending decode
fake_video_decoder.h 44 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer,
49 // Holds the next init/decode/reset callback from firing.
54 // Satisfies the pending init/decode/reset callback, which must be ready to
60 // Satisfies single decode request.
ffmpeg_audio_decoder.h 43 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer,
52 // decode input buffers, or is decoding an input buffer.
53 // - kDecodeFinished: EOS buffer received, codec flushed and decode finished.
54 // No further Decode() call should be made.
60 // The decoder is successfully initialized and is ready to decode buffers.
ffmpeg_video_decoder.h 44 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer,
vpx_video_decoder.h 40 virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer,
73 // TODO(xhwang): Merge DecodeBuffer() into Decode() and remove this.
  /art/runtime/native/
dalvik_system_VMStack.cc 32 if (soa.Decode<mirror::Object*>(peer) == soa.Self()->GetPeer()) {
109 mirror::Object* bootstrap = soa.Decode<mirror::Object*>(javaBootstrap);
110 mirror::Object* system = soa.Decode<mirror::Object*>(javaSystem);
java_lang_Class.cc 34 mirror::Class* c = soa.Decode<mirror::Class*>(java_class);
64 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(soa.Decode<mirror::ClassLoader*>(javaLoader)));
  /external/chromium_org/tools/relocation_packer/src/
delta_encoder_unittest.cc 108 TEST(Delta, Decode) {
113 codec.Decode(packed, &relocations);
136 codec.Decode(packed, &relocations);
packer.cc 42 // Pad packed to a whole number of words. This padding will decode as
54 // LEB128 decode, after checking and stripping "APR1" prefix.
63 // Run-length decode.
65 codec.Decode(packed_words, relocations);
95 // Pad packed to a whole number of words. This padding will decode as
113 // Signed LEB128 decode, after stripping "APA1" prefix.
119 // Delta decode.
121 codec.Decode(packed_words, relocations);
  /art/runtime/
native_bridge_art_interface.cc 41 mirror::Class* c = soa.Decode<mirror::Class*>(clazz);
65 mirror::Class* c = soa.Decode<mirror::Class*>(clazz);
  /external/chromium_org/ppapi/api/
ppb_video_decoder.idl 25 * - Call Decode() continuously (waiting for each previous call to complete) to
125 * returning PP_OK or by running |callback| before calling Decode() again.
132 * If the call to Decode() eventually results in a picture, the |decode_id|
134 * associate decoded pictures with Decode() calls (e.g. to assign timestamps
141 * used to associate calls to Decode() with decoded pictures returned by
151 * Returns PP_ERROR_INPROGRESS if there is another Decode() call pending.
153 * Returns PP_ERROR_ABORTED when Reset() is called while Decode() is pending.
155 int32_t Decode(
191 * the decoder can decode more pictures.
205 * pending Decode() call to completion. The plugin should make no furthe
    [all...]
  /external/chromium_org/content/common/gpu/client/
gpu_video_decode_accelerator_host.h 40 virtual void Decode(const media::BitstreamBuffer& bitstream_buffer) OVERRIDE;
  /external/chromium_org/content/renderer/fetchers/
image_resource_fetcher.cc 56 bitmap = decoder.Decode(
59 // If we get here, it means no image from server or couldn't decode the
  /external/chromium_org/content/renderer/pepper/
ppb_video_decoder_impl.h 35 virtual int32_t Decode(const PP_VideoBitstreamBuffer_Dev* bitstream_buffer,
  /external/chromium_org/google_apis/gaia/
oauth_request_signer.h 51 static bool Decode(const std::string& text, std::string* decoded_text);
  /external/chromium_org/media/cast/receiver/
audio_decoder.cc 20 // then invoking the Decode() method implemented by the subclasses to convert
60 scoped_ptr<AudioBus> decoded_audio = Decode(
76 // Note: Implementation of Decode() is allowed to mutate |data|.
77 virtual scoped_ptr<AudioBus> Decode(uint8* data, int len) = 0;
129 virtual scoped_ptr<AudioBus> Decode(uint8* data, int len) OVERRIDE {
134 return audio_bus.Pass(); // Decode error.
180 virtual scoped_ptr<AudioBus> Decode(uint8* data, int len) OVERRIDE {
video_decoder.cc 27 // then invoking the Decode() method implemented by the subclasses to convert
61 const scoped_refptr<VideoFrame> decoded_frame = Decode(
76 // Note: Implementation of Decode() is allowed to mutate |data|.
77 virtual scoped_refptr<VideoFrame> Decode(uint8* data, int len) = 0;
122 virtual scoped_refptr<VideoFrame> Decode(uint8* data, int len) OVERRIDE {
186 virtual scoped_refptr<VideoFrame> Decode(uint8* data, int len) OVERRIDE {

Completed in 637 milliseconds

1 2 34 5 6 7 8 91011>>