| /netbsd-src/usr.bin/make/unit-tests/ |
| H A D | varmod-ifelse.exp | 1 make: "varmod-ifelse.mk" line 28: Bad condition 2 while evaluating condition "bare words == "literal"" 3 make: "varmod-ifelse.mk" line 39: Bad condition 4 while evaluating condition " == """ 5 make: "varmod-ifelse.mk" line 47: Bad condition 6 while evaluating condition " == """ 7 make: "varmod-ifelse.mk" line 70: Bad condition 8 while evaluating condition "1 == == 2" 12 make: "varmod-ifelse.mk" line 94: Bad condition 13 while evaluating condition " [all...] |
| /netbsd-src/external/gpl3/gcc/dist/libobjc/ |
| H A D | thr.c | 407 objc_condition_t condition; in objc_condition_allocate() local 410 if (! (condition = in objc_condition_allocate() 415 if (__gthread_objc_condition_allocate (condition)) in objc_condition_allocate() 418 objc_free (condition); in objc_condition_allocate() 423 return condition; in objc_condition_allocate() 432 objc_condition_deallocate (objc_condition_t condition) in objc_condition_deallocate() argument 435 if (objc_condition_broadcast (condition)) in objc_condition_deallocate() 439 if (__gthread_objc_condition_deallocate (condition)) in objc_condition_deallocate() 443 objc_free (condition); in objc_condition_deallocate() 456 objc_condition_wait (objc_condition_t condition, objc_mutex_t mutex) in objc_condition_wait() argument [all …]
|
| H A D | THREADS | 278 * Frontend condition mutex functions 283 Allocate a condition mutex. 284 Return NULL if error otherwise return condition pointer. 286 objc_condition_deallocate(objc_condition_t condition), int 287 Deallocate a condition. Note that this includes an implicit 289 opportunity to wake. It is legal to dealloc a condition only 294 objc_condition_wait(objc_condition_t condition, objc_mutex_t mutex), int 295 Wait on the condition unlocking the mutex until objc_condition_signal() 296 or objc_condition_broadcast() are called for the same condition. The 298 here, for someone else can lock it and signal/broadcast the condition. [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libobjc/ |
| H A D | thr.c | 407 objc_condition_t condition; in objc_condition_allocate() local 410 if (! (condition = in objc_condition_allocate() 415 if (__gthread_objc_condition_allocate (condition)) in objc_condition_allocate() 418 objc_free (condition); in objc_condition_allocate() 423 return condition; in objc_condition_allocate() 432 objc_condition_deallocate (objc_condition_t condition) in objc_condition_deallocate() argument 435 if (objc_condition_broadcast (condition)) in objc_condition_deallocate() 439 if (__gthread_objc_condition_deallocate (condition)) in objc_condition_deallocate() 443 objc_free (condition); in objc_condition_deallocate() 456 objc_condition_wait (objc_condition_t condition, objc_mutex_t mutex) in objc_condition_wait() argument [all …]
|
| H A D | THREADS | 278 * Frontend condition mutex functions 283 Allocate a condition mutex. 284 Return NULL if error otherwise return condition pointer. 286 objc_condition_deallocate(objc_condition_t condition), int 287 Deallocate a condition. Note that this includes an implicit 289 opportunity to wake. It is legal to dealloc a condition only 294 objc_condition_wait(objc_condition_t condition, objc_mutex_t mutex), int 295 Wait on the condition unlocking the mutex until objc_condition_signal() 296 or objc_condition_broadcast() are called for the same condition. The 298 here, for someone else can lock it and signal/broadcast the condition. [all …]
|
| /netbsd-src/external/apache2/llvm/dist/libcxx/cmake/Modules/ |
| H A D | HandleLibcxxFlags.cmake | 55 # If the specified 'condition' is true then append the specified list of flags to DEST 56 macro(append_flags_if condition DEST) 57 if (${condition}) 71 # Add a macro definition if condition is true. 72 macro(define_if condition def) 73 if (${condition}) 78 # Add a macro definition if condition is not true. 79 macro(define_if_not condition def) 80 if (NOT ${condition}) 85 # Add a macro definition to the __config_site file if the specified condition [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/ |
| H A D | switch_.d | 21 int __switch(T, caseLabels...)(/*in*/ const scope T[] condition) pure nothrow @safe @nogc in __switch() 30 return __cmp(condition, caseLabels[0]) == 0 ? 0 : int.min; in __switch() 38 if (condition.length == caseLabels[mid].length) in __switch() 40 r = __cmp(condition, caseLabels[mid]); in __switch() 46 r = ((condition.length > caseLabels[mid].length) << 1) - 1; in __switch() 52 return __switch!(T, caseLabels[0 .. mid])(condition); in __switch() 57 return __switch!(T, caseLabels[mid + 1 .. $])(condition) + mid + 1; in __switch() 73 return __switchSearch!T(cases[], condition); in __switch() 78 private int __switchSearch(T)(/*in*/ const scope T[][] cases, /*in*/ const scope T[] condition) pur… in __switchSearch() 87 if (condition.length == cases[mid].length) in __switchSearch() [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | loop-doloop.c | 79 rtx condition; in doloop_condition_get() local 197 condition = XEXP (SET_SRC (cmp), 0); in doloop_condition_get() 200 if ((GET_CODE (condition) != GE in doloop_condition_get() 201 && GET_CODE (condition) != NE) in doloop_condition_get() 202 || (XEXP (condition, 1) != const0_rtx in doloop_condition_get() 203 && XEXP (condition, 1) != const1_rtx)) in doloop_condition_get() 206 if ((XEXP (condition, 0) == reg) in doloop_condition_get() 209 && (XEXP (condition, 0) == cc_reg) in doloop_condition_get() 211 || (GET_CODE (XEXP (condition, 0)) == PLUS in doloop_condition_get() 212 && XEXP (XEXP (condition, 0), 0) == reg)) in doloop_condition_get() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | loop-doloop.cc | 79 rtx condition; in doloop_condition_get() local 197 condition = XEXP (SET_SRC (cmp), 0); in doloop_condition_get() 200 if ((GET_CODE (condition) != GE in doloop_condition_get() 201 && GET_CODE (condition) != NE) in doloop_condition_get() 202 || (XEXP (condition, 1) != const0_rtx in doloop_condition_get() 203 && XEXP (condition, 1) != const1_rtx)) in doloop_condition_get() 206 if ((XEXP (condition, 0) == reg) in doloop_condition_get() 209 && (XEXP (condition, 0) == cc_reg) in doloop_condition_get() 211 || (GET_CODE (XEXP (condition, 0)) == PLUS in doloop_condition_get() 212 && XEXP (XEXP (condition, 0), 0) == reg)) in doloop_condition_get() [all …]
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/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 …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/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 …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libgcc/ |
| H A D | gthr-posix.h | 597 __gthread_objc_condition_allocate (objc_condition_t condition) in __gthread_objc_condition_allocate() argument 601 condition->backend = objc_malloc (sizeof (pthread_cond_t)); in __gthread_objc_condition_allocate() 603 if (__gthrw_(pthread_cond_init) ((pthread_cond_t *) condition->backend, NULL)) in __gthread_objc_condition_allocate() 605 objc_free (condition->backend); in __gthread_objc_condition_allocate() 606 condition->backend = NULL; in __gthread_objc_condition_allocate() 616 __gthread_objc_condition_deallocate (objc_condition_t condition) in __gthread_objc_condition_deallocate() argument 620 if (__gthrw_(pthread_cond_destroy) ((pthread_cond_t *) condition->backend)) in __gthread_objc_condition_deallocate() 623 objc_free (condition->backend); in __gthread_objc_condition_deallocate() 624 condition->backend = NULL; in __gthread_objc_condition_deallocate() 631 __gthread_objc_condition_wait (objc_condition_t condition, objc_mutex_t mutex) in __gthread_objc_condition_wait() argument [all …]
|
| H A D | gthr-single.h | 174 __gthread_objc_condition_allocate (objc_condition_t condition UNUSED) in __gthread_objc_condition_allocate() 181 __gthread_objc_condition_deallocate (objc_condition_t condition UNUSED) in __gthread_objc_condition_deallocate() 188 __gthread_objc_condition_wait (objc_condition_t condition UNUSED, in __gthread_objc_condition_wait() 196 __gthread_objc_condition_broadcast (objc_condition_t condition UNUSED) in __gthread_objc_condition_broadcast() 203 __gthread_objc_condition_signal (objc_condition_t condition UNUSED) in __gthread_objc_condition_signal()
|
| /netbsd-src/external/gpl3/gcc/dist/libgcc/ |
| H A D | gthr-posix.h | 597 __gthread_objc_condition_allocate (objc_condition_t condition) in __gthread_objc_condition_allocate() argument 601 condition->backend = objc_malloc (sizeof (pthread_cond_t)); in __gthread_objc_condition_allocate() 603 if (__gthrw_(pthread_cond_init) ((pthread_cond_t *) condition->backend, NULL)) in __gthread_objc_condition_allocate() 605 objc_free (condition->backend); in __gthread_objc_condition_allocate() 606 condition->backend = NULL; in __gthread_objc_condition_allocate() 616 __gthread_objc_condition_deallocate (objc_condition_t condition) in __gthread_objc_condition_deallocate() argument 620 if (__gthrw_(pthread_cond_destroy) ((pthread_cond_t *) condition->backend)) in __gthread_objc_condition_deallocate() 623 objc_free (condition->backend); in __gthread_objc_condition_deallocate() 624 condition->backend = NULL; in __gthread_objc_condition_deallocate() 631 __gthread_objc_condition_wait (objc_condition_t condition, objc_mutex_t mutex) in __gthread_objc_condition_wait() argument [all …]
|
| H A D | gthr-single.h | 174 __gthread_objc_condition_allocate (objc_condition_t condition UNUSED) in __gthread_objc_condition_allocate() 181 __gthread_objc_condition_deallocate (objc_condition_t condition UNUSED) in __gthread_objc_condition_deallocate() 188 __gthread_objc_condition_wait (objc_condition_t condition UNUSED, in __gthread_objc_condition_wait() 196 __gthread_objc_condition_broadcast (objc_condition_t condition UNUSED) in __gthread_objc_condition_broadcast() 203 __gthread_objc_condition_signal (objc_condition_t condition UNUSED) in __gthread_objc_condition_signal()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| H A D | statementsem.c | 371 Statement *s = new ForStatement(ws->loc, NULL, ws->condition, NULL, ws->_body, ws->endloc); in visit() 383 if (ds->condition->op == TOKdotid) in visit() 384 ((DotIdExp *)ds->condition)->noderef = true; in visit() 387 ds->condition = checkAssignmentAsCondition(ds->condition); in visit() 389 ds->condition = semantic(ds->condition, sc); in visit() 390 ds->condition = resolveProperties(sc, ds->condition); in visit() 391 if (checkNonAssignmentArrayOp(ds->condition)) in visit() 392 ds->condition = new ErrorExp(); in visit() 393 ds->condition = ds->condition->optimize(WANTvalue); in visit() 394 ds->condition = checkGC(sc, ds->condition); in visit() [all …]
|
| H A D | blockexit.c | 169 if (canThrow(s->condition, func, mustNotThrow)) in blockExit() 171 if (!(result & BEbreak) && s->condition->isBool(true)) in blockExit() 186 if (s->condition) in blockExit() 188 if (canThrow(s->condition, func, mustNotThrow)) in blockExit() 190 if (s->condition->isBool(true)) in blockExit() 192 else if (s->condition->isBool(false)) in blockExit() 228 if (canThrow(s->condition, func, mustNotThrow)) in blockExit() 230 if (s->condition->isBool(true)) in blockExit() 237 else if (s->condition->isBool(false)) in blockExit() 278 if (canThrow(s->condition, func, mustNotThrow)) in blockExit()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
| H A D | statementsem.d | 523 Expression cond = ws.condition; in package() 537 …_body = new IfStatement(ws.loc, ws.param, ws.condition, ws._body, new BreakStatement(ws.loc, null)… in package() 555 if (ds.condition.op == EXP.dotIdentifier) in package() 556 (cast(DotIdExp)ds.condition).noderef = true; in package() 559 ds.condition = checkAssignmentAsCondition(ds.condition, sc); in package() 561 ds.condition = ds.condition.expressionSemantic(sc); in package() 562 ds.condition = resolveProperties(sc, ds.condition); in package() 563 if (checkNonAssignmentArrayOp(ds.condition)) in package() 564 ds.condition = ErrorExp.get(); in package() 565 ds.condition = ds.condition.optimize(WANTvalue); in package() [all …]
|
| H A D | statement.d | 787 Expression condition; variable 791 …extern (D) this(const ref Loc loc, Expression condition, Statement _body, Loc endloc, Parameter pa… 794 this.condition = condition; 803 condition.syntaxCopy(), in syntaxCopy() 830 Expression condition; variable 833 extern (D) this(const ref Loc loc, Statement _body, Expression condition, Loc endloc) in this() argument 837 this.condition = condition; in this() 845 condition.syntaxCopy(), in syntaxCopy() 871 Expression condition; variable 881 …extern (D) this(const ref Loc loc, Statement _init, Expression condition, Expression increment, St… in this() argument [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/config/cris/ |
| H A D | cris-modes.def | 22 /* The mode used for condition-codes depends on both the way the 23 condition-codes are generated (the CC-setter, typically the compare 25 have ordinary compares and incidental condition-code settings from 35 against zero and the CC-user is any branch or s<condition> instruction, 49 /* Z and N flags only. For a condition-code setter: only the Z and N 50 flags are set to usable values, fpcraz. For a condition-code user: the 51 operation using the condition codes only care about the Z and N flags. */ 54 /* Z and N *and* V and C flags. For a condition-code setter: all flags 55 are set to usable values, fpcraz. For a condition-code user: at least
|
| /netbsd-src/external/gpl3/gcc/dist/libobjc/objc/ |
| H A D | thr.h | 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);
|
| /netbsd-src/external/gpl3/gcc.old/dist/libobjc/objc/ |
| H A D | thr.h | 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);
|
| /netbsd-src/crypto/external/cpl/trousers/dist/src/tspi/daa/daa_anonymityrevocation/ |
| H A D | csencryption_result.c | 59 const BYTE *condition, in compute_u() argument 82 memcpy( &buffer[index], condition, conditionLength); in compute_u() 101 const BYTE *condition, in internal_compute_encryption_proof() argument 141 exp = compute_u( digest, delta1, delta2, delta3, condition, conditionLength); in internal_compute_encryption_proof() 152 exp = compute_u( digest, c1, c2, c3, condition, conditionLength); in internal_compute_encryption_proof() 187 const BYTE *condition, in compute_ecryption_proof() argument 208 condition, in compute_ecryption_proof()
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/ |
| H A D | assert_fail.cc | 34 const char* function, const char* condition) noexcept in __glibcxx_assert_fail() argument 36 if (file && function && condition) in __glibcxx_assert_fail() 38 file, line, function, condition); in __glibcxx_assert_fail()
|
| /netbsd-src/external/bsd/ntp/dist/sntp/unity/ |
| H A D | unity.h | 70 …define TEST_ASSERT(condition) … argument 71 …fine TEST_ASSERT_TRUE(condition) UN… argument 72 …ine TEST_ASSERT_UNLESS(condition) UNI… argument 73 …ine TEST_ASSERT_FALSE(condition) UNI… argument 174 …ne TEST_ASSERT_MESSAGE(condition, message) UNIT… argument 175 … TEST_ASSERT_TRUE_MESSAGE(condition, message) UNITY_… argument 176 …TEST_ASSERT_UNLESS_MESSAGE(condition, message) UNITY_T… argument 177 …TEST_ASSERT_FALSE_MESSAGE(condition, message) UNITY_T… argument
|