HomeSort by relevance Sort by last modified time
    Searched refs:pred (Results 1 - 25 of 367) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xpath/axes/
HasPositionalPredChecker.java 92 * @param pred The predicate object.
95 public boolean visitPredicate(ExpressionOwner owner, Expression pred)
101 if((pred instanceof Variable) ||
102 (pred instanceof XNumber) ||
103 (pred instanceof Div) ||
104 (pred instanceof Plus) ||
105 (pred instanceof Minus) ||
106 (pred instanceof Mod) ||
107 (pred instanceof Quo) ||
108 (pred instanceof Mult) |
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
find_selectors.h 55 * @param pred Find predicate.
58 typename Pred>
60 operator()(RandomAccessIterator1 i1, RandomAccessIterator2 i2, Pred pred)
61 { return pred(*i1); }
67 * @param pred Find predicate.
70 typename Pred>
74 RandomAccessIterator2 begin2, Pred pred)
75 { return std::make_pair(find_if(begin1, end1, pred,
    [all...]
algobase.h 64 Predicate pred, __gnu_parallel::sequential_tag)
65 { return _GLIBCXX_STD_P::mismatch(begin1, end1, begin2, pred); }
72 InputIterator2 begin2, Predicate pred, IteratorTag1,
74 { return _GLIBCXX_STD_P::mismatch(begin1, end1, begin2, pred); }
81 RandomAccessIterator2 begin2, Predicate pred,
87 __gnu_parallel::find_template(begin1, end1, begin2, pred,
93 return _GLIBCXX_STD_P::mismatch(begin1, end1, begin2, pred);
119 Predicate pred)
126 return mismatch_switch(begin1, end1, begin2, pred, iterator1_category(),
142 Predicate pred, __gnu_parallel::sequential_tag
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest_pred_impl.h 58 // ASSERT_PRED1(pred, v1)
59 // ASSERT_PRED2(pred, v1, v2)
62 // where pred is an n-ary function or functor that returns bool,
85 template <typename Pred,
89 Pred pred,
91 if (pred(v1)) return AssertionSuccess();
108 #define GTEST_PRED1(pred, v1, on_failure)\
109 GTEST_ASSERT(::testing::AssertPred1Helper(#pred, \
111 pred, \
    [all...]
  /external/chromium/testing/gtest/include/gtest/
gtest_pred_impl.h 58 // ASSERT_PRED1(pred, v1)
59 // ASSERT_PRED2(pred, v1, v2)
62 // where pred is an n-ary function or functor that returns bool,
85 template <typename Pred,
89 Pred pred,
91 if (pred(v1)) return AssertionSuccess();
106 #define GTEST_PRED1_(pred, v1, on_failure)\
107 GTEST_ASSERT_(::testing::AssertPred1Helper(#pred, \
109 pred, \
    [all...]
  /external/gtest/include/gtest/
gtest_pred_impl.h 58 // ASSERT_PRED1(pred, v1)
59 // ASSERT_PRED2(pred, v1, v2)
62 // where pred is an n-ary function or functor that returns bool,
85 template <typename Pred,
89 Pred pred,
91 if (pred(v1)) return AssertionSuccess();
106 #define GTEST_PRED1_(pred, v1, on_failure)\
107 GTEST_ASSERT_(::testing::AssertPred1Helper(#pred, \
109 pred, \
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest_pred_impl.h 58 // ASSERT_PRED1(pred, v1)
59 // ASSERT_PRED2(pred, v1, v2)
62 // where pred is an n-ary function or functor that returns bool,
85 template <typename Pred,
89 Pred pred,
91 if (pred(v1)) return AssertionSuccess();
106 #define GTEST_PRED1_(pred, v1, on_failure)\
107 GTEST_ASSERT_(::testing::AssertPred1Helper(#pred, \
109 pred, \
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest_pred_impl.h 58 // ASSERT_PRED1(pred, v1)
59 // ASSERT_PRED2(pred, v1, v2)
62 // where pred is an n-ary function or functor that returns bool,
85 template <typename Pred,
89 Pred pred,
91 if (pred(v1)) return AssertionSuccess();
108 #define GTEST_PRED1_(pred, v1, on_failure)\
109 GTEST_ASSERT_(::testing::AssertPred1Helper(#pred, \
111 pred, \
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
get_pred_outside.cpp 98 (comp[]) are calculed from the motion compensated prediction (pred[])values and
256 uint8 pred[256]; /* storage for padded pixel values, 16x16 */ local
275 ptr = pred + (8 << 4) + 8;
280 ptr = pred;
281 prev = pred + (8 << 4) + 8;
285 ptr = pred + 8;
286 prev = pred + (8 << 4) + 8;
290 ptr = pred + (8 << 4);
291 prev = pred + (8 << 4) + 8;
295 ptr = pred + (((ypos >> 1) + 8) << 4) + (xpos >> 1) + 8
    [all...]
idct.h 48 void idctrow0(int16 *blk, uint8 *pred, uint8 *dst, int width);
49 void idctrow1(int16 *blk, uint8 *pred, uint8 *dst, int width);
50 void idctrow2(int16 *blk, uint8 *pred, uint8 *dst, int width);
51 void idctrow3(int16 *blk, uint8 *pred, uint8 *dst, int width);
52 void idctrow4(int16 *blk, uint8 *pred, uint8 *dst, int width);
mb_motion_comp.cpp 144 uint8 *pred_block, *pred; local
261 pred = pred_block;
266 pred = c_comp;
278 pred, width, (pred_width << 1) | round1);
285 pred, width, height, round1, pred_width);
297 pred = pred_block + 8;
302 pred = c_comp + 8;
313 pred, width, (pred_width << 1) | round1);
320 pred, width, height, round1, pred_width);
333 pred = pred_block + 128
    [all...]
  /external/clang/test/Analysis/
unix-fns.c 41 dispatch_once_t pred = 0; local
42 do { if (__builtin_expect(*(&pred), ~0l) != ~0l) dispatch_once((&pred), (^() {})); } while (0); // expected-warning{{Call to 'dispatch_once' uses the local variable 'pred' for the predicate value}}
45 static dispatch_once_t pred = 0; local
46 do { if (__builtin_expect(*(&pred), ~0l) != ~0l) dispatch_once((&pred), (^() {})); } while (0); // no-warning
52 pthread_once_t pred = {0x30B1BCBA, {0}}; local
53 pthread_once(&pred, test_pthread_once_aux); // expected-warning{{Call to 'pthread_once' uses the local variable 'pred' for the "control" value}
56 static pthread_once_t pred = {0x30B1BCBA, {0}}; local
    [all...]
  /external/libvpx/vp8/decoder/
dequantize.c 34 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *pred,
56 int a = diff_ptr[c] + pred[c];
69 pred += pitch;
73 void vp8_dequant_dc_idct_add_c(short *input, short *dq, unsigned char *pred,
98 int a = diff_ptr[c] + pred[c];
111 pred += pitch;
  /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_/
split_join_fn_imps.hpp 42 template<typename Pred>
45 split(Pred pred, PB_DS_CLASS_C_DEC& other)
53 base_type::split(pred, other);
  /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_/
split_join_fn_imps.hpp 42 template<typename Pred>
45 split(Pred pred, PB_DS_CLASS_C_DEC& other)
53 base_type::split(pred, 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/rc_binomial_heap_/
split_join_fn_imps.hpp 42 template<typename Pred>
45 split(Pred pred, PB_DS_CLASS_C_DEC& other)
53 base_type::split(pred, other);
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/rc_binomial_heap_/
split_join_fn_imps.hpp 42 template<typename Pred>
45 split(Pred pred, PB_DS_CLASS_C_DEC& other)
53 base_type::split(pred, other);
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/rc_binomial_heap_/
split_join_fn_imps.hpp 42 template<typename Pred>
45 split(Pred pred, PB_DS_CLASS_C_DEC& other)
53 base_type::split(pred, other);
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/rc_binomial_heap_/
split_join_fn_imps.hpp 42 template<typename Pred>
45 split(Pred pred, PB_DS_CLASS_C_DEC& other)
53 base_type::split(pred, other);
  /external/iproute2/misc/
ssfilter.h 16 struct ssfilter *pred; member in struct:ssfilter
  /external/llvm/test/CodeGen/CellSPU/useful-harnesses/
i64operations.c 257 compare_expect_int64(const struct int64_pred_s * pred)
261 for (j = 0; j < pred->n_tests; ++j) {
264 pred_result = (*pred->predfunc) (*pred->tests[j].lhs, *pred->tests[j].rhs);
266 if (pred_result != pred->tests[j].expected) {
269 sprintf(str, pred->tests[j].fmt_string, pred->name);
271 pred_result, pred->tests[j].expected);
272 printf(" lhs = %19lld (0x%016llx)\n", *pred->tests[j].lhs
    [all...]
  /external/skia/include/core/
SkTSearch.h 73 int pred = (*compare)(*elem, target); local
74 if (pred != 0) {
75 if (pred < 0)
107 int pred = (*compare)(elem, target); local
108 if (pred != 0)
110 if (pred < 0)
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
intra_est.cpp 217 uint8 *pred, *top, *left; local
232 pred = encvid->pred_i16[AVC_I16_Vertical] - 16;
241 *((uint32*)(pred += 16)) = word1;
242 *((uint32*)(pred + 4)) = word2;
243 *((uint32*)(pred + 8)) = word3;
244 *((uint32*)(pred + 12)) = word4;
278 pred = encvid->pred_i16[AVC_I16_Horizontal] - 16;
288 *(uint32*)(pred += 16) = word1;
289 *(uint32*)(pred + 4) = word1;
290 *(uint32*)(pred + 8) = word1
729 uint8 *pred; local
1373 uint8 *comp_ref_x, *comp_ref_y, *pred; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/cc_hash_table_map_/
erase_fn_imps.hpp 56 template<typename Pred>
59 erase_if(Pred pred)
64 while (m_entries[pos] != NULL && pred(m_entries[pos]->m_value))
75 if (pred(p_e->m_p_next->m_value))
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/cc_hash_table_map_/
erase_fn_imps.hpp 56 template<typename Pred>
59 erase_if(Pred pred)
64 while (m_entries[pos] != 0 && pred(m_entries[pos]->m_value))
75 if (pred(p_e->m_p_next->m_value))

Completed in 707 milliseconds

1 2 3 4 5 6 7 8 91011>>