Searched refs:tp (Results 176 - 200 of 1220) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/netbsd-tests/lib/libc/sys/
H A Dt_ucontext.c71 ATF_TP_ADD_TCS(tp)
73 ATF_TP_ADD_TC(tp, ucontext_basic);
H A Dt_posix_fallocate.c59 ATF_TP_ADD_TCS(tp)
61 ATF_TP_ADD_TC(tp, ebadf);
/freebsd-11-stable/contrib/ntp/lib/isc/nothreads/include/isc/
H A Dcondition.h47 #define isc_condition_waituntil(cp, mp, tp) \
48 ((void)(cp), (void)(mp), (void)(tp), ISC_R_NOTIMPLEMENTED)
/freebsd-11-stable/contrib/atf/atf-c/
H A Dpkg_config_test.sh81 cat >tp.c <<EOF
94 ATF_TP_ADD_TCS(tp) {
95 ATF_TP_ADD_TC(tp, tc);
113 atf_check -s eq:0 -o empty -e empty ${cc} ${cflags} -o tp.o -c tp.c
114 atf_check -s eq:0 -o empty -e empty ${cc} ${ldflags} -o tp tp.o ${libs}
132 atf_check -s eq:0 -o empty -e empty test -x tp
134 "LD_LIBRARY_PATH=${libpath} ./tp tc"
H A Dtp_test.c26 #include "atf-c/tp.h"
83 ATF_TP_ADD_TCS(tp)
85 ATF_TP_ADD_TC(tp, getopt);
H A Dutils_test.c525 ATF_TP_ADD_TCS(tp)
527 ATF_TP_ADD_TC(tp, cat_file__empty);
528 ATF_TP_ADD_TC(tp, cat_file__one_line);
529 ATF_TP_ADD_TC(tp, cat_file__several_lines);
530 ATF_TP_ADD_TC(tp, cat_file__no_newline_eof);
532 ATF_TP_ADD_TC(tp, compare_file__empty__match);
533 ATF_TP_ADD_TC(tp, compare_file__empty__not_match);
534 ATF_TP_ADD_TC(tp, compare_file__short__match);
535 ATF_TP_ADD_TC(tp, compare_file__short__not_match);
536 ATF_TP_ADD_TC(tp, compare_file__long__matc
[all...]
/freebsd-11-stable/lib/libc/tests/iconv/
H A Diconvctl_test.c63 ATF_TP_ADD_TCS(tp)
66 ATF_TP_ADD_TC(tp, iconvctl_trivialp_test);
/freebsd-11-stable/lib/libc/tests/net/
H A Deui64_ntoa_test.c58 ATF_TP_ADD_TCS(tp)
61 ATF_TP_ADD_TC(tp, id_ascii);
/freebsd-11-stable/sys/geom/
H A Dgeom_int.h76 void g_io_schedule_down(struct thread *tp);
77 void g_io_schedule_up(struct thread *tp);
/freebsd-11-stable/contrib/netbsd-tests/libexec/ld.elf_so/
H A Dt_dlerror-cleared.c63 ATF_TP_ADD_TCS(tp)
65 ATF_TP_ADD_TC(tp, rtld_dlerror_cleared);
/freebsd-11-stable/contrib/netbsd-tests/net/net/
H A Dt_raw.c36 ATF_TP_ADD_TCS(tp)
39 ATF_TP_ADD_TC(tp, PRU_SENSE);
/freebsd-11-stable/contrib/netbsd-tests/rump/rumpkern/
H A Dt_modlinkset.c68 ATF_TP_ADD_TCS(tp)
70 ATF_TP_ADD_TC(tp, modlinkset);
/freebsd-11-stable/usr.sbin/pw/tests/
H A DMakefile24 .for tp in ${ATF_TESTS_SH}
25 TEST_METADATA.${tp}+= required_user="root"
/freebsd-11-stable/usr.bin/find/
H A Dgetdate.y673 const TABLE *tp;
701 for (tp = MonthDayTable; tp->name; tp++) {
703 if (strncmp(buff, tp->name, 3) == 0) {
704 yylval.Number = tp->value;
705 return tp->type;
708 else if (strcmp(buff, tp->name) == 0) {
709 yylval.Number = tp->value;
710 return tp
[all...]
/freebsd-11-stable/usr.sbin/fifolog/lib/
H A Dgetdate.y662 const TABLE *tp;
690 for (tp = MonthDayTable; tp->name; tp++) {
692 if (strncmp(buff, tp->name, 3) == 0) {
693 yylval.Number = tp->value;
694 return tp->type;
697 else if (strcmp(buff, tp->name) == 0) {
698 yylval.Number = tp->value;
699 return tp
[all...]
/freebsd-11-stable/sys/dev/xen/console/
H A Dxen_console.c67 typedef int xencons_init_t(device_t dev, struct tty *tp,
230 xencons_init_hypervisor(device_t dev, struct tty *tp, argument
236 cons = tty_softc(tp);
239 intr_handler, tp, INTR_TYPE_TTY | INTR_MPSAFE, &cons->intr_handle);
283 xencons_init_ring(device_t dev, struct tty *tp, driver_intr_t intr_handler) argument
288 cons = tty_softc(tp);
294 intr_handler, tp, INTR_TYPE_TTY | INTR_MPSAFE, &cons->intr_handle);
512 xencons_tx(struct tty *tp) argument
518 cons = tty_softc(tp);
520 tty_lock_assert(tp, MA_OWNE
539 struct tty *tp; local
581 struct tty *tp; local
646 xencons_tty_open(struct tty *tp) argument
658 xencons_tty_close(struct tty *tp) argument
670 struct tty *tp; local
682 xencons_tty_outwakeup(struct tty *tp) argument
730 struct tty *tp; local
765 struct tty *tp; local
[all...]
/freebsd-11-stable/contrib/netbsd-tests/lib/libm/
H A Dt_tanh.c191 ATF_TP_ADD_TCS(tp)
194 ATF_TP_ADD_TC(tp, tanh_nan);
195 ATF_TP_ADD_TC(tp, tanh_inf_neg);
196 ATF_TP_ADD_TC(tp, tanh_inf_pos);
197 ATF_TP_ADD_TC(tp, tanh_zero_neg);
198 ATF_TP_ADD_TC(tp, tanh_zero_pos);
200 ATF_TP_ADD_TC(tp, tanhf_nan);
201 ATF_TP_ADD_TC(tp, tanhf_inf_neg);
202 ATF_TP_ADD_TC(tp, tanhf_inf_pos);
203 ATF_TP_ADD_TC(tp, tanhf_zero_ne
[all...]
H A Dt_erf.c275 ATF_TP_ADD_TCS(tp)
278 ATF_TP_ADD_TC(tp, erf_nan);
279 ATF_TP_ADD_TC(tp, erf_inf_neg);
280 ATF_TP_ADD_TC(tp, erf_inf_pos);
281 ATF_TP_ADD_TC(tp, erf_zero_neg);
282 ATF_TP_ADD_TC(tp, erf_zero_pos);
284 ATF_TP_ADD_TC(tp, erff_nan);
285 ATF_TP_ADD_TC(tp, erff_inf_neg);
286 ATF_TP_ADD_TC(tp, erff_inf_pos);
287 ATF_TP_ADD_TC(tp, erff_zero_ne
[all...]
/freebsd-11-stable/contrib/ntp/ntpd/
H A Drefclock_pcf.c137 struct tm tm, *tp; local
186 tp = gmtime_r(&t, &tm);
188 tp = gmtime(&t);
190 if (!tp) {
197 pp->year = tp->tm_year + 1900;
198 pp->day = tp->tm_yday + 1;
199 pp->hour = tp->tm_hour;
200 pp->minute = tp->tm_min;
201 pp->second = tp->tm_sec;
209 unit, pp->year, tp
[all...]
/freebsd-11-stable/contrib/atf/atf-sh/
H A Dintegration_test.sh57 create_test_program tp <<EOF
69 >>>./tp<<<
73 atf_check -s eq:0 -o file:expout -e empty ./tp ' a b ' foo
76 >>>tp<<<
80 atf_check -s eq:0 -o file:expout -e empty "${ATF_SH}" tp \
99 echo 'main() { echo "This is the test program"; }' | create_test_program tp
100 atf_check -s eq:0 -o file:expout -e empty "${ATF_SH}" -s ./custom-shell tp
119 tp "-s$(pwd)/custom-shell"
120 atf_check -s eq:0 -o file:expout -e empty ./tp
137 cat >tp <<EO
[all...]
/freebsd-11-stable/contrib/amd/amd/
H A Dinfo_file.c53 int file_init_or_mtime(mnt_map *m, char *map, time_t *tp);
55 int file_search(mnt_map *m, char *map, char *key, char **pval, time_t *tp);
194 file_open(char *map, time_t *tp) argument
198 if (mapf && tp) {
201 *tp = clocktime(NULL);
203 *tp = stb.st_mtime;
210 file_init_or_mtime(mnt_map *m, char *map, time_t *tp) argument
212 FILE *mapf = file_open(map, tp);
237 file_search(mnt_map *m, char *map, char *key, char **pval, time_t *tp) argument
244 if (*tp <
[all...]
/freebsd-11-stable/usr.sbin/config/
H A Dmkmakefile.c392 struct file_list *tp; local
442 tp = fl_lookup(this);
576 if (compile && tp == NULL) {
582 tp = new_fent();
583 tp->f_fn = this;
584 tp->f_type = filetype;
586 tp->f_srcprefix = "";
588 tp->f_srcprefix = "$S/";
590 tp->f_flags |= NO_IMPLCT_RULE;
592 tp
632 struct file_list *tp; local
658 struct file_list *tp; local
687 struct file_list *tp; local
826 struct file_list *tp; local
[all...]
/freebsd-11-stable/lib/libc/inet/
H A Dinet_net_pton.c268 u_char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
278 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
279 endp = tp + NS_IN6ADDRSZ;
309 colonp = tp;
313 if (tp + NS_INT16SZ > endp)
315 *tp++ = (u_char) (val >> 8) & 0xff;
316 *tp++ = (u_char) val & 0xff;
322 if (ch == '.' && ((tp + NS_INADDRSZ) <= endp) &&
323 getv4(curtok, tp, &bits) > 0) {
324 tp
[all...]
/freebsd-11-stable/crypto/openssl/crypto/bn/asm/
H A Dparisc-mont.pl41 # more memory references, most notably to tp[num], but this doesn't
108 $tp="%r31";
197 ldo 36($arrsz),$hi1 ; space for tp[num+1]
203 ldo `$LOCALS+32+4`($fp),$tp
270 stw $nm1,-4($tp) ; tp[j-1]
272 stw,ma $nm0,8($tp) ; tp[j-1]
293 stw $nm1,-4($tp) ; tp[
[all...]
/freebsd-11-stable/contrib/ntp/sntp/libevent/
H A Devutil_time.c207 struct timeval *tp)
209 return evutil_gettime_monotonic_(timer, tp);
266 struct timeval *tp)
271 if (evutil_gettimeofday(tp, NULL) < 0)
273 adjust_monotonic_time(base, tp);
279 tp->tv_sec = ts.tv_sec;
280 tp->tv_usec = ts.tv_nsec / 1000;
322 struct timeval *tp)
326 if (evutil_gettimeofday(tp, NULL) < 0)
328 adjust_monotonic_time(base, tp);
206 evutil_gettime_monotonic(struct evutil_monotonic_timer *timer, struct timeval *tp) argument
265 evutil_gettime_monotonic_(struct evutil_monotonic_timer *base, struct timeval *tp) argument
321 evutil_gettime_monotonic_(struct evutil_monotonic_timer *base, struct timeval *tp) argument
469 evutil_gettime_monotonic_(struct evutil_monotonic_timer *base, struct timeval *tp) argument
529 evutil_gettime_monotonic_(struct evutil_monotonic_timer *base, struct timeval *tp) argument
[all...]

Completed in 171 milliseconds

1234567891011>>