/freebsd/contrib/kyua/utils/ |
H A D | sanity.hpp | 108 /// Ensures that a precondition holds. 110 /// If the precondition does not hold, execution is immediately terminated. The 117 /// \param expr A boolean expression describing the precondition. 118 #define PRE(expr) _UTILS_ASSERT(utils::precondition, expr, #expr) 121 /// Ensures that a precondition holds using a custom error message. 123 /// If the precondition does not hold, execution is immediately terminated. The 126 /// \param expr A boolean expression describing the precondition. 128 #define PRE_MSG(expr, msg) _UTILS_ASSERT(utils::precondition, expr, msg)
|
H A D | sanity.cpp | 142 case utils::precondition: return "Precondition check failed"; in format_type()
|
H A D | sanity_test.cpp | 176 verify_failed(status, "Precondition check failed", "Expression", true); in ATF_TEST_CASE_BODY() 184 verify_failed(status, "Precondition check failed", "Custom", true); in ATF_TEST_CASE_BODY()
|
H A D | sanity_fwd.hpp | 45 precondition, enumerator
|
/freebsd/sys/contrib/device-tree/Bindings/power/supply/ |
H A D | act8945a-charger.txt | 17 - active-semi,precondition-timeout: unit: minutes; 18 Specifies the charger's PRECONDITION safety timer setting value; 41 active-semi,precondition-timeout = <40>;
|
H A D | active-semi,act8945a-charger.yaml | 37 active-semi,precondition-timeout: 40 Specifies the charger's PRECONDITION safety timer setting value in minutes. 73 active-semi,precondition-timeout = <40>;
|
/freebsd/contrib/llvm-project/libcxx/include/__ranges/ |
H A D | view_interface.h | 122 !empty(), "Precondition `!empty()` not satisfied. `.front()` called on an empty view."); in decltype() 131 !empty(), "Precondition `!empty()` not satisfied. `.front()` called on an empty view."); in decltype() 140 !empty(), "Precondition `!empty()` not satisfied. `.back()` called on an empty view."); in decltype() 149 !empty(), "Precondition `!empty()` not satisfied. `.back()` called on an empty view."); in decltype()
|
/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/ |
H A D | dt_sugar.c | 325 dt_sugar_do_if(dt_sugar_parse_t *dp, dt_node_t *if_stmt, int precondition) in dt_sugar_do_if() argument 333 if_stmt->dn_conditional, precondition); in dt_sugar_do_if() 347 dt_sugar_new_condition(dp, pred, precondition)); in dt_sugar_do_if() 390 dt_sugar_visit_stmts(dt_sugar_parse_t *dp, dt_node_t *stmts, int precondition) in dt_sugar_visit_stmts() argument 418 dt_sugar_new_basic_block(dp, precondition, in dt_sugar_visit_stmts() 422 dt_sugar_do_if(dp, stmt, precondition); in dt_sugar_visit_stmts() 431 dt_sugar_new_basic_block(dp, precondition, in dt_sugar_visit_stmts()
|
/freebsd/sys/contrib/device-tree/Bindings/regulator/ |
H A D | active-semi,act8945a.yaml | 105 active-semi,precondition-timeout: 106 description: Precondition timeout 254 active-semi,precondition-timeout = <40>;
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | ThreadList.h | 36 /// Precondition: both thread lists must be belong to the same process. 139 /// Precondition: both thread lists must be belong to the same process.
|
/freebsd/bin/sh/tests/builtins/ |
H A D | cd10.0 | 2 # Precondition
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | GuardUtils.cpp | 83 assert(isWidenableBranch(WidenableBR) && "precondition"); in widenWidenableBranch() 109 assert(isWidenableBranch(WidenableBR) && "precondition"); in setWidenableBranchCond()
|
/freebsd/lib/libfetch/ |
H A D | http.errors | 33 412 SERVER Precondition Failed
|
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/ |
H A D | BreakpointPrecondition.cpp | 24 error.SetErrorString("Base breakpoint precondition has no options."); in ConfigurePrecondition()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | DivisionByConstantInfo.cpp | 22 assert(!D.isZero() && "Precondition violation."); in get() 76 assert(!D.isZero() && !D.isOne() && "Precondition violation."); in get()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/ |
H A D | clzti2.c | 19 // Precondition: a != 0
|
H A D | ctzti2.c | 19 // Precondition: a != 0
|
H A D | clzdi2.c | 27 // Precondition: a != 0
|
H A D | lshrti3.c | 19 // Precondition: 0 <= b < bits_in_tword
|
H A D | ctzdi2.c | 27 // Precondition: a != 0
|
H A D | lshrdi3.c | 17 // Precondition: 0 <= b < bits_in_dword
|
H A D | clzsi2.c | 17 // Precondition: a != 0
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | __split_buffer | 252 // Precondition: __n > 0 253 // Precondition: size() + __n <= capacity() 265 // Precondition: __n > 0 266 // Precondition: size() + __n <= capacity()
|
/freebsd/sys/contrib/device-tree/Bindings/mfd/ |
H A D | act8945a.txt | 79 active-semi,precondition-timeout = <40>;
|
/freebsd/contrib/atf/atf-c/detail/ |
H A D | sanity.c | 67 fail("Precondition check failed at %s:%d: %s", file, line, cond); in atf_sanity_pre()
|