/external/llvm/test/tools/llvm-cov/ |
H A D | report.cpp | 20 void foo(bool cond) { argument 21 if (cond) {
|
/external/valgrind/drd/ |
H A D | drd_cond.h | 48 struct cond_info* DRD_(cond_get)(const Addr cond); 49 void DRD_(cond_pre_init)(const Addr cond); 50 void DRD_(cond_post_destroy)(const Addr cond, const Bool destroy_succeeded); 51 void DRD_(cond_pre_wait)(const Addr cond, const Addr mutex); 52 void DRD_(cond_post_wait)(const Addr cond); 53 void DRD_(cond_pre_signal)(const Addr cond); 54 void DRD_(cond_pre_broadcast)(const Addr cond);
|
H A D | drd_cond.c | 61 void DRD_(cond_initialize)(struct cond_info* const p, const Addr cond) argument 63 tl_assert(cond != 0); 64 tl_assert(p->a1 == cond); 118 static struct cond_info* cond_get_or_allocate(const Addr cond) argument 122 tl_assert(offsetof(DrdClientobj, cond) == 0); 123 p = &(DRD_(clientobj_get)(cond, ClientCondvar)->cond); 127 if (DRD_(clientobj_present)(cond, cond + 1)) 129 wrong_type(cond); 138 cond_get(const Addr cond) argument 145 cond_pre_init(const Addr cond) argument 168 cond_post_destroy(const Addr cond, const Bool destroy_succeeded) argument 207 cond_pre_wait(const Addr cond, const Addr mutex) argument 269 cond_post_wait(const Addr cond) argument 338 not_initialized(Addr const cond) argument 349 cond_pre_signal(Addr const cond) argument 373 cond_pre_broadcast(Addr const cond) argument [all...] |
/external/clang/test/CXX/over/over.built/ |
H A D | p25.cpp | 14 Color foo(bool cond, ConvertsToColorA ca, ConvertsToColorB cb) { argument 15 return cond? ca : cb;
|
/external/boringssl/include/openssl/ |
H A D | type_check.h | 80 #define OPENSSL_COMPILE_ASSERT(cond, msg) _Static_assert(cond, #msg) 82 #define OPENSSL_COMPILE_ASSERT(cond, msg) \ 83 typedef char OPENSSL_COMPILE_ASSERT_##msg[((cond) ? 1 : -1)]
|
/external/boringssl/src/include/openssl/ |
H A D | type_check.h | 80 #define OPENSSL_COMPILE_ASSERT(cond, msg) _Static_assert(cond, #msg) 82 #define OPENSSL_COMPILE_ASSERT(cond, msg) \ 83 typedef char OPENSSL_COMPILE_ASSERT_##msg[((cond) ? 1 : -1)]
|
/external/valgrind/helgrind/tests/ |
H A D | cond_timedwait_test.c | 6 pthread_cond_t cond = PTHREAD_COND_INITIALIZER; local 13 pthread_cond_timedwait(&cond, &mutex, &now); 17 pthread_cond_destroy(&cond);
|
H A D | pth_destroy_cond.c | 6 // the guest application wrongly destroys a cond var being waited 9 pthread_cond_t cond; variable 17 pthread_cond_signal(&cond); 18 pthread_cond_destroy(&cond); // ERROR!!! 26 pthread_cond_init(&cond, NULL); 31 pthread_cond_wait(&cond, &mutex);
|
/external/compiler-rt/lib/builtins/arm/ |
H A D | aeabi_dcmp.S | 21 #define DEFINE_AEABI_DCMP(cond) \ 24 DEFINE_COMPILERRT_FUNCTION(__aeabi_dcmp ## cond) \ 26 bl SYMBOL_NAME(__ ## cond ## df2) SEPARATOR \ 28 b ## cond 1f SEPARATOR \ 34 END_COMPILERRT_FUNCTION(__aeabi_dcmp ## cond)
|
H A D | aeabi_fcmp.S | 21 #define DEFINE_AEABI_FCMP(cond) \ 24 DEFINE_COMPILERRT_FUNCTION(__aeabi_fcmp ## cond) \ 26 bl SYMBOL_NAME(__ ## cond ## sf2) SEPARATOR \ 28 b ## cond 1f SEPARATOR \ 34 END_COMPILERRT_FUNCTION(__aeabi_fcmp ## cond)
|
/external/apache-http/src/org/apache/http/impl/conn/tsccm/ |
H A D | WaitingThread.java | 58 private final Condition cond; field in class:WaitingThread 74 * @param cond the condition for which to wait 78 public WaitingThread(Condition cond, RouteSpecificPool pool) { argument 80 if (cond == null) { 84 this.cond = cond; 96 return this.cond; 146 // the lock would not be released on calling cond.await() below. 162 success = this.cond.awaitUntil(deadline); 164 this.cond [all...] |
/external/clang/test/CXX/temp/temp.decls/temp.mem/ |
H A D | p1.cpp | 5 static T cond; member in struct:A 9 return (cond ? value + value : value); 15 A<bool>::cond = true; member in class:A
|
/external/marisa-trie/tests/ |
H A D | assert.h | 7 #define ASSERT(cond) (void)((!!(cond)) || \ 8 (printf("%d: Assertion `%s' failed.\n", __LINE__, #cond), exit(-1), 0))
|
/external/marisa-trie/v0_1_5/tests/ |
H A D | assert.h | 7 #define ASSERT(cond) (void)((!!(cond)) || \ 8 (printf("%d: Assertion `%s' failed.\n", __LINE__, #cond), exit(-1), 0))
|
/external/clang/test/CodeGenCXX/ |
H A D | throw-expressions.cpp | 85 void test7(bool cond) { argument 97 cond ? throw test7 : val; 101 int &test8(bool cond) { argument 113 return cond ? val : ((throw "foo"));
|
H A D | conditional-expr-lvalue.cpp | 17 void foo(bool cond, const A &a) { argument 18 (cond ? a : a.sub()).foo();
|
H A D | expr.cpp | 35 struct s5 &f5_0(bool cond, struct s5 &a, struct s5 &b) { argument 36 return cond ? a : b;
|
H A D | microsoft-abi-eh-cleanups.cpp | 64 // WIN32: %[[cond:.*]] = load i1, i1* %[[isactive]] 65 // WIN32: br i1 %[[cond]] 71 int HasConditionalCleanup(bool cond) { argument 72 return (cond ? TakesTwo(A(), A()) : CouldThrow()); 94 int HasConditionalDeactivatedCleanups(bool cond) { argument 95 return (cond ? TakesTwo((TakeRef(A()), A()), (TakeRef(A()), A())) : CouldThrow());
|
/external/compiler-rt/test/tsan/ |
H A D | race_on_speculative_load.cc | 8 int foo(int cond) { argument 9 if (cond)
|
/external/google-breakpad/src/common/android/testing/ |
H A D | pthread_fixes.h | 49 pthread_cond_t cond; member in struct:__anon5109::__anon5110 58 pthread_cond_init(&barrier->cond, NULL); 69 pthread_cond_broadcast(&barrier->cond); 76 pthread_cond_wait(&barrier->cond, &barrier->mutex); 85 pthread_cond_destroy(&barrier->cond);
|
/external/mesa3d/src/gallium/auxiliary/os/ |
H A D | os_thread.h | 110 #define pipe_condvar_init(cond) \ 111 pthread_cond_init(&(cond), NULL) 113 #define pipe_condvar_destroy(cond) \ 114 pthread_cond_destroy(&(cond)) 116 #define pipe_condvar_wait(cond, mutex) \ 117 pthread_cond_wait(&(cond), &(mutex)) 119 #define pipe_condvar_signal(cond) \ 120 pthread_cond_signal(&(cond)) 122 #define pipe_condvar_broadcast(cond) \ 123 pthread_cond_broadcast(&(cond)) 397 pipe_condvar cond; member in struct:__anon11979 [all...] |
/external/v8/src/arm/ |
H A D | disasm-arm.cc | 464 case 'c': { // 'cond: conditional execution 465 DCHECK(STRING_STARTS_WITH(format, "cond")); 713 Format(instr, "mul'cond's 'rn, 'rm, 'rs"); 720 Format(instr, "mla'cond's 'rn, 'rm, 'rs, 'rd"); 726 Format(instr, "mls'cond's 'rn, 'rm, 'rs, 'rd"); 736 Format(instr, "'um'al'cond's 'rd, 'rn, 'rm, 'rs"); 746 Format(instr, "'memop'cond's 'rd, ['rn], -'rm"); 748 Format(instr, "'memop'cond's 'rd, ['rn], #-'off8"); 754 Format(instr, "'memop'cond's 'rd, ['rn], +'rm"); 756 Format(instr, "'memop'cond' [all...] |
/external/clang/test/CodeGen/ |
H A D | conditional.c | 3 float test1(int cond, float a, float b) { argument 4 return cond ? a : b; 7 double test2(int cond, float a, double b) { argument 8 return cond ? a : b;
|
/external/mesa3d/src/mesa/program/ |
H A D | program_parse_extra.c | 100 int cond = 0; local 105 cond = COND_EQ; 111 cond = COND_FL; 117 cond = COND_GE; 119 cond = COND_GT; 125 cond = COND_LE; 127 cond = COND_LT; 133 cond = COND_NE; 139 cond = COND_TR; 147 return ((cond [all...] |
/external/linux-tools-perf/src/tools/perf/tests/ |
H A D | tests.h | 4 #define TEST_ASSERT_VAL(text, cond) \ 6 if (!(cond)) { \
|