| /freebsd-14.2/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-14.2/contrib/llvm-project/libcxx/include/__concepts/ |
| H A D | relation.h | 27 …predicate<_Rp, _Tp, _Tp> && predicate<_Rp, _Up, _Up> && predicate<_Rp, _Tp, _Up> && predicate<_Rp,…
|
| H A D | predicate.h | 28 concept predicate = regular_invocable<_Fn, _Args...> && __boolean_testable<invoke_result_t<_Fn, _Ar… variable
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Xtensa/ |
| H A D | XtensaOperands.td | 24 // imm8 predicate - Immediate in the range [-128,127] 31 // imm8_sh8 predicate - Immediate in the range [-32768,32512] with (bits[7-0] == 0) 40 // imm12 predicate - Immediate in the range [-2048,2047] 47 // imm12m predicate - Immediate for MOV operation 54 // uimm4 predicate - Immediate in the range [0,15] 61 // uimm5 predicate - Immediate in the range [0,31] 68 // imm1_16 predicate - Immediate in the range [1,16] 75 // shimm1_31 predicate - Immediate in the range [1,31] 106 // b4const predicate - Branch Immediate 4-bit signed operand 121 // b4constu predicate - Branch Immediate 4-bit unsigned operand
|
| /freebsd-14.2/contrib/googletest/googletest/include/gtest/ |
| H A D | gtest-death-test.h | 173 #define ASSERT_EXIT(statement, predicate, matcher) \ argument 174 GTEST_DEATH_TEST_(statement, predicate, matcher, GTEST_FATAL_FAILURE_) 178 #define EXPECT_EXIT(statement, predicate, matcher) \ argument 179 GTEST_DEATH_TEST_(statement, predicate, matcher, GTEST_NONFATAL_FAILURE_)
|
| /freebsd-14.2/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. 241 // Used to expand the body of a function predicate. See the definition of 247 class MCReturnStatement<MCInstPredicate predicate> : MCStatement { 248 MCInstPredicate Pred = predicate; 317 // predicate. 372 // 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;
|
| H A D | TargetSchedule.td | 243 // operands after resolving the predicate for the final write. 372 // A scheduling predicate whose logic is defined by a MCInstPredicate. 379 // Define a predicate to determine which SchedVariant applies to a 390 // Define a predicate to be typically used as the default case in a 391 // SchedVariant. It the SchedVariant does not use any other predicate based on 395 // Associate a predicate with a list of SchedReadWrites. By default, 607 // FusionPredicate with raw code predicate. 633 // A predicate for wildcard. The generated code will be like:
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__iterator/ |
| H A D | concepts.h | 191 indirectly_readable<_It> && copy_constructible<_Fp> && predicate<_Fp&, iter_value_t<_It>&> && 192 predicate<_Fp&, iter_reference_t<_It>> && predicate<_Fp&, iter_common_reference_t<_It>>; 197 predicate<_Fp&, iter_value_t<_It1>&, iter_value_t<_It2>&> && 198 predicate<_Fp&, iter_value_t<_It1>&, iter_reference_t<_It2>> && 199 predicate<_Fp&, iter_reference_t<_It1>, iter_value_t<_It2>&> && 200 predicate<_Fp&, iter_reference_t<_It1>, iter_reference_t<_It2>> && 201 predicate<_Fp&, iter_common_reference_t<_It1>, iter_common_reference_t<_It2>>;
|
| /freebsd-14.2/cddl/usr.sbin/dwatch/ |
| H A D | dwatch | 747 predicate="strstr(execname, \"${name#\*}\") != NULL" ;; 749 predicate="strstr(execname, \"$name\") == (execname +" 750 predicate="$predicate strlen(execname) - ${#name})" ;; 751 *\*) predicate="strstr(execname, \"${OPTARG%\*}\") == execname" ;; 752 *) predicate="execname == \"$OPTARG\"" 754 EVENT_TEST="$predicate${EVENT_TEST:+ ||
|
| /freebsd-14.2/contrib/llvm-project/libcxx/modules/std/ |
| H A D | concepts.inc | 84 // [concept.predicate], concept predicate 85 using std::predicate;
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/ |
| H A D | concepts | 113 // [concept.predicate], concept predicate 115 concept predicate = see below; 148 #include <__concepts/predicate.h>
|
| /freebsd-14.2/contrib/googletest/docs/reference/ |
| H A D | assertions.md | 351 Verifies that the predicate *`pred`* returns `true` when passed the given values 384 Note that if the given predicate is an overloaded function or a function 408 If a template has multiple parameters, wrap the predicate in parentheses so the 431 Verifies that the predicate *`pred_formatter`* succeeds when passed the given 448 where *`val1`*, *`val2`*, ..., *`valn`* are the values of the predicate 466 // A predicate-formatter for asserting that two integers are mutually prime. 487 In the above example, the final assertion fails and the predicate-formatter 600 `EXPECT_EXIT(`*`statement`*`,`*`predicate`*`,`*`matcher`*`)` \ 601 `ASSERT_EXIT(`*`statement`*`,`*`predicate`*`,`*`matcher`*`)` 604 that satisfies *`predicate`*, and produces `stderr` output that matches [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | StringExtras.cpp | 101 auto check = [&input](size_t j, function_ref<bool(int)> predicate) { in convertToSnakeFromCamelCase() argument 102 return j < input.size() && predicate(input[j]); in convertToSnakeFromCamelCase()
|
| /freebsd-14.2/contrib/googletest/googletest/include/gtest/internal/ |
| H A D | gtest-death-test-internal.h | 222 #define GTEST_DEATH_TEST_(statement, predicate, regex_or_matcher, fail) \ argument 236 if (!gtest_dt->Passed(predicate(gtest_dt->Wait()))) { \
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | Hexagon.td | 188 // Generate mapping table to relate non-predicate instructions with their 196 // Instructions with the same predicate sense form a column. 205 // Generate mapping table to relate predicate-true instructions with their 206 // predicate-false forms 217 // Generate mapping table to relate predicate-false instructions with their 218 // predicate-true forms
|
| /freebsd-14.2/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-14.2/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-14.2/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | InstrTypes.h | 853 Predicate predicate, Value *S1, 861 static CmpInst *Create(OtherOps Op, Predicate predicate, Value *S1, 944 static bool isStrictPredicate(Predicate predicate); 953 static bool isNonStrictPredicate(Predicate predicate); 1091 static bool isUnsigned(Predicate predicate); 1095 static bool isSigned(Predicate predicate); 1098 static bool isOrdered(Predicate predicate); 1101 static bool isUnordered(Predicate predicate); 1104 static bool isTrueWhenEqual(Predicate predicate); 1107 static bool isFalseWhenEqual(Predicate predicate);
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Instructions.cpp | 3985 setPredicate((Predicate)predicate); in CmpInst() 3999 setPredicate((Predicate)predicate); in CmpInst() 4304 bool CmpInst::isUnsigned(Predicate predicate) { in isUnsigned() argument 4305 switch (predicate) { in isUnsigned() 4312 bool CmpInst::isSigned(Predicate predicate) { in isSigned() argument 4313 switch (predicate) { in isSigned() 4402 bool CmpInst::isOrdered(Predicate predicate) { in isOrdered() argument 4403 switch (predicate) { in isOrdered() 4412 switch (predicate) { in isUnordered() 4421 switch(predicate) { in isTrueWhenEqual() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | TargetOSMacros.def | 12 // to be available for the predicate.
|
| /freebsd-14.2/cddl/usr.sbin/dwatch/examples/ |
| H A D | profile_template | 43 # Optional predicate which must be true before the event action will run
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64SchedPredNeoverse.td | 9 // This file defines scheduling predicate definitions that are used by the
|
| /freebsd-14.2/usr.bin/dtc/ |
| H A D | fdt.hh | 666 inline void delete_children_if(std::function<bool(node_ptr &)> predicate) in delete_children_if() argument 668 children.erase(std::remove_if(children.begin(), children.end(), predicate), children.end()); in delete_children_if()
|
| /freebsd-14.2/sys/contrib/openzfs/.github/codeql/custom-queries/cpp/ |
| H A D | deprecatedFunctionUsage.ql | 12 predicate isDeprecatedFunction(Function f) {
|