Searched refs:Decode (Results 1 - 25 of 270) sorted by relevance

1234567891011

/external/chromium_org/v8/src/
H A Ddisassembler.h41 // Decode instructions in the the interval [begin, end) and print the
44 static int Decode(Isolate* isolate, FILE* f, byte* begin, byte* end);
46 // Decode instructions in code.
47 static void Decode(FILE* f, Code* code);
49 // Decode instruction at pc and print disassembled instruction into f.
53 static int Decode(FILE* f, byte* pc, int* char_count);
/external/v8/src/
H A Ddisassembler.h41 // Decode instructions in the the interval [begin, end) and print the
44 static int Decode(FILE* f, byte* begin, byte* end);
46 // Decode instructions in code.
47 static void Decode(FILE* f, Code* code);
49 // Decode instruction at pc and print disassembled instruction into f.
53 static int Decode(FILE* f, byte* pc, int* char_count);
/external/openfst/src/script/
H A Ddecode.cc25 void Decode(MutableFstClass *ofst, const string &coder_fname) { function in namespace:fst::script
28 Apply<Operation<DecodeArgs> >("Decode", ofst->ArcType(), &args);
31 REGISTER_FST_OPERATION(Decode, StdArc, DecodeArgs);
32 REGISTER_FST_OPERATION(Decode, LogArc, DecodeArgs);
33 REGISTER_FST_OPERATION(Decode, Log64Arc, DecodeArgs);
/external/openfst/src/include/fst/script/
H A Ddecode.h32 void Decode(DecodeArgs *args) { function in namespace:fst::script
36 Decode(ofst, *decoder);
41 void Decode(MutableFstClass *fst, const string &coder_fname);
/external/chromium_org/ui/gfx/codec/
H A Djpeg_codec.h67 static bool Decode(const unsigned char* input, size_t input_size,
74 static SkBitmap* Decode(const unsigned char* input, size_t input_size);
H A Djpeg_codec_unittest.cc117 EXPECT_TRUE(JPEGCodec::Decode(&encoded[0], encoded.size(),
155 EXPECT_TRUE(JPEGCodec::Decode(&encoded[0], encoded.size(),
178 ASSERT_FALSE(JPEGCodec::Decode(&original[0], original.size(),
188 ASSERT_FALSE(JPEGCodec::Decode(&compressed[0], compressed.size() / 2,
195 ASSERT_FALSE(JPEGCodec::Decode(&compressed[0], compressed.size(),
206 JPEGCodec::Decode(kTopSitesMigrationTestImage,
211 JPEGCodec::Decode(kTopSitesMigrationTestImage,
/external/chromium/webkit/glue/
H A Dimage_decoder.h28 SkBitmap Decode(const unsigned char* data, size_t size) const;
H A Dimage_decoder.cc31 SkBitmap ImageDecoder::Decode(const unsigned char* data, size_t size) const { function in class:webkit_glue::ImageDecoder
/external/chromium_org/content/child/
H A Dimage_decoder.h30 SkBitmap Decode(const unsigned char* data, size_t size) const;
H A Dimage_decoder.cc22 return decoder.Decode(data, size);
35 SkBitmap ImageDecoder::Decode(const unsigned char* data, size_t size) const { function in class:content::ImageDecoder
/external/chromium_org/remoting/codec/
H A Daudio_decoder.h27 virtual scoped_ptr<AudioPacket> Decode(scoped_ptr<AudioPacket> packet) = 0;
H A Daudio_decoder_verbatim.h22 virtual scoped_ptr<AudioPacket> Decode(
H A Daudio_decoder_opus.h24 virtual scoped_ptr<AudioPacket> Decode(
H A Daudio_decoder_speex.h26 virtual scoped_ptr<AudioPacket> Decode(
H A Daudio_decoder_verbatim.cc18 scoped_ptr<AudioPacket> AudioDecoderVerbatim::Decode( function in class:remoting::AudioDecoderVerbatim
/external/chromium_org/skia/ext/
H A Dlazy_pixel_ref.h34 virtual void Decode() = 0;
/external/chromium_org/media/video/
H A Dmock_video_decode_accelerator.h28 MOCK_METHOD1(Decode, void(const BitstreamBuffer& bitstream_buffer));
/external/lzma/CS/7zip/Compress/LZMA/
H A DLzmaDecoder.cs42 public uint Decode(RangeCoder.Decoder rangeDecoder, uint posState) method in class:SevenZip.Compression.LZMA.Decoder.LenDecoder
44 if (m_Choice.Decode(rangeDecoder) == 0)
45 return m_LowCoder[posState].Decode(rangeDecoder);
49 if (m_Choice2.Decode(rangeDecoder) == 0)
50 symbol += m_MidCoder[posState].Decode(rangeDecoder);
54 symbol += m_HighCoder.Decode(rangeDecoder);
73 symbol = (symbol << 1) | m_Decoders[symbol].Decode(rangeDecoder);
85 uint bit = m_Decoders[((1 + matchBit) << 8) + symbol].Decode(rangeDecoder);
90 symbol = (symbol << 1) | m_Decoders[symbol].Decode(rangeDecoder);
243 if (m_IsMatchDecoders[state.Index << Base.kNumPosStatesBitsMax].Decode(m_RangeDecode
[all...]
/external/chromium_org/ppapi/thunk/
H A Dppb_video_decoder_thunk.cc33 int32_t Decode(PP_Resource video_decoder, function in namespace:ppapi::thunk::__anon9656
39 return enter.SetResult(enter.object()->Decode(bitstream_buffer,
81 &Decode,
H A Dppb_video_decoder_api.h21 virtual int32_t Decode(const PP_VideoBitstreamBuffer_Dev* bitstream_buffer,
/external/chromium_org/net/websockets/
H A Dwebsocket_frame_parser.h33 // If the parser encounters invalid payload length format, Decode() fails
34 // and returns false. Once Decode() has failed, the parser refuses to decode
35 // any more data and future invocations of Decode() will simply return false.
39 bool Decode(const char* data,
/external/chromium_org/ppapi/c/dev/
H A Dppb_video_decoder_dev.h38 * - Call Decode() to decode some video data.
87 int32_t (*Decode)(PP_Resource video_decoder, member in struct:PPB_VideoDecoder_Dev_0_16
137 * Decode() calls. |callback| will be called when the reset is done.
/external/chromium_org/ppapi/cpp/dev/
H A Dvideo_decoder_dev.h36 int32_t Decode(const PP_VideoBitstreamBuffer_Dev& bitstream_buffer,
H A Dvideo_decoder_dev.cc48 int32_t VideoDecoder_Dev::Decode( function in class:pp::VideoDecoder_Dev
53 return get_interface<PPB_VideoDecoder_Dev>()->Decode(
/external/chromium_org/ui/gfx/image/
H A Dimage_png_rep.cc32 if (!gfx::PNGCodec::Decode(raw_data->front(), raw_data->size(),

Completed in 1591 milliseconds

1234567891011