| /freebsd/contrib/bmake/unit-tests/ |
| H A D | varmod-ifelse.exp | 1 make: varmod-ifelse.mk:28: Bad condition 2 while evaluating condition "bare words == "literal"" 3 make: varmod-ifelse.mk:39: Bad condition 4 while evaluating condition " == """ 5 make: varmod-ifelse.mk:47: Bad condition 6 while evaluating condition " == """ 7 make: varmod-ifelse.mk:70: Bad condition 8 while evaluating condition "1 == == 2" 12 make: varmod-ifelse.mk:94: Bad condition 13 while evaluating condition "1 == == 2" [all …]
|
| H A D | var-op-expand.exp | 7 make: var-op-expand.mk:295: Bad condition 8 while evaluating condition " < 0 " 11 while evaluating then-branch of condition " < 0 " 14 while evaluating else-branch of condition " < 0 "
|
| H A D | cond-late.exp | 1 make: cond-late.mk:29: Bad condition 2 while evaluating condition " != "no""
|
| /freebsd/crypto/openssl/test/recipes/30-test_evp_data/ |
| H A D | evpkdf_argon2.txt | 103 # Expected fail on condition violation: m_cost < 8 * lanes 112 # Expected fail on condition violation: m_cost < 2 * syncpoints = 8 120 # Expected fail on condition violation: threads > avail threads 130 # Expected fail on condition violation: lanes >= 1 135 # Expected fail on condition violation: lanes <= 0xFFFFFF 140 # Expected fail on condition violation: threads >= 1 145 # Expected fail on condition violation: threads <= 0xFFFFFF 150 # Expected fail on condition violation: outlen >= 4 155 # Expected fail on condition violation: iter >= 1 160 # Expected fail on condition violation: saltlen > 8 [all …]
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | BIO_should_retry.pod | 30 BIO_should_retry() is true if the call that produced this condition 33 If BIO_should_retry() is false then the cause is an error condition. 35 BIO_should_read() is true if the cause of the condition is that the BIO 39 BIO_should_write() is true if the cause of the condition is that the BIO 43 BIO_should_io_special() is true if some "special" condition, that is a 44 reason other than reading or writing is the cause of the condition. 46 BIO_retry_type() returns a mask of the cause of a retry condition 52 condition, it returns the BIO that caused this condition and if 55 the type of BIO that resulted in this condition. 57 BIO_get_retry_reason() returns the reason for a special condition if [all …]
|
| H A D | BIO_set_flags.pod | 49 B<BIO_FLAGS_READ> flag to indicate that the retry condition is 54 B<BIO_FLAGS_WRITE> flag to indicate that the retry condition is 59 B<BIO_FLAGS_IO_SPECIAL> flag to indicate that the retry condition is 60 associated with a read operation some "special" condition. 61 The precise meaning of this condition depends on the B<BIO> type. 96 The last I/O operation should be retried when some "special" condition 97 becomes true. The precise meaning of this condition depends on the B<BIO> 112 If this bit is not set then the condition is treated as an error.
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Architecture/Arm/ |
| H A D | ArchitectureArm.cpp | 40 // detect if the condition doesn't pass. If this is the case it means we in OverrideStopInfo() 83 // and the condition doesn't pass. This can happen if you set a breakpoint on in OverrideStopInfo() 91 // ARM mode: check for condition on instruction in OverrideStopInfo() 99 const uint32_t condition = Bits32((uint32_t)opcode, 31, 28); in OverrideStopInfo() 100 if (!ARMConditionPassed(condition, cpsr)) in OverrideStopInfo() 102 // We ARE stopped on an ARM instruction whose condition doesn't in OverrideStopInfo() 113 const uint32_t condition = Bits32(ITSTATE, 7, 4); in OverrideStopInfo() local 114 if (!ARMConditionPassed(condition, cpsr)) { in OverrideStopInfo() 116 // condition doesn't pass so this instruction won't get executed. in OverrideStopInfo()
|
| /freebsd/contrib/llvm-project/clang/lib/Headers/cuda_wrappers/bits/ |
| H A D | c++config.h | 32 const char *condition) CUDA_NOEXCEPT { 34 if (file && function && condition) 36 function, condition);
|
| /freebsd/contrib/llvm-project/libcxx/modules/std/ |
| H A D | condition_variable.inc | 12 // [thread.condition.condvar], class condition_variable 14 // [thread.condition.condvarany], class condition_variable_any 17 // [thread.condition.nonmember], non-member functions
|
| H A D | condition_variable.cppm | |
| /freebsd/contrib/googletest/googlemock/include/gmock/internal/ |
| H A D | gmock-internal-utils.h | 243 inline void Assert(bool condition, const char* file, int line, in Assert() argument 245 if (!condition) { in Assert() 250 inline void Assert(bool condition, const char* file, int line) { in Assert() argument 251 Assert(condition, file, line, "Assertion failed."); in Assert() 256 inline void Expect(bool condition, const char* file, int line, in Expect() argument 258 if (!condition) { in Expect() 263 inline void Expect(bool condition, const char* file, int line) { in Expect() argument 264 Expect(condition, file, line, "Expectation failed."); in Expect()
|
| /freebsd/sys/contrib/vchiq/interface/compat/ |
| H A D | vchi_bsd.h | 265 #define WARN(condition, msg) \ argument 267 int __ret_warn_on = !!(condition); \ 275 #define WARN_ON(condition) \ argument 277 int __ret_warn_on = !!(condition); \ 279 printf("WARN_ON: " #condition "\n"); \ 283 #define WARN_ON_ONCE(condition) ({ \ argument 285 int __ret_warn_once = !!(condition); \
|
| /freebsd/contrib/ntp/sntp/unity/ |
| H A D | unity.h | 68 …define TEST_ASSERT(condition) … argument 69 …fine TEST_ASSERT_TRUE(condition) UN… argument 70 …ine TEST_ASSERT_UNLESS(condition) UNI… argument 71 …ine TEST_ASSERT_FALSE(condition) UNI… argument 172 …ne TEST_ASSERT_MESSAGE(condition, message) UNIT… argument 173 … TEST_ASSERT_TRUE_MESSAGE(condition, message) UNITY_… argument 174 …TEST_ASSERT_UNLESS_MESSAGE(condition, message) UNITY_T… argument 175 …TEST_ASSERT_FALSE_MESSAGE(condition, message) UNITY_T… argument
|
| /freebsd/contrib/googletest/googletest/include/gtest/ |
| H A D | gtest.h | 1807 #define GTEST_EXPECT_TRUE(condition) \ argument 1808 GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \ 1810 #define GTEST_EXPECT_FALSE(condition) \ argument 1811 GTEST_TEST_BOOLEAN_(!(condition), #condition, true, false, \ 1813 #define GTEST_ASSERT_TRUE(condition) \ argument 1814 GTEST_TEST_BOOLEAN_(condition, #condition, false, true, GTEST_FATAL_FAILURE_) 1815 #define GTEST_ASSERT_FALSE(condition) \ argument 1816 GTEST_TEST_BOOLEAN_(!(condition), #condition, true, false, \ 1823 #define EXPECT_TRUE(condition) GTEST_EXPECT_TRUE(condition) argument 1827 #define EXPECT_FALSE(condition) GTEST_EXPECT_FALSE(condition) argument [all …]
|
| /freebsd/tools/regression/security/cap_test/ |
| H A D | cap_test.h | 60 #define CHECK(condition) do { \ argument 61 if (!(condition)) \ 63 __func__, __LINE__, #condition); \
|
| /freebsd/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | ClangASTPropertiesEmitter.cpp | 245 PropertyType type, StringRef condition = ""); 250 StringRef condition = ""); 508 StringRef condition) { in emitReadOfProperty() argument 522 if (!condition.empty()) in emitReadOfProperty() 525 if (!condition.empty()) Out << ">"; in emitReadOfProperty() 528 if (condition.empty()) { in emitReadOfProperty() 532 " if (" << condition << ") {\n" in emitReadOfProperty() 545 if (condition.empty()) { in emitReadOfProperty() 564 StringRef condition) { in emitWriteOfProperty() argument 565 if (!condition.empty()) { in emitWriteOfProperty() [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/iio/accel/ |
| H A D | lis302.txt | 37 - st,irq{1,2}-ff-wu-1: raise IRQ 1/2 on FF_WU_1 condition 38 - st,irq{1,2}-ff-wu-2: raise IRQ 1/2 on FF_WU_2 condition 39 - st,irq{1,2}-data-ready: raise IRQ 1/2 on data ready condition 40 - st,irq{1,2}-click: raise IRQ 1/2 on click condition 47 - st,wakeup-{x,y,z}-{lo,hi}: set wakeup condition on x/y/z axis for 50 - st,wakeup2-{x,y,z}-{lo,hi}: set wakeup condition on x/y/z axis for
|
| /freebsd/sys/compat/linuxkpi/common/include/linux/ |
| H A D | ratelimit.h | 17 #define WARN_RATELIMIT(condition, ...) ({ \ argument 18 bool __ret_warn_on = (condition); \
|
| /freebsd/contrib/googletest/googletest/test/ |
| H A D | googletest-param-test-invalid-name1-test.py | 39 def Assert(condition): argument 40 if not condition:
|
| H A D | googletest-param-test-invalid-name2-test.py | 39 def Assert(condition): argument 40 if not condition:
|
| H A D | googletest-uninitialized-test.py | 41 def Assert(condition): argument 42 if not condition:
|
| H A D | gtest_testbridge_test.py | 41 def Assert(condition): argument 42 if not condition:
|
| /freebsd/contrib/ntp/scripts/stats/ |
| H A D | README.timecodes | 44 Note: alarm condition is indicated by other than <SP> at A, which 66 Note: alarm condition is indicated by other than <SP> at A, which 68 been lost for about ten hours; unlock condition is indicated by 85 Note: alarm condition is indicated by ? at A, which occurs during 87 extended period; unlock condition is indicated by other than <SP> 138 Note: The alarm condition is indicated by other than ? at A, which 140 lost for an extended period. A receiver unlock condition is
|
| /freebsd/contrib/netbsd-tests/kernel/ |
| H A D | t_pty.c | 109 condition(int fd) in condition() function 138 condition(fd); in pty_open() 144 condition(fd); in pty_open() 169 condition(fd); in tty_open()
|
| /freebsd/contrib/llvm-project/lldb/source/Breakpoint/ |
| H A D | BreakpointLocation.cpp | 206 void BreakpointLocation::SetCondition(StopCondition condition) { in SetCondition() argument 207 GetLocationOptions().SetCondition(std::move(condition)); in SetCondition() 221 StopCondition condition = GetCondition(); in ConditionSaysStop() local 223 if (!condition) { in ConditionSaysStop() 232 if (condition.GetHash() != m_condition_hash || !m_user_expression_sp || in ConditionSaysStop() 235 LanguageType language = condition.GetLanguage(); in ConditionSaysStop() 245 condition.GetText(), llvm::StringRef(), language, in ConditionSaysStop() 266 m_condition_hash = condition.GetHash(); in ConditionSaysStop()
|