HomeSort by: relevance | last modified time | path
    Searched refs:cond (Results 1 - 25 of 1321) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/tests/usr.bin/indent/
psym_rbrace.c 35 } while (cond)
45 if (cond)
51 if (cond)
77 while (cond)
83 while (cond)
psym_if_expr.c 11 if(cond) stmt();
19 if (cond)
31 if cond {
33 if cond && cond {
40 if cond {
42 if cond
43 && cond {
psym_while_expr.c 20 while(cond){}
22 do{}while(cond);
24 if(cmd)while(cond);
26 {}while(cond);
34 while (cond) {
38 } while (cond);
41 while (cond)
46 while (cond)
psym_if_expr_stmt_else.c 14 example(_Bool cond)
16 if (cond) {}
17 else if (cond) {}
18 else if (cond) i++;
25 example(_Bool cond)
27 if (cond) {
29 else if (cond) {
31 else if (cond)
44 example(_Bool cond)
46 if (cond)
    [all...]
psym_switch_expr.c 22 if (cond) {
34 if (cond) {
48 if (cond) {
lsym_while.c 12 while(cond)stmt();
13 do stmt();while(cond);
21 while (cond)
25 while (cond);
lsym_if.c 12 if(cond)stmt();
20 if (cond)
psym_else.c 21 example(bool cond)
23 if (cond)
24 if (cond)
25 if (cond)
37 example(bool cond)
39 if (cond)
40 if (cond)
41 if (cond)
psym_do_stmt.c 36 if (cond) do stmt; while (cond); stmt;
42 if (cond)
45 while (cond);
lsym_question.c 9 const char *result = cond ? "then" : "else";
22 const char *separate_lines = cond
28 const char *separate_lines = cond
42 return cond
58 const char *branch = cond
opt_bl_br.c 165 if (cond)
169 else if (cond)
184 if(cond){}
186 if (cond)
189 if (cond) /* comment */
192 if (cond)
196 if (cond)
201 if (cond) // comment
210 if (cond)
214 if (cond)
    [all...]
  /src/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...]
  /src/sys/external/bsd/compiler_rt/dist/test/profile/Linux/
coverage_test.cpp 11 void foo(bool cond) { // CHECK: 1| [[@LINE]]|void foo(
12 if (cond) { // CHECK: 1| [[@LINE]]| if (cond) {
  /src/tests/usr.bin/xlint/lint1/
parse_stmt_error.c 13 cover_selection_statement_else(_Bool cond)
15 if (cond)
msg_218.c 9 int cond; variable
38 cond = s32 < 3000000000L;
41 cond = 3000000000L < s32;
44 cond = u32 < 3000000000L;
47 cond = 3000000000L < u32;
50 cond = s64 < 3000000000L;
53 cond = 3000000000L < s64;
56 cond = u64 < 3000000000L;
59 cond = 3000000000L < u64;
op_colon.c 18 test_merge_qualifiers(_Bool cond, int *p, const int *c, volatile int *v,
22 sink(cond ? p : p);
24 sink(cond ? p : c);
26 sink(cond ? p : v);
28 sink(cond ? p : cv);
31 sink(cond ? c : p);
33 sink(cond ? c : c);
35 sink(cond ? c : v);
37 sink(cond ? c : cv);
40 sink(cond ? v : p)
    [all...]
parse_stmt_iter_error.c 13 cover_iteration_statement_while(_Bool cond)
15 while (cond)
expr_binary.c 172 op_colon(_Bool cond)
174 cond ? return_void() : return_void();
176 cond ? return_void() : return_bool();
178 cond ? return_void() : return_sou();
180 cond ? return_void() : return_integer();
182 cond ? return_void() : return_floating();
184 cond ? return_void() : return_pointer();
186 cond ? return_bool() : return_void();
187 cond ? return_bool() : return_bool();
189 cond ? return_bool() : return_sou()
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/
gthr-vxworks-cond.c 38 __gthread_cond_init (__gthread_cond_t *cond)
40 if (!cond)
42 *cond = semBCreate (SEM_Q_FIFO, SEM_EMPTY);
46 __gthread_cond_destroy (__gthread_cond_t *cond)
48 if (!cond)
50 return __CHECK_RESULT (semDelete (*cond));
54 __gthread_cond_broadcast (__gthread_cond_t *cond)
56 if (!cond)
59 return __CHECK_RESULT (semFlush (*cond));
63 __gthread_cond_wait (__gthread_cond_t *cond,
    [all...]
  /src/external/gpl3/gcc/dist/libgcc/config/
gthr-vxworks-cond.c 38 __gthread_cond_init (__gthread_cond_t *cond)
40 if (!cond)
42 *cond = semBCreate (SEM_Q_FIFO, SEM_EMPTY);
46 __gthread_cond_destroy (__gthread_cond_t *cond)
48 if (!cond)
50 return __CHECK_RESULT (semDelete (*cond));
54 __gthread_cond_broadcast (__gthread_cond_t *cond)
56 if (!cond)
59 return __CHECK_RESULT (semFlush (*cond));
63 __gthread_cond_wait (__gthread_cond_t *cond,
    [all...]
  /src/external/bsd/libbind/dist/include/isc/
assertions.h 70 #define REQUIRE(cond) \
71 ((void) ((cond) || \
73 #cond, 0), 0)))
74 #define REQUIRE_ERR(cond) \
75 ((void) ((cond) || \
77 #cond, 1), 0)))
79 #define REQUIRE(cond) ((void) (cond))
80 #define REQUIRE_ERR(cond) ((void) (cond))
    [all...]
  /src/external/gpl2/texinfo/dist/makeinfo/tests/
cond 8 ../makeinfo -o cond.out $srcdir/cond.txi || exit 1
9 egrep 'This is (ifnothtml|ifinfo|ifnottex) text' cond.out >/dev/null \
11 test `fgrep ' text.' cond.out | wc -l` -eq 3 || exit 3
14 ../makeinfo --no-split --html -o cond.out $srcdir/cond.txi || exit 1
15 egrep 'This is (html|ifhtml|ifnotinfo|ifnottex) text' cond.out >/dev/null \
17 test `fgrep ' text.' cond.out | wc -l` -eq 4 || exit 3
20 ../makeinfo --no-ifhtml --no-ifinfo --no-iftex -o cond.out $srcdir/cond.txi || exit
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/
aarch64-atomic-inst.c 20 unsigned long tmp, cond; local
31 : "=&r" (tmp), "=&r" (cond), "+Q" (dword) \
42 : "=&r" (tmp), "=&r" (cond), "+Q" (dword) \
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.arch/
aarch64-atomic-inst.c 20 unsigned long tmp, cond; local
31 : "=&r" (tmp), "=&r" (cond), "+Q" (dword) \
42 : "=&r" (tmp), "=&r" (cond), "+Q" (dword) \
  /src/external/mpl/bind/dist/lib/isc/include/isc/
assertions.h 46 #define ISC_REQUIRE(cond) \
47 ((void)((cond) || \
49 isc_assertiontype_require, #cond), \
52 #define ISC_ENSURE(cond) \
53 ((void)((cond) || \
55 isc_assertiontype_ensure, #cond), \
58 #define ISC_INSIST(cond) \
59 ((void)((cond) || \
61 isc_assertiontype_insist, #cond), \
64 #define ISC_INVARIANT(cond) \
    [all...]

Completed in 38 milliseconds

1 2 3 4 5 6 7 8 91011>>