Home
last modified time | relevance | path

Searched refs:tmpf (Results 1 – 7 of 7) sorted by relevance

/freebsd-10-stable/lib/libc/tests/stdio/
Dmkostemp_test.c54 char tmpf[sizeof(template)]; in test_one() local
58 memcpy(tmpf, template, sizeof(tmpf)); in test_one()
59 fd = mkostemp(tmpf, oflags); in test_one()
66 if (memcmp(tmpf, template, sizeof(tmpf) - 8 - 1) != 0) { in test_one()
69 testnum++, oflags, tmpf); in test_one()
86 if (stat(tmpf, &st1) == -1) { in test_one()
89 testnum++, oflags, tmpf, strerror(errno)); in test_one()
118 (void)unlink(tmpf); in test_one()
133 (void)unlink(tmpf); in test_one()
168 char tmpf[sizeof(template)]; in ATF_TC_BODY() local
[all …]
/freebsd-10-stable/etc/periodic/security/
Dsecurity.functions60 tmpf="$1"; shift
63 if [ "${tmpf}" = "-" ]; then
64 tmpf=`mktemp -t security`
65 cat > ${tmpf}
72 cp ${tmpf} ${LOG}/${label}.today || rc=3
75 if ! cmp -s ${LOG}/${label}.today ${tmpf} >/dev/null; then
80 ${tmpf} | eval "${filter}"
82 mv ${tmpf} ${LOG}/${label}.today || rc=3
85 rm -f ${tmpf}
/freebsd-10-stable/usr.sbin/pmcannotate/
Dpmcannotate.c422 char tmpf[MAXPATHLEN * 2 + 50]; in fqueue_getall() local
429 bzero(tmpf, sizeof(tmpf)); in fqueue_getall()
439 snprintf(tmpf, sizeof(tmpf), in fqueue_getall()
444 snprintf(tmpf, sizeof(tmpf), in fqueue_getall()
448 if (system(tmpf) != 0) in fqueue_getall()
672 char tmpf[MAXPATHLEN * 2 + 50]; in main() local
720 bzero(tmpf, sizeof(tmpf)); in main()
725 snprintf(tmpf, sizeof(tmpf), "pmcstat -k %s -R %s -m %s", in main()
728 snprintf(tmpf, sizeof(tmpf), "pmcstat -R %s -m %s", ofile, in main()
730 if (system(tmpf) != 0) in main()
/freebsd-10-stable/sys/compat/linux/
Dlinux_futex.c355 struct futex *f, *tmpf; in futex_get0() local
361 *newf = tmpf = NULL; in futex_get0()
374 if (tmpf != NULL) { in futex_get0()
375 if (FUTEX_LOCKED(tmpf)) in futex_get0()
376 futex_unlock(tmpf); in futex_get0()
377 FUTEX_DESTROY(tmpf); in futex_get0()
378 free(tmpf, M_FUTEX); in futex_get0()
420 if (tmpf == NULL) { in futex_get0()
422 tmpf = malloc(sizeof(*tmpf), M_FUTEX, M_WAITOK | M_ZERO); in futex_get0()
423 tmpf->f_uaddr = uaddr; in futex_get0()
[all …]
/freebsd-10-stable/contrib/libstdc++/
Dacinclude.m4848 [typedef __complex__ float float_type; float_type tmpf;
849 cabsf(tmpf);
850 cargf(tmpf);
851 ccosf(tmpf);
852 ccoshf(tmpf);
853 cexpf(tmpf);
854 clogf(tmpf);
855 csinf(tmpf);
856 csinhf(tmpf);
857 csqrtf(tmpf);
[all …]
Dconfigure7447 typedef __complex__ float float_type; float_type tmpf;
7448 cabsf(tmpf);
7449 cargf(tmpf);
7450 ccosf(tmpf);
7451 ccoshf(tmpf);
7452 cexpf(tmpf);
7453 clogf(tmpf);
7454 csinf(tmpf);
7455 csinhf(tmpf);
7456 csqrtf(tmpf);
[all …]
/freebsd-10-stable/usr.sbin/edquota/
Dedquota.c430 editit(char *tmpf) in editit() argument
460 execlp(ed, ed, tmpf, (char *)0); in editit()