HomeSort by relevance Sort by last modified time
    Searched refs:pred (Results 176 - 200 of 592) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/av/media/libstagefright/codecs/amrwb/src/
dec_gain2_amr_wb.cpp 127 const int16 pred[PRED_ORDER] = {4096, 3277, 2458, 1638}; variable
298 * = Sum(i=0,1) pred[i]*past_qua_en[i] + mean_ener - ener_code
303 L_tmp = mac_16by16_to_int32(L_tmp, pred[0], past_qua_en[0]); /* Q13*Q10 -> Q24 */
304 L_tmp = mac_16by16_to_int32(L_tmp, pred[1], past_qua_en[1]); /* Q13*Q10 -> Q24 */
305 L_tmp = mac_16by16_to_int32(L_tmp, pred[2], past_qua_en[2]); /* Q13*Q10 -> Q24 */
306 L_tmp = mac_16by16_to_int32(L_tmp, pred[3], past_qua_en[3]); /* Q13*Q10 -> Q24 */
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
q_gain2.c 44 static Word16 pred[PRED_ORDER] = {4096, 3277, 2458, 1638}; variable
192 * = Sum(i=0,1) pred[i]*past_qua_en[i] + mean_ener - ener_code *
195 L_tmp += (pred[0] * past_qua_en[0])<<1; /* Q13*Q10 -> Q24 */
196 L_tmp += (pred[1] * past_qua_en[1])<<1; /* Q13*Q10 -> Q24 */
197 L_tmp += (pred[2] * past_qua_en[2])<<1; /* Q13*Q10 -> Q24 */
198 L_tmp += (pred[3] * past_qua_en[3])<<1; /* Q13*Q10 -> Q24 */
  /libcore/luni/src/main/java/java/util/concurrent/
FutureTask.java 419 for (WaitNode pred = null, q = waiters, s; q != null; q = s) {
422 pred = q;
423 else if (pred != null) {
424 pred.next = s;
425 if (pred.thread == null) // check for race
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/ov_tree_map_/
erase_fn_imps.hpp 66 template<typename Pred>
69 erase_if(Pred pred)
81 if (!pred(*source_it))
98 if (!pred(*source_it))
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/ov_tree_map_/
erase_fn_imps.hpp 66 template<typename Pred>
69 erase_if(Pred pred)
81 if (!pred(*source_it))
98 if (!pred(*source_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/ov_tree_map_/
erase_fn_imps.hpp 66 template<typename Pred>
69 erase_if(Pred pred)
81 if (!pred(*source_it))
98 if (!pred(*source_it))
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
erase_fn_imps.hpp 66 template<typename Pred>
69 erase_if(Pred pred)
81 if (!pred(*source_it))
98 if (!pred(*source_it))
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
erase_fn_imps.hpp 66 template<typename Pred>
69 erase_if(Pred pred)
81 if (!pred(*source_it))
98 if (!pred(*source_it))
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
erase_fn_imps.hpp 66 template<typename Pred>
69 erase_if(Pred pred)
81 if (!pred(*source_it))
98 if (!pred(*source_it))
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/ov_tree_map_/
erase_fn_imps.hpp 66 template<typename Pred>
69 erase_if(Pred pred)
81 if (!pred(*source_it))
98 if (!pred(*source_it))
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/ov_tree_map_/
erase_fn_imps.hpp 66 template<typename Pred>
69 erase_if(Pred pred)
81 if (!pred(*source_it))
98 if (!pred(*source_it))
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/ov_tree_map_/
erase_fn_imps.hpp 66 template<typename Pred>
69 erase_if(Pred pred)
81 if (!pred(*source_it))
98 if (!pred(*source_it))
  /external/libvpx/libvpx/vp8/common/
reconintra4x4.c 62 int pred = Above[c] - top_left + Left[r]; local
64 if (pred < 0)
65 pred = 0;
67 if (pred > 255)
68 pred = 255;
70 dst[c] = pred;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
dct.cpp 38 Void BlockDCT_AANwSub(Short *out, UChar *cur, UChar *pred, Int width)
60 tmp2 = *((Int*) pred); /* prediction 4 pixels */
74 tmp2 = *((Int*)(pred + 4));
88 pred += 16;
267 Void Block4x4DCT_AANwSub(Short *out, UChar *cur, UChar *pred, Int width)
289 tmp2 = *((Int*) pred); /* prediction 4 pixels */
303 tmp2 = *((Int*)(pred + 4));
317 pred += 16;
473 Void Block2x2DCT_AANwSub(Short *out, UChar *cur, UChar *pred, Int width)
495 tmp2 = *((Int*) pred); /* prediction 4 pixels *
    [all...]
  /external/skia/bench/
ScalarBench.cpp 49 #define always_do(pred) \
51 if (pred) { \
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/binomial_heap_base_/
erase_fn_imps.hpp 131 template<typename Pred>
134 erase_if(Pred pred)
147 node_pointer p_out = base_type::prune(pred);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/rc_binomial_heap_/
rc_binomial_heap_.hpp 139 template<typename Pred>
141 erase_if(Pred pred);
143 template<typename Pred>
145 split(Pred pred, PB_DS_CLASS_C_DEC& other);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/splay_tree_/
erase_fn_imps.hpp 84 template<typename Pred>
87 erase_if(Pred pred)
94 if (pred(*it))
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
search.h 76 * @param pred Find predicate.
80 typename Pred>
84 Pred pred)
141 while (pred(begin1[start + pos_in_pattern],
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/binomial_heap_base_/
erase_fn_imps.hpp 131 template<typename Pred>
134 erase_if(Pred pred)
147 node_pointer p_out = base_type::prune(pred);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/rc_binomial_heap_/
rc_binomial_heap_.hpp 139 template<typename Pred>
141 erase_if(Pred pred);
143 template<typename Pred>
145 split(Pred pred, PB_DS_CLASS_C_DEC& other);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/splay_tree_/
erase_fn_imps.hpp 84 template<typename Pred>
87 erase_if(Pred pred)
94 if (pred(*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/binomial_heap_base_/
erase_fn_imps.hpp 131 template<typename Pred>
134 erase_if(Pred pred)
147 node_pointer p_out = base_type::prune(pred);
  /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/rc_binomial_heap_/
rc_binomial_heap_.hpp 139 template<typename Pred>
141 erase_if(Pred pred);
143 template<typename Pred>
145 split(Pred pred, PB_DS_CLASS_C_DEC& other);
  /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/splay_tree_/
erase_fn_imps.hpp 84 template<typename Pred>
87 erase_if(Pred pred)
94 if (pred(*it))

Completed in 1324 milliseconds

1 2 3 4 5 6 78 91011>>