Searched defs:dec (Results 1 - 25 of 52) sorted by relevance

123

/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 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 Dwebp.c81 VP8Decoder* dec = VP8New(); local
86 if (dec == NULL) {
96 if (!VP8GetHeaders(dec, &io)) {
104 if (!VP8Decode(dec, &io)) {
105 status = dec->status_;
109 VP8Delete(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...]
/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/srtp/crypto/include/
H A Dcryptoalg.h105 cryptoalg_inv_t dec; member in struct:cryptoalg_ctx_t
H A Dxfm.h116 cryptoalg_inv_t dec; member in struct:cryptoalg_ctx_t
/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/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/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/icu4c/i18n/
H A Dastro.h151 * @param dec The declination, measured in radians.
154 Equatorial(double asc = 0, double dec = 0)
155 : ascension(asc), declination(dec) { }
160 * @param dec The declination, measured in radians.
163 void set(double asc, double dec) { argument
165 declination = dec;
/external/libvpx/vpx/
H A Dvpx_codec.h202 struct vpx_codec_dec_cfg *dec; /**< Decoder Configuration Pointer */ member in union:vpx_codec_ctx::__anon6957
/external/stlport/src/
H A Dios.cpp47 const ios_base::fmtflags ios_base::dec; member in class:ios_base
/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.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...]
/external/astl/include/
H A Dios_base.h106 // dec: Convert integer input or generates integer output in
131 static const fmtflags dec = android::ios_baseflags_dec; member in class:std::ios_base
/external/quake/quake/src/WinQuake/
H A Dr_part.cpp543 int dec; local
549 dec = 3;
552 dec = 1;
558 len -= dec;
/external/skia/src/core/
H A DSkString.cpp67 char* SkStrAppendS32(char string[], int32_t dec) { argument
74 if (dec < 0) {
76 dec = -dec;
80 *--p = SkToU8('0' + dec % 10);
81 dec /= 10;
82 } while (dec != 0);
97 char* SkStrAppendS64(char string[], int64_t dec, int minDigits) { argument
104 if (dec < 0) {
106 dec
478 insertS32(size_t offset, int32_t dec) argument
484 insertS64(size_t offset, int64_t dec, int minDigits) argument
[all...]
/external/speex/include/speex/
H A Dspeex.h282 decode_func dec; member in struct:SpeexMode
/external/tinyxml/
H A Dxmltest.cpp530 TiXmlDeclaration* dec = docH.Child( 0 ).Node()->ToDeclaration(); local
531 XmlTest( "UTF-8: Declaration column.", 1, dec->Column() );
617 TiXmlDeclaration dec; local
618 dec.Parse( "<?xml version='1.0' encoding='UTF-8'?>", 0, TIXML_ENCODING_UNKNOWN );
619 TiXmlDeclaration decCopy( dec );
621 decAssign = dec;

Completed in 1996 milliseconds

123