Home
last modified time | relevance | path

Searched full:retc (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/ntp/sntp/tests/
H A DfileHandlingTest.c20 ssize_t retc; in CreatePath() local
24 retc = snprintf(path, plen, "%s%s", srcdir, filename); in CreatePath()
25 if (retc <= 0 || (size_t)retc >= plen) in CreatePath()
/freebsd/sys/arm/arm/
H A Dfusu.S106 RETc(cs)
137 RETc(cs)
167 RETc(cs)
222 RETc(cs)
252 RETc(cs)
282 RETc(cs)
313 RETc(cs)
H A Dbcopyinout_xscale.S61 RETc(cs)
66 RETc(cs)
424 RETc(cs)
429 RETc(cs)
/freebsd/crypto/openssl/test/helpers/
H A Dquictestlib.c518 int retc = -1, rets = 0, abortctr = 0, ret = 0; in qtest_create_quic_connection_ex() local
544 retc = 1; in qtest_create_quic_connection_ex()
564 if (!clienterr && retc <= 0) { in qtest_create_quic_connection_ex()
573 retc = SSL_connect(clientssl); in qtest_create_quic_connection_ex()
574 if (retc <= 0) { in qtest_create_quic_connection_ex()
575 err = SSL_get_error(clientssl, retc); in qtest_create_quic_connection_ex()
578 retc = 1; in qtest_create_quic_connection_ex()
588 TEST_info("SSL_connect() failed %d, %d", retc, err); in qtest_create_quic_connection_ex()
626 if ((retc <= 0 && !clienterr) || (rets <= 0 && !servererr)) { in qtest_create_quic_connection_ex()
630 } while ((retc <= 0 && !clienterr) in qtest_create_quic_connection_ex()
H A Dssltestlib.c1264 int retc = -1, rets = -1, err, abortctr = 0, ret = 0; in create_bare_ssl_connection_ex() local
1289 while (!clienterr && retc <= 0 && err == SSL_ERROR_WANT_WRITE) { in create_bare_ssl_connection_ex()
1290 retc = SSL_connect(clientssl); in create_bare_ssl_connection_ex()
1291 if (retc <= 0) in create_bare_ssl_connection_ex()
1292 err = SSL_get_error(clientssl, retc); in create_bare_ssl_connection_ex()
1296 if (!clienterr && retc <= 0 && err != SSL_ERROR_WANT_READ) { in create_bare_ssl_connection_ex()
1297 TEST_info("SSL_connect() failed %d, %d", retc, err); in create_bare_ssl_connection_ex()
1346 if (rets > 0 && retc <= 0) { in create_bare_ssl_connection_ex()
1354 if (retc > 0 && rets <= 0) { in create_bare_ssl_connection_ex()
1375 } while (retc <=0 || rets <= 0); in create_bare_ssl_connection_ex()
/freebsd/contrib/one-true-awk/
H A Dlex.c113 int c, retc; in gettok() local
141 retc = 'a'; /* alphanumeric */ in gettok()
161 retc = (uschar)buf[0]; /* character is its own type */ in gettok()
166 retc = '0'; /* type is number */ in gettok()
171 return retc; in gettok()
/freebsd/contrib/mandoc/
H A Dmdoc_argv.c284 int ipos, retc; in mdoc_argv() local
362 retc = ++(*reta)->argc; in mdoc_argv()
364 *retv = mandoc_reallocarray(*retv, retc, sizeof(**retv)); in mdoc_argv()
365 memcpy(*retv + retc - 1, &tmpv, sizeof(**retv)); in mdoc_argv()
/freebsd/crypto/openssl/test/
H A Dquicapitest.c911 int abortctr = 0, err, clienterr = 0, servererr = 0, retc = 0, rets = 0; in test_bio_ssl() local
939 while (!clienterr && !retc && err == BIO_FLAGS_WRITE) { in test_bio_ssl()
940 retc = BIO_write_ex(cbio, msg, msglen, &written); in test_bio_ssl()
941 if (!retc) { in test_bio_ssl()
949 if (!clienterr && retc <= 0 && err != BIO_FLAGS_READ) { in test_bio_ssl()
950 TEST_info("BIO_write_ex() failed %d, %d", retc, err); in test_bio_ssl()
970 } while ((!retc && !clienterr) || (rets <= 0 && !servererr)); in test_bio_ssl()
/freebsd/sys/arm/include/
H A Dasm.h175 # define RETc(c) bx##c lr macro