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

1234567891011>>

/external/chromium_org/third_party/libwebp/dec/
H A Dalpha.c26 ALPHDecoder* const dec = (ALPHDecoder*)WebPSafeCalloc(1ULL, sizeof(*dec)); local
27 return dec;
30 void ALPHDelete(ALPHDecoder* const dec) { argument
31 if (dec != NULL) {
32 VP8LDelete(dec->vp8l_dec_);
33 dec->vp8l_dec_ = NULL;
34 WebPSafeFree(dec);
45 static int ALPHInit(ALPHDecoder* const dec, const uint8_t* data, argument
55 dec
88 ALPHDecode(VP8Decoder* const dec, int row, int num_rows) argument
120 VP8DecompressAlphaRows(VP8Decoder* const dec, int row, int num_rows) argument
[all...]
H A Dframe.c20 static void ReconstructRow(const VP8Decoder* const dec,
33 static void DoFilter(const VP8Decoder* const dec, int mb_x, int mb_y) { argument
34 const VP8ThreadContext* const ctx = &dec->thread_ctx_;
36 const int y_bps = dec->cache_y_stride_;
38 uint8_t* const y_dst = dec->cache_y_ + cache_id * 16 * y_bps + mb_x * 16;
45 if (dec->filter_type_ == 1) { // simple
59 const int uv_bps = dec->cache_uv_stride_;
60 uint8_t* const u_dst = dec->cache_u_ + cache_id * 8 * uv_bps + mb_x * 8;
61 uint8_t* const v_dst = dec->cache_v_ + cache_id * 8 * uv_bps + mb_x * 8;
83 static void FilterRow(const VP8Decoder* const dec) { argument
95 PrecomputeFilterStrengths(VP8Decoder* const dec) argument
156 VP8InitDithering(const WebPDecoderOptions* const options, VP8Decoder* const dec) argument
215 DitherRow(VP8Decoder* const dec) argument
246 FinishRow(VP8Decoder* const dec, VP8Io* const io) argument
344 VP8ProcessRow(VP8Decoder* const dec, VP8Io* const io) argument
392 VP8EnterCritical(VP8Decoder* const dec, VP8Io* const io) argument
447 VP8ExitCritical(VP8Decoder* const dec, VP8Io* const io) argument
487 InitThreadContext(VP8Decoder* const dec) argument
534 AllocateMemory(VP8Decoder* const dec) argument
636 InitIo(VP8Decoder* const dec, VP8Io* io) argument
647 VP8InitFrame(VP8Decoder* const dec, VP8Io* io) argument
708 ReconstructRow(const VP8Decoder* const dec, const VP8ThreadContext* ctx) 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
190 ParsePartitions(VP8Decoder* const dec, const uint8_t* buf, size_t size) argument
220 ParseFilterHeader(VP8BitReader* br, VP8Decoder* const dec) argument
246 VP8GetHeaders(VP8Decoder* const dec, VP8Io* const io) argument
456 ParseResiduals(VP8Decoder* const dec, VP8MB* const mb, VP8BitReader* const token_br) argument
550 VP8DecodeMB(VP8Decoder* const dec, VP8BitReader* const token_br) argument
576 VP8InitScanline(VP8Decoder* const dec) argument
584 ParseFrame(VP8Decoder* const dec, VP8Io* io) argument
614 VP8Decode(VP8Decoder* const dec, VP8Io* const io) argument
653 VP8Clear(VP8Decoder* const dec) argument
[all...]
H A Dvp8l.c77 VP8LDecoder* const dec,
182 VP8LDecoder* const dec, const int* const code_length_code_lengths,
185 VP8LBitReader* const br = &dec->br_;
194 dec->status_ = VP8_STATUS_BITSTREAM_ERROR;
202 dec->status_ = VP8_STATUS_BITSTREAM_ERROR;
225 dec->status_ = VP8_STATUS_BITSTREAM_ERROR;
242 static int ReadHuffmanCode(int alphabet_size, VP8LDecoder* const dec, argument
246 VP8LBitReader* const br = &dec->br_;
271 dec->status_ = VP8_STATUS_BITSTREAM_ERROR;
280 ok = ReadHuffmanCodeLengths(dec, code_length_code_length
181 ReadHuffmanCodeLengths( VP8LDecoder* const dec, const int* const code_length_code_lengths, int num_symbols, int* const code_lengths) argument
293 ReadHuffmanCodes(VP8LDecoder* const dec, int xsize, int ysize, int color_cache_bits, int allow_recursion) argument
385 AllocateAndInitRescaler(VP8LDecoder* const dec, VP8Io* const io) argument
438 EmitRescaledRowsRGBA(const VP8LDecoder* const dec, uint8_t* in, int in_stride, int mb_h, uint8_t* const out, int out_stride) argument
541 ExportYUVA(const VP8LDecoder* const dec, int y_pos) argument
556 EmitRescaledRowsYUVA(const VP8LDecoder* const dec, uint8_t* in, int in_stride, int mb_h) argument
572 EmitRowsYUVA(const VP8LDecoder* const dec, const uint8_t* in, int in_stride, int mb_w, int num_rows) argument
635 ApplyInverseTransforms(VP8LDecoder* const dec, int num_rows, const uint32_t* const rows) argument
655 ApplyInverseTransformsAlpha(VP8LDecoder* const dec, int num_rows, const uint8_t* const rows) argument
670 ProcessRows(VP8LDecoder* const dec, int row) argument
726 ExtractPalettedAlphaRows(VP8LDecoder* const dec, int row) argument
736 DecodeAlphaData(VP8LDecoder* const dec, uint8_t* const data, int width, int height, int last_row) argument
822 DecodeImageData(VP8LDecoder* const dec, uint32_t* const data, int width, int height, int last_row, ProcessRowsFunc process_func) argument
973 ReadTransform(int* const xsize, int const* ysize, VP8LDecoder* const dec) argument
1047 VP8LDecoder* const dec = (VP8LDecoder*)WebPSafeCalloc(1ULL, sizeof(*dec)); local
1058 VP8LClear(VP8LDecoder* const dec) argument
1077 VP8LDelete(VP8LDecoder* const dec) argument
1084 UpdateDecoder(VP8LDecoder* const dec, int width, int height) argument
1094 DecodeImageStream(int xsize, int ysize, int is_level0, VP8LDecoder* const dec, uint32_t** const decoded_data) argument
1191 AllocateInternalBuffers32b(VP8LDecoder* const dec, int final_width) argument
1212 AllocateInternalBuffers8b(VP8LDecoder* const dec) argument
1226 ExtractAlphaRows(VP8LDecoder* const dec, int row) argument
1249 VP8LDecoder* dec; local
1301 VP8LDecoder* const dec = alph_dec->vp8l_dec_; local
1320 VP8LDecodeHeader(VP8LDecoder* const dec, VP8Io* const io) argument
1350 VP8LDecodeImage(VP8LDecoder* const dec) argument
[all...]
H A Dtree.c283 VP8Decoder* const dec, int mb_x) {
284 uint8_t* const top = dec->intra_t_ + 4 * mb_x;
285 uint8_t* const left = dec->intra_l_;
286 VP8MBData* const block = dec->mb_data_ + mb_x;
290 if (dec->segment_hdr_.update_map_) {
292 block->segment_ = !VP8GetBit(br, dec->proba_.segments_[0])
293 ? VP8GetBit(br, dec->proba_.segments_[1])
294 : 2 + VP8GetBit(br, dec->proba_.segments_[2]);
298 if (dec->use_skip_proba_) block->skip_ = VP8GetBit(br, dec
282 ParseIntraMode(VP8BitReader* const br, VP8Decoder* const dec, int mb_x) argument
349 VP8ParseIntraModeRow(VP8BitReader* const br, VP8Decoder* const dec) argument
497 VP8ParseProba(VP8BitReader* const br, VP8Decoder* const dec) argument
[all...]
/external/webp/src/dec/
H A Dalpha.c26 ALPHDecoder* const dec = (ALPHDecoder*)WebPSafeCalloc(1ULL, sizeof(*dec)); local
27 return dec;
30 void ALPHDelete(ALPHDecoder* const dec) { argument
31 if (dec != NULL) {
32 VP8LDelete(dec->vp8l_dec_);
33 dec->vp8l_dec_ = NULL;
34 WebPSafeFree(dec);
45 static int ALPHInit(ALPHDecoder* const dec, const uint8_t* data, argument
55 dec
88 ALPHDecode(VP8Decoder* const dec, int row, int num_rows) argument
120 VP8DecompressAlphaRows(VP8Decoder* const dec, int row, int num_rows) argument
[all...]
H A Dframe.c20 static void ReconstructRow(const VP8Decoder* const dec,
33 static void DoFilter(const VP8Decoder* const dec, int mb_x, int mb_y) { argument
34 const VP8ThreadContext* const ctx = &dec->thread_ctx_;
36 const int y_bps = dec->cache_y_stride_;
38 uint8_t* const y_dst = dec->cache_y_ + cache_id * 16 * y_bps + mb_x * 16;
45 if (dec->filter_type_ == 1) { // simple
59 const int uv_bps = dec->cache_uv_stride_;
60 uint8_t* const u_dst = dec->cache_u_ + cache_id * 8 * uv_bps + mb_x * 8;
61 uint8_t* const v_dst = dec->cache_v_ + cache_id * 8 * uv_bps + mb_x * 8;
83 static void FilterRow(const VP8Decoder* const dec) { argument
95 PrecomputeFilterStrengths(VP8Decoder* const dec) argument
156 VP8InitDithering(const WebPDecoderOptions* const options, VP8Decoder* const dec) argument
215 DitherRow(VP8Decoder* const dec) argument
246 FinishRow(VP8Decoder* const dec, VP8Io* const io) argument
344 VP8ProcessRow(VP8Decoder* const dec, VP8Io* const io) argument
392 VP8EnterCritical(VP8Decoder* const dec, VP8Io* const io) argument
447 VP8ExitCritical(VP8Decoder* const dec, VP8Io* const io) argument
487 InitThreadContext(VP8Decoder* const dec) argument
534 AllocateMemory(VP8Decoder* const dec) argument
636 InitIo(VP8Decoder* const dec, VP8Io* io) argument
647 VP8InitFrame(VP8Decoder* const dec, VP8Io* io) argument
708 ReconstructRow(const VP8Decoder* const dec, const VP8ThreadContext* ctx) 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
190 ParsePartitions(VP8Decoder* const dec, const uint8_t* buf, size_t size) argument
220 ParseFilterHeader(VP8BitReader* br, VP8Decoder* const dec) argument
246 VP8GetHeaders(VP8Decoder* const dec, VP8Io* const io) argument
456 ParseResiduals(VP8Decoder* const dec, VP8MB* const mb, VP8BitReader* const token_br) argument
550 VP8DecodeMB(VP8Decoder* const dec, VP8BitReader* const token_br) argument
576 VP8InitScanline(VP8Decoder* const dec) argument
584 ParseFrame(VP8Decoder* const dec, VP8Io* io) argument
614 VP8Decode(VP8Decoder* const dec, VP8Io* const io) argument
653 VP8Clear(VP8Decoder* const dec) argument
[all...]
H A Dvp8l.c77 VP8LDecoder* const dec,
182 VP8LDecoder* const dec, const int* const code_length_code_lengths,
185 VP8LBitReader* const br = &dec->br_;
194 dec->status_ = VP8_STATUS_BITSTREAM_ERROR;
202 dec->status_ = VP8_STATUS_BITSTREAM_ERROR;
225 dec->status_ = VP8_STATUS_BITSTREAM_ERROR;
242 static int ReadHuffmanCode(int alphabet_size, VP8LDecoder* const dec, argument
246 VP8LBitReader* const br = &dec->br_;
271 dec->status_ = VP8_STATUS_BITSTREAM_ERROR;
280 ok = ReadHuffmanCodeLengths(dec, code_length_code_length
181 ReadHuffmanCodeLengths( VP8LDecoder* const dec, const int* const code_length_code_lengths, int num_symbols, int* const code_lengths) argument
293 ReadHuffmanCodes(VP8LDecoder* const dec, int xsize, int ysize, int color_cache_bits, int allow_recursion) argument
385 AllocateAndInitRescaler(VP8LDecoder* const dec, VP8Io* const io) argument
438 EmitRescaledRowsRGBA(const VP8LDecoder* const dec, uint8_t* in, int in_stride, int mb_h, uint8_t* const out, int out_stride) argument
541 ExportYUVA(const VP8LDecoder* const dec, int y_pos) argument
556 EmitRescaledRowsYUVA(const VP8LDecoder* const dec, uint8_t* in, int in_stride, int mb_h) argument
572 EmitRowsYUVA(const VP8LDecoder* const dec, const uint8_t* in, int in_stride, int mb_w, int num_rows) argument
635 ApplyInverseTransforms(VP8LDecoder* const dec, int num_rows, const uint32_t* const rows) argument
655 ApplyInverseTransformsAlpha(VP8LDecoder* const dec, int num_rows, const uint8_t* const rows) argument
670 ProcessRows(VP8LDecoder* const dec, int row) argument
726 ExtractPalettedAlphaRows(VP8LDecoder* const dec, int row) argument
736 DecodeAlphaData(VP8LDecoder* const dec, uint8_t* const data, int width, int height, int last_row) argument
822 DecodeImageData(VP8LDecoder* const dec, uint32_t* const data, int width, int height, int last_row, ProcessRowsFunc process_func) argument
973 ReadTransform(int* const xsize, int const* ysize, VP8LDecoder* const dec) argument
1047 VP8LDecoder* const dec = (VP8LDecoder*)WebPSafeCalloc(1ULL, sizeof(*dec)); local
1058 VP8LClear(VP8LDecoder* const dec) argument
1077 VP8LDelete(VP8LDecoder* const dec) argument
1084 UpdateDecoder(VP8LDecoder* const dec, int width, int height) argument
1094 DecodeImageStream(int xsize, int ysize, int is_level0, VP8LDecoder* const dec, uint32_t** const decoded_data) argument
1191 AllocateInternalBuffers32b(VP8LDecoder* const dec, int final_width) argument
1212 AllocateInternalBuffers8b(VP8LDecoder* const dec) argument
1226 ExtractAlphaRows(VP8LDecoder* const dec, int row) argument
1249 VP8LDecoder* dec; local
1301 VP8LDecoder* const dec = alph_dec->vp8l_dec_; local
1320 VP8LDecodeHeader(VP8LDecoder* const dec, VP8Io* const io) argument
1350 VP8LDecodeImage(VP8LDecoder* const dec) argument
[all...]
H A Dtree.c283 VP8Decoder* const dec, int mb_x) {
284 uint8_t* const top = dec->intra_t_ + 4 * mb_x;
285 uint8_t* const left = dec->intra_l_;
286 VP8MBData* const block = dec->mb_data_ + mb_x;
290 if (dec->segment_hdr_.update_map_) {
292 block->segment_ = !VP8GetBit(br, dec->proba_.segments_[0])
293 ? VP8GetBit(br, dec->proba_.segments_[1])
294 : 2 + VP8GetBit(br, dec->proba_.segments_[2]);
298 if (dec->use_skip_proba_) block->skip_ = VP8GetBit(br, dec
282 ParseIntraMode(VP8BitReader* const br, VP8Decoder* const dec, int mb_x) argument
349 VP8ParseIntraModeRow(VP8BitReader* const br, VP8Decoder* const dec) argument
497 VP8ParseProba(VP8BitReader* const br, VP8Decoder* const dec) argument
[all...]
/external/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/mesa/src/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/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/clang/test/SemaCXX/
H A Dincrement-decrement.cpp6 const int &dec = i--; variable
/external/chromium_org/third_party/opus/src/celt/
H A Dlaplace.h43 @param dec Entropy decoder state
48 int ec_laplace_decode(ec_dec *dec, unsigned fs, int decay);
/external/javassist/src/main/javassist/runtime/
H A DCflow.java31 void dec() { --depth; } method in class:Cflow.Depth
46 public void exit() { ((Depth)get()).dec(); }
/external/libcxx/test/input.output/iostreams.base/ios.base/fmtflags.state/
H A Dunsetf_mask.pass.cpp32 assert(t.flags() == (test::skipws | test::dec));
33 t.unsetf(test::dec | test::right);
H A Dsetf_fmtflags.pass.cpp32 assert(t.flags() == (test::skipws | test::dec));
34 assert(f == (test::skipws | test::dec));
35 assert(t.flags() == (test::skipws | test::dec | test::hex | test::right));
H A Dsetf_fmtflags_mask.pass.cpp32 assert(t.flags() == (test::skipws | test::dec));
33 test::fmtflags f = t.setf(test::hex | test::right, test::dec | test::right);
34 assert(f == (test::skipws | test::dec));
H A Dflags.pass.cpp32 assert(t.flags() == (test::skipws | test::dec));
/external/libcxx/test/input.output/iostreams.base/std.ios.manip/basefield.manip/
H A Ddec.pass.cpp14 // ios_base& dec(ios_base& str);
26 std::ios_base& r = std::dec(ios);
28 assert(ios.flags() & std::ios::dec);
/external/libopus/celt/
H A Dlaplace.h43 @param dec Entropy decoder state
48 int ec_laplace_decode(ec_dec *dec, unsigned fs, int decay);
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Ddecode_api_test.cc31 vpx_codec_ctx_t dec; local
34 EXPECT_EQ(VPX_CODEC_INVALID_PARAM, vpx_codec_dec_init(&dec, NULL, NULL, 0));
48 EXPECT_EQ(VPX_CODEC_OK, vpx_codec_dec_init(&dec, kCodecs[i], NULL, 0));
50 vpx_codec_decode(&dec, buf, NELEMENTS(buf), NULL, 0));
52 vpx_codec_decode(&dec, NULL, NELEMENTS(buf), NULL, 0));
54 vpx_codec_decode(&dec, buf, 0, NULL, 0));
56 EXPECT_EQ(VPX_CODEC_OK, vpx_codec_destroy(&dec));
63 void TestVp9Controls(vpx_codec_ctx_t *dec) { argument
72 const vpx_codec_err_t res = vpx_codec_control_(dec, kControls[i], val);
82 vpx_codec_control_(dec, kControl
113 vpx_codec_ctx_t dec; local
[all...]
/external/eigen/Eigen/src/misc/
H A DKernel.h44 kernel_retval_base(const DecompositionType& dec) argument
45 : m_dec(dec),
46 m_rank(dec.rank()),
47 m_cols(m_rank==dec.cols() ? 1 : dec.cols() - m_rank)
53 inline const DecompositionType& dec() const { return m_dec; } function in struct:Eigen::internal::kernel_retval_base
73 using Base::dec; \
77 kernel_retval(const DecompositionType& dec) : Base(dec) {}

Completed in 4703 milliseconds

1234567891011>>