Searched defs:decoder (Results 126 - 150 of 169) sorted by relevance

1234567

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
H A Dnouveau_video.c417 nouveau_decoder_begin_frame(struct pipe_video_decoder *decoder, argument
424 nouveau_decoder_decode_macroblock(struct pipe_video_decoder *decoder, argument
430 struct nouveau_decoder *dec = (struct nouveau_decoder *)decoder;
434 assert(target->width == decoder->width);
435 assert(target->height == decoder->height);
466 nouveau_decoder_end_frame(struct pipe_video_decoder *decoder, argument
473 nouveau_decoder_flush(struct pipe_video_decoder *decoder) argument
475 struct nouveau_decoder *dec = (struct nouveau_decoder *)decoder;
481 nouveau_decoder_destroy(struct pipe_video_decoder *decoder) argument
483 struct nouveau_decoder *dec = (struct nouveau_decoder*)decoder;
[all...]
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
H A Dpython_message.py63 from google.protobuf.internal import decoder namespace
88 cls._decoders_by_tag[decoder.MESSAGE_SET_ITEM_TAG] = (
89 decoder.MessageSetItemDecoder(cls._extensions_by_number))
221 # To support wire compatibility of adding packed = true, add a decoder for
806 local_ReadTag = decoder.ReadTag
807 local_SkipField = decoder.SkipField
/external/freetype/src/psaux/
H A Dt1decode.c130 t1_lookup_glyph_by_stdcharcode( T1_Decoder decoder, argument
135 FT_Service_PsCMaps psnames = decoder->psnames;
145 for ( n = 0; n < decoder->num_glyphs; n++ )
147 FT_String* name = (FT_String*)decoder->glyph_names[n];
166 /* Implements the `seac' Type 1 operator for a Type 1 decoder. */
169 /* decoder :: The current CID decoder. */
185 t1operator_seac( T1_Decoder decoder, argument
196 FT_Outline* base = decoder->builder.base;
201 T1_Face face = (T1_Face)decoder
[all...]
/external/freetype/src/sfnt/
H A Dttsbit.c186 tt_sbit_decoder_init( TT_SBitDecoder decoder, argument
204 decoder->face = face;
205 decoder->stream = stream;
206 decoder->bitmap = &face->root.glyph->bitmap;
207 decoder->metrics = metrics;
209 decoder->metrics_loaded = 0;
210 decoder->bitmap_allocated = 0;
212 decoder->ebdt_start = FT_STREAM_POS();
213 decoder->ebdt_size = ebdt_size;
215 decoder
256 tt_sbit_decoder_alloc_bitmap( TT_SBitDecoder decoder, FT_UInt load_flags ) argument
341 tt_sbit_decoder_load_metrics( TT_SBitDecoder decoder, FT_Byte* *pp, FT_Byte* limit, FT_Bool big ) argument
399 tt_sbit_decoder_load_byte_aligned( TT_SBitDecoder decoder, FT_UInt load_flags, FT_Byte* p, FT_Byte* limit, FT_Int x_pos, FT_Int y_pos ) argument
540 tt_sbit_decoder_load_bit_aligned( TT_SBitDecoder decoder, FT_UInt load_flags, FT_Byte* p, FT_Byte* limit, FT_Int x_pos, FT_Int y_pos ) argument
666 tt_sbit_decoder_load_compound( TT_SBitDecoder decoder, FT_UInt load_flags, FT_Byte* p, FT_Byte* limit, FT_Int x_pos, FT_Int y_pos ) argument
734 tt_sbit_decoder_load_png( TT_SBitDecoder decoder, FT_UInt load_flags, FT_Byte* p, FT_Byte* limit, FT_Int x_pos, FT_Int y_pos ) argument
781 tt_sbit_decoder_load_bitmap( TT_SBitDecoder decoder, FT_UInt load_flags, FT_UInt glyph_format, FT_ULong glyph_start, FT_ULong glyph_size, FT_Int x_pos, FT_Int y_pos ) argument
946 tt_sbit_decoder_load_image( TT_SBitDecoder decoder, FT_UInt load_flags, FT_UInt glyph_index, FT_Int x_pos, FT_Int y_pos ) argument
1154 TT_SBitDecoderRec decoder[1]; local
[all...]
/external/lzma/C/
H A DXz.h215 CMixCoder decoder; member in struct:__anon22950
H A DXzDec.c200 CBraState *decoder; local
210 decoder = alloc->Alloc(alloc, sizeof(CBraState));
211 if (decoder == 0)
213 decoder->methodId = (UInt32)id;
214 p->p = decoder;
258 CSubblockDec *decoder; local
260 decoder = alloc->Alloc(alloc, sizeof(CSubblockDec));
261 if (decoder == 0)
263 p->p = decoder;
268 SubblockDec_Construct(decoder);
306 CLzma2Dec *decoder = alloc->Alloc(alloc, sizeof(CLzma2Dec)); local
[all...]
/external/lzma/CPP/7zip/Archive/
H A DLzmaHandler.cpp359 CDecoder decoder; local
360 HRESULT result = decoder.Create(
371 lps->InSize = _packSize = decoder.GetInputProcessedSize();
381 RINOK(decoder.ReadInput(buf, headerSize, &processed));
389 result = decoder.Code(st, outStream, progress);
/external/lzma/CPP/7zip/Bundles/LzmaCon/
H A DLzmaAlone.cpp477 CMyComPtr<ICompressCoder> decoder = decoderSpec; local
495 if (decoder->Code(inStream, outStream, 0, (fileSize == (UInt64)(Int64)-1) ? 0 : &fileSize, 0) != S_OK)
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_mpeg12_bitstream.c815 if (bs->decoder->profile == PIPE_VIDEO_PROFILE_MPEG1)
831 bs->decoder->decode_macroblock(bs->decoder, target, &bs->desc->base, &mb.base, 1);
935 bs->decoder->decode_macroblock(bs->decoder, target, &bs->desc->base, &mb.base, 1);
939 vl_mpg12_bs_init(struct vl_mpg12_bs *bs, struct pipe_video_decoder *decoder) argument
947 bs->decoder = decoder;
H A Dvl_mpeg12_decoder.c402 vl_mpeg12_destroy(struct pipe_video_decoder *decoder) argument
404 struct vl_mpeg12_decoder *dec = (struct vl_mpeg12_decoder*)decoder;
407 assert(decoder);
506 vl_mpeg12_begin_frame(struct pipe_video_decoder *decoder, argument
510 struct vl_mpeg12_decoder *dec = (struct vl_mpeg12_decoder *)decoder;
573 vl_mpeg12_decode_macroblock(struct pipe_video_decoder *decoder, argument
579 struct vl_mpeg12_decoder *dec = (struct vl_mpeg12_decoder *)decoder;
643 vl_mpeg12_decode_bitstream(struct pipe_video_decoder *decoder, argument
650 struct vl_mpeg12_decoder *dec = (struct vl_mpeg12_decoder *)decoder;
669 vl_mpeg12_end_frame(struct pipe_video_decoder *decoder, argument
763 vl_mpeg12_flush(struct pipe_video_decoder *decoder) argument
[all...]
/external/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_video.c417 nouveau_decoder_begin_frame(struct pipe_video_decoder *decoder, argument
424 nouveau_decoder_decode_macroblock(struct pipe_video_decoder *decoder, argument
430 struct nouveau_decoder *dec = (struct nouveau_decoder *)decoder;
434 assert(target->width == decoder->width);
435 assert(target->height == decoder->height);
466 nouveau_decoder_end_frame(struct pipe_video_decoder *decoder, argument
473 nouveau_decoder_flush(struct pipe_video_decoder *decoder) argument
475 struct nouveau_decoder *dec = (struct nouveau_decoder *)decoder;
481 nouveau_decoder_destroy(struct pipe_video_decoder *decoder) argument
483 struct nouveau_decoder *dec = (struct nouveau_decoder*)decoder;
[all...]
/external/protobuf/python/google/protobuf/
H A Dreflection.py62 from google.protobuf.internal import decoder namespace
152 cls._decoders_by_tag[decoder.MESSAGE_SET_ITEM_TAG] = (
153 decoder.MessageSetItemDecoder(cls._extensions_by_number))
288 # To support wire compatibility of adding packed = true, add a decoder for
832 local_ReadTag = decoder.ReadTag
833 local_SkipField = decoder.SkipField
/external/v8/test/cctest/
H A Dtest-serialize.cc143 ExternalReferenceDecoder decoder; local
145 decoder.Decode(make_code(BUILTIN, Builtins::kArrayCode)));
147 decoder.Decode(make_code(v8::internal::RUNTIME_FUNCTION,
150 decoder.Decode(make_code(IC_UTILITY, IC::kLoadCallbackProperty)));
154 decoder.Decode(
158 decoder.Decode(make_code(UNCLASSIFIED, 4)));
160 decoder.Decode(make_code(UNCLASSIFIED, 5)));
163 decoder.Decode(make_code(UNCLASSIFIED, 16)));
166 decoder.Decode(make_code(UNCLASSIFIED, 10)));
/external/zxing/core/
H A Dcore.jar ... google/zxing/ com/google/zxing/aztec/ com/google/zxing/aztec/decoder/ com/google/zxing/aztec/detector/ com/google/zxing/client/ com ...
/external/chromium/chrome/browser/ui/webui/options/
H A Dextension_settings_handler.cc253 webkit_glue::ImageDecoder decoder; local
255 *decoded = decoder.Decode(data, file_contents.length());
/external/chromium_org/content/common/gpu/
H A Dgpu_command_buffer_stub.cc365 // The scheduler has raw references to the decoder and the command buffer so
502 // Initialize the decoder with either the view or pbuffer GLContext.
509 DLOG(ERROR) << "Failed to initialize decoder.";
748 GpuVideoDecodeAccelerator* decoder = new GpuVideoDecodeAccelerator( local
750 decoder->Initialize(profile, reply_message);
751 // decoder is registered as a DestructionObserver of this stub and will
/external/chromium_org/content/common/gpu/media/
H A Ddxva_video_decode_accelerator.cc109 // the decoder for input). If no alignment is required, provide 0.
161 const DXVAVideoDecodeAccelerator& decoder,
171 const DXVAVideoDecodeAccelerator& decoder,
204 const DXVAVideoDecodeAccelerator& decoder,
238 HRESULT hr = decoder.device_->CreateTexture(
288 const DXVAVideoDecodeAccelerator& decoder,
305 hr = decoder.d3d9_->CheckDeviceFormatConversion(
322 hr = decoder.device_->StretchRect(
329 hr = decoder.query_->Issue(D3DISSUE_END);
332 // The DXVA decoder ha
203 Create( const DXVAVideoDecodeAccelerator& decoder, const media::PictureBuffer& buffer, EGLConfig egl_config) argument
287 CopyOutputSampleDataToPictureBuffer( const DXVAVideoDecodeAccelerator& decoder, IDirect3DSurface9* dest_surface) argument
[all...]
/external/chromium_org/gpu/command_buffer/service/
H A Dtexture_manager.cc726 bool Texture::ClearRenderableLevels(GLES2Decoder* decoder) { argument
727 DCHECK(decoder);
740 if (!ClearLevel(decoder, info.target, jj)) {
763 GLES2Decoder* decoder, GLenum target, GLint level) {
764 DCHECK(decoder);
783 // NOTE: It seems kind of gross to call back into the decoder for this
784 // but only the decoder knows all the state (like unpack_alignment_) that's
786 bool cleared = decoder->ClearLevel(
1047 GLES2Decoder* decoder, TextureRef* ref) {
1049 return ref->texture()->ClearRenderableLevels(decoder);
762 ClearLevel( GLES2Decoder* decoder, GLenum target, GLint level) argument
1046 ClearRenderableLevels( GLES2Decoder* decoder, TextureRef* ref) argument
1052 ClearTextureLevel( GLES2Decoder* decoder, TextureRef* ref, GLenum target, GLint level) argument
[all...]
/external/chromium_org/ppapi/examples/video_decode/
H A Dvideo_decode.cc71 // Probably have to recreate the decoder from scratch, because old textures
72 // can still be outstanding in the decoder!
78 PP_Resource decoder,
82 virtual void DismissPictureBuffer(PP_Resource decoder,
84 virtual void PictureReady(PP_Resource decoder, const PP_Picture_Dev& picture);
85 virtual void NotifyError(PP_Resource decoder, PP_VideoDecodeError_Dev error);
91 // A single decoder's client interface.
95 pp::VideoDecoder_Dev* decoder);
100 // Per-decoder implementation of part of pp::VideoDecoderClient_Dev.
108 pp::VideoDecoder_Dev* decoder() { retur function in class:__anon10125::VideoDecodeDemoInstance::DecoderClient
196 DecoderClient( VideoDecodeDemoInstance* gles2, pp::VideoDecoder_Dev* decoder) argument
358 ProvidePictureBuffers(PP_Resource decoder, uint32_t req_num_of_bufs, const PP_Size& dimensions, uint32_t texture_target) argument
394 DismissPictureBuffer(PP_Resource decoder, int32_t picture_buffer_id) argument
408 PictureReady(PP_Resource decoder, const PP_Picture_Dev& picture) argument
462 NotifyError(PP_Resource decoder, PP_VideoDecodeError_Dev error) argument
511 PaintFinished(int32_t result, PP_Resource decoder, int picture_buffer_id) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
H A DJPEGImageDecoder.cpp127 JPEGImageReader* decoder; member in struct:WebCore::decoder_source_mgr
175 // The JPEG decoder looks at EXIF metadata.
248 JPEGImageReader(JPEGImageDecoder* decoder) argument
249 : m_decoder(decoder)
284 src->decoder = this;
476 // copy the decoder pointer and use it to check for failure
478 JPEGImageDecoder* decoder = m_decoder; local
479 if (!decoder->outputScanlines()) {
480 if (decoder->failed()) // Careful; |this| is deleted.
519 JPEGImageDecoder* decoder() { retur function in class:WebCore::JPEGImageReader
[all...]
/external/chromium_org/third_party/freetype/src/cff/
H A Dcf2intrp.c297 cf2_getNominalWidthX( font->decoder );
299 if ( font->decoder->width_only )
434 CFF_Decoder* decoder = font->decoder; local
440 CF2_Fixed nominalWidthX = cf2_getNominalWidthX( decoder );
519 *width = cf2_getDefaultWidthX( decoder );
606 if ( font->decoder->width_only )
627 if ( font->decoder->width_only )
641 if ( font->decoder->width_only )
766 FT_TRACE4(( "(%d)\n", subrIndex + decoder
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
H A Dvl_mpeg12_decoder.c402 vl_mpeg12_destroy(struct pipe_video_decoder *decoder) argument
404 struct vl_mpeg12_decoder *dec = (struct vl_mpeg12_decoder*)decoder;
407 assert(decoder);
506 vl_mpeg12_begin_frame(struct pipe_video_decoder *decoder, argument
510 struct vl_mpeg12_decoder *dec = (struct vl_mpeg12_decoder *)decoder;
573 vl_mpeg12_decode_macroblock(struct pipe_video_decoder *decoder, argument
579 struct vl_mpeg12_decoder *dec = (struct vl_mpeg12_decoder *)decoder;
643 vl_mpeg12_decode_bitstream(struct pipe_video_decoder *decoder, argument
650 struct vl_mpeg12_decoder *dec = (struct vl_mpeg12_decoder *)decoder;
669 vl_mpeg12_end_frame(struct pipe_video_decoder *decoder, argument
763 vl_mpeg12_flush(struct pipe_video_decoder *decoder) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vdpau/
H A Dvdpau_private.h390 struct pipe_video_decoder *decoder; member in struct:__anon13354
/external/chromium_org/third_party/skia/src/images/
H A DSkImageDecoder_libjpeg.cpp108 SkJPEGImageIndex(SkStreamRewindable* stream, SkImageDecoder* decoder) argument
109 : fSrcMgr(stream, decoder)
390 static void set_dct_method(const SkImageDecoder& decoder, jpeg_decompress_struct* cinfo) { argument
393 if (decoder.getPreferQualityOverSpeed()) {
464 const SkImageDecoder& decoder) {
476 if (decoder.getDitherImage()) {
758 // Init decoder to image decode mode
462 adjust_out_color_space_and_dither(jpeg_decompress_struct* cinfo, SkBitmap::Config config, const SkImageDecoder& decoder) argument
/external/freetype/src/cff/
H A Dcf2intrp.c297 cf2_getNominalWidthX( font->decoder );
299 if ( font->decoder->width_only )
434 CFF_Decoder* decoder = font->decoder; local
440 CF2_Fixed nominalWidthX = cf2_getNominalWidthX( decoder );
519 *width = cf2_getDefaultWidthX( decoder );
606 if ( font->decoder->width_only )
627 if ( font->decoder->width_only )
641 if ( font->decoder->width_only )
766 FT_TRACE4(( "(%d)\n", subrIndex + decoder
[all...]

Completed in 786 milliseconds

1234567