| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/ |
| consecutive-step-over.c | 17 volatile int condition; variable
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| consecutive-step-over.c | 17 volatile int condition; variable
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/ |
| assert_fail.cc | 34 const char* function, const char* condition) noexcept 36 if (file && function && condition) 38 file, line, function, condition);
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/ |
| assert_fail.cc | 34 const char* function, const char* condition) noexcept 36 if (file && function && condition) 38 file, line, function, condition);
|
| /src/usr.bin/make/unit-tests/ |
| 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...] |
| cond-late.exp | 1 make: cond-late.mk:29: Bad condition 2 while evaluating condition " != "no""
|
| 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 "
|
| directive-elifdef.mk | 6 # At this point, VAR is not defined, so the condition evaluates to false. 14 # At this point, VAR is defined, so the condition evaluates to true.
|
| directive-elifndef.mk | 7 # condition evaluates to true. 17 # condition evaluates to false.
|
| /src/external/gpl3/gcc/dist/libobjc/objc/ |
| thr.h | 61 /* This structure represents a single condition mutex */ 75 /* Frontend condition mutex functions */ 77 int objc_condition_deallocate (objc_condition_t condition); 78 int objc_condition_wait (objc_condition_t condition, objc_mutex_t mutex); 79 int objc_condition_signal (objc_condition_t condition); 80 int objc_condition_broadcast (objc_condition_t condition);
|
| /src/external/gpl3/gcc.old/dist/libobjc/objc/ |
| thr.h | 61 /* This structure represents a single condition mutex */ 75 /* Frontend condition mutex functions */ 77 int objc_condition_deallocate (objc_condition_t condition); 78 int objc_condition_wait (objc_condition_t condition, objc_mutex_t mutex); 79 int objc_condition_signal (objc_condition_t condition); 80 int objc_condition_broadcast (objc_condition_t condition);
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/gcc/sections/ |
| common.d | 26 * Asserts that the given condition is `true`. 34 bool condition, scope string msg, scope string file = __FILE__, size_t line = __LINE__ 38 condition || abort(msg, file, line);
|
| /src/sys/external/bsd/drm2/dist/include/drm/ |
| drm_util.h | 58 * @condition: The condition to check 69 #define for_each_if(condition) if (!(condition)) {} else
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/ |
| switch_.d | 17 condition = string to look up in table 21 int __switch(T, caseLabels...)(/*in*/ const scope T[] condition) pure nothrow @safe @nogc 30 return __cmp(condition, caseLabels[0]) == 0 ? 0 : int.min; 38 if (condition.length == caseLabels[mid].length) 40 r = __cmp(condition, caseLabels[mid]); 45 // Equivalent to (but faster than) condition.length > caseLabels[$ / 2].length ? 1 : -1 46 r = ((condition.length > caseLabels[mid].length) << 1) - 1; 52 return __switch!(T, caseLabels[0 .. mid])(condition); 57 return __switch!(T, caseLabels[mid + 1 .. $])(condition) + mid + 1; 63 // currently coerced to the switch condition type (e.g. const(char)[]) [all...] |
| /src/external/gpl3/gcc/dist/libobjc/ |
| thr.c | 400 /* Public condition mutex functions */ 402 /* Allocate a condition. Return the condition pointer if successful 407 objc_condition_t condition; local 409 /* Allocate the condition mutex structure. */ 410 if (! (condition = 414 /* Call the backend to create the condition mutex. */ 415 if (__gthread_objc_condition_allocate (condition)) 418 objc_free (condition); 423 return condition; [all...] |
| /src/external/gpl3/gcc.old/dist/libobjc/ |
| thr.c | 400 /* Public condition mutex functions */ 402 /* Allocate a condition. Return the condition pointer if successful 407 objc_condition_t condition; local 409 /* Allocate the condition mutex structure. */ 410 if (! (condition = 414 /* Call the backend to create the condition mutex. */ 415 if (__gthread_objc_condition_allocate (condition)) 418 objc_free (condition); 423 return condition; [all...] |
| /src/external/bsd/jemalloc.old/dist/test/unit/ |
| thread_event.c | 11 #define E(event, condition, is_alloc) \ 12 if (is_alloc && condition) { \
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/rt/util/ |
| utility.d | 14 * Asserts that the given condition is `true`. 22 bool condition, scope string msg, scope string file = __FILE__, size_t line = __LINE__ 26 condition || abort(msg, file, line);
|
| /src/external/gpl3/gcc/dist/libgcc/ |
| gthr-single.h | 170 /* Backend condition mutex functions */ 172 /* Allocate a condition. */ 174 __gthread_objc_condition_allocate (objc_condition_t condition UNUSED) 179 /* Deallocate a condition. */ 181 __gthread_objc_condition_deallocate (objc_condition_t condition UNUSED) 186 /* Wait on the condition */ 188 __gthread_objc_condition_wait (objc_condition_t condition UNUSED, 194 /* Wake up all threads waiting on this condition. */ 196 __gthread_objc_condition_broadcast (objc_condition_t condition UNUSED) 201 /* Wake up one thread waiting on this condition. * [all...] |
| /src/external/gpl3/gcc.old/dist/libgcc/ |
| gthr-single.h | 170 /* Backend condition mutex functions */ 172 /* Allocate a condition. */ 174 __gthread_objc_condition_allocate (objc_condition_t condition UNUSED) 179 /* Deallocate a condition. */ 181 __gthread_objc_condition_deallocate (objc_condition_t condition UNUSED) 186 /* Wait on the condition */ 188 __gthread_objc_condition_wait (objc_condition_t condition UNUSED, 194 /* Wake up all threads waiting on this condition. */ 196 __gthread_objc_condition_broadcast (objc_condition_t condition UNUSED) 201 /* Wake up one thread waiting on this condition. * [all...] |
| /src/sys/external/bsd/drm2/include/ |
| drm_trace.h | 54 bool condition __unused)
|
| /src/external/mpl/dhcp/dist/server/tests/ |
| simple_unittest.c | 44 int condition = 1; local 46 /* Failing condition will fail the test, but the code 50 /* assert style check. Test will abort if the condition is not met. */ 57 if (!condition) { 58 atf_tc_fail("Condition not met!"); /* Explicit failure. */ 65 if (condition && this_is_linux) {
|
| /src/external/bsd/jemalloc.old/dist/src/ |
| thread_event.c | 77 #define E(event, condition, alloc_event) \ 78 if (condition && alloc_event == ctx->is_alloc) { \ 89 #define E(event, condition, alloc_event) \ 90 if (is_alloc == alloc_event && condition) { \ 157 * path reset condition on its own). 264 #define E(event, condition, alloc_event) \ 266 if (is_alloc == alloc_event && condition) { \ 291 #define E(event, condition, alloc_event) \ 292 if (is_alloc == alloc_event && condition && \ 321 #define E(event, condition, alloc_event) [all...] |
| /src/sys/external/bsd/drm2/dist/drm/i915/ |
| i915_gem.h | 44 #define GEM_BUG_ON(condition) do { if (unlikely((condition))) { \ 46 __func__, __LINE__, __stringify(condition)); \
|
| /src/external/gpl3/gdb/dist/sim/testsuite/h8300/ |
| adds.s | 27 test_cc_clear ; adds should not affect any condition codes 44 test_cc_clear ; adds should not affect any condition codes 61 test_cc_clear ; adds should not affect any condition codes
|