Searched refs:dec (Results 1 - 25 of 498) sorted by relevance

1234567891011>>

/external/libmpeg2/decoder/arm/
H A Dimpeg2d_function_selector_a9q.c71 dec_state_t *dec = (dec_state_t *)pv_codec; local
73 dec->pf_idct_recon[0] = &impeg2_idct_recon_dc_a9q;
74 dec->pf_idct_recon[1] = &impeg2_idct_recon_dc_mismatch_a9q;
75 dec->pf_idct_recon[2] = &impeg2_idct_recon_a9q;
76 dec->pf_idct_recon[3] = &impeg2_idct_recon_a9q;
78 dec->pf_mc[0] = &impeg2d_mc_fullx_fully;
79 dec->pf_mc[1] = &impeg2d_mc_fullx_halfy;
80 dec->pf_mc[2] = &impeg2d_mc_halfx_fully;
81 dec->pf_mc[3] = &impeg2d_mc_halfx_halfy;
83 dec
[all...]
H A Dimpeg2d_function_selector_av8.c76 dec_state_t *dec = (dec_state_t *)pv_codec; local
78 dec->pf_idct_recon[0] = &impeg2_idct_recon_dc_av8;
79 dec->pf_idct_recon[1] = &impeg2_idct_recon_dc_mismatch_av8;
80 dec->pf_idct_recon[2] = &impeg2_idct_recon_av8;
81 dec->pf_idct_recon[3] = &impeg2_idct_recon_av8;
83 dec->pf_mc[0] = &impeg2d_mc_fullx_fully;
84 dec->pf_mc[1] = &impeg2d_mc_fullx_halfy;
85 dec->pf_mc[2] = &impeg2d_mc_halfx_fully;
86 dec->pf_mc[3] = &impeg2d_mc_halfx_halfy;
88 dec
[all...]
/external/libmpeg2/decoder/x86/
H A Dimpeg2d_function_selector_sse42.c68 dec_state_t *dec = (dec_state_t *)pv_codec; local
70 dec->pf_idct_recon[0] = &impeg2_idct_recon_dc_sse42;
71 dec->pf_idct_recon[1] = &impeg2_idct_recon_dc_mismatch_sse42;
72 dec->pf_idct_recon[2] = &impeg2_idct_recon_sse42;
73 dec->pf_idct_recon[3] = &impeg2_idct_recon_sse42;
75 dec->pf_copy_mb = &impeg2_copy_mb_sse42;
76 dec->pf_interpolate = &impeg2_interpolate_sse42;
77 dec->pf_halfx_halfy_8x8 = &impeg2_mc_halfx_halfy_8x8_sse42;
78 dec->pf_halfx_fully_8x8 = &impeg2_mc_halfx_fully_8x8_sse42;
79 dec
[all...]
H A Dimpeg2d_function_selector_avx2.c68 dec_state_t *dec = (dec_state_t *)pv_codec; local
70 dec->pf_idct_recon[0] = &impeg2_idct_recon_dc;
71 dec->pf_idct_recon[1] = &impeg2_idct_recon_dc_mismatch;
72 dec->pf_idct_recon[2] = &impeg2_idct_recon;
73 dec->pf_idct_recon[3] = &impeg2_idct_recon;
H A Dimpeg2d_function_selector_ssse3.c68 dec_state_t *dec = (dec_state_t *)pv_codec; local
70 dec->pf_idct_recon[0] = &impeg2_idct_recon_dc;
71 dec->pf_idct_recon[1] = &impeg2_idct_recon_dc_mismatch;
72 dec->pf_idct_recon[2] = &impeg2_idct_recon;
73 dec->pf_idct_recon[3] = &impeg2_idct_recon;
/external/opencv3/3rdparty/libwebp/dec/
H A Dlayer.c25 int VP8DecodeLayer(VP8Decoder* const dec) { argument
26 assert(dec);
27 assert(dec->layer_data_size_ > 0);
28 (void)dec;
H A Dframe.c42 static void DoFilter(const VP8Decoder* const dec, int mb_x, int mb_y) { argument
43 const VP8ThreadContext* const ctx = &dec->thread_ctx_;
44 const int y_bps = dec->cache_y_stride_;
46 uint8_t* const y_dst = dec->cache_y_ + ctx->id_ * 16 * y_bps + mb_x * 16;
53 if (dec->filter_type_ == 1) { // simple
67 const int uv_bps = dec->cache_uv_stride_;
68 uint8_t* const u_dst = dec->cache_u_ + ctx->id_ * 8 * uv_bps + mb_x * 8;
69 uint8_t* const v_dst = dec->cache_v_ + ctx->id_ * 8 * uv_bps + mb_x * 8;
71 hev_thresh_from_level(level, dec->frm_hdr_.key_frame_);
92 static void FilterRow(const VP8Decoder* const dec) { argument
104 PrecomputeFilterStrengths(VP8Decoder* const dec) argument
164 FinishRow(VP8Decoder* const dec, VP8Io* const io) argument
255 VP8ProcessRow(VP8Decoder* const dec, VP8Io* const io) argument
290 VP8EnterCritical(VP8Decoder* const dec, VP8Io* const io) argument
345 VP8ExitCritical(VP8Decoder* const dec, VP8Io* const io) argument
385 InitThreadContext(VP8Decoder* const dec) argument
410 AllocateMemory(VP8Decoder* const dec) argument
510 InitIo(VP8Decoder* const dec, VP8Io* io) argument
521 VP8InitFrame(VP8Decoder* const dec, VP8Io* io) argument
539 CheckMode(VP8Decoder* const dec, int mode) argument
554 VP8ReconstructBlock(VP8Decoder* const dec) argument
[all...]
H A Dvp8.c34 static void SetOk(VP8Decoder* const dec) { argument
35 dec->status_ = VP8_STATUS_OK;
36 dec->error_msg_ = "OK";
50 VP8Decoder* const dec = (VP8Decoder*)calloc(1, sizeof(*dec)); local
51 if (dec != NULL) {
52 SetOk(dec);
53 WebPWorkerInit(&dec->worker_);
54 dec->ready_ = 0;
55 dec
60 VP8Status(VP8Decoder* const dec) argument
65 VP8StatusMessage(VP8Decoder* const dec) argument
71 VP8Delete(VP8Decoder* const dec) argument
78 VP8SetError(VP8Decoder* const dec, VP8StatusCode error, const char* const msg) argument
189 ParsePartitions(VP8Decoder* const dec, const uint8_t* buf, size_t size) argument
219 ParseFilterHeader(VP8BitReader* br, VP8Decoder* const dec) argument
245 VP8GetHeaders(VP8Decoder* const dec, VP8Io* const io) argument
552 ParseResiduals(VP8Decoder* const dec, VP8MB* const mb, VP8BitReader* const token_br) argument
635 VP8DecodeMB(VP8Decoder* const dec, VP8BitReader* const token_br) argument
675 VP8InitScanline(VP8Decoder* const dec) argument
685 ParseFrame(VP8Decoder* const dec, VP8Io* io) argument
725 VP8Decode(VP8Decoder* const dec, VP8Io* const io) argument
764 VP8Clear(VP8Decoder* const dec) argument
[all...]
H A Dvp8l.c79 VP8LDecoder* const dec,
171 VP8LDecoder* const dec, const int* const code_length_code_lengths,
174 VP8LBitReader* const br = &dec->br_;
182 dec->status_ = VP8_STATUS_BITSTREAM_ERROR;
190 dec->status_ = VP8_STATUS_BITSTREAM_ERROR;
213 dec->status_ = VP8_STATUS_BITSTREAM_ERROR;
228 static int ReadHuffmanCode(int alphabet_size, VP8LDecoder* const dec, argument
231 VP8LBitReader* const br = &dec->br_;
258 dec->status_ = VP8_STATUS_BITSTREAM_ERROR;
265 dec
170 ReadHuffmanCodeLengths( VP8LDecoder* const dec, const int* const code_length_code_lengths, int num_symbols, int* const code_lengths) argument
300 ReadHuffmanCodes(VP8LDecoder* const dec, int xsize, int ysize, int color_cache_bits, int allow_recursion) argument
368 AllocateAndInitRescaler(VP8LDecoder* const dec, VP8Io* const io) argument
420 EmitRescaledRows(const VP8LDecoder* const dec, const uint32_t* const data, int in_stride, int mb_h, uint8_t* const out, int out_stride) argument
518 ExportYUVA(const VP8LDecoder* const dec, int y_pos) argument
532 EmitRescaledRowsYUVA(const VP8LDecoder* const dec, const uint32_t* const data, int in_stride, int mb_h) argument
547 EmitRowsYUVA(const VP8LDecoder* const dec, const uint32_t* const data, int in_stride, int mb_w, int num_rows) argument
611 ApplyInverseTransforms(VP8LDecoder* const dec, int num_rows, const uint32_t* const rows) argument
631 ApplyInverseTransformsAlpha(VP8LDecoder* const dec, int num_rows, const uint8_t* const rows) argument
646 ProcessRows(VP8LDecoder* const dec, int row) argument
849 ReadTransform(int* const xsize, int const* ysize, VP8LDecoder* const dec) argument
923 VP8LDecoder* const dec = (VP8LDecoder*)calloc(1, sizeof(*dec)); local
931 VP8LClear(VP8LDecoder* const dec) argument
950 VP8LDelete(VP8LDecoder* const dec) argument
957 UpdateDecoder(VP8LDecoder* const dec, int width, int height) argument
967 DecodeImageStream(int xsize, int ysize, int is_level0, VP8LDecoder* const dec, uint32_t** const decoded_data) argument
1062 AllocateInternalBuffers(VP8LDecoder* const dec, int final_width, size_t bytes_per_pixel) argument
1091 ExtractAlphaRows(VP8LDecoder* const dec, int row) argument
1112 ExtractPalettedAlphaRows(VP8LDecoder* const dec, int row) argument
1125 VP8LDecoder* const dec = VP8LNew(); local
1172 VP8LDecodeHeader(VP8LDecoder* const dec, VP8Io* const io) argument
1202 VP8LDecodeImage(VP8LDecoder* const dec) argument
[all...]
/external/libmpeg2/decoder/
H A Dimpeg2d_dec_hdr.h45 IMPEG2D_ERROR_CODES_T impeg2d_process_video_header(dec_state_t *dec);
47 IMPEG2D_ERROR_CODES_T impeg2d_process_video_bit_stream(dec_state_t *dec);
H A Dimpeg2d_mc.h39 void impeg2d_dec_2mv_interp_mb(dec_state_t *dec);
40 void impeg2d_dec_4mv_mb(dec_state_t *dec);
43 void impeg2d_dec_1mv_mb(dec_state_t *dec);
44 void impeg2d_dec_2mv_fw_or_bk_mb(dec_state_t *dec);
45 void impeg2d_dec_fld_dual_prime(dec_state_t *dec);
46 void impeg2d_dec_frm_dual_prime(dec_state_t *dec);
48 void impeg2d_mc_1mv(dec_state_t *dec);
49 void impeg2d_mc_fw_or_bk_mb(dec_state_t *dec);
50 void impeg2d_mc_fld_dual_prime(dec_state_t *dec);
51 void impeg2d_mc_frm_dual_prime(dec_state_t *dec);
[all...]
H A Dimpeg2d_pic_proc.h27 IMPEG2D_ERROR_CODES_T impeg2d_init_video_state(dec_state_t *dec, e_video_type_t videoType);
28 IMPEG2D_ERROR_CODES_T impeg2d_pre_pic_dec_proc(dec_state_t *dec);
29 void impeg2d_post_pic_dec_proc(dec_state_t *dec);
30 IMPEG2D_ERROR_CODES_T impeg2d_dec_i_slice(dec_state_t *dec);
31 IMPEG2D_ERROR_CODES_T impeg2d_dec_d_slice(dec_state_t *dec);
32 IMPEG2D_ERROR_CODES_T impeg2d_dec_p_b_slice(dec_state_t *dec);
/external/webp/src/dec/
H A Dalpha.c27 ALPHDecoder* const dec = (ALPHDecoder*)WebPSafeCalloc(1ULL, sizeof(*dec)); local
28 return dec;
31 void ALPHDelete(ALPHDecoder* const dec) { argument
32 if (dec != NULL) {
33 VP8LDelete(dec->vp8l_dec_);
34 dec->vp8l_dec_ = NULL;
35 WebPSafeFree(dec);
46 static int ALPHInit(ALPHDecoder* const dec, const uint8_t* data, argument
56 dec
90 ALPHDecode(VP8Decoder* const dec, int row, int num_rows) argument
122 VP8DecompressAlphaRows(VP8Decoder* const dec, int row, int num_rows) argument
[all...]
H A Dframe.c71 static void ReconstructRow(const VP8Decoder* const dec, argument
77 uint8_t* const y_dst = dec->yuv_b_ + Y_OFF;
78 uint8_t* const u_dst = dec->yuv_b_ + U_OFF;
79 uint8_t* const v_dst = dec->yuv_b_ + V_OFF;
102 for (mb_x = 0; mb_x < dec->mb_w_; ++mb_x) {
118 VP8TopSamples* const top_yuv = dec->yuv_t_ + mb_x;
134 if (mb_x >= dec->mb_w_ - 1) { // on rightmost border
169 if (mb_y < dec->mb_h_ - 1) {
177 const int y_offset = cache_id * 16 * dec->cache_y_stride_;
178 const int uv_offset = cache_id * 8 * dec
203 DoFilter(const VP8Decoder* const dec, int mb_x, int mb_y) argument
253 FilterRow(const VP8Decoder* const dec) argument
265 PrecomputeFilterStrengths(VP8Decoder* const dec) argument
325 VP8InitDithering(const WebPDecoderOptions* const options, VP8Decoder* const dec) argument
382 DitherRow(VP8Decoder* const dec) argument
413 FinishRow(VP8Decoder* const dec, VP8Io* const io) argument
511 VP8ProcessRow(VP8Decoder* const dec, VP8Io* const io) argument
559 VP8EnterCritical(VP8Decoder* const dec, VP8Io* const io) argument
614 VP8ExitCritical(VP8Decoder* const dec, VP8Io* const io) argument
654 InitThreadContext(VP8Decoder* const dec) argument
701 AllocateMemory(VP8Decoder* const dec) argument
803 InitIo(VP8Decoder* const dec, VP8Io* io) argument
814 VP8InitFrame(VP8Decoder* const dec, VP8Io* const io) argument
[all...]
H A Dvp8.c32 static void SetOk(VP8Decoder* const dec) { argument
33 dec->status_ = VP8_STATUS_OK;
34 dec->error_msg_ = "OK";
48 VP8Decoder* const dec = (VP8Decoder*)WebPSafeCalloc(1ULL, sizeof(*dec)); local
49 if (dec != NULL) {
50 SetOk(dec);
51 WebPGetWorkerInterface()->Init(&dec->worker_);
52 dec->ready_ = 0;
53 dec
58 VP8Status(VP8Decoder* const dec) argument
63 VP8StatusMessage(VP8Decoder* const dec) argument
69 VP8Delete(VP8Decoder* const dec) argument
76 VP8SetError(VP8Decoder* const dec, VP8StatusCode error, const char* const msg) argument
187 ParsePartitions(VP8Decoder* const dec, const uint8_t* buf, size_t size) argument
219 ParseFilterHeader(VP8BitReader* br, VP8Decoder* const dec) argument
245 VP8GetHeaders(VP8Decoder* const dec, VP8Io* const io) argument
449 ParseResiduals(VP8Decoder* const dec, VP8MB* const mb, VP8BitReader* const token_br) argument
543 VP8DecodeMB(VP8Decoder* const dec, VP8BitReader* const token_br) argument
570 VP8InitScanline(VP8Decoder* const dec) argument
578 ParseFrame(VP8Decoder* const dec, VP8Io* io) argument
608 VP8Decode(VP8Decoder* const dec, VP8Io* const io) argument
647 VP8Clear(VP8Decoder* const dec) argument
[all...]
H A Dvp8l.c105 VP8LDecoder* const dec,
248 VP8LDecoder* const dec, const int* const code_length_code_lengths,
251 VP8LBitReader* const br = &dec->br_;
302 if (!ok) dec->status_ = VP8_STATUS_BITSTREAM_ERROR;
308 static int ReadHuffmanCode(int alphabet_size, VP8LDecoder* const dec, argument
312 VP8LBitReader* const br = &dec->br_;
334 dec->status_ = VP8_STATUS_BITSTREAM_ERROR;
341 ok = ReadHuffmanCodeLengths(dec, code_length_code_lengths, alphabet_size,
351 dec->status_ = VP8_STATUS_BITSTREAM_ERROR;
357 static int ReadHuffmanCodes(VP8LDecoder* const dec, in argument
247 ReadHuffmanCodeLengths( VP8LDecoder* const dec, const int* const code_length_code_lengths, int num_symbols, int* const code_lengths) argument
487 AllocateAndInitRescaler(VP8LDecoder* const dec, VP8Io* const io) argument
539 EmitRescaledRowsRGBA(const VP8LDecoder* const dec, uint8_t* in, int in_stride, int mb_h, uint8_t* const out, int out_stride) argument
604 ExportYUVA(const VP8LDecoder* const dec, int y_pos) argument
619 EmitRescaledRowsYUVA(const VP8LDecoder* const dec, uint8_t* in, int in_stride, int mb_h) argument
635 EmitRowsYUVA(const VP8LDecoder* const dec, const uint8_t* in, int in_stride, int mb_w, int num_rows) argument
698 ApplyInverseTransforms(VP8LDecoder* const dec, int num_rows, const uint32_t* const rows) argument
718 ApplyInverseTransformsAlpha(VP8LDecoder* const dec, int num_rows, const uint8_t* const rows) argument
733 ProcessRows(VP8LDecoder* const dec, int row) argument
789 ExtractPalettedAlphaRows(VP8LDecoder* const dec, int row) argument
918 DecodeAlphaData(VP8LDecoder* const dec, uint8_t* const data, int width, int height, int last_row) argument
1001 SaveState(VP8LDecoder* const dec, int last_pixel) argument
1010 RestoreState(VP8LDecoder* const dec) argument
1021 DecodeImageData(VP8LDecoder* const dec, uint32_t* const data, int width, int height, int last_row, ProcessRowsFunc process_func) argument
1193 ReadTransform(int* const xsize, int const* ysize, VP8LDecoder* const dec) argument
1269 VP8LDecoder* const dec = (VP8LDecoder*)WebPSafeCalloc(1ULL, sizeof(*dec)); local
1279 VP8LClear(VP8LDecoder* const dec) argument
1298 VP8LDelete(VP8LDecoder* const dec) argument
1305 UpdateDecoder(VP8LDecoder* const dec, int width, int height) argument
1315 DecodeImageStream(int xsize, int ysize, int is_level0, VP8LDecoder* const dec, uint32_t** const decoded_data) argument
1406 AllocateInternalBuffers32b(VP8LDecoder* const dec, int final_width) argument
1427 AllocateInternalBuffers8b(VP8LDecoder* const dec) argument
1441 ExtractAlphaRows(VP8LDecoder* const dec, int row) argument
1464 VP8LDecoder* dec; local
1514 VP8LDecoder* const dec = alph_dec->vp8l_dec_; local
1532 VP8LDecodeHeader(VP8LDecoder* const dec, VP8Io* const io) argument
1561 VP8LDecodeImage(VP8LDecoder* const dec) argument
[all...]
/external/opencv3/3rdparty/libjasper/
H A Djp2_dec.c87 static void jp2_dec_destroy(jp2_dec_t *dec);
101 jp2_dec_t *dec; local
119 dec = 0;
123 if (!(dec = jp2_dec_create())) {
165 if (!dec->ihdr) {
166 dec->ihdr = box;
171 if (!dec->bpcc) {
172 dec->bpcc = box;
177 if (!dec->cdef) {
178 dec
478 jp2_dec_t *dec; local
494 jp2_dec_destroy(jp2_dec_t *dec) argument
[all...]
H A Djpc_mqdec.h127 void jpc_mqdec_destroy(jpc_mqdec_t *dec);
134 void jpc_mqdec_setinput(jpc_mqdec_t *dec, jas_stream_t *in);
137 void jpc_mqdec_init(jpc_mqdec_t *dec);
144 #define jpc_mqdec_setcurctx(dec, ctxno) \
148 void jpc_mqdec_setctx(jpc_mqdec_t *dec, int ctxno, jpc_mqctx_t *ctx);
151 void jpc_mqdec_setctxs(jpc_mqdec_t *dec, int numctxs, jpc_mqctx_t *ctxs);
159 #define jpc_mqdec_getbit(dec) \
160 jpc_mqdec_getbit_macro(dec)
162 #define jpc_mqdec_getbit(dec) \
163 jpc_mqdec_getbit_func(dec)
[all...]
H A Djpc_t1dec.h86 int jpc_dec_decodecblks(jpc_dec_t *dec, jpc_dec_tile_t *tile);
H A Djpc_t2dec.h89 int jpc_dec_decodepkts(jpc_dec_t *dec, jas_stream_t *pkthdrstream,
93 jpc_pi_t *jpc_dec_pi_create(jpc_dec_t *dec, jpc_dec_tile_t *tile);
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_mpeg12_decoder.c86 init_zscan_buffer(struct vl_mpeg12_decoder *dec, struct vl_mpeg12_buffer *buffer) argument
94 assert(dec && buffer);
98 res_tmpl.format = dec->zscan_source_format;
99 res_tmpl.width0 = dec->blocks_per_line * VL_BLOCK_WIDTH * VL_BLOCK_HEIGHT;
100 res_tmpl.height0 = align(dec->num_blocks, dec->blocks_per_line) / dec->blocks_per_line;
106 res = dec->base.context->screen->resource_create(dec->base.context->screen, &res_tmpl);
114 buffer->zscan_source = dec
160 init_idct_buffer(struct vl_mpeg12_decoder *dec, struct vl_mpeg12_buffer *buffer) argument
205 init_mc_buffer(struct vl_mpeg12_decoder *dec, struct vl_mpeg12_buffer *buf) argument
328 UploadYcbcrBlocks(struct vl_mpeg12_decoder *dec, struct vl_mpeg12_buffer *buf, const struct pipe_mpeg12_macroblock *mb) argument
404 struct vl_mpeg12_decoder *dec = (struct vl_mpeg12_decoder*)decoder; local
447 vl_mpeg12_get_decode_buffer(struct vl_mpeg12_decoder *dec, struct pipe_video_buffer *target) argument
510 struct vl_mpeg12_decoder *dec = (struct vl_mpeg12_decoder *)decoder; local
579 struct vl_mpeg12_decoder *dec = (struct vl_mpeg12_decoder *)decoder; local
650 struct vl_mpeg12_decoder *dec = (struct vl_mpeg12_decoder *)decoder; local
673 struct vl_mpeg12_decoder *dec = (struct vl_mpeg12_decoder *)decoder; local
771 init_pipe_state(struct vl_mpeg12_decoder *dec) argument
816 find_format_config(struct vl_mpeg12_decoder *dec, const struct format_config configs[], unsigned num_configs) argument
850 init_zscan(struct vl_mpeg12_decoder *dec, const struct format_config* format_config) argument
875 init_idct(struct vl_mpeg12_decoder *dec, const struct format_config* format_config) argument
960 init_mc_source_widthout_idct(struct vl_mpeg12_decoder *dec, const struct format_config* format_config) argument
985 struct vl_mpeg12_decoder *dec = priv; local
1006 struct vl_mpeg12_decoder *dec = priv; local
1032 struct vl_mpeg12_decoder *dec; local
[all...]
/external/webp/src/demux/
H A Danim_decode.c64 WebPAnimDecoder* const dec) {
66 WebPDecoderConfig* config = &dec->config_;
74 dec->blend_func_ = (mode == MODE_RGBA || mode == MODE_BGRA)
89 WebPAnimDecoder* dec = NULL; local
96 dec = (WebPAnimDecoder*)WebPSafeCalloc(1ULL, sizeof(*dec));
97 if (dec == NULL) goto Error;
104 if (!ApplyDecoderOptions(&options, dec)) goto Error;
106 dec->demux_ = WebPDemux(webp_data);
107 if (dec
63 ApplyDecoderOptions(const WebPAnimDecoderOptions* const dec_options, WebPAnimDecoder* const dec) argument
134 WebPAnimDecoderGetInfo(const WebPAnimDecoder* dec, WebPAnimInfo* info) argument
305 WebPAnimDecoderGetNext(WebPAnimDecoder* dec, uint8_t** buf_ptr, int* timestamp_ptr) argument
416 WebPAnimDecoderHasMoreFrames(const WebPAnimDecoder* dec) argument
421 WebPAnimDecoderReset(WebPAnimDecoder* dec) argument
430 WebPAnimDecoderGetDemuxer(const WebPAnimDecoder* dec) argument
435 WebPAnimDecoderDelete(WebPAnimDecoder* dec) argument
[all...]
/external/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_video.c36 nouveau_vpe_init(struct nouveau_decoder *dec) { argument
38 if (dec->cmds)
40 ret = nouveau_bo_map(dec->cmd_bo, NOUVEAU_BO_RDWR, dec->client);
45 ret = nouveau_bo_map(dec->data_bo, NOUVEAU_BO_RDWR, dec->client);
50 dec->cmds = dec->cmd_bo->map;
51 dec->data = dec
56 nouveau_vpe_synch(struct nouveau_decoder *dec) argument
71 nouveau_vpe_fini(struct nouveau_decoder *dec) argument
104 nouveau_vpe_mb_dct_blocks(struct nouveau_decoder *dec, const struct pipe_mpeg12_macroblock *mb) argument
140 nouveau_vpe_mb_data_blocks(struct nouveau_decoder *dec, const struct pipe_mpeg12_macroblock *mb) argument
158 nouveau_vpe_mb_dct_header(struct nouveau_decoder *dec, const struct pipe_mpeg12_macroblock *mb, bool luma) argument
243 nouveau_vpe_mb_mv(struct nouveau_decoder *dec, unsigned mc_header, bool luma, bool frame, bool forward, bool vert, int x, int y, const short motions[2], unsigned surface, bool first) argument
282 nouveau_vpe_mb_mv_header(struct nouveau_decoder *dec, const struct pipe_mpeg12_macroblock *mb, bool luma) argument
385 nouveau_decoder_surface_index(struct nouveau_decoder *dec, struct pipe_video_buffer *buffer) argument
430 struct nouveau_decoder *dec = (struct nouveau_decoder *)decoder; local
475 struct nouveau_decoder *dec = (struct nouveau_decoder *)decoder; local
483 struct nouveau_decoder *dec = (struct nouveau_decoder*)decoder; local
517 struct nouveau_decoder *dec; local
[all...]
/external/libvpx/libvpx/test/
H A Ddecode_api_test.cc35 vpx_codec_ctx_t dec; local
38 EXPECT_EQ(VPX_CODEC_INVALID_PARAM, vpx_codec_dec_init(&dec, NULL, NULL, 0));
52 EXPECT_EQ(VPX_CODEC_OK, vpx_codec_dec_init(&dec, kCodecs[i], NULL, 0));
54 vpx_codec_decode(&dec, buf, NELEMENTS(buf), NULL, 0));
56 vpx_codec_decode(&dec, NULL, NELEMENTS(buf), NULL, 0));
58 vpx_codec_decode(&dec, buf, 0, NULL, 0));
60 EXPECT_EQ(VPX_CODEC_OK, vpx_codec_destroy(&dec));
66 vpx_codec_ctx_t dec; local
69 EXPECT_EQ(VPX_CODEC_OK, vpx_codec_dec_init(&dec, &vpx_codec_vp8_dx_algo, NULL,
73 vpx_codec_dec_init(&dec,
82 TestVp9Controls(vpx_codec_ctx_t *dec) argument
133 vpx_codec_ctx_t dec; local
[all...]
/external/clang/test/SemaCXX/
H A Dincrement-decrement.cpp6 const int &dec = i--; variable

Completed in 1349 milliseconds

1234567891011>>