Searched defs:pred (Results 1 - 25 of 73) sorted by relevance

123

/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DHasPositionalPredChecker.java92 * @param pred The predicate object.
95 public boolean visitPredicate(ExpressionOwner owner, Expression pred) argument
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 instanceo
[all...]
/external/iproute2/misc/
H A Dssfilter.h16 struct ssfilter *pred; member in struct:ssfilter
/external/libvpx/vp8/decoder/
H A Ddequantize.c34 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *pred, argument
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, argument
98 int a = diff_ptr[c] + pred[c];
111 pred += pitch;
H A Dreconintra_mt.c123 int pred = yleft_col[r] + yabove_row[ c] - ytop_left; local
125 if (pred < 0)
126 pred = 0;
128 if (pred > 255)
129 pred = 255;
131 ypred_ptr[c] = pred;
259 int pred = yleft_col[r] + yabove_row[ c] - ytop_left; local
261 if (pred < 0)
262 pred = 0;
264 if (pred > 25
676 int pred = Above[c] - top_left + Left[r]; local
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/
H A DXPathVisitor.java96 * @param pred The predicate object.
99 public boolean visitPredicate(ExpressionOwner owner, Expression pred) argument
/external/clang/lib/StaticAnalyzer/Checkers/
H A DUnreachableCodeChecker.cpp218 const CFGBlock *pred = *CB->pred_begin(); local
221 const Stmt *cond = pred->getTerminatorCondition();
/external/libvpx/vp8/common/
H A Dreconintra4x4.c64 int pred = Above[c] - top_left + Left[r]; local
66 if (pred < 0)
67 pred = 0;
69 if (pred > 255)
70 pred = 255;
72 predictor[c] = pred;
H A Dreconintra.c122 int pred = yleft_col[r] + yabove_row[ c] - ytop_left; local
124 if (pred < 0)
125 pred = 0;
127 if (pred > 255)
128 pred = 255;
130 ypred_ptr[c] = pred;
248 int pred = yleft_col[r] + yabove_row[ c] - ytop_left; local
250 if (pred < 0)
251 pred = 0;
253 if (pred > 25
[all...]
/external/libvpx/vp8/decoder/mips/
H A Ddequantize_mips.c50 void vp8_dequant_idct_add_mips(short *input, short *dq, unsigned char *pred, argument
93 a0 = diff_ptr[0] + pred[0];
94 a1 = diff_ptr[1] + pred[1];
95 a2 = diff_ptr[2] + pred[2];
96 a3 = diff_ptr[3] + pred[3];
105 pred += pitch;
110 void vp8_dequant_dc_idct_add_mips(short *input, short *dq, unsigned char *pred, argument
154 a0 = diff_ptr[0] + pred[0];
155 a1 = diff_ptr[1] + pred[1];
156 a2 = diff_ptr[2] + pred[
[all...]
/external/skia/include/core/
H A DSkTSearch.h73 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)
/external/clang/test/Analysis/
H A Dunix-fns.c41 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' fo
56 static pthread_once_t pred = {0x30B1BCBA, {0}}; local
[all...]
H A Didempotent-operations.c207 int xy, wrap, pred, a, b, c; local
217 pred = a;
219 pred = c;
224 return pred;
/external/compiler-rt/lib/profile/
H A DGCDAProfiling.c164 uint32_t pred; local
166 pred = *predecessor;
167 if (pred == 0xffffffff)
169 counter = counters[pred];
171 /* Don't crash if the pred# is out of sync. This can happen due to threads,
178 "llvmgcda: increment_indirect_counter counters=%x, pred=%u\n",
/external/eigen/unsupported/Eigen/src/Polynomials/
H A DPolynomialSolver.h82 inline const RootType& selectComplexRoot_withRespectToNorm( squaredNormBinaryPredicate& pred ) const
89 if( pred( currNorm2, norm2 ) ){
117 squaredRealPartBinaryPredicate& pred,
138 if( pred( currAbs2, abs2 ) )
157 RealPartBinaryPredicate& pred,
178 if( pred( curr, val ) )
116 selectRealRoot_withRespectToAbsRealPart( squaredRealPartBinaryPredicate& pred, bool& hasArealRoot, const RealScalar& absImaginaryThreshold = NumTraits<Scalar>::dummy_precision() ) const argument
156 selectRealRoot_withRespectToRealPart( RealPartBinaryPredicate& pred, bool& hasArealRoot, const RealScalar& absImaginaryThreshold = NumTraits<Scalar>::dummy_precision() ) const argument
/external/llvm/runtime/libprofile/
H A DGCDAProfiling.c145 uint32_t pred; local
147 pred = *predecessor;
148 if (pred == 0xffffffff)
150 counter = counters[pred];
152 /* Don't crash if the pred# is out of sync. This can happen due to threads,
158 printf("llvmgcda: increment_indirect_counter counters=%x, pred=%u\n",
/external/llvm/utils/TableGen/
H A DDAGISelMatcher.cpp88 CheckPredicateMatcher::CheckPredicateMatcher(const TreePredicateFn &pred) argument
89 : Matcher(CheckPredicate), Pred(pred.getOrigPatFragRecord()) {}
/external/oprofile/opjitconv/
H A Dcreate_bfd.c188 struct jitentry const * pred; local
196 pred = entries_address_ascending[j - 1];
197 end_addr = pred->vma + pred->code_size;
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DNFAFactory.java255 * predicate action. The pred is a pointer into the AST of
258 public StateCluster build_SemanticPredicate(GrammarAST pred) { argument
260 if ( !pred.getText().toUpperCase()
267 Transition e = new Transition(new PredicateLabel(pred), right);
/external/chromium/sdch/open-vcdiff/src/gtest/
H A Dgtest_pred_impl.h58 // ASSERT_PRED1(pred, v1)
59 // ASSERT_PRED2(pred, v1, v2)
62 // where pred is an n-ary function or functor that returns bool,
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, \
117 #define EXPECT_PRED1(pred, v1) \
118 GTEST_PRED1(pred, v
87 AssertPred1Helper(const char* pred_text, const char* e1, Pred pred, const T1& v1) argument
131 AssertPred2Helper(const char* pred_text, const char* e1, const char* e2, Pred pred, const T1& v1, const T2& v2) argument
182 AssertPred3Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, Pred pred, const T1& v1, const T2& v2, const T3& v3) argument
240 AssertPred4Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4) argument
305 AssertPred5Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, const char* e5, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4, const T5& v5) argument
[all...]
/external/chromium/testing/gtest/include/gtest/
H A Dgtest_pred_impl.h58 // ASSERT_PRED1(pred, v1)
59 // ASSERT_PRED2(pred, v1, v2)
62 // where pred is an n-ary function or functor that returns bool,
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, \
115 #define EXPECT_PRED1(pred, v1) \
116 GTEST_PRED1_(pred, v
87 AssertPred1Helper(const char* pred_text, const char* e1, Pred pred, const T1& v1) argument
129 AssertPred2Helper(const char* pred_text, const char* e1, const char* e2, Pred pred, const T1& v1, const T2& v2) argument
178 AssertPred3Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, Pred pred, const T1& v1, const T2& v2, const T3& v3) argument
234 AssertPred4Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4) argument
297 AssertPred5Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, const char* e5, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4, const T5& v5) argument
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCheckerContext.h42 ExplodedNode *pred,
46 Pred(pred),
40 CheckerContext(NodeBuilder &builder, ExprEngine &eng, ExplodedNode *pred, const ProgramPoint &loc, bool wasInlined = false) argument
/external/clang/lib/StaticAnalyzer/Core/
H A DExplodedGraph.cpp80 const ExplodedNode *pred = *(node->pred_begin()); local
81 if (pred->succ_size() != 1)
100 ProgramStateRef pred_state = pred->getState();
102 progPoint.getLocationContext() != pred->getLocationContext())
133 ExplodedNode *pred = *(node->pred_begin()); local
135 pred->replaceSuccessor(succ);
136 succ->replacePredecessor(pred);
/external/gtest/include/gtest/
H A Dgtest_pred_impl.h58 // ASSERT_PRED1(pred, v1)
59 // ASSERT_PRED2(pred, v1, v2)
62 // where pred is an n-ary function or functor that returns bool,
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, \
115 #define EXPECT_PRED1(pred, v1) \
116 GTEST_PRED1_(pred, v
87 AssertPred1Helper(const char* pred_text, const char* e1, Pred pred, const T1& v1) argument
129 AssertPred2Helper(const char* pred_text, const char* e1, const char* e2, Pred pred, const T1& v1, const T2& v2) argument
178 AssertPred3Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, Pred pred, const T1& v1, const T2& v2, const T3& v3) argument
234 AssertPred4Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4) argument
297 AssertPred5Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, const char* e5, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4, const T5& v5) argument
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest_pred_impl.h58 // ASSERT_PRED1(pred, v1)
59 // ASSERT_PRED2(pred, v1, v2)
62 // where pred is an n-ary function or functor that returns bool,
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, \
115 #define EXPECT_PRED1(pred, v1) \
116 GTEST_PRED1_(pred, v
87 AssertPred1Helper(const char* pred_text, const char* e1, Pred pred, const T1& v1) argument
129 AssertPred2Helper(const char* pred_text, const char* e1, const char* e2, Pred pred, const T1& v1, const T2& v2) argument
178 AssertPred3Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, Pred pred, const T1& v1, const T2& v2, const T3& v3) argument
234 AssertPred4Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4) argument
297 AssertPred5Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, const char* e5, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4, const T5& v5) argument
[all...]
/external/protobuf/gtest/include/gtest/
H A Dgtest_pred_impl.h58 // ASSERT_PRED1(pred, v1)
59 // ASSERT_PRED2(pred, v1, v2)
62 // where pred is an n-ary function or functor that returns bool,
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, \
117 #define EXPECT_PRED1(pred, v1) \
118 GTEST_PRED1_(pred, v
87 AssertPred1Helper(const char* pred_text, const char* e1, Pred pred, const T1& v1) argument
131 AssertPred2Helper(const char* pred_text, const char* e1, const char* e2, Pred pred, const T1& v1, const T2& v2) argument
182 AssertPred3Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, Pred pred, const T1& v1, const T2& v2, const T3& v3) argument
240 AssertPred4Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4) argument
305 AssertPred5Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, const char* e5, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4, const T5& v5) argument
[all...]

Completed in 721 milliseconds

123