| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86SchedPredicates.td | 9 // This file defines scheduling predicate definitions that are common to 14 // A predicate used to identify dependency-breaking instructions that clear the 15 // content of the destination register. Note that this predicate only checks if 16 // input registers are the same. This predicate doesn't make any assumptions on 21 // A predicate used to identify VPERM that have bits 3 and 7 of their mask set. 28 // A predicate used to check if a LEA instruction uses all three source 58 // This predicate evaluates to true only if the input machine instruction is a 64 // A predicate to check for COND_A and COND_BE CMOVs which have an extra uop 76 // A predicate to check for COND_A and COND_BE SETCCs which have an extra uop 88 // A predicate used to check if an instruction has a LOCK prefix.
|
| /freebsd-13.1/contrib/googletest/googletest/include/gtest/ |
| H A D | gtest-death-test.h | 169 # define ASSERT_EXIT(statement, predicate, regex) \ argument 170 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_) 174 # define EXPECT_EXIT(statement, predicate, regex) \ argument 175 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_NONFATAL_FAILURE_)
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Target/ |
| H A D | TargetInstrPredicate.td | 21 // The syntax for MCInstPredicate is declarative, and predicate definitions can 30 // example, `CheckOpcode` is a special type of predicate used to describe a 61 // For example, a `CheckOpcode` predicate is expanded using method 73 // A generic machine instruction predicate. 81 // A predicate used to negate the outcome of another predicate. 201 // Used to expand the body of a function predicate. See the definition of 207 class MCReturnStatement<MCInstPredicate predicate> : MCStatement { 208 MCInstPredicate Pred = predicate; 277 // predicate. 332 // True if we need an equivalent predicate function in the MC layer. [all …]
|
| H A D | TargetCallingConv.td | 22 /// CCPredicateAction - Instances of this class check some predicate, then 23 /// delegate to another action if the predicate is true. 34 /// CCIf - If the predicate matches, apply A. 35 class CCIf<string predicate, CCAction A> : CCPredicateAction<A> { 36 string Predicate = predicate;
|
| /freebsd-13.1/contrib/llvm-project/libcxx/include/__iterator/ |
| H A D | concepts.h | 210 predicate<_Fp&, iter_value_t<_It>&> && 211 predicate<_Fp&, iter_reference_t<_It>> && 212 predicate<_Fp&, iter_common_reference_t<_It>>; 218 predicate<_Fp&, iter_value_t<_It1>&, iter_value_t<_It2>&> && 219 predicate<_Fp&, iter_value_t<_It1>&, iter_reference_t<_It2>> && 220 predicate<_Fp&, iter_reference_t<_It1>, iter_value_t<_It2>&> && 221 predicate<_Fp&, iter_reference_t<_It1>, iter_reference_t<_It2>> && 222 predicate<_Fp&, iter_common_reference_t<_It1>, iter_common_reference_t<_It2>>;
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Utility/ |
| H A D | Broadcaster.cpp | 359 ListenerMatchesAndSharedBits predicate(event_spec, listener_sp); in UnregisterListenerForEvents() local 367 iter = find_if(m_event_map.begin(), end_iter, predicate); in UnregisterListenerForEvents() 405 ListenerMatchesPointer predicate(listener); in RemoveListener() local 409 iter = std::find_if(iter, end_iter, predicate); in RemoveListener() 415 iter = find_if(m_event_map.begin(), end_iter, predicate); in RemoveListener() 425 ListenerMatches predicate(listener_sp); in RemoveListener() local 432 iter = find_if(m_event_map.begin(), end_iter, predicate); in RemoveListener()
|
| /freebsd-13.1/cddl/usr.sbin/dwatch/ |
| H A D | dwatch | 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:+ ||
|
| /freebsd-13.1/contrib/llvm-project/libcxx/include/ |
| H A D | concepts | 113 // [concept.predicate], concept predicate 115 concept predicate = see below; 427 // [concept.predicate] 429 concept predicate = 435 predicate<_Rp, _Tp, _Tp> && predicate<_Rp, _Up, _Up> && 436 predicate<_Rp, _Tp, _Up> && predicate<_Rp, _Up, _Tp>;
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | Hexagon.td | 156 // Generate mapping table to relate non-predicate instructions with their 164 // Instructions with the same predicate sense form a column. 173 // Generate mapping table to relate predicate-true instructions with their 174 // predicate-false forms 185 // Generate mapping table to relate predicate-false instructions with their 186 // predicate-true forms
|
| /freebsd-13.1/contrib/googletest/googletest/include/gtest/internal/ |
| H A D | gtest-death-test-internal.h | 189 # define GTEST_DEATH_TEST_(statement, predicate, regex, fail) \ argument 203 if (!gtest_dt->Passed(predicate(gtest_dt->Wait()))) { \
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| H A D | VPlanPredicator.h | 71 void predicate(void);
|
| H A D | VPlanPredicator.cpp | 234 void VPlanPredicator::predicate(void) { in predicate() function in VPlanPredicator
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/ |
| H A D | Socket.cpp | 171 Predicate<uint16_t> *predicate, int backlog) { in TcpListen() argument 200 if (predicate) in TcpListen() 201 predicate->SetValue(port, eBroadcastAlways); in TcpListen()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/ |
| H A D | RenderScriptx86ABIFixups.cpp | 127 bool (*predicate)(llvm::Module &, llvm::CallInst *)) { in findRSCallSites() 138 if (isRSAPICall(module, call_inst) && predicate(module, call_inst)) { in findRSCallSites()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/IR/ |
| H A D | ConstantFold.h | 49 Constant *ConstantFoldCompareInstruction(unsigned short predicate,
|
| H A D | Instructions.cpp | 3618 setPredicate((Predicate)predicate); in CmpInst() 3632 setPredicate((Predicate)predicate); in CmpInst() 3932 bool CmpInst::isUnsigned(Predicate predicate) { in isUnsigned() argument 3933 switch (predicate) { in isUnsigned() 3940 bool CmpInst::isSigned(Predicate predicate) { in isSigned() argument 3941 switch (predicate) { in isSigned() 3960 bool CmpInst::isOrdered(Predicate predicate) { in isOrdered() argument 3961 switch (predicate) { in isOrdered() 3970 switch (predicate) { in isUnordered() 3979 switch(predicate) { in isTrueWhenEqual() [all …]
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_interceptors_libdispatch.cpp | 289 TSAN_INTERCEPTOR(void, dispatch_once, dispatch_once_t *predicate, in TSAN_INTERCEPTOR() argument 291 SCOPED_INTERCEPTOR_RAW(dispatch_once, predicate, block); in TSAN_INTERCEPTOR() 292 atomic_uint32_t *a = reinterpret_cast<atomic_uint32_t *>(predicate); in TSAN_INTERCEPTOR() 311 TSAN_INTERCEPTOR(void, dispatch_once_f, dispatch_once_t *predicate, in TSAN_INTERCEPTOR() argument 313 SCOPED_INTERCEPTOR_RAW(dispatch_once_f, predicate, context, function); in TSAN_INTERCEPTOR() 315 WRAP(dispatch_once)(predicate, ^(void) { in TSAN_INTERCEPTOR()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | InstrTypes.h | 779 Predicate predicate, Value *S1, 787 static CmpInst *Create(OtherOps Op, Predicate predicate, Value *S1, 848 static bool isStrictPredicate(Predicate predicate); 857 static bool isNonStrictPredicate(Predicate predicate); 995 static bool isUnsigned(Predicate predicate); 999 static bool isSigned(Predicate predicate); 1002 static bool isOrdered(Predicate predicate); 1005 static bool isUnordered(Predicate predicate); 1008 static bool isTrueWhenEqual(Predicate predicate); 1011 static bool isFalseWhenEqual(Predicate predicate);
|
| /freebsd-13.1/contrib/tcsh/ |
| H A D | csh-mode.el | 784 (predicate 820 (completion (try-completion pattern csh-completion-list predicate))) 839 (let ((list (all-completions pattern csh-completion-list predicate))
|
| /freebsd-13.1/cddl/usr.sbin/dwatch/examples/ |
| H A D | profile_template | 44 # Optional predicate which must be true before the event action will run
|
| /freebsd-13.1/usr.bin/dtc/ |
| H A D | fdt.hh | 668 inline void delete_children_if(bool (*predicate)(node_ptr &)) in delete_children_if() 670 children.erase(std::remove_if(children.begin(), children.end(), predicate), children.end()); in delete_children_if()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/ |
| H A D | Socket.h | 71 Predicate<uint16_t> *predicate, int backlog = 5);
|
| /freebsd-13.1/contrib/googletest/googletest/docs/ |
| H A D | advanced.md | 103 can be implicitly converted to `bool`), you can use it in a *predicate 114 predicate returns `true` when applied to the given arguments, and fails 252 predicate do not support streaming to `ostream`, you can instead use the 263 a predicate, `(ASSERT|EXPECT)_PRED_FORMAT*` take a *predicate-formatter* 291 // A predicate-formatter for asserting that two integers are mutually prime. 304 With this predicate-formatter, we can use 363 that can be used in predicate assertion macros (e.g. `EXPECT_PRED_FORMAT2`, 665 … predicate, regex);` | `EXPECT_EXIT(statement, predicate, regex);` | `statement` exits with … 687 A predicate here must accept an `int` and return a `bool`. The death test 688 succeeds only if the predicate returns `true`. googletest defines a few [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Lanai/ |
| H A D | LanaiInstrInfo.td | 120 // i32lo16 predicate - true if the 32-bit immediate has only rightmost 16 126 // i32neg16 predicate - true if the 32-bit immediate is negative and can 133 // i32lo16 predicate - true if the 32-bit immediate has only rightmost 16 141 // i32lo16 predicate - true if the 32-bit immediate has the rightmost 16 150 // i32hi16 predicate - true if the 32-bit immediate has only leftmost 16 159 // i32lo16 predicate - true if the 32-bit immediate has the leftmost 16 168 // i32lo21 predicate - true if the 32-bit immediate has only rightmost 21
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64SchedPredExynos.td | 9 // This file defines scheduling predicate definitions that are used by the
|