HomeSort by relevance Sort by last modified time
    Searched refs:dec (Results 1 - 25 of 581) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/ndk/platforms/android-9/arch-mips/include/asm/
mutex.h 19 #include <asm-generic/mutex-dec.h>
  /external/chromium_org/third_party/libwebp/dec/
alpha.c 26 ALPHDecoder* const dec = (ALPHDecoder*)WebPSafeCalloc(1ULL, sizeof(*dec)); local
27 return dec;
30 void ALPHDelete(ALPHDecoder* const dec) {
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,
55 dec->width_ = width
    [all...]
frame.c 20 static void ReconstructRow(const VP8Decoder* const dec,
33 static void DoFilter(const VP8Decoder* const dec, int mb_x, int mb_y) {
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) {
    [all...]
vp8.c 32 static void SetOk(VP8Decoder* const dec) {
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->num_parts_ = 1
    [all...]
vp8l.c 77 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,
246 VP8LBitReader* const br = &dec->br_;
271 dec->status_ = VP8_STATUS_BITSTREAM_ERROR;
280 ok = ReadHuffmanCodeLengths(dec, code_length_code_lengths, alphabet_size
1047 VP8LDecoder* const dec = (VP8LDecoder*)WebPSafeCalloc(1ULL, sizeof(*dec)); local
1249 VP8LDecoder* dec; local
1301 VP8LDecoder* const dec = alph_dec->vp8l_dec_; local
    [all...]
tree.c 283 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->skip_p_)
    [all...]
decode_vp8.h 35 // VP8Decoder* dec = VP8New();
36 // bool ok = VP8Decode(dec);
37 // if (!ok) printf("Error: %s\n", VP8StatusMessage(dec));
38 // VP8Delete(dec);
137 int VP8GetHeaders(VP8Decoder* const dec, VP8Io* const io);
141 int VP8Decode(VP8Decoder* const dec, VP8Io* const io);
144 VP8StatusCode VP8Status(VP8Decoder* const dec);
147 const char* VP8StatusMessage(VP8Decoder* const dec);
151 void VP8Clear(VP8Decoder* const dec);
154 void VP8Delete(VP8Decoder* const dec);
    [all...]
quant.c 62 void VP8ParseQuant(VP8Decoder* const dec) {
63 VP8BitReader* const br = &dec->br_;
71 const VP8SegmentHeader* const hdr = &dec->segment_hdr_;
83 dec->dqm_[i] = dec->dqm_[0];
90 VP8QuantMatrix* const m = &dec->dqm_[i];
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_mpeg12_decoder.c 86 init_zscan_buffer(struct vl_mpeg12_decoder *dec, struct vl_mpeg12_buffer *buffer)
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->base.context->create_sampler_view(dec->base.context, res, &sv_tmpl)
404 struct vl_mpeg12_decoder *dec = (struct vl_mpeg12_decoder*)decoder; local
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
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/
vl_mpeg12_decoder.c 86 init_zscan_buffer(struct vl_mpeg12_decoder *dec, struct vl_mpeg12_buffer *buffer)
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->base.context->create_sampler_view(dec->base.context, res, &sv_tmpl)
404 struct vl_mpeg12_decoder *dec = (struct vl_mpeg12_decoder*)decoder; local
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
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/
nouveau_video.c 36 nouveau_vpe_init(struct nouveau_decoder *dec) {
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->data_bo->map
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/
nouveau_video.c 36 nouveau_vpe_init(struct nouveau_decoder *dec) {
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->data_bo->map
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/
increment-decrement.cpp 6 const int &dec = i--; variable
  /external/eigen/Eigen/src/misc/
Kernel.h 44 kernel_retval_base(const DecompositionType& dec)
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) {}
Image.h 43 image_retval_base(const DecompositionType& dec, const MatrixType& originalMatrix)
44 : m_dec(dec), m_rank(dec.rank()),
52 inline const DecompositionType& dec() const { return m_dec; } function in struct:Eigen::internal::image_retval_base
74 using Base::dec; \
79 image_retval(const DecompositionType& dec, const MatrixType& originalMatrix) \
80 : Base(dec, originalMatrix) {}
  /external/chromium_org/third_party/opus/src/celt/
laplace.h 43 @param dec Entropy decoder state
48 int ec_laplace_decode(ec_dec *dec, unsigned fs, int decay);
  /external/javassist/src/main/javassist/runtime/
Cflow.java 31 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/
unsetf_mask.pass.cpp 32 assert(t.flags() == (test::skipws | test::dec));
33 t.unsetf(test::dec | test::right);
setf_fmtflags.pass.cpp 32 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));
setf_fmtflags_mask.pass.cpp 32 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));
flags.pass.cpp 32 assert(t.flags() == (test::skipws | test::dec));
flags_fmtflags.pass.cpp 32 assert(t.flags() == (test::skipws | test::dec));
34 assert(f == (test::skipws | test::dec));
  /external/libcxx/test/input.output/iostreams.base/std.ios.manip/basefield.manip/
dec.pass.cpp 14 // ios_base& dec(ios_base& str);
26 std::ios_base& r = std::dec(ios);
28 assert(ios.flags() & std::ios::dec);
  /external/libopus/celt/
laplace.h 43 @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/
decode_api_test.cc 31 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) {
72 const vpx_codec_err_t res = vpx_codec_control_(dec, kControls[i], val);
82 vpx_codec_control_(dec, kControls[i], NULL))
113 vpx_codec_ctx_t dec; local
    [all...]

Completed in 2756 milliseconds

1 2 3 4 5 6 7 8 91011>>