Searched refs:st (Results 151 - 175 of 649) sorted by relevance

1234567891011>>

/freebsd-9.3-release/lib/libufs/
H A Dtype.c92 struct stat st; local
102 again: if ((ret = stat(name, &st)) < 0) {
115 if (ret >= 0 && S_ISREG(st.st_mode)) {
118 } else if (ret >= 0 && S_ISCHR(st.st_mode)) {
132 } else if (ret >= 0 && S_ISDIR(st.st_mode)) {
/freebsd-9.3-release/sys/vm/
H A Dredzone.c101 struct stack st; local
110 stack_save(&st);
111 bcopy(&st, haddr, sizeof(st));
112 haddr += sizeof(st);
/freebsd-9.3-release/sys/dev/acpi_support/
H A Datk0110.c134 aibs_attach_sif(struct aibs_softc *sc, enum aibs_type st) argument
145 switch (st) {
205 switch (st) {
219 SYSCTL_CHILDREN(device_get_sysctl_tree(sc->sc_dev)), st,
250 as[i].t = st;
262 sc, st, aibs_sysctl, st == AIBS_TEMP ? "IK" : "I", desc); local
292 enum aibs_type st = arg2; local
303 switch (st) {
343 switch (st) {
[all...]
/freebsd-9.3-release/lib/libusb/
H A Dlibusb20_ugen20.c230 ugen20_readdir(struct ugen20_urd_state *st) argument
234 if (st->ptr == NULL) {
235 st->urd.urd_startentry += st->nparsed;
236 st->urd.urd_data = libusb20_pass_ptr(st->buf);
237 st->urd.urd_maxlen = sizeof(st->buf);
238 st->nparsed = 0;
240 if (ioctl(st
[all...]
/freebsd-9.3-release/contrib/wpa/src/crypto/
H A Daes_i.h109 #define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); }
113 #define PUTU32(ct, st) { \
114 (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); \
115 (ct)[2] = (u8)((st) >> 8); (ct)[3] = (u8)(st); }
/freebsd-9.3-release/lib/libc/stdio/
H A Dfseek.c109 struct stat st; local
185 fp->_file < 0 || _fstat(fp->_file, &st) ||
186 (st.st_mode & S_IFMT) != S_IFREG) {
190 fp->_blksize = st.st_blksize;
201 if (_fstat(fp->_file, &st))
203 if (offset > 0 && st.st_size > OFF_MAX - offset) {
207 target = st.st_size + offset;
/freebsd-9.3-release/sys/dev/streams/
H A Dstreams.c190 struct svr4_strm *st; local
265 st = malloc(sizeof(struct svr4_strm), M_TEMP, M_WAITOK);
266 st->s_family = so->so_proto->pr_domain->dom_family;
267 st->s_cmd = ~0;
268 st->s_afd = -1;
269 st->s_eventmask = 0;
270 so->so_emuldata = st;
/freebsd-9.3-release/usr.bin/grep/
H A Dfile.c252 struct stat st; local
254 if ((fstat(f->fd, &st) == -1) || (st.st_size > OFF_MAX) ||
255 (!S_ISREG(st.st_mode)))
262 fsiz = st.st_size;
268 bufrem = st.st_size;
270 madvise(buffer, st.st_size, MADV_SEQUENTIAL);
/freebsd-9.3-release/usr.sbin/ctm/ctm/
H A Dctm_pass2.c28 struct stat st; local
102 if(-1 != stat(name,&st)) {
109 if(-1 == stat(name,&st)) {
118 if (SetTime && getuid() && (getuid() != st.st_uid)) {
125 if((st.st_mode & S_IFMT) != S_IFDIR) {
134 if((st.st_mode & S_IFMT) != S_IFREG) {
153 if(match && (st.st_mode & S_IFMT) == S_IFREG &&
/freebsd-9.3-release/contrib/opie/
H A Dopieauto.c249 struct stat st; local
317 if (stat(sockpath, &st) < 0)
320 if ((st.st_uid != myuid) || (!S_ISSOCK(st.st_mode)) || ((st.st_mode & 07777) != 0600))
364 if (stat(sockpath, &st) < 0)
367 if ((st.st_uid != myuid) || (!S_ISSOCK(st.st_mode)) || ((st.st_mode & 07777) != 0600))
/freebsd-9.3-release/lib/libc/gen/
H A Dnlist.c117 struct stat st; local
120 if ((_fstat(fd, &st) < 0) || (st.st_size < sizeof(struct exec)))
124 if (st.st_size > SIZE_T_MAX) {
140 a_out_mmap = mmap(NULL, (size_t)st.st_size, PROT_READ, MAP_PRIVATE, fd, (off_t)0);
146 munmap(a_out_mmap, (size_t)st.st_size);
196 munmap(a_out_mmap, (size_t)st.st_size);
252 struct stat st; local
258 _fstat(fd, &st) < 0)
/freebsd-9.3-release/usr.bin/make/
H A Dutil.c283 struct stat st; local
285 if (lstat(file, &st) == -1)
288 if (S_ISDIR(st.st_mode)) {
/freebsd-9.3-release/contrib/libarchive/cpio/test/
H A Dmain.c609 struct stat st; local
619 if (stat(f1, &st) != 0) {
624 if (st.st_size == 0)
628 logprintf(" File size: %d\n", (int)st.st_size);
634 s = ((off_t)sizeof(buff) < st.st_size) ?
635 (ssize_t)sizeof(buff) : (ssize_t)st.st_size;
649 struct stat st; local
657 if (stat(f1, &st) != 0) {
662 if (st.st_size == 0) {
972 struct stat st; local
1122 struct stat st; local
1139 struct stat st; local
1177 struct stat st; local
1515 struct stat st; local
[all...]
/freebsd-9.3-release/contrib/libarchive/libarchive/test/
H A Dmain.c605 struct stat st; local
615 if (stat(f1, &st) != 0) {
620 if (st.st_size == 0)
624 logprintf(" File size: %d\n", (int)st.st_size);
630 s = ((off_t)sizeof(buff) < st.st_size) ?
631 (ssize_t)sizeof(buff) : (ssize_t)st.st_size;
645 struct stat st; local
653 if (stat(f1, &st) != 0) {
658 if (st.st_size == 0) {
962 struct stat st; local
1112 struct stat st; local
1129 struct stat st; local
1167 struct stat st; local
1505 struct stat st; local
[all...]
/freebsd-9.3-release/contrib/libarchive/tar/test/
H A Dmain.c610 struct stat st; local
620 if (stat(f1, &st) != 0) {
625 if (st.st_size == 0)
629 logprintf(" File size: %d\n", (int)st.st_size);
635 s = ((off_t)sizeof(buff) < st.st_size) ?
636 (ssize_t)sizeof(buff) : (ssize_t)st.st_size;
650 struct stat st; local
658 if (stat(f1, &st) != 0) {
663 if (st.st_size == 0) {
1068 struct stat st; local
1218 struct stat st; local
1235 struct stat st; local
1273 struct stat st; local
1611 struct stat st; local
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonRegisterInfo.h48 HexagonRegisterInfo(HexagonSubtarget &st);
/freebsd-9.3-release/contrib/llvm/lib/Target/Sparc/
H A DSparcRegisterInfo.h31 SparcRegisterInfo(SparcSubtarget &st);
/freebsd-9.3-release/contrib/ncurses/ncurses/tty/
H A Dhardscroll.c291 char line[BUFSIZ], *st; local
312 st = strtok(line, " ");
314 oldnums[n++] = atoi(st);
316 ((st = strtok((char *) NULL, " ")) != 0);
/freebsd-9.3-release/contrib/xz/src/common/
H A Dtuklib_physmem.c175 inv_state_t *st = NULL; local
176 if (setinvent_r(&st) != -1) {
178 while ((i = getinvent_r(st)) != NULL) {
186 endinvent_r(st);
/freebsd-9.3-release/lib/libkvm/
H A Dkvm_sparc.c94 struct stat st; local
103 if (fstat(kd->pmfd, &st) < 0)
108 off = st.st_size - ctob(btoc(sizeof(vm->segmap)));
118 off = st.st_size - ctob(btoc(sizeof(vm->pmeg)) +
/freebsd-9.3-release/lib/msun/amd64/
H A Ds_remquo.S43 fstp %st(1)
H A Ds_remquof.S43 fstp %st(1)
H A Ds_remquol.S41 fstp %st(1)
/freebsd-9.3-release/lib/msun/i387/
H A Ds_remquo.S41 fstp %st(1)
H A Ds_remquof.S41 fstp %st(1)

Completed in 327 milliseconds

1234567891011>>