| /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 in typeref:typename:int 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...]
 | 
| msg_305.c | 13 example(int cond) 22 	void_pointer = cond ? void_function : int_function;
 24 	void_pointer = cond ? void_pointer : int_function;
 26 	void_pointer = cond ? void_function : void_pointer;
 
 | 
| msg_138.c | 15 function(_Bool cond, struct incomplete *i1, struct incomplete *i2) 25 	return cond ? *i1 : *i2;
 
 | 
| /src/lib/libc/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) {\
 
 | 
| /src/lib/libpthread/ | 
| cnd.c | 41 cnd_broadcast(cnd_t *cond) 44 	_DIAGASSERT(cond != NULL);
 46 	if (pthread_cond_broadcast(cond) == 0)
 53 cnd_destroy(cnd_t *cond)
 56 	_DIAGASSERT(cond != NULL);
 61 	(void)pthread_cond_destroy(cond);
 65 cnd_init(cnd_t *cond)
 68 	_DIAGASSERT(cond != NULL);
 70 	if (pthread_cond_init(cond, NULL) == 0)
 77 cnd_signal(cnd_t *cond)
 [all...]
 | 
| /src/sys/arch/hppa/spmath/ | 
| sfcmp.c | 55     unsigned int cond, unsigned int *status) 74 	    && (Exception(cond) || Sgl_isone_signaling(left)))
 78 	    && (Exception(cond) || Sgl_isone_signaling(right)) ) )
 81 		Set_status_cbit(Unordered(cond));
 85 	    Set_status_cbit(Unordered(cond));
 97 	    Set_status_cbit(Unordered(cond));
 112 	    Set_status_cbit(Equal(cond));
 116 	    Set_status_cbit(Lessthan(cond));
 120 	    Set_status_cbit(Greaterthan(cond));
 127 	Set_status_cbit(Equal(cond));
 [all...]
 | 
| dfcmp.c | 55     unsigned int cond, unsigned int *status) 74 	    && (Exception(cond) || Dbl_isone_signaling(leftp1)))
 78 	    && (Exception(cond) || Dbl_isone_signaling(rightp1))) )
 81 		Set_status_cbit(Unordered(cond));
 85 	    Set_status_cbit(Unordered(cond));
 97 	    Set_status_cbit(Unordered(cond));
 112 	    Set_status_cbit(Equal(cond));
 116 	    Set_status_cbit(Lessthan(cond));
 120 	    Set_status_cbit(Greaterthan(cond));
 127 	Set_status_cbit(Equal(cond));
 [all...]
 | 
| /src/usr.bin/make/unit-tests/ | 
| cond-eof.exp | 1 make: cond-eof.mk:17: Malformed conditional "0 ${SIDE_EFFECT} ${SIDE_EFFECT2}" 2 make: cond-eof.mk:20: Malformed conditional "1 ${SIDE_EFFECT} ${SIDE_EFFECT2}"
 3 make: cond-eof.mk:23: Malformed conditional "(0) ${SIDE_EFFECT} ${SIDE_EFFECT2}"
 
 |