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

1 2 3 4

  /external/clang/test/SemaCXX/
increment-decrement.cpp 6 const int &dec = i--; variable
  /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/srtp/crypto/include/
cryptoalg.h 105 cryptoalg_inv_t dec; member in struct:cryptoalg_ctx_t
xfm.h 116 cryptoalg_inv_t dec; member in struct:cryptoalg_ctx_t
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
cor_h.cpp 192 Word16 i, j, k, dec, h2[L_CODE];
230 for (dec = 1; dec < L_CODE; dec++)
234 i = sub (j, dec);
235 for (k = 0; k < (L_CODE - dec); k++, i--, j--)
237 s = L_mac (s, h2[k], h2[k + dec]);
276 register Word16 dec; local
335 dec = (Word16)(((s >> 9) * 32440) >> 15);
339 dec = 32440; /* 0.99 *
    [all...]
  /external/bluetooth/bluez/audio/
gstsbcdec.c 61 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->outcaps == NULL)
144 GstSbcDec *dec = GST_SBC_DEC(element); local
    [all...]
  /external/v8/test/mjsunit/
array-reduce.js 102 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...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/bin_search_tree_/
point_iterators.hpp 201 dec(integral_constant<int,Is_Forward_Iterator>());
216 { dec(true_type()); }
248 dec(false_type) function in class:__gnu_pbds::detail::bin_search_tree_const_it_
252 dec(true_type) function in class:__gnu_pbds::detail::bin_search_tree_const_it_
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/bin_search_tree_/
point_iterators.hpp 201 dec(integral_constant<int,Is_Forward_Iterator>());
216 { dec(true_type()); }
248 dec(false_type) function in class:__gnu_pbds::detail::bin_search_tree_const_it_
252 dec(true_type) function in class:__gnu_pbds::detail::bin_search_tree_const_it_
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/bin_search_tree_/
point_iterators.hpp 201 dec(integral_constant<int,Is_Forward_Iterator>());
216 { dec(true_type()); }
248 dec(false_type) function in class:__gnu_pbds::detail::bin_search_tree_const_it_
252 dec(true_type) function in class:__gnu_pbds::detail::bin_search_tree_const_it_
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/bin_search_tree_/
point_iterators.hpp 201 dec(integral_constant<int,Is_Forward_Iterator>());
216 { dec(true_type()); }
248 dec(false_type) function in class:__gnu_pbds::detail::bin_search_tree_const_it_
252 dec(true_type) function in class:__gnu_pbds::detail::bin_search_tree_const_it_
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/bin_search_tree_/
point_iterators.hpp 201 dec(integral_constant<int,Is_Forward_Iterator>());
216 { dec(true_type()); }
248 dec(false_type) function in class:__gnu_pbds::detail::bin_search_tree_const_it_
252 dec(true_type) function in class:__gnu_pbds::detail::bin_search_tree_const_it_
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/bin_search_tree_/
point_iterators.hpp 201 dec(integral_constant<int,Is_Forward_Iterator>());
216 { dec(true_type()); }
248 dec(false_type) function in class:__gnu_pbds::detail::bin_search_tree_const_it_
252 dec(true_type) function in class:__gnu_pbds::detail::bin_search_tree_const_it_
  /external/webp/include/webp/
decode_vp8.h 33 // 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/webp/src/dec/
webp.c 81 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);
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
crypto_gnutls.c 203 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/src/crypto/
crypto_gnutls.c 191 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...]
  /libcore/luni/src/main/java/java/io/
InputStreamReader.java 97 * CharsetDecoder {@code dec}.
101 * @param dec
104 public InputStreamReader(InputStream in, CharsetDecoder dec) {
106 dec.averageCharsPerByte();
108 decoder = dec;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/pat_trie_/
point_iterators.hpp 220 dec(integral_constant<int,Is_Forward_Iterator>());
235 { dec(true_type()); }
263 dec(false_type) function in class:__gnu_pbds::detail::pat_trie_const_it_
267 dec(true_type) function in class:__gnu_pbds::detail::pat_trie_const_it_
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/pat_trie_/
point_iterators.hpp 220 dec(integral_constant<int,Is_Forward_Iterator>());
235 { dec(true_type()); }
263 dec(false_type) function in class:__gnu_pbds::detail::pat_trie_const_it_
267 dec(true_type) function in class:__gnu_pbds::detail::pat_trie_const_it_
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/pat_trie_/
point_iterators.hpp 220 dec(integral_constant<int,Is_Forward_Iterator>());
235 { dec(true_type()); }
263 dec(false_type) function in class:__gnu_pbds::detail::pat_trie_const_it_
267 dec(true_type) function in class:__gnu_pbds::detail::pat_trie_const_it_
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/
point_iterators.hpp 220 dec(integral_constant<int,Is_Forward_Iterator>());
235 { dec(true_type()); }
263 dec(false_type) function in class:__gnu_pbds::detail::pat_trie_const_it_
267 dec(true_type) function in class:__gnu_pbds::detail::pat_trie_const_it_
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/
point_iterators.hpp 220 dec(integral_constant<int,Is_Forward_Iterator>());
235 { dec(true_type()); }
263 dec(false_type) function in class:__gnu_pbds::detail::pat_trie_const_it_
267 dec(true_type) function in class:__gnu_pbds::detail::pat_trie_const_it_
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/
point_iterators.hpp 220 dec(integral_constant<int,Is_Forward_Iterator>());
235 { dec(true_type()); }
263 dec(false_type) function in class:__gnu_pbds::detail::pat_trie_const_it_
267 dec(true_type) function in class:__gnu_pbds::detail::pat_trie_const_it_
  /external/doclava/src/com/google/doclava/
FieldInfo.java 342 String dec = null; local
349 dec = String.format("%d", val);
352 dec = String.format("\'%c\'", val);
359 dec = String.format("%d", val);
362 dec = String.format("%d", val);
365 dec = String.format("%d", val);
373 if (dec != null && hex != null) {
374 data.setValue(base + ".constantValue.dec", Doclava.escape(dec));

Completed in 2044 milliseconds

1 2 3 4