Searched refs:test (Results 176 - 200 of 380) sorted by relevance

1234567891011>>

/freebsd-10.1-release/contrib/llvm/include/llvm/Support/
H A DYAMLTraits.h168 static char test(SameType<Signature_enumeration, &U::enumeration>*);
171 static double test(...);
174 static bool const value = (sizeof(test<ScalarEnumerationTraits<T> >(0)) == 1);
185 static char test(SameType<Signature_bitset, &U::bitset>*);
188 static double test(...);
191 static bool const value = (sizeof(test<ScalarBitSetTraits<T> >(0)) == 1);
203 static char test(SameType<Signature_input, &U::input>*,
207 static double test(...);
210 static bool const value = (sizeof(test<ScalarTraits<T> >(0,0)) == 1);
221 static char test(SameTyp
[all...]
/freebsd-10.1-release/crypto/heimdal/lib/wind/
H A Dtest-normalize.c83 test(char *buf, unsigned lineno) function
172 failures += test(buf, lineno);
/freebsd-10.1-release/sys/boot/pc98/boot2/
H A Dboot1.S158 boot_hd: test %cx,%cx
253 test %al,%al
280 putc.bs: test %di,%di
329 test $0x20,%al
332 test $0x20,%al
358 test $0x80,%al
366 test $0x20,%al
372 test $0x80,%al
/freebsd-10.1-release/contrib/expat/tests/
H A Dminicheck.h82 void tcase_add_test(TCase *tc, tcase_test_function test);
H A Dminicheck.c57 tcase_add_test(TCase *tc, tcase_test_function test) argument
71 tc->tests[tc->ntests] = test;
131 /* test */
/freebsd-10.1-release/contrib/ncurses/progs/
H A Dtic.c913 char *test; local
919 test = strchr(list, ch);
920 if (test != 0)
921 result = (test - list);
946 int test; local
983 for (k = 0, kk = -1, test = 100; k < 5; ++k) {
985 list[k] < test) {
986 test = list[k];
990 last = test;
1299 char *test; local
[all...]
/freebsd-10.1-release/contrib/sendmail/libsm/
H A Dt-event.c23 #include <sm/test.h>
56 sm_test_begin(argc, argv, "test event handling");
57 fprintf(stdout, "This test may hang. If there is no output within twelve seconds, abort it\nand recompile with -DSM_CONF_SETITIMER=%d\n",
61 DBG_OUT(fprintf(stdout, "We're back, test 1 seems to work.\n"));
65 DBG_OUT(fprintf(stdout, "We're back, test 2 seems to work.\n"));
74 DBG_OUT(fprintf(stdout, "We're back, test 3 seems to work.\n"));
85 DBG_OUT(fprintf(stdout, "We're back, test 4 seems to work.\n"));
H A Dt-float.c16 #include <sm/test.h>
34 sm_test_begin(argc, argv, "test floating point stuff");
H A Dt-rpool.c17 #include <sm/test.h>
41 sm_test_begin(argc, argv, "test rpool");
H A Dt-scanf.c16 #include <sm/test.h>
28 sm_test_begin(argc, argv, "test scanf point stuff");
H A Dt-smstdio.c15 #include <sm/test.h>
29 "test sm_io_stdioopen, smiostdin, smiostdout");
42 ** stream should now be closed. This is a tricky way to test
67 ** gotta think some more about how to test smiostdin and smiostdout
H A Dt-types.c16 #include <sm/test.h>
30 sm_test_begin(argc, argv, "test standard integral types");
55 ** a wrong test...
56 ** Question: where do we really need what this test tests?
H A Dtest.c11 SM_IDSTR(Id, "@(#)$Id: test.c,v 1.17 2013-11-22 20:51:44 ca Exp $")
14 ** Abstractions for writing libsm test programs.
21 #include <sm/test.h>
48 ** SM_TEST_BEGIN -- initialize test system.
96 ** SM_TEST -- single test.
99 ** success -- did test succeeed?
135 ** SM_TEST_END -- end of test system.
150 (void) fprintf(stderr, "*** %d error%s in test! ***\n",
/freebsd-10.1-release/crypto/heimdal/lib/roken/
H A Dbase64-test.c44 struct test { struct
63 fprintf(stderr, "failed test %d: %s != %s\n", numtest,
71 fprintf(stderr, "failed test %d: len %lu != %lu\n", numtest,
75 fprintf(stderr, "failed test %d: data\n", numtest);
85 fprintf(stderr, "failed test %d: successful decode of `M=M='\n",
90 fprintf(stderr, "failed test %d: successful decode of `MQ==='\n",
H A Dhex-test.c44 struct test { struct
65 fprintf(stderr, "failed test %d: %s != %s\n", numtest,
74 fprintf(stderr, "failed test %d: len %lu != %lu\n", numtest,
78 fprintf(stderr, "failed test %d: data\n", numtest);
/freebsd-10.1-release/sys/dev/nxge/include/
H A Dxge-debug.h398 * @test: C-condition to check
406 #define xge_assert(test) { \
407 if (!(test)) xge_os_bug("bad cond: "#test" at %s:%d\n", \
410 #define xge_assert(test)
/freebsd-10.1-release/contrib/ntp/libjsmn/
H A Djsmn_test.c8 /* Terminate current test with error */
11 /* Successfull end of the test case */
18 static void test(int (*func)(void), const char *name) { function
590 test(test_empty, "general test for a empty JSON objects/arrays");
591 test(test_simple, "general test for a simple JSON string");
592 test(test_primitive, "test primitive JSON data types");
593 test(test_strin
[all...]
/freebsd-10.1-release/sys/dev/xe/
H A Dif_xe_pccard.c197 uint8_t *enaddr = argp, test; local
207 test = pccard_tuple_read_1(tuple, 0);
208 if (test != PCCARD_TPLFE_TYPE_LAN_NID)
210 test = pccard_tuple_read_1(tuple, 1);
211 if (test != ETHER_ADDR_LEN)
/freebsd-10.1-release/bin/pax/
H A Dpat_rep.c497 char test; local
522 if ((test = *string++) == '\0')
542 while ((test = *string) != '\0') {
552 if (((test = *string++) == '\0') ||
553 ((pattern = range_match(pattern, test)) == NULL))
567 range_match(char *pattern, int test) argument
586 if ((c <= test) && (test <= c2))
589 } else if (c == test)
/freebsd-10.1-release/contrib/atf/atf-c++/
H A Dmacros_test.cpp61 // Auxiliary test cases.
67 set_md_var("descr", "Helper test case");
79 set_md_var("descr", "Helper test case");
91 set_md_var("descr", "Helper test case");
103 set_md_var("descr", "Helper test case");
117 set_md_var("descr", "Helper test case");
132 set_md_var("descr", "Helper test case");
151 set_md_var("descr", "Helper test case");
166 set_md_var("descr", "Helper test case");
185 set_md_var("descr", "Helper test cas
336 struct test { struct
380 struct test { struct
429 struct test { struct
474 struct test { struct
521 struct test { struct
566 struct test { struct
615 struct test { struct
667 struct test { struct
715 struct test { struct
[all...]
/freebsd-10.1-release/lib/libedit/
H A Dchared.c279 int test; local
282 test = (*wtest)((unsigned char) *p);
283 while ((p < high) && (*wtest)((unsigned char) *p) == test)
308 int test; local
314 test = (*wtest)((unsigned char) *p);
315 while ((p >= low) && (*wtest)((unsigned char) *p) == test)
428 int test; local
436 test = (*wtest)((unsigned char) *p);
437 while ((p < high) && (*wtest)((unsigned char) *p) == test)
/freebsd-10.1-release/contrib/bmake/mk/
H A Dman.mk94 test -s ${_mfromdir}/$$page || continue; \
96 test -d $$dir || ${INSTALL} -d ${MAN_INSTALL_OWN} -m 775 $$dir; \
111 while test $$# -ge 2; do \
/freebsd-10.1-release/share/mk/
H A Dbsd.obj.mk84 @if ! test -d ${CANONICALOBJDIR}/; then \
86 if ! test -d ${CANONICALOBJDIR}/; then \
96 @if test -d ${CANONICALOBJDIR}/; then \
H A Dbsd.subdir.mk49 if test -d ${.CURDIR}/$${entry}.${MACHINE_ARCH}; then \
64 ${_+_}@if test -d ${.TARGET}.${MACHINE_ARCH}; then \
90 if test -d ${.CURDIR}/${__dir}.${MACHINE_ARCH}; then \
/freebsd-10.1-release/sys/i386/xbox/
H A Dpic16l.s51 test %eax,%eax
133 test %eax,%eax

Completed in 229 milliseconds

1234567891011>>