HomeSort by relevance Sort by last modified time
    Searched refs:cond (Results 1 - 25 of 1759) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/upstream-netbsd/lib/libc/include/isc/
assertions.h 72 #define REQUIRE(cond) \
73 ((void) ((cond) || \
75 #cond, 0), 0)))
76 #define REQUIRE_ERR(cond) \
77 ((void) ((cond) || \
79 #cond, 1), 0)))
81 #define REQUIRE(cond) ((void) (cond))
82 #define REQUIRE_ERR(cond) ((void) (cond))
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/
cassert.h 12 * an invalid C construct if 'cond' evaluates to false.
18 #define CASSERT(cond, msg) \
19 typedef char msg[(cond) ? 1 : -1] __unused
  /external/compiler-rt/test/profile/Linux/
coverage_test.cpp 20 void foo(bool cond) { // CHECK: 1| [[@LINE]]|void foo(
21 if (cond) { // CHECK: 1| [[@LINE]]| if (cond) {
  /external/llvm/test/tools/llvm-cov/
report.cpp 20 void foo(bool cond) {
21 if (cond) {
  /external/parameter-framework/upstream/utility/
AlwaysAssert.hpp 36 #define ALWAYS_ASSERT_FAILURE(cond) std::terminate()
39 #define ALWAYS_ASSERT_FAILURE(cond) assert(cond)
42 #define ALWAYS_ASSERT(cond, iostr) \
44 if (!(cond)) { \
46 << ": Assert '" #cond "' failed: " << iostr << std::endl; \
47 ALWAYS_ASSERT_FAILURE(cond); \
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
itblock.s 3 .macro itblock num cond=""
4 .if x\cond != x
6 itttt \cond
9 ittt \cond
12 itt \cond
15 .it \cond
vfp-neon-syntax-inc.s 8 .macro testvmov cond="" f32=".f32" f64=".f64"
9 itblock 4 \cond
10 vmov\cond\f32 s0,s1
11 vmov\cond\f64 d0,d1
12 vmov\cond\f32 s0,#0.25
13 vmov\cond\f64 d0,#1.0
14 itblock 4 \cond
15 vmov\cond r0,s1
16 vmov\cond s0,r1
17 vmov\cond r0,r1,s2,s
    [all...]
  /bionic/libc/dns/resolv/
res_debug.h 24 # define Dprint(cond, args) /*empty*/
25 # define DprintQ(cond, args, query, size) /*empty*/
29 # define Dprint(cond, args) if (cond) {fprintf args;} else {}
30 # define DprintQ(cond, args, query, size) if (cond) {\
  /art/test/549-checker-types-merge/src/
Main.java 44 private Object testMergeNullContant(boolean cond) {
45 return cond ? null : new Main();
51 private Object testMergeClasses(boolean cond, ClassExtendsA a, ClassExtendsB b) {
53 return cond ? a : b;
59 private Object testMergeClasses(boolean cond, ClassExtendsA a, ClassSuper b) {
61 return cond ? a : b;
67 private Object testMergeClasses(boolean cond, ClassSuper a, ClassSuper b) {
69 return cond ? a : b;
75 private Object testMergeClasses(boolean cond, ClassOtherSuper a, ClassSuper b) {
77 return cond ? a : b
    [all...]
  /art/test/557-checker-ref-equivalent/src/
Main.java 21 private void testRedundantPhiCycle(boolean cond) {
24 if (cond) {
33 private void testLoopPhisWithNullAndCrossUses(boolean cond) {
37 if (cond) {
  /external/valgrind/drd/
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);
  /external/swiftshader/third_party/subzero/crosstest/
test_select.h 17 v4f32 select(v4si32 cond, v4f32 val1, v4f32 val2);
18 v4si32 select(v4si32 cond, v4si32 val1, v4si32 val2);
19 v4ui32 select(v4si32 cond, v4ui32 val1, v4ui32 val2);
20 v8si16 select(v8si16 cond, v8si16 val1, v8si16 val2);
21 v8ui16 select(v8si16 cond, v8ui16 val1, v8ui16 val2);
22 v16si8 select(v16si8 cond, v16si8 val1, v16si8 val2);
23 v16ui8 select(v16si8 cond, v16ui8 val1, v16ui8 val2);
24 v4si32 select_i1(v4si32 cond, v4si32 val1, v4si32 val2);
25 v8si16 select_i1(v8si16 cond, v8si16 val1, v8si16 val2);
26 v16si8 select_i1(v16si8 cond, v16si8 val1, v16si8 val2)
    [all...]
  /art/test/540-checker-rtp-bug/src/
Main.java 37 public static Final testKeepCheckCast(Object o, boolean cond) {
39 while (cond) {
41 cond = false;
55 public static void testKeepInstanceOf(Object o, boolean cond) {
57 while (cond) {
59 cond = false;
79 public static String testNoInline(Object o, boolean cond) {
81 while (cond) {
83 cond = false;
  /external/libevent/
evthread_win32.c 130 CONDITION_VARIABLE *cond = mm_malloc(sizeof(CONDITION_VARIABLE)); local
131 if (!cond)
133 InitializeConditionVariable_fn(cond);
134 return cond;
140 CONDITION_VARIABLE *cond = cond_; local
142 mm_free(cond);
146 evthread_win32_condvar_signal(void *cond, int broadcast)
148 CONDITION_VARIABLE *cond = cond_; local
150 WakeAllConditionVariable_fn(cond);
152 WakeConditionVariable_fn(cond);
159 CONDITION_VARIABLE *cond = cond_; local
192 struct evthread_win32_cond *cond; local
211 struct evthread_win32_cond *cond = cond_; local
220 struct evthread_win32_cond *cond = cond_; local
235 struct evthread_win32_cond *cond = cond_; local
    [all...]
  /frameworks/ex/framesequence/jni/utils/
log.h 63 #define CONDITION(cond) (__builtin_expect((cond)!=0, 0))
67 #define ALOGV_IF(cond, ...) ((void)0)
69 #define ALOGV_IF(cond, ...) \
70 ( (CONDITION(cond)) \
84 #define ALOGD_IF(cond, ...) \
85 ( (CONDITION(cond)) \
98 #define ALOGI_IF(cond, ...) \
99 ( (CONDITION(cond)) \
112 #define ALOGW_IF(cond, ...)
    [all...]
  /external/clang/test/CXX/over/over.built/
p25.cpp 14 Color foo(bool cond, ConvertsToColorA ca, ConvertsToColorB cb) {
15 return cond? ca : cb;
  /system/nvram/messages/include/nvram/messages/
compiler.h 31 #define NVRAM_CHECK(cond) if (!(cond)) abort()
  /external/boringssl/src/include/openssl/
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)] OPENSSL_UNUSED
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_init/
2-1.c 17 pthread_cond_t cond = PTHREAD_COND_INITIALIZER; variable
  /external/valgrind/helgrind/tests/
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);
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);
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/diff/
conditional.py 26 def __init__(self, cond):
27 self.origin = cond
28 self.truth_table = cond.truth_table()
  /external/compiler-rt/lib/builtins/arm/
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)
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)
  /system/core/liblog/include/log/
log_radio.h 66 #define RLOGV_IF(cond, ...) ((void)0)
68 #define RLOGV_IF(cond, ...) \
69 ((__predict_false(cond)) \
86 #define RLOGD_IF(cond, ...) \
87 ((__predict_false(cond)) \
103 #define RLOGI_IF(cond, ...) \
104 ((__predict_false(cond)) \
120 #define RLOGW_IF(cond, ...) \
121 ((__predict_false(cond)) \
137 #define RLOGE_IF(cond, ...)
    [all...]

Completed in 754 milliseconds

1 2 3 4 5 6 7 8 91011>>