Home
last modified time | relevance | path

Searched refs:condition (Results 1 – 25 of 411) sorted by relevance

12345678910>>...17

/src/contrib/bmake/unit-tests/
H A Dvarmod-ifelse.exp1 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 Dvar-op-expand.exp7 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 Dcond-late.exp1 make: cond-late.mk:29: Bad condition
2 while evaluating condition " != "no""
/src/crypto/openssl/test/recipes/30-test_evp_data/
H A Devpkdf_argon2.txt103 # 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 …]
/src/crypto/openssl/doc/man3/
H A DBIO_should_retry.pod30 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 DBIO_set_flags.pod49 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.
/src/contrib/jemalloc/src/
H A Dthread_event.c77 #define E(event, condition, alloc_event) \ in te_ctx_has_active_events() argument
78 if (condition && alloc_event == ctx->is_alloc) { \ in te_ctx_has_active_events()
89 #define E(event, condition, alloc_event) \ in te_next_event_compute() argument
90 if (is_alloc == alloc_event && condition) { \ in te_next_event_compute()
264 #define E(event, condition, alloc_event) \ in te_event_trigger() argument
266 if (is_alloc == alloc_event && condition) { \ in te_event_trigger()
291 #define E(event, condition, alloc_event) \ in te_event_trigger() argument
292 if (is_alloc == alloc_event && condition && \ in te_event_trigger()
321 #define E(event, condition, alloc_event) \ in te_init() argument
322 if (is_alloc == alloc_event && condition) { \ in te_init()
/src/contrib/llvm-project/libcxx/src/
H A Derror_category.cpp29 bool error_category::equivalent(int code, const error_condition& condition) const noexcept { in equivalent()
30 return default_error_condition(code) == condition; in equivalent()
33 bool error_category::equivalent(const error_code& code, int condition) const noexcept { in equivalent()
34 return *this == code.category() && code.value() == condition; in equivalent()
/src/contrib/llvm-project/lldb/source/Plugins/Architecture/Arm/
H A DArchitectureArm.cpp99 const uint32_t condition = Bits32((uint32_t)opcode, 31, 28); in OverrideStopInfo()
100 if (!ARMConditionPassed(condition, cpsr)) in OverrideStopInfo()
113 const uint32_t condition = Bits32(ITSTATE, 7, 4); in OverrideStopInfo() local
114 if (!ARMConditionPassed(condition, cpsr)) { in OverrideStopInfo()
/src/contrib/llvm-project/libcxx/modules/std/
H A Dcondition_variable.inc12 // [thread.condition.condvar], class condition_variable
14 // [thread.condition.condvarany], class condition_variable_any
17 // [thread.condition.nonmember], non-member functions
/src/contrib/googletest/googlemock/include/gmock/internal/
H A Dgmock-internal-utils.h243 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()
/src/sys/contrib/vchiq/interface/compat/
H A Dvchi_bsd.h265 #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); \
/src/contrib/ntp/sntp/unity/
H A Dunity.h68 …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
/src/contrib/googletest/googletest/include/gtest/
H A Dgtest.h1807 #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 …]
/src/tools/regression/security/cap_test/
H A Dcap_test.h60 #define CHECK(condition) do { \ argument
61 if (!(condition)) \
63 __func__, __LINE__, #condition); \
/src/contrib/llvm-project/clang/utils/TableGen/
H A DClangASTPropertiesEmitter.cpp252 PropertyType type, StringRef condition = "");
257 StringRef condition = "");
515 StringRef condition) { in emitReadOfProperty() argument
529 if (!condition.empty()) in emitReadOfProperty()
532 if (!condition.empty()) Out << ">"; in emitReadOfProperty()
535 if (condition.empty()) { in emitReadOfProperty()
539 " if (" << condition << ") {\n" in emitReadOfProperty()
552 if (condition.empty()) { in emitReadOfProperty()
571 StringRef condition) { in emitWriteOfProperty() argument
572 if (!condition.empty()) { in emitWriteOfProperty()
[all …]
/src/sys/contrib/device-tree/Bindings/iio/accel/
H A Dlis302.txt37 - 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
/src/sys/compat/linuxkpi/common/include/linux/
H A Dratelimit.h17 #define WARN_RATELIMIT(condition, ...) ({ \ argument
18 bool __ret_warn_on = (condition); \
/src/contrib/googletest/googletest/test/
H A Dgoogletest-param-test-invalid-name1-test.py39 def Assert(condition): argument
40 if not condition:
H A Dgoogletest-param-test-invalid-name2-test.py39 def Assert(condition): argument
40 if not condition:
H A Dgoogletest-uninitialized-test.py41 def Assert(condition): argument
42 if not condition:
H A Dgtest_testbridge_test.py41 def Assert(condition): argument
42 if not condition:
/src/contrib/ntp/scripts/stats/
H A DREADME.timecodes44 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
/src/contrib/netbsd-tests/kernel/
H A Dt_pty.c109 condition(int fd) in condition() function
138 condition(fd); in pty_open()
144 condition(fd); in pty_open()
169 condition(fd); in tty_open()
/src/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointOptions.cpp115 BreakpointOptions::BreakpointOptions(const char *condition, bool enabled, in BreakpointOptions() argument
123 if (condition && *condition != '\0') { in BreakpointOptions()
124 SetCondition(condition); in BreakpointOptions()
461 void BreakpointOptions::SetCondition(const char *condition) { in SetCondition() argument
462 if (!condition || condition[0] == '\0') { in SetCondition()
463 condition = ""; in SetCondition()
469 m_condition_text.assign(condition); in SetCondition()

12345678910>>...17