Home
last modified time | relevance | path

Searched refs:dec (Results 1 – 25 of 210) sorted by relevance

123456789

/external/bluetooth/bluez/audio/
Dgstsbcdec.c61 GstSbcDec *dec = GST_SBC_DEC(gst_pad_get_parent(pad)); in sbc_dec_chain() local
66 codesize = sbc_get_codesize(&dec->sbc); in sbc_dec_chain()
68 if (dec->buffer) { in sbc_dec_chain()
70 buffer = gst_buffer_span(dec->buffer, 0, buffer, in sbc_dec_chain()
71 GST_BUFFER_SIZE(dec->buffer) + GST_BUFFER_SIZE(buffer)); in sbc_dec_chain()
73 gst_buffer_unref(dec->buffer); in sbc_dec_chain()
74 dec->buffer = NULL; in sbc_dec_chain()
86 res = gst_pad_alloc_buffer_and_set_caps(dec->srcpad, in sbc_dec_chain()
93 consumed = sbc_decode(&dec->sbc, data + offset, size - offset, in sbc_dec_chain()
100 if (dec->outcaps == NULL) { in sbc_dec_chain()
[all …]
/external/v8/test/mjsunit/
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, 0);
[all …]
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/
Dcrypto_gnutls.c203 gcry_cipher_hd_t dec; member
225 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_STREAM, 0); in crypto_cipher_init()
235 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0); in crypto_cipher_init()
240 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0); in crypto_cipher_init()
245 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0); in crypto_cipher_init()
253 gcry_cipher_open(&ctx->dec, a, GCRY_CIPHER_MODE_CBC, 0); in crypto_cipher_init()
266 gcry_cipher_setkey(ctx->dec, key, key_len) != GPG_ERR_NO_ERROR) { in crypto_cipher_init()
268 gcry_cipher_close(ctx->dec); in crypto_cipher_init()
275 gcry_cipher_setiv(ctx->dec, iv, ivlen) != GPG_ERR_NO_ERROR) { in crypto_cipher_init()
277 gcry_cipher_close(ctx->dec); in crypto_cipher_init()
[all …]
Dcrypto_openssl.c252 EVP_CIPHER_CTX dec; member
319 EVP_CIPHER_CTX_init(&ctx->dec); in crypto_cipher_init()
320 EVP_CIPHER_CTX_set_padding(&ctx->dec, 0); in crypto_cipher_init()
321 if (!EVP_DecryptInit_ex(&ctx->dec, cipher, NULL, NULL, NULL) || in crypto_cipher_init()
322 !EVP_CIPHER_CTX_set_key_length(&ctx->dec, key_len) || in crypto_cipher_init()
323 !EVP_DecryptInit_ex(&ctx->dec, cipher, NULL, key, iv)) { in crypto_cipher_init()
325 EVP_CIPHER_CTX_cleanup(&ctx->dec); in crypto_cipher_init()
349 if (!EVP_DecryptUpdate(&ctx->dec, plain, &outl, crypt, len)) in crypto_cipher_decrypt()
358 EVP_CIPHER_CTX_cleanup(&ctx->dec); in crypto_cipher_deinit()
/external/libvpx/vpx/src/
Dvpx_decoder.c46 ctx->config.dec = cfg; in vpx_codec_dec_init_ver()
84 res = iface->dec.peek_si(data, data_sz, si); in vpx_codec_peek_stream_info()
106 res = ctx->iface->dec.get_si(ctx->priv->alg_priv, si); in vpx_codec_get_stream_info()
127 res = ctx->iface->dec.decode(ctx->priv->alg_priv, data, data_sz, in vpx_codec_decode()
142 img = ctx->iface->dec.get_frame(ctx->priv->alg_priv, iter); in vpx_codec_get_frame()
161 ctx->priv->dec.put_frame_cb.put_frame = cb; in vpx_codec_register_put_frame_cb()
162 ctx->priv->dec.put_frame_cb.user_priv = user_priv; in vpx_codec_register_put_frame_cb()
183 ctx->priv->dec.put_slice_cb.put_slice = cb; in vpx_codec_register_put_slice_cb()
184 ctx->priv->dec.put_slice_cb.user_priv = user_priv; in vpx_codec_register_put_slice_cb()
Dvpx_decoder_compat.c155 if (!ctx->config.dec) in vpx_dec_get_mem_map()
157 ctx->config.dec = malloc(sizeof(vpx_codec_dec_cfg_t)); in vpx_dec_get_mem_map()
158 ctx->config.dec->w = si->w; in vpx_dec_get_mem_map()
159 ctx->config.dec->h = si->h; in vpx_dec_get_mem_map()
182 void *save = (ctx->priv) ? NULL : ctx->config.dec; in vpx_dec_set_mem_map()
/external/stlport/test/unit/
Dnum_put_get_test.cpp683 CHECK(short, 0, dec, "0") in num_put_integer()
684 CHECK(short, -1, dec, "-1") in num_put_integer()
685 CHECK(short, 12345, dec, "12345") in num_put_integer()
686 CHECK(short, -12345, dec, "-12345") in num_put_integer()
688 CHECK(unsigned short, 0, dec, "0") in num_put_integer()
689 CHECK(unsigned short, 12345, dec, "12345") in num_put_integer()
691 CHECK(int, 0, dec, "0") in num_put_integer()
692 CHECK(int, -1, dec, "-1") in num_put_integer()
693 CHECK(int, 12345678, dec, "12345678") in num_put_integer()
694 CHECK(int, -12345678, dec, "-12345678") in num_put_integer()
[all …]
/external/chromium/third_party/icu/source/common/
Dunisetspan.cpp833 int32_t dec=length16-overlap; // Keep dec+overlap==length16. in spanBack() local
835 if(dec>pos) { in spanBack()
839 … if(!offsets.containsOffset(dec) && matches16CPB(s, pos-dec, length, s16, length16)) { in spanBack()
840 if(dec==pos) { in spanBack()
843 offsets.addOffset(dec); in spanBack()
849 ++dec; in spanBack()
872 int32_t dec=length16-overlap; // Keep dec+overlap==length16. in spanBack() local
874 if(dec>pos || overlap<maxOverlap) { in spanBack()
878 if( (overlap>maxOverlap || /* redundant overlap==maxOverlap && */ dec>maxDec) && in spanBack()
879 matches16CPB(s, pos-dec, length, s16, length16) in spanBack()
[all …]
/external/icu4c/common/
Dunisetspan.cpp833 int32_t dec=length16-overlap; // Keep dec+overlap==length16. in spanBack() local
835 if(dec>pos) { in spanBack()
839 … if(!offsets.containsOffset(dec) && matches16CPB(s, pos-dec, length, s16, length16)) { in spanBack()
840 if(dec==pos) { in spanBack()
843 offsets.addOffset(dec); in spanBack()
849 ++dec; in spanBack()
872 int32_t dec=length16-overlap; // Keep dec+overlap==length16. in spanBack() local
874 if(dec>pos || overlap<maxOverlap) { in spanBack()
878 if( (overlap>maxOverlap || /* redundant overlap==maxOverlap && */ dec>maxDec) && in spanBack()
879 matches16CPB(s, pos-dec, length, s16, length16) in spanBack()
[all …]
/external/qemu/distrib/sdl-1.2.12/src/hermes/
Dx86p_32.asm51 dec ecx
95 dec ebp
110 dec ecx
131 dec ecx
167 dec ebp
181 dec ecx
202 dec ecx
240 dec ebp
254 dec ecx
280 dec ecx
[all …]
Dx86p_16.asm48 dec ecx
71 dec ecx
155 dec ecx
175 dec ecx
233 dec ecx
268 dec ecx
293 dec ecx
385 dec ecx
408 dec ecx
458 dec ecx
[all …]
Dmmxp2_32.asm167 dec ecx
187 dec ecx
238 dec ecx
257 dec edx
397 dec ecx
/external/skia/xcode/pvjpeg.xcodeproj/
Dproject.pbxproj27 … name = jpgdec_bitstream.cpp; path = ../../extlibs/pv/codecs_v2/image/jpeg/dec/src/jpgdec_bitstrea…
28 ….cpp; name = jpgdec_cint.cpp; path = ../../extlibs/pv/codecs_v2/image/jpeg/dec/src/jpgdec_cint.cpp…
29 … name = jpgdec_colorconv.cpp; path = ../../extlibs/pv/codecs_v2/image/jpeg/dec/src/jpgdec_colorcon…
30 …pp.cpp; name = jpgdec_ct.cpp; path = ../../extlibs/pv/codecs_v2/image/jpeg/dec/src/jpgdec_ct.cpp; …
31 …p; name = jpgdec_decoder.cpp; path = ../../extlibs/pv/codecs_v2/image/jpeg/dec/src/jpgdec_decoder.…
32 …pp; name = jpgdec_header.cpp; path = ../../extlibs/pv/codecs_v2/image/jpeg/dec/src/jpgdec_header.c…
33 …p; name = jpgdec_huffman.cpp; path = ../../extlibs/pv/codecs_v2/image/jpeg/dec/src/jpgdec_huffman.…
34 …cpp; name = jpgdec_idctp.cpp; path = ../../extlibs/pv/codecs_v2/image/jpeg/dec/src/jpgdec_idctp.cp…
35 …cpp; name = jpgdec_idcts.cpp; path = ../../extlibs/pv/codecs_v2/image/jpeg/dec/src/jpgdec_idcts.cp…
36 ….cpp; name = jpgdec_scan.cpp; path = ../../extlibs/pv/codecs_v2/image/jpeg/dec/src/jpgdec_scan.cpp…
[all …]
/external/speex/libspeex/
Dspeex.c80 return (*((SpeexMode**)state))->dec(state, bits, out); in speex_decode_native()
121 ret = (*((SpeexMode**)state))->dec(state, bits, short_out); in speex_decode()
131 return (mode)->dec(state, bits, out); in speex_decode_int()
154 return (*((SpeexMode**)state))->dec(state, bits, out); in speex_decode()
164 ret = (*((SpeexMode**)state))->dec(state, bits, float_out); in speex_decode_int()
/external/skia/src/core/
DSkString.cpp53 char* SkStrAppendS32(char string[], int32_t dec) in SkStrAppendS32() argument
61 if (dec < 0) in SkStrAppendS32()
64 dec = -dec; in SkStrAppendS32()
67 *--p = SkToU8('0' + dec % 10); in SkStrAppendS32()
68 dec /= 10; in SkStrAppendS32()
69 } while (dec != 0); in SkStrAppendS32()
436 void SkString::insertS32(size_t offset, int32_t dec) in insertS32() argument
439 char* stop = SkStrAppendS32(buffer, dec); in insertS32()
/external/openssl/crypto/des/asm/
Ddes_enc.m4290 ! parameter 3 enc/dec 1/-1
419 add $5, $3*16, $5 ! enc add 8, dec add -8 to key pointer
1193 be,pn %icc, .encrypt.dec ! enc/dec
1195 be .encrypt.dec
1212 .encrypt.dec:
1220 ip_macro(in5, out5, out5, in5, in4, 2, 0, 1) ! include dec, ks in4
1285 be,pn %icc, .encrypt2.dec ! decryption
1287 be .encrypt2.dec
1315 .encrypt2.dec:
1465 be,pn %icc, .ncbc.dec
[all …]
/external/chromium/third_party/icu/source/i18n/
Dastro.h154 Equatorial(double asc = 0, double dec = 0)
155 : ascension(asc), declination(dec) { } in ascension()
163 void set(double asc, double dec) { in set() argument
165 declination = dec; in set()
/external/icu4c/i18n/
Dastro.h154 Equatorial(double asc = 0, double dec = 0)
155 : ascension(asc), declination(dec) { } in ascension()
163 void set(double asc, double dec) { in set() argument
165 declination = dec; in set()
/external/jpeg/
Dconfig.sub91 -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \
592 basic_machine=vax-dec
596 basic_machine=vax-dec
642 basic_machine=vax-dec
645 basic_machine=pdp11-dec
671 basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
811 *-dec | vax-*)
/external/libxml2/
Dxmlschemastypes.c5709 xmlSchemaValDecimal dec = val->value.decimal; in xmlSchemaGetCanonValue() local
5714 bufsize = dec.total + 2; in xmlSchemaGetCanonValue()
5715 if (dec.sign) in xmlSchemaGetCanonValue()
5718 if ((dec.frac == 0) || (dec.frac == dec.total)) in xmlSchemaGetCanonValue()
5724 if (dec.sign) in xmlSchemaGetCanonValue()
5726 if (dec.frac == dec.total) { in xmlSchemaGetCanonValue()
5730 if (dec.hi != 0) in xmlSchemaGetCanonValue()
5732 "%lu%lu%lu", dec.hi, dec.mi, dec.lo); in xmlSchemaGetCanonValue()
5733 else if (dec.mi != 0) in xmlSchemaGetCanonValue()
5735 "%lu%lu", dec.mi, dec.lo); in xmlSchemaGetCanonValue()
[all …]
/external/openssl/crypto/bn/asm/
Dbn-586.pl197 &dec("ecx") if ($i != 7-1);
312 &dec($num) if ($i != 7-1);
401 &dec($num) if ($i != 7-1);
484 &dec($num) if ($i != 6);
556 &dec($num) if ($i != 6);
632 &dec($num) if ($i != 6);
690 &dec($num) if ($i != 6);
732 &dec($num) if ($i != 6);
761 &dec($num) if ($i != 6);
/external/astl/tests/
Dtest_iomanip.cpp55 EXPECT_TRUE(s.flags() == (ios_base::dec | ios_base::skipws)); in testSetBase()
59 EXPECT_TRUE(s.flags() == (ios_base::dec | ios_base::skipws)); in testSetBase()
/external/qemu/distrib/sdl-1.2.12/src/stdlib/
DSDL_stdlib.c194 dec esi in _alldiv()
199 dec edi in _alldiv()
254 dec esi in _aulldiv()
301 dec edi in _allrem()
334 dec edi in _allrem()
474 dec esi in _alldvrm()
482 dec ebp in _alldvrm()
493 dec edi in _alldvrm()
553 dec esi in _aulldvrm()
/external/stlport/stlport/stl/
D_ios_base.h70 _STLP_STATIC_CONSTANT(int, dec = 0x0008);
83 _STLP_STATIC_CONSTANT(int, basefield = dec | hex | oct);
321 inline ios_base& _STLP_CALL dec(ios_base& __s) in dec() function
322 { __s.setf(ios_base::dec, ios_base::basefield); return __s; } in dec()
/external/expat/conftools/
Dconfig.guess270 …echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQ…
279 echo alpha-dec-winnt3.5
401 echo mips-dec-mach_bsd4.3
404 echo mips-dec-ultrix${UNAME_RELEASE}
407 echo vax-dec-ultrix${UNAME_RELEASE}
948 echo ${UNAME_MACHINE}-dec-linux-gnu
1268 echo pdp10-dec-tops20
1288 A*) echo alpha-dec-vms ; exit ;;
1289 I*) echo ia64-dec-vms ; exit ;;
1290 V*) echo vax-dec-vms ; exit ;;

123456789