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

123456789

/external/webp/src/dec/
H A Dlayer.c22 int VP8DecodeLayer(VP8Decoder* const dec) { argument
23 assert(dec);
24 assert(dec->layer_data_size_ > 0);
25 (void)dec;
H A Dframe.c31 int VP8InitFrame(VP8Decoder* const dec, VP8Io* io) { argument
32 const int mb_w = dec->mb_w_;
36 const int yuv_size = YUV_SIZE * sizeof(*dec->yuv_b_);
37 const int coeffs_size = 384 * sizeof(*dec->coeffs_);
38 const int cache_height = (16 + kFilterExtraRows[dec->filter_type_]) * 3 / 2;
41 dec->alpha_data_ ? (dec->pic_hdr_.width_ * dec->pic_hdr_.height_) : 0;
48 if (needed > dec->mem_size_) {
49 free(dec
131 DoFilter(const VP8Decoder* const dec, int mb_x, int mb_y) argument
179 VP8FilterRow(const VP8Decoder* const dec) argument
192 VP8StoreBlock(VP8Decoder* const dec) argument
252 VP8FinishRow(VP8Decoder* const dec, VP8Io* io) argument
331 VP8FinishFrameSetup(VP8Decoder* const dec, VP8Io* const io) argument
389 CheckMode(VP8Decoder* const dec, int mode) argument
404 VP8ReconstructBlock(VP8Decoder* const dec) argument
[all...]
H A Dvp8.c28 static void SetOk(VP8Decoder* const dec) { argument
29 dec->status_ = VP8_STATUS_OK;
30 dec->error_msg_ = "OK";
43 VP8Decoder* dec = (VP8Decoder*)calloc(1, sizeof(VP8Decoder)); local
44 if (dec) {
45 SetOk(dec);
46 dec->ready_ = 0;
48 return dec;
51 VP8StatusCode VP8Status(VP8Decoder* const dec) { argument
52 if (!dec) retur
56 VP8StatusMessage(VP8Decoder* const dec) argument
62 VP8Delete(VP8Decoder* const dec) argument
69 VP8SetError(VP8Decoder* const dec, VP8StatusCode error, const char * const msg) argument
178 ParsePartitions(VP8Decoder* const dec, const uint8_t* buf, uint32_t size) argument
208 ParseFilterHeader(VP8BitReader* br, VP8Decoder* const dec) argument
252 VP8GetHeaders(VP8Decoder* const dec, VP8Io* const io) argument
569 ParseResiduals(VP8Decoder* const dec, VP8MB* const mb, VP8BitReader* const token_br) argument
651 VP8DecodeMB(VP8Decoder* const dec, VP8BitReader* const token_br) argument
685 ParseFrame(VP8Decoder* const dec, VP8Io* io) argument
731 VP8Decode(VP8Decoder* const dec, VP8Io* const io) argument
775 VP8Clear(VP8Decoder* const dec) argument
[all...]
H A Dalpha.c25 const uint8_t* VP8DecompressAlphaRows(VP8Decoder* const dec, argument
27 uint8_t* output = dec->alpha_plane_;
28 const int stride = dec->pic_hdr_.width_;
29 if (row < 0 || row + num_rows > dec->pic_hdr_.height_) {
36 const uint8_t* data = dec->alpha_data_;
37 size_t data_size = dec->alpha_data_size_;
38 const size_t output_size = stride * dec->pic_hdr_.height_;
H A Dquant.c64 void VP8ParseQuant(VP8Decoder* const dec) { argument
65 VP8BitReader* const br = &dec->br_;
73 const VP8SegmentHeader* const hdr = &dec->segment_hdr_;
85 dec->dqm_[i] = dec->dqm_[0];
92 VP8QuantMatrix* const m = &dec->dqm_[i];
H A Dtree.c337 void VP8ParseIntraMode(VP8BitReader* const br, VP8Decoder* const dec) { argument
338 uint8_t* const top = dec->intra_t_ + 4 * dec->mb_x_;
339 uint8_t* const left = dec->intra_l_;
341 dec->is_i4x4_ = !VP8GetBit(br, 145); // decide for B_PRED first
342 if (!dec->is_i4x4_) {
346 dec->imodes_[0] = ymode;
350 uint8_t* modes = dec->imodes_;
383 dec->uvmode_ = !VP8GetBit(br, 142) ? DC_PRED
539 void VP8ParseProba(VP8BitReader* const br, VP8Decoder* const dec) { argument
[all...]
H A Didec.c90 VP8Decoder* const dec = idec->dec_; local
91 const int last_part = dec->num_parts_ - 1;
108 if (dec->parts_[p].buf_) {
109 REMAP(dec->parts_[p].buf_, base, new_buf);
110 REMAP(dec->parts_[p].buf_end_, base, new_buf);
126 dec->parts_[last_part].buf_end_ = mem->buf_ + mem->end_;
139 VP8Decoder* const dec = idec->dec_; local
140 const int last_part = dec->num_parts_ - 1;
149 if (dec->parts_[p].buf_) {
150 REMAP(dec
201 SaveContext(const VP8Decoder* dec, const VP8BitReader* token_br, MBContext* const context) argument
215 RestoreContext(const MBContext* context, VP8Decoder* const dec, VP8BitReader* const token_br) argument
300 VP8Decoder* const dec = idec->dec_; local
349 VP8Decoder* const dec = idec->dec_; local
[all...]
H A Dvp8i.h268 int VP8SetError(VP8Decoder* const dec,
280 void VP8ParseProba(VP8BitReader* const br, VP8Decoder* const dec);
281 void VP8ParseIntraMode(VP8BitReader* const br, VP8Decoder* const dec);
284 void VP8ParseQuant(VP8Decoder* const dec);
287 int VP8InitFrame(VP8Decoder* const dec, VP8Io* io);
289 void VP8ReconstructBlock(VP8Decoder* const dec);
291 VP8StatusCode VP8FinishFrameSetup(VP8Decoder* const dec, VP8Io* const io);
293 void VP8FilterRow(const VP8Decoder* const dec);
295 void VP8StoreBlock(VP8Decoder* const dec);
297 int VP8FinishRow(VP8Decoder* const dec, VP8I
[all...]
/external/bluetooth/bluez/audio/
H A Dgstsbcdec.c61 GstSbcDec *dec = GST_SBC_DEC(gst_pad_get_parent(pad)); local
66 codesize = sbc_get_codesize(&dec->sbc);
68 if (dec->buffer) {
70 buffer = gst_buffer_span(dec->buffer, 0, buffer,
71 GST_BUFFER_SIZE(dec->buffer) + GST_BUFFER_SIZE(buffer));
73 gst_buffer_unref(dec->buffer);
74 dec->buffer = NULL;
86 res = gst_pad_alloc_buffer_and_set_caps(dec->srcpad,
93 consumed = sbc_decode(&dec->sbc, data + offset, size - offset,
100 if (dec
144 GstSbcDec *dec = GST_SBC_DEC(element); local
[all...]
/external/clang/test/SemaCXX/
H A Dincrement-decrement.cpp6 const int &dec = i--; variable
/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/webp/include/webp/
H A Ddecode_vp8.h33 // VP8Decoder* dec = VP8New();
34 // bool ok = VP8Decode(dec);
35 // if (!ok) printf("Error: %s\n", VP8StatusMessage(dec));
36 // VP8Delete(dec);
129 WEBP_EXTERN(int) VP8GetHeaders(VP8Decoder* const dec, VP8Io* const io);
133 WEBP_EXTERN(int) VP8Decode(VP8Decoder* const dec, VP8Io* const io);
136 WEBP_EXTERN(VP8StatusCode) VP8Status(VP8Decoder* const dec); variable
139 WEBP_EXTERN(const char*) VP8StatusMessage(VP8Decoder* const dec); variable
143 WEBP_EXTERN(void) VP8Clear(VP8Decoder* const dec); variable
146 WEBP_EXTERN(void) VP8Delete(VP8Decoder* const dec); variable
[all...]
/external/astl/tests/
H A Dtest_iomanip.cpp55 EXPECT_TRUE(s.flags() == (ios_base::dec | ios_base::skipws));
59 EXPECT_TRUE(s.flags() == (ios_base::dec | ios_base::skipws));
/external/e2fsprogs/tests/progs/
H A Dtest_icount_cmds.ct23 decrement, dec;
/external/v8/test/mjsunit/
H A Darray-reduce.js102 function dec(a, b, i, arr) { return a + b * Math.pow(10, arr.length - i - 1); } function
125 simpleArray, dec, 0);
136 testReduce("reduce", "EmptyReduceDec", 0, [], [], dec, 0);
141 testReduce("reduce", "EmptyReduceDecNoInit", 0, [], [0], dec);
162 simpleSparseArray, dec, 0);
173 testReduce("reduce", "EmptySparseReduceDecNoInit", 0, [], [,,0,,], dec);
203 verySparseArray, dec, 0);
226 verySparseArray, dec);
253 simpleArray, dec, 0);
264 testReduce("reduceRight", "EmptyReduceRightDec", 0, [], [], dec,
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/
H A Dcrypto_gnutls.c203 gcry_cipher_hd_t dec; member in struct:crypto_cipher
225 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_STREAM, 0);
235 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
240 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
245 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
253 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
266 gcry_cipher_setkey(ctx->dec, key, key_len) != GPG_ERR_NO_ERROR) {
268 gcry_cipher_close(ctx->dec);
275 gcry_cipher_setiv(ctx->dec, iv, ivlen) != GPG_ERR_NO_ERROR) {
277 gcry_cipher_close(ctx->dec);
[all...]
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dcrypto_gnutls.c197 gcry_cipher_hd_t dec; member in struct:crypto_cipher
219 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_STREAM, 0);
229 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
234 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
239 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
247 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
260 gcry_cipher_setkey(ctx->dec, key, key_len) != GPG_ERR_NO_ERROR) {
262 gcry_cipher_close(ctx->dec);
269 gcry_cipher_setiv(ctx->dec, iv, ivlen) != GPG_ERR_NO_ERROR) {
271 gcry_cipher_close(ctx->dec);
[all...]
/external/wpa_supplicant_8/src/crypto/
H A Dcrypto_gnutls.c197 gcry_cipher_hd_t dec; member in struct:crypto_cipher
219 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_STREAM, 0);
229 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
234 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
239 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
247 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
260 gcry_cipher_setkey(ctx->dec, key, key_len) != GPG_ERR_NO_ERROR) {
262 gcry_cipher_close(ctx->dec);
269 gcry_cipher_setiv(ctx->dec, iv, ivlen) != GPG_ERR_NO_ERROR) {
271 gcry_cipher_close(ctx->dec);
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dcrypto_gnutls.c197 gcry_cipher_hd_t dec; member in struct:crypto_cipher
219 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_STREAM, 0);
229 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
234 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
239 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
247 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
260 gcry_cipher_setkey(ctx->dec, key, key_len) != GPG_ERR_NO_ERROR) {
262 gcry_cipher_close(ctx->dec);
269 gcry_cipher_setiv(ctx->dec, iv, ivlen) != GPG_ERR_NO_ERROR) {
271 gcry_cipher_close(ctx->dec);
[all...]
/external/srtp/crypto/include/
H A Dcryptoalg.h105 cryptoalg_inv_t dec; member in struct:cryptoalg_ctx_t
/external/valgrind/main/exp-bbv/tests/amd64-linux/
H A Dclone_test.S15 dec %rcx # repeat count times
63 dec %rcx # repeat count times
72 dec %rcx # repeat count times
87 dec %rcx # repeat count times
H A Dmillion.S12 dec %rcx # repeat count times
/external/valgrind/main/exp-bbv/tests/x86-linux/
H A Dclone_test.S15 dec %ecx # repeat count times
63 dec %ecx # repeat count times
72 dec %ecx # repeat count times
87 dec %ecx # repeat count times
/external/libvpx/vpx/src/
H A Dvpx_decoder.c48 ctx->config.dec = cfg;
86 res = iface->dec.peek_si(data, data_sz, si);
108 res = ctx->iface->dec.get_si(ctx->priv->alg_priv, si);
131 res = ctx->iface->dec.decode(ctx->priv->alg_priv, data, data_sz,
146 img = ctx->iface->dec.get_frame(ctx->priv->alg_priv, iter);
165 ctx->priv->dec.put_frame_cb.u.put_frame = cb;
166 ctx->priv->dec.put_frame_cb.user_priv = user_priv;
187 ctx->priv->dec.put_slice_cb.u.put_slice = cb;
188 ctx->priv->dec.put_slice_cb.user_priv = user_priv;
H A Dvpx_decoder_compat.c155 if (!ctx->config.dec)
157 ctx->config.dec = malloc(sizeof(vpx_codec_dec_cfg_t));
158 ctx->config.dec->w = si->w;
159 ctx->config.dec->h = si->h;
182 void *save = (ctx->priv) ? NULL : ctx->config.dec;

Completed in 301 milliseconds

123456789