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

1234567891011>>

/external/kernel-headers/original/asm-mips/
H A Dmutex.h9 #include <asm-generic/mutex-dec.h>
/external/webp/src/dec/
H A Dlayer.c23 int VP8DecodeLayer(VP8Decoder* const dec) { argument
24 assert(dec);
25 assert(dec->layer_data_size_ > 0);
26 (void)dec;
H A Dframe.c40 static void DoFilter(const VP8Decoder* const dec, int mb_x, int mb_y) { argument
41 const VP8ThreadContext* const ctx = &dec->thread_ctx_;
42 const int y_bps = dec->cache_y_stride_;
44 uint8_t* const y_dst = dec->cache_y_ + ctx->id_ * 16 * y_bps + mb_x * 16;
51 if (dec->filter_type_ == 1) { // simple
65 const int uv_bps = dec->cache_uv_stride_;
66 uint8_t* const u_dst = dec->cache_u_ + ctx->id_ * 8 * uv_bps + mb_x * 8;
67 uint8_t* const v_dst = dec->cache_v_ + ctx->id_ * 8 * uv_bps + mb_x * 8;
69 hev_thresh_from_level(level, dec->frm_hdr_.key_frame_);
90 static void FilterRow(const VP8Decoder* const dec) { argument
102 PrecomputeFilterStrengths(VP8Decoder* const dec) argument
162 FinishRow(VP8Decoder* const dec, VP8Io* const io) argument
253 VP8ProcessRow(VP8Decoder* const dec, VP8Io* const io) argument
288 VP8EnterCritical(VP8Decoder* const dec, VP8Io* const io) argument
343 VP8ExitCritical(VP8Decoder* const dec, VP8Io* const io) argument
383 InitThreadContext(VP8Decoder* const dec) argument
408 AllocateMemory(VP8Decoder* const dec) argument
508 InitIo(VP8Decoder* const dec, VP8Io* io) argument
519 VP8InitFrame(VP8Decoder* const dec, VP8Io* io) argument
537 CheckMode(VP8Decoder* const dec, int mode) argument
552 VP8ReconstructBlock(VP8Decoder* const dec) 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*)calloc(1, sizeof(*dec)); local
49 if (dec != NULL) {
50 SetOk(dec);
51 WebPWorkerInit(&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
217 ParseFilterHeader(VP8BitReader* br, VP8Decoder* const dec) argument
243 VP8GetHeaders(VP8Decoder* const dec, VP8Io* const io) argument
550 ParseResiduals(VP8Decoder* const dec, VP8MB* const mb, VP8BitReader* const token_br) argument
633 VP8DecodeMB(VP8Decoder* const dec, VP8BitReader* const token_br) argument
673 VP8InitScanline(VP8Decoder* const dec) argument
683 ParseFrame(VP8Decoder* const dec, VP8Io* io) argument
723 VP8Decode(VP8Decoder* const dec, VP8Io* const io) argument
762 VP8Clear(VP8Decoder* const dec) argument
[all...]
H A Dvp8l.c77 VP8LDecoder* const dec,
169 VP8LDecoder* const dec, const int* const code_length_code_lengths,
172 VP8LBitReader* const br = &dec->br_;
180 dec->status_ = VP8_STATUS_BITSTREAM_ERROR;
188 dec->status_ = VP8_STATUS_BITSTREAM_ERROR;
211 dec->status_ = VP8_STATUS_BITSTREAM_ERROR;
226 static int ReadHuffmanCode(int alphabet_size, VP8LDecoder* const dec, argument
229 VP8LBitReader* const br = &dec->br_;
256 dec->status_ = VP8_STATUS_BITSTREAM_ERROR;
263 dec
168 ReadHuffmanCodeLengths( VP8LDecoder* const dec, const int* const code_length_code_lengths, int num_symbols, int* const code_lengths) argument
298 ReadHuffmanCodes(VP8LDecoder* const dec, int xsize, int ysize, int color_cache_bits, int allow_recursion) argument
366 AllocateAndInitRescaler(VP8LDecoder* const dec, VP8Io* const io) argument
418 EmitRescaledRows(const VP8LDecoder* const dec, const uint32_t* const data, int in_stride, int mb_h, uint8_t* const out, int out_stride) argument
516 ExportYUVA(const VP8LDecoder* const dec, int y_pos) argument
530 EmitRescaledRowsYUVA(const VP8LDecoder* const dec, const uint32_t* const data, int in_stride, int mb_h) argument
545 EmitRowsYUVA(const VP8LDecoder* const dec, const uint32_t* const data, int in_stride, int mb_w, int num_rows) argument
609 ApplyInverseTransforms(VP8LDecoder* const dec, int num_rows, const uint32_t* const rows) argument
630 ProcessRows(VP8LDecoder* const dec, int row) argument
670 DecodeImageData(VP8LDecoder* const dec, uint32_t* const data, int width, int height, ProcessRowsFunc process_func) argument
819 ReadTransform(int* const xsize, int const* ysize, VP8LDecoder* const dec) argument
893 VP8LDecoder* const dec = (VP8LDecoder*)calloc(1, sizeof(*dec)); local
901 VP8LClear(VP8LDecoder* const dec) argument
920 VP8LDelete(VP8LDecoder* const dec) argument
927 UpdateDecoder(VP8LDecoder* const dec, int width, int height) argument
937 DecodeImageStream(int xsize, int ysize, int is_level0, VP8LDecoder* const dec, uint32_t** const decoded_data) argument
1033 AllocateARGBBuffers(VP8LDecoder* const dec, int final_width) argument
1057 ExtractAlphaRows(VP8LDecoder* const dec, int row) argument
1081 VP8LDecoder* const dec = VP8LNew(); local
1115 VP8LDecodeHeader(VP8LDecoder* const dec, VP8Io* const io) argument
1145 VP8LDecodeImage(VP8LDecoder* const dec) argument
[all...]
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 Dvp8i.h290 int VP8SetError(VP8Decoder* const dec,
295 void VP8ParseProba(VP8BitReader* const br, VP8Decoder* const dec);
296 void VP8ParseIntraMode(VP8BitReader* const br, VP8Decoder* const dec);
299 void VP8ParseQuant(VP8Decoder* const dec);
302 int VP8InitFrame(VP8Decoder* const dec, VP8Io* io);
304 void VP8ReconstructBlock(VP8Decoder* const dec);
308 // if ok, otherwise sets and returns the error status on *dec.
309 VP8StatusCode VP8EnterCritical(VP8Decoder* const dec, VP8Io* const io);
312 int VP8ExitCritical(VP8Decoder* const dec, VP8Io* const io);
314 int VP8ProcessRow(VP8Decoder* const dec, VP8I
[all...]
H A Dalpha.c117 const uint8_t* VP8DecompressAlphaRows(VP8Decoder* const dec, argument
119 const int stride = dec->pic_hdr_.width_;
121 if (row < 0 || num_rows < 0 || row + num_rows > dec->pic_hdr_.height_) {
127 if (!DecodeAlpha(dec->alpha_data_, (size_t)dec->alpha_data_size_,
128 dec->pic_hdr_.width_, dec->pic_hdr_.height_, stride,
129 dec->alpha_plane_)) {
136 return dec->alpha_plane_ + row * stride;
H A Didec.c110 VP8Decoder* const dec = (VP8Decoder*)idec->dec_; local
111 const int last_part = dec->num_parts_ - 1;
115 RemapBitReader(dec->parts_ + p, offset);
120 RemapBitReader(&dec->br_, offset);
124 dec->parts_[last_part].buf_end_ = mem->buf_ + mem->end_;
126 VP8LDecoder* const dec = (VP8LDecoder*)idec->dec_; local
127 VP8LBitReaderSetBuffer(&dec->br_, new_base, MemDataSize(mem));
212 static void SaveContext(const VP8Decoder* dec, const VP8BitReader* token_br, argument
214 const VP8BitReader* const br = &dec->br_;
215 const VP8MB* const left = dec
226 RestoreContext(const MBContext* context, VP8Decoder* const dec, VP8BitReader* const token_br) argument
283 VP8Decoder* const dec = VP8New(); local
298 VP8LDecoder* const dec = VP8LNew(); local
332 VP8Decoder* const dec = (VP8Decoder*)idec->dec_; local
358 VP8Decoder* const dec = (VP8Decoder*)idec->dec_; local
406 VP8Decoder* const dec = (VP8Decoder*)idec->dec_; local
461 VP8LDecoder* const dec = (VP8LDecoder*)idec->dec_; local
486 VP8LDecoder* const dec = (VP8LDecoder*)idec->dec_; local
[all...]
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);
134 int VP8GetHeaders(VP8Decoder* const dec, VP8Io* const io);
138 int VP8Decode(VP8Decoder* const dec, VP8Io* const io);
141 VP8StatusCode VP8Status(VP8Decoder* const dec);
144 const char* VP8StatusMessage(VP8Decoder* const dec);
148 void VP8Clear(VP8Decoder* const dec);
151 void VP8Delete(VP8Decoder* const dec);
[all...]
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 Dvp8li.h102 int VP8LDecodeHeader(VP8LDecoder* const dec, VP8Io* const io);
105 // this function. Returns false in case of error, with updated dec->status_.
106 int VP8LDecodeImage(VP8LDecoder* const dec);
109 // Preserves the dec->status_ value.
110 void VP8LClear(VP8LDecoder* const dec);
113 void VP8LDelete(VP8LDecoder* const dec);
/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/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) {}
H A DImage.h43 image_retval_base(const DecompositionType& dec, const MatrixType& originalMatrix) argument
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) {}
H A DSolve.h40 solve_retval_base(const DecompositionType& dec, const Rhs& rhs) argument
41 : m_dec(dec), m_rhs(rhs)
46 inline const DecompositionType& dec() const { return m_dec; } function in struct:Eigen::internal::solve_retval_base
67 using Base::dec; \
71 solve_retval(const DecompositionType& dec, const Rhs& rhs) \
72 : Base(dec, rhs) {}
H A DSparseSolve.h35 sparse_solve_retval_base(const DecompositionType& dec, const Rhs& rhs) argument
36 : m_dec(dec), m_rhs(rhs)
41 inline const DecompositionType& dec() const { return m_dec; } function in struct:Eigen::internal::sparse_solve_retval_base
60 using Base::dec; \
64 sparse_solve_retval(const DecompositionType& dec, const Rhs& rhs) \
65 : Base(dec, rhs) {}
88 solve_retval_with_guess(const DecompositionType& dec, const Rhs& rhs, const Guess& guess) argument
89 : m_dec(dec), m_rhs(rhs), m_guess(guess)
/external/libppp/src/
H A Dfsm.c469 struct fsm_decode dec; local
490 dec.ackend = dec.ack;
491 dec.nakend = dec.nak;
492 dec.rejend = dec.rej;
494 (*fp->fn->DecodeConfig)(fp, cp, cp + flen, MODE_REQ, &dec);
498 if (dec.nakend == dec
612 struct fsm_decode dec; local
675 struct fsm_decode dec; local
805 struct fsm_decode dec; local
1180 fsm_rej(struct fsm_decode *dec, const struct fsm_opt *o) argument
1188 fsm_ack(struct fsm_decode *dec, const struct fsm_opt *o) argument
1196 fsm_nak(struct fsm_decode *dec, const struct fsm_opt *o) argument
1204 fsm_opt_normalise(struct fsm_decode *dec) argument
[all...]
/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/eigen/Eigen/src/LU/
H A DFullPivLU.h550 const Index cols = dec().matrixLU().cols(), dimker = cols - rank();
577 RealScalar premultiplied_threshold = dec().maxPivot() * dec().threshold();
579 for(Index i = 0; i < dec().nonzeroPivots(); ++i)
580 if(abs(dec().matrixLU().coeff(i,i)) > premultiplied_threshold)
590 m(dec().matrixLU().block(0, 0, rank(), cols));
594 m.row(i).tail(cols-i) = dec().matrixLU().row(pivots.coeff(i)).tail(cols-i);
614 for(Index i = 0; i < rank(); ++i) dst.row(dec().permutationQ().indices().coeff(i)) = -m.row(i).tail(dimker);
615 for(Index i = rank(); i < cols; ++i) dst.row(dec().permutationQ().indices().coeff(i)).setZero();
616 for(Index k = 0; k < dimker; ++k) dst.coeffRef(dec()
[all...]
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dcrypto_gnutls.c191 gcry_cipher_hd_t dec; member in struct:crypto_cipher
213 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_STREAM, 0);
223 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
228 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
233 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
241 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
254 gcry_cipher_setkey(ctx->dec, key, key_len) != GPG_ERR_NO_ERROR) {
256 gcry_cipher_close(ctx->dec);
263 gcry_cipher_setiv(ctx->dec, iv, ivlen) != GPG_ERR_NO_ERROR) {
265 gcry_cipher_close(ctx->dec);
[all...]
/external/wpa_supplicant_8/src/crypto/
H A Dcrypto_gnutls.c191 gcry_cipher_hd_t dec; member in struct:crypto_cipher
213 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_STREAM, 0);
223 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
228 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
233 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
241 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
254 gcry_cipher_setkey(ctx->dec, key, key_len) != GPG_ERR_NO_ERROR) {
256 gcry_cipher_close(ctx->dec);
263 gcry_cipher_setiv(ctx->dec, iv, ivlen) != GPG_ERR_NO_ERROR) {
265 gcry_cipher_close(ctx->dec);
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dcrypto_gnutls.c191 gcry_cipher_hd_t dec; member in struct:crypto_cipher
213 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_STREAM, 0);
223 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
228 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
233 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
241 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0);
254 gcry_cipher_setkey(ctx->dec, key, key_len) != GPG_ERR_NO_ERROR) {
256 gcry_cipher_close(ctx->dec);
263 gcry_cipher_setiv(ctx->dec, iv, ivlen) != GPG_ERR_NO_ERROR) {
265 gcry_cipher_close(ctx->dec);
[all...]

Completed in 385 milliseconds

1234567891011>>