Searched refs:predicate (Results 1 - 25 of 33) sorted by relevance

12

/freebsd-13-stable/contrib/googletest/googletest/include/gtest/
H A Dgtest-death-test.h167 // integer exit status that satisfies predicate, and emitting error output
169 # define ASSERT_EXIT(statement, predicate, regex) \
170 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_)
174 # define EXPECT_EXIT(statement, predicate, regex) \
175 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_NONFATAL_FAILURE_)
188 // Two predicate classes that can be used in {ASSERT,EXPECT}_EXIT*:
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanPredicator.h11 /// interfaces to predicate and linearize the VPlan region.
48 /// Create and return VPValue corresponding to the predicate for the edge from
52 /// Generate and return the result of ORing all the predicate VPValues in \p
56 /// Create or propagate predicate for \p CurrBlock in region \p Region using
57 /// predicate(s) of its predecessor(s)
71 void predicate(void);
H A DVPlanPredicator.cpp11 /// interfaces to predicate and linearize the VPlan region.
28 // predicate being propagated from PredBB to CurrBB depending on the edge type
30 // i. PredBB is controlled by predicate %BP, and
57 // Now AND intermediate value with PredBB's block predicate if it has one.
84 // The last element is the root predicate which is returned.
110 // This root needs to replace the existing block predicate. This is done in
135 // Blocks that dominate region exit inherit the predicate from the region.
136 // Return after setting the predicate.
164 // edge predicates. We use the predecessor's block predicate instead.
182 // Now update the block's predicate wit
234 void VPlanPredicator::predicate(void) { function in class:VPlanPredicator
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMacOSXAPIChecker.cpp130 os << " for the predicate value. Using such transient memory for "
131 "the predicate is potentially dangerous.";
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantFold.h49 Constant *ConstantFoldCompareInstruction(unsigned short predicate,
H A DInstructions.cpp3575 CmpInst::CmpInst(Type *ty, OtherOps op, Predicate predicate, Value *LHS, argument
3584 setPredicate((Predicate)predicate);
3590 CmpInst::CmpInst(Type *ty, OtherOps op, Predicate predicate, Value *LHS, argument
3598 setPredicate((Predicate)predicate);
3603 CmpInst::Create(OtherOps Op, Predicate predicate, Value *S1, Value *S2, argument
3607 return new ICmpInst(InsertBefore, CmpInst::Predicate(predicate),
3610 return new ICmpInst(CmpInst::Predicate(predicate),
3615 return new FCmpInst(InsertBefore, CmpInst::Predicate(predicate),
3618 return new FCmpInst(CmpInst::Predicate(predicate),
3623 CmpInst::Create(OtherOps Op, Predicate predicate, Valu argument
3827 isUnsigned(Predicate predicate) argument
3835 isSigned(Predicate predicate) argument
3843 isOrdered(Predicate predicate) argument
3852 isUnordered(Predicate predicate) argument
3861 isTrueWhenEqual(Predicate predicate) argument
3869 isFalseWhenEqual(Predicate predicate) argument
[all...]
H A DConstantsContext.h314 // needed in order to store the predicate value for these instructions.
317 unsigned short predicate; member in class:llvm::final
320 : ConstantExpr(ty, opc, &Op<0>(), 2), predicate(pred) {
/freebsd-13-stable/contrib/llvm-project/lldb/source/Utility/
H A DBroadcaster.cpp359 ListenerMatchesAndSharedBits predicate(event_spec, listener_sp);
367 iter = find_if(m_event_map.begin(), end_iter, predicate);
405 ListenerMatchesPointer predicate(listener);
409 iter = std::find_if(iter, end_iter, predicate);
415 iter = find_if(m_event_map.begin(), end_iter, predicate);
425 ListenerMatches predicate(listener_sp);
432 iter = find_if(m_event_map.begin(), end_iter, predicate);
/freebsd-13-stable/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-death-test-internal.h118 // predicate, and its stderr output matches a user-supplied regular
120 // The user-supplied predicate may be a macro expression rather
189 # define GTEST_DEATH_TEST_(statement, predicate, regex, fail) \
203 if (!gtest_dt->Passed(predicate(gtest_dt->Wait()))) { \
/freebsd-13-stable/cddl/usr.sbin/dwatch/
H A Ddwatch197 "Test clause (predicate) to limit events (Default none)."
748 predicate="strstr(execname, \"${name#\*}\") != NULL" ;;
750 predicate="strstr(execname, \"$name\") == (execname +"
751 predicate="$predicate strlen(execname) - ${#name})" ;;
752 *\*) predicate="strstr(execname, \"${OPTARG%\*}\") == execname" ;;
753 *) predicate="execname == \"$OPTARG\""
755 EVENT_TEST="$predicate${EVENT_TEST:+ ||
931 # Jail clause/predicate
940 # Custom test clause/predicate
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptx86ABIFixups.cpp127 bool (*predicate)(llvm::Module &, llvm::CallInst *)) {
138 if (isRSAPICall(module, call_inst) && predicate(module, call_inst)) {
/freebsd-13-stable/contrib/llvm-project/lldb/source/Host/common/
H A DSocket.cpp171 Predicate<uint16_t> *predicate, int backlog) {
195 // Set the port predicate since when doing a listen://<host>:<port> it
197 // call. Allowing access to the bound port using a predicate allows us to
198 // wait for the port predicate to be set to a non-zero value from another
200 if (predicate)
201 predicate->SetValue(port, eBroadcastAlways);
170 TcpListen(llvm::StringRef host_and_port, bool child_processes_inherit, Predicate<uint16_t> *predicate, int backlog) argument
/freebsd-13-stable/contrib/tcsh/
H A Dcsh-mode.el784 (predicate
820 (completion (try-completion pattern csh-completion-list predicate)))
839 (let ((list (all-completions pattern csh-completion-list predicate))
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Host/
H A DSocket.h71 Predicate<uint16_t> *predicate, int backlog = 5);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_libdispatch.cpp254 // predicate), so the interceptor is always called, and let's add proper release
256 // race on predicate won't be reported - the only accesses to it that TSan sees
261 TSAN_INTERCEPTOR(void, dispatch_once, dispatch_once_t *predicate, argument
263 SCOPED_INTERCEPTOR_RAW(dispatch_once, predicate, block);
264 atomic_uint32_t *a = reinterpret_cast<atomic_uint32_t *>(predicate);
283 TSAN_INTERCEPTOR(void, dispatch_once_f, dispatch_once_t *predicate, argument
285 SCOPED_INTERCEPTOR_RAW(dispatch_once_f, predicate, context, function);
287 WRAP(dispatch_once)(predicate, ^(void) {
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstrTypes.h720 /// predicate values are not overlapping between the classes.
779 /// Construct a compare instruction, given the opcode, the predicate and
785 Predicate predicate, Value *S1,
789 /// Construct a compare instruction, given the opcode, the predicate and the
793 static CmpInst *Create(OtherOps Op, Predicate predicate, Value *S1,
801 /// Return the predicate for this instruction.
804 /// Set the predicate for this instruction to the specified value.
824 /// @returns the inverse predicate for the instruction's current predicate.
825 /// Return the inverse of the instruction's predicate
[all...]
/freebsd-13-stable/usr.bin/dtc/
H A Dfdt.hh668 inline void delete_children_if(bool (*predicate)(node_ptr &))
670 children.erase(std::remove_if(children.begin(), children.end(), predicate), children.end());
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueProperties.h108 llvm::StringRef predicate) const {
/freebsd-13-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueProperties.cpp152 // "<setting-name>{<predicate>}"
164 auto predicate = predicate_start.take_front(pos); local
166 if (PredicateMatches(exe_ctx, predicate)) {
/freebsd-13-stable/contrib/googletest/googletest/src/
H A Dgtest-internal-inl.h277 // the given predicate.
279 inline int CountIf(const Container& c, Predicate predicate) { argument
284 if (predicate(*it))
340 // A predicate that checks the key of a TestProperty against a known key.
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonExpandCondsets.cpp231 bool predicate(MachineInstr &TfrI, bool Cond, std::set<unsigned> &UpdRegs);
467 // replaced with a COPY: the use of the predicate register disappears and
620 /// destination register DstR:DstSR, and using the predicate register from
621 /// PredOp. The Cond argument specifies whether the predicate is to be
635 /// predicate.
792 /// that depend on the same predicate register to allow moving instructions
883 // Add the new def, then the predicate register, then the rest of the
932 /// For a given conditional copy, predicate the definition of the source of
933 /// the copy under the given condition (using the same predicate register as
935 bool HexagonExpandCondsets::predicate(MachineInst function in class:HexagonExpandCondsets
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelMatcher.h60 CheckPredicate, // Fail if node predicate fails.
111 /// isSimplePredicateNode - Return true if this is a simple predicate that
139 /// a simple predicate.
162 // Since this predicate is reflexive, we canonicalize the ordering so that
396 /// CheckPatternPredicateMatcher - This checks the target-specific predicate
397 /// to see if the entire pattern is capable of matching. This predicate does
402 CheckPatternPredicateMatcher(StringRef predicate) argument
403 : Matcher(CheckPatternPredicate), Predicate(predicate) {}
418 /// CheckPredicateMatcher - This checks the target-specific predicate to
/freebsd-13-stable/contrib/processor-trace/libipt/src/
H A Dpt_block_decoder.c806 * Proceed until we reach an instruction for which @predicate returns a positive
809 * - @predicate returns an error: return error
828 int (*predicate)(const struct pt_insn *,
833 if (!decoder || !insn || !predicate)
844 status = predicate(insn, iext);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Expression/
H A DIRInterpreter.cpp548 LLDB_LOGF(log, "Unsupported ICmp predicate: %s",
1026 CmpInst::Predicate predicate = icmp_inst->getPredicate(); local
1050 switch (predicate) {
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTSource.cpp385 llvm::function_ref<bool(Decl::Kind)> predicate,
463 // The predicate function returns true if the passed declaration kind is
466 if (predicate(decl->getKind())) {
383 FindExternalLexicalDecls( const DeclContext *decl_context, llvm::function_ref<bool(Decl::Kind)> predicate, llvm::SmallVectorImpl<Decl *> &decls) argument

Completed in 219 milliseconds

12