Searched refs:st (Results 51 - 75 of 666) sorted by relevance

1234567891011>>

/freebsd-10.0-release/lib/msun/i387/
H A Ds_significand.S42 fstp %st(1)
H A Ds_significandf.S14 fstp %st(1)
H A De_exp.S68 fst %st(1)
70 fst %st(2)
76 fstp %st(1)
/freebsd-10.0-release/tools/regression/geom_gpt/
H A Dgctl.t135 my $st = system("cc -o $cmd -g $srcdir/test.c -lgeom");
136 if ($st != 0) {
162 $st = `tail -1 $out`;
163 if ($st =~ "^$res") {
166 print "not ok $nr \# gctl($key) - $st\n";
186 $st = `tail -1 $out`;
187 if ($st =~ "^$res") {
190 print "not ok $nr \# conf($key) - $st\n";
/freebsd-10.0-release/contrib/libarchive/libarchive/
H A Darchive_write_open_fd.c83 struct stat st; local
87 if (fstat(mine->fd, &st) != 0) {
95 if (S_ISREG(st.st_mode))
96 archive_write_set_skip_file(a, st.st_dev, st.st_ino);
106 if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode) ||
107 S_ISFIFO(st.st_mode) || (mine->fd == 1))
/freebsd-10.0-release/contrib/gcc/
H A Dscan-types.sh16 cat >st-dummy.c <<!EOF!
33 if ${CPP} st-dummy.c >TMP ; then true
35 echo "scan-types: could not invoke ${CPP} on st-dummy.c" 1>&2 ; exit 1
37 tr ' ' ' ' <TMP >st-dummy.out
44 # Search st-dummy.out for a typedef for $TYPE, and write it out
47 ${SED} -n -e "s|.*typedef *\(.*\) X*$TYPE *;.*|\1|w TMP" <st-dummy.out>/dev/null
60 ${SED} -n -e "s|.*typedef[ ][ ]*\(.*[^a-zA-Z0-9_]\)${VALUE}[ ]*;.*|\1|w TMP" <st-dummy.out>/dev/null
106 extern $tmp read();" >st-dummy.c
107 ${CC} -c st-dummy.c >/dev/null 2>&1 || tmp=int
114 cat >st
[all...]
/freebsd-10.0-release/crypto/openssh/
H A Dauth-rhosts.c62 struct stat st; local
67 if (fstat(fd, &st) == -1) {
71 if (!S_ISREG(st.st_mode)) {
201 struct stat st; local
220 if (stat(buf, &st) >= 0)
228 stat(_PATH_RHOSTS_EQUIV, &st) < 0 &&
229 stat(_PATH_SSH_HOSTS_EQUIV, &st) < 0)
251 if (stat(pw->pw_dir, &st) < 0) {
259 ((st.st_uid != 0 && st
[all...]
/freebsd-10.0-release/sbin/sconfig/
H A Dsconfig.c307 struct serial_statistics st; local
311 if (ioctl (fd, SERIAL_GETSTAT, &st) < 0) {
330 sarr [0] = st.rintr;
331 sarr [1] = st.ibytes;
332 sarr [2] = st.ipkts;
333 sarr [3] = st.ierrs;
334 sarr [4] = st.tintr;
335 sarr [5] = st.obytes;
336 sarr [6] = st.opkts;
337 sarr [7] = st
419 struct e1_statistics st; local
538 struct e3_statistics st; local
[all...]
/freebsd-10.0-release/contrib/atf/atf-c/detail/
H A Dfs.c550 atf_fs_stat_init(atf_fs_stat_t *st, const atf_fs_path_t *p) argument
555 if (lstat(pstr, &st->m_sb) == -1) {
559 int type = st->m_sb.st_mode & S_IFMT;
562 case S_IFBLK: st->m_type = atf_fs_stat_blk_type; break;
563 case S_IFCHR: st->m_type = atf_fs_stat_chr_type; break;
564 case S_IFDIR: st->m_type = atf_fs_stat_dir_type; break;
565 case S_IFIFO: st->m_type = atf_fs_stat_fifo_type; break;
566 case S_IFLNK: st->m_type = atf_fs_stat_lnk_type; break;
567 case S_IFREG: st->m_type = atf_fs_stat_reg_type; break;
568 case S_IFSOCK: st
597 atf_fs_stat_get_device(const atf_fs_stat_t *st) argument
603 atf_fs_stat_get_inode(const atf_fs_stat_t *st) argument
609 atf_fs_stat_get_mode(const atf_fs_stat_t *st) argument
615 atf_fs_stat_get_size(const atf_fs_stat_t *st) argument
621 atf_fs_stat_get_type(const atf_fs_stat_t *st) argument
627 atf_fs_stat_is_owner_readable(const atf_fs_stat_t *st) argument
633 atf_fs_stat_is_owner_writable(const atf_fs_stat_t *st) argument
639 atf_fs_stat_is_owner_executable(const atf_fs_stat_t *st) argument
645 atf_fs_stat_is_group_readable(const atf_fs_stat_t *st) argument
651 atf_fs_stat_is_group_writable(const atf_fs_stat_t *st) argument
657 atf_fs_stat_is_group_executable(const atf_fs_stat_t *st) argument
663 atf_fs_stat_is_other_readable(const atf_fs_stat_t *st) argument
669 atf_fs_stat_is_other_writable(const atf_fs_stat_t *st) argument
675 atf_fs_stat_is_other_executable(const atf_fs_stat_t *st) argument
698 struct stat st; local
[all...]
/freebsd-10.0-release/lib/libc/stdio/
H A Dmakebuf.c92 struct stat st; local
94 if (fp->_file < 0 || _fstat(fp->_file, &st) < 0) {
101 *couldbetty = (st.st_mode & S_IFMT) == S_IFCHR;
102 if (st.st_blksize <= 0) {
112 *bufsize = st.st_blksize;
113 fp->_blksize = st.st_blksize;
114 return ((st.st_mode & S_IFMT) == S_IFREG && fp->_seek == __sseek ?
/freebsd-10.0-release/contrib/llvm/lib/Support/
H A Dregengine.inc81 states st; /* current states */
177 SETUP(m->st);
686 states st = m->st;
696 CLEAR(st);
697 SET1(st, startst);
698 st = step(m->g, startst, stopst, st, NOTHING, st);
699 ASSIGN(fresh, st);
[all...]
/freebsd-10.0-release/usr.sbin/pw/
H A Dcpdir.c59 struct stat st; local
77 else if (lstat(src, &st) == 0) {
83 if (S_ISDIR(st.st_mode)) { /* Recurse for this */
85 copymkdir(dst, src, st.st_mode & _DEF_DIRMODE, uid, gid);
86 chflags(dst, st.st_flags); /* propagate flags */
87 } else if (S_ISLNK(st.st_mode) && (len = readlink(src, lnk, sizeof(lnk) - 1)) != -1) {
95 } else if (S_ISREG(st.st_mode) && (outfd = open(dst, O_RDWR | O_CREAT | O_EXCL, st.st_mode)) != -1) {
114 fchflags(outfd, st.st_flags);
/freebsd-10.0-release/contrib/dtc/
H A Dfstree.c30 struct stat st; local
48 if (lstat(tmpnam, &st) < 0)
51 if (S_ISREG(st.st_mode)) {
63 st.st_size));
67 } else if (S_ISDIR(st.st_mode)) {
/freebsd-10.0-release/lib/libc/iconv/
H A Dcitrus_mmap.c52 struct stat st; local
63 if (fstat(fd, &st) == -1) {
67 if (!S_ISREG(st.st_mode)) {
72 head = mmap(NULL, (size_t)st.st_size, PROT_READ, MAP_FILE|MAP_PRIVATE,
78 _region_init(r, head, (size_t)st.st_size);
/freebsd-10.0-release/lib/libc/string/
H A Dwcscoll.c97 mbstate_t st; local
103 st = initial;
104 if ((len = wcsrtombs(NULL, &wcp, 0, &st)) == (size_t)-1)
108 st = initial;
109 wcsrtombs(mbs, &ws, len + 1, &st);
/freebsd-10.0-release/contrib/sendmail/libsmutil/
H A Dsafefile.c34 ** st -- if set, points to a stat structure that will
46 safefile(fn, uid, gid, user, flags, mode, st)
53 struct stat *st;
74 if (st == NULL)
75 st = &fstbuf;
83 if ((bitset(SFF_NOSLINK, flags) ? lstat(fn, st)
84 : stat(fn, st)) < 0)
86 if (stat(fn, st) < 0)
92 !bitset(S_IXUSR|S_IXGRP|S_IXOTH, st->st_mode) &&
93 S_ISREG(st
935 struct stat st; local
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/bn/
H A Dbn_ctx.c312 static void BN_STACK_init(BN_STACK *st) argument
314 st->indexes = NULL;
315 st->depth = st->size = 0;
318 static void BN_STACK_finish(BN_STACK *st) argument
320 if(st->size) OPENSSL_free(st->indexes);
324 static void BN_STACK_reset(BN_STACK *st) argument
326 st->depth = 0;
330 static int BN_STACK_push(BN_STACK *st, unsigne argument
351 BN_STACK_pop(BN_STACK *st) argument
[all...]
/freebsd-10.0-release/sys/netpfil/pf/
H A Dif_pfsync.c403 struct pf_state *st = NULL; local
445 if ((st = uma_zalloc(V_pf_state_z, M_NOWAIT | M_ZERO)) == NULL)
464 if (pfsync_alloc_scrub_memory(&sp->src, &st->src) ||
465 pfsync_alloc_scrub_memory(&sp->dst, &st->dst))
485 bcopy(&sp->rt_addr, &st->rt_addr, sizeof(st->rt_addr));
486 st->creation = time_uptime - ntohl(sp->creation);
487 st->expire = time_uptime;
496 st->expire -= timeout - ntohl(sp->expire);
499 st
747 struct pf_state *st; local
783 pfsync_upd_tcp(struct pf_state *st, struct pfsync_state_peer *src, struct pfsync_state_peer *dst) argument
821 struct pf_state *st; local
911 struct pf_state *st; local
1005 struct pf_state *st; local
1043 struct pf_state *st; local
1074 struct pf_state *st; local
1419 pfsync_out_state(struct pf_state *st, void *buf) argument
1427 pfsync_out_iack(struct pf_state *st, void *buf) argument
1436 pfsync_out_upd_c(struct pf_state *st, void *buf) argument
1449 pfsync_out_del(struct pf_state *st, void *buf) argument
1461 struct pf_state *st, *next; local
1497 struct pf_state *st; local
1636 pfsync_insert_state(struct pf_state *st) argument
1663 pfsync_defer(struct pf_state *st, struct mbuf *m) argument
1710 struct pf_state *st = pd->pd_st; local
1734 struct pf_state *st = pd->pd_st; local
1755 pfsync_undefer_state(struct pf_state *st, int drop) argument
1774 pfsync_update_state(struct pf_state *st) argument
1865 pfsync_update_state_req(struct pf_state *st) argument
1902 pfsync_delete_state(struct pf_state *st) argument
1965 pfsync_q_ins(struct pf_state *st, int q) argument
1993 pfsync_q_del(struct pf_state *st) argument
[all...]
/freebsd-10.0-release/lib/libc/gen/
H A Dgetpwent.c778 struct files_state *st; local
781 rv = files_getstate(&st);
787 st->keynum = 0;
789 st->db = pwdbopen(&st->version);
790 st->stayopen = stayopen;
793 if (st->db != NULL) {
794 (void)st->db->close(st->db);
795 st
810 struct files_state *st; local
1092 struct dns_state *st; local
1107 struct dns_state *st; local
1286 struct nis_state *st; local
1303 struct nis_state *st; local
1588 compat_redispatch(struct compat_state *st, enum nss_lookup_type how, enum nss_lookup_type lookup_how, const char *name, const char *lookup_name, uid_t uid, struct passwd *pwd, char *buffer, size_t bufsize, int *errnop) argument
1667 struct compat_state *st; local
1699 struct compat_state *st; local
1745 struct compat_state *st; local
[all...]
H A Dgetgrent.c801 struct files_state *st; local
804 rv = files_getstate(&st);
810 if (st->fp != NULL)
811 rewind(st->fp);
813 st->fp = fopen(_PATH_GROUP, "re");
816 if (st->fp != NULL) {
817 fclose(st->fp);
818 st->fp = NULL;
831 struct files_state *st; local
860 *errnop = files_getstate(&st);
926 struct dns_state *st; local
941 struct dns_state *st; local
1062 struct nis_state *st; local
1079 struct nis_state *st; local
1205 struct compat_state *st; local
1235 struct compat_state *st; local
1297 struct compat_state *st; local
[all...]
/freebsd-10.0-release/contrib/ntp/libntp/
H A Dstatestr.c194 int st
204 (void)strcpy(cb, getcode(CTL_SYS_LI(st), leap_codes));
206 (void)strcat(cb, getcode(CTL_SYS_SOURCE(st) & ~CTL_SST_TS_PPS, sync_codes));
207 if (CTL_SYS_SOURCE(st) & CTL_SST_TS_PPS)
210 (void)strcat(cb, getevents(CTL_SYS_NEVNT(st)));
212 (void)strcat(cb, getcode(CTL_SYS_EVENT(st), sys_codes));
219 pst = (u_char) CTL_PEER_STATVAL(st);
243 (void)strcat(cb, getevents(CTL_PEER_NEVNT(st)));
244 if (CTL_PEER_EVENT(st) != EVNT_UNSPEC) {
246 (void)strcat(cb, getcode(CTL_PEER_EVENT(st),
[all...]
/freebsd-10.0-release/sys/sys/
H A Dstack.h51 #define CTRSTACK(m, st, depth, cheap) do { \
53 stack_ktr((m), __FILE__, __LINE__, st, depth, cheap); \
56 #define CTRSTACK(m, st, depth, cheap)
/freebsd-10.0-release/contrib/ntp/libopts/
H A Denvironment.c220 tOptState st; local
235 st.pOD = pOpts->pOptDesc;
241 for (;ct-- > 0; st.pOD++) {
245 if ( ((st.pOD->fOptState & OPTST_NO_INIT) != 0)
246 || (st.pOD->optEquivIndex != NO_EQUIVALENT) )
253 if (strlen( st.pOD->pz_NAME ) >= spaceLeft)
259 strcpy( pzFlagName, st.pOD->pz_NAME );
260 checkEnvOpt(&st, zEnvName, pOpts, type);
267 st.pOD = pOpts->pOptDesc + pOpts->specOptIdx.save_opts + 1;
268 strcpy( pzFlagName, st
[all...]
/freebsd-10.0-release/contrib/ntp/sntp/libopts/
H A Denvironment.c220 tOptState st; local
235 st.pOD = pOpts->pOptDesc;
241 for (;ct-- > 0; st.pOD++) {
245 if ( ((st.pOD->fOptState & OPTST_NO_INIT) != 0)
246 || (st.pOD->optEquivIndex != NO_EQUIVALENT) )
253 if (strlen( st.pOD->pz_NAME ) >= spaceLeft)
259 strcpy( pzFlagName, st.pOD->pz_NAME );
260 checkEnvOpt(&st, zEnvName, pOpts, type);
267 st.pOD = pOpts->pOptDesc + pOpts->specOptIdx.save_opts + 1;
268 strcpy( pzFlagName, st
[all...]
/freebsd-10.0-release/contrib/tcp_wrappers/
H A Dinetcf.c73 struct stat st; local
96 check_path(conf, &st);
171 struct stat st; local
180 if (check_path(path, &st) < 0) {
182 } else if ((st.st_mode & 0100) == 0) {
213 if ((st.st_mode & 06000) != 0)
229 if (check_path(arg0, &st) < 0) {
231 } else if ((st.st_mode & 0100) == 0) {
236 if (check_path(daemon, &st) < 0) {
239 } else if ((st
[all...]

Completed in 159 milliseconds

1234567891011>>