Searched refs:sb (Results 51 - 75 of 1472) sorted by relevance

1234567891011>>

/netbsd-current/sys/arch/zaurus/stand/zboot/
H A Dpathfs.c86 pathfs_stat(struct open_file *fd, struct stat *sb) argument
95 sb->st_ino = lsb.lst_ino;
96 sb->st_mode = lsb.lst_mode;
97 sb->st_nlink = lsb.lst_nlink;
98 sb->st_uid = lsb.lst_uid;
99 sb->st_gid = lsb.lst_gid;
100 sb->st_size = lsb.lst_size;
101 sb->st_blksize = lsb.lst_blksize;
102 sb->st_blocks = lsb.lst_blocks;
103 sb
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/mips/
H A D24k-triple-stores-3.s6 sb $2,11($sp)
7 sb $3,11($sp)
8 sb $4,4($sp)
12 sb $2,0($sp)
13 sb $3,11($sp)
14 sb $4,5($sp)
18 sb $2,7($sp)
19 sb $3,11($sp)
20 sb $4,16($sp)
24 sb
[all...]
H A Dmicromips@24k-triple-stores-4.d11 *[0-9a-f]+: 1a68 000a sb s3,10\(t0\)
13 *[0-9a-f]+: 1a68 0020 sb s3,32\(t0\)
15 *[0-9a-f]+: 1a68 000a sb s3,10\(t0\)
16 *[0-9a-f]+: 1a68 0001 sb s3,1\(t0\)
19 *[0-9a-f]+: 1a68 0021 sb s3,33\(t0\)
21 *[0-9a-f]+: 1a68 0040 sb s3,64\(t0\)
23 *[0-9a-f]+: 1a68 0021 sb s3,33\(t0\)
24 *[0-9a-f]+: 1a68 0037 sb s3,55\(t0\)
27 *[0-9a-f]+: 1a68 000c sb s3,12\(t0\)
29 *[0-9a-f]+: 1a68 0020 sb s
[all...]
H A Dmicromips@24k-triple-stores-7.d11 *[0-9a-f]+: 1a68 0004 sb s3,4\(t0\)
13 *[0-9a-f]+: 1a68 000f sb s3,15\(t0\)
15 *[0-9a-f]+: 1a68 0003 sb s3,3\(t0\)
17 *[0-9a-f]+: 1a68 000f sb s3,15\(t0\)
21 *[0-9a-f]+: 1a68 001f sb s3,31\(t0\)
23 *[0-9a-f]+: 1a68 0005 sb s3,5\(t0\)
25 *[0-9a-f]+: 1a68 0010 sb s3,16\(t0\)
27 *[0-9a-f]+: 1a68 0004 sb s3,4\(t0\)
29 *[0-9a-f]+: 1a68 0010 sb s3,16\(t0\)
31 *[0-9a-f]+: 1a68 0006 sb s
[all...]
/netbsd-current/external/bsd/openpam/dist/lib/libpam/
H A Dopenpam_check_owner_perms.c64 struct stat sb; local
69 if (fstat(fd, &sb) != 0) {
75 if (!S_ISREG(sb.st_mode)) {
81 if ((sb.st_uid != root && sb.st_uid != arbitrator) ||
82 (sb.st_mode & (S_IWGRP|S_IWOTH)) != 0) {
108 struct stat sb; local
119 if (stat(pathbuf, &sb) != 0) {
127 if (tip && !S_ISREG(sb.st_mode)) {
133 if ((sb
[all...]
/netbsd-current/lib/libc/compat/sys/
H A Dcompat_fhstatvfs1.c55 struct statvfs sb; local
56 int error = __fhstatvfs190(fhp, FHANDLE30_SIZE, &sb, flags);
58 statvfs_to_statvfs90(&sb, buf);
H A Dcompat_fhstatvfs.c54 struct statvfs sb; local
55 int error = __fhstatvfs190(fhp, FHANDLE30_SIZE, &sb, 0);
57 statvfs_to_statvfs90(&sb, buf);
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
H A Dbn_mp_add.c23 int sa, sb, res; local
27 sb = b->sign;
30 if (sa == sb) {
41 c->sign = sb;
/netbsd-current/external/ibm-public/postfix/dist/src/util/
H A Dsock_addr.h66 #define SOCK_ADDR_EQ_ADDR(sa, sb) \
67 ((SOCK_ADDR_FAMILY(sa) == AF_INET && SOCK_ADDR_FAMILY(sb) == AF_INET \
68 && SOCK_ADDR_IN_ADDR(sa).s_addr == SOCK_ADDR_IN_ADDR(sb).s_addr) \
69 || (SOCK_ADDR_FAMILY(sa) == AF_INET6 && SOCK_ADDR_FAMILY(sb) == AF_INET6 \
71 (char *) &(SOCK_ADDR_IN6_ADDR(sb)), \
74 #define SOCK_ADDR_EQ_PORT(sa, sb) \
75 ((SOCK_ADDR_FAMILY(sa) == AF_INET && SOCK_ADDR_FAMILY(sb) == AF_INET \
76 && SOCK_ADDR_IN_PORT(sa) == SOCK_ADDR_IN_PORT(sb)) \
77 || (SOCK_ADDR_FAMILY(sa) == AF_INET6 && SOCK_ADDR_FAMILY(sb) == AF_INET6 \
78 && SOCK_ADDR_IN6_PORT(sa) == SOCK_ADDR_IN6_PORT(sb)))
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libgfortran/intrinsics/
H A Dstat.c58 struct stat sb; local
74 val = lstat(str, &sb);
77 val = stat(str, &sb);
86 sarray->base_addr[0 * stride] = sb.st_dev;
89 sarray->base_addr[1 * stride] = sb.st_ino;
92 sarray->base_addr[2 * stride] = sb.st_mode;
95 sarray->base_addr[3 * stride] = sb.st_nlink;
98 sarray->base_addr[4 * stride] = sb.st_uid;
101 sarray->base_addr[5 * stride] = sb.st_gid;
105 sarray->base_addr[6 * stride] = sb
175 struct stat sb; local
364 struct stat sb; local
447 struct stat sb; local
[all...]
/netbsd-current/external/gpl3/gcc/dist/libgfortran/intrinsics/
H A Dstat.c58 struct stat sb; local
74 val = lstat(str, &sb);
77 val = stat(str, &sb);
86 sarray->base_addr[0 * stride] = sb.st_dev;
89 sarray->base_addr[1 * stride] = sb.st_ino;
92 sarray->base_addr[2 * stride] = sb.st_mode;
95 sarray->base_addr[3 * stride] = sb.st_nlink;
98 sarray->base_addr[4 * stride] = sb.st_uid;
101 sarray->base_addr[5 * stride] = sb.st_gid;
105 sarray->base_addr[6 * stride] = sb
175 struct stat sb; local
364 struct stat sb; local
447 struct stat sb; local
[all...]
/netbsd-current/sys/kern/
H A Duipc_socket2.c528 sbwait(struct sockbuf *sb) argument
534 so = sb->sb_so;
538 sb->sb_flags |= SB_NOTIFY;
540 if ((sb->sb_flags & SB_NOINTR) != 0)
541 error = cv_timedwait(&sb->sb_cv, lock, sb->sb_timeo);
543 error = cv_timedwait_sig(&sb->sb_cv, lock, sb->sb_timeo);
555 sowakeup(struct socket *so, struct sockbuf *sb, int code) argument
560 KASSERT(sb
701 sbreserve(struct sockbuf *sb, u_long cc, struct socket *so) argument
731 sbrelease(struct sockbuf *sb, struct socket *so) argument
768 sblastrecordchk(struct sockbuf *sb, const char *where) argument
788 sblastmbufchk(struct sockbuf *sb, const char *where) argument
839 sbappend(struct sockbuf *sb, struct mbuf *m) argument
883 sbappendstream(struct sockbuf *sb, struct mbuf *m) argument
904 sbcheck(struct sockbuf *sb) argument
936 sbappendrecord(struct sockbuf *sb, struct mbuf *m0) argument
971 sbinsertoob(struct sockbuf *sb, struct mbuf *m0) argument
1023 sbappendaddr(struct sockbuf *sb, const struct sockaddr *asa, struct mbuf *m0, struct mbuf *control) argument
1093 m_prepend_sockaddr(struct sockbuf *sb, struct mbuf *m0, const struct sockaddr *asa) argument
1126 sbappendaddrchain(struct sockbuf *sb, const struct sockaddr *asa, struct mbuf *m0, int sbprio) argument
1224 sbappendcontrol(struct sockbuf *sb, struct mbuf *m0, struct mbuf *control) argument
1270 sbcompress(struct sockbuf *sb, struct mbuf *m, struct mbuf *n) argument
1326 sbflush(struct sockbuf *sb) argument
1345 sbdrop(struct sockbuf *sb, int len) argument
1398 sbdroprecord(struct sockbuf *sb) argument
1528 sblock(struct sockbuf *sb, int wf) argument
1558 sbunlock(struct sockbuf *sb) argument
[all...]
/netbsd-current/sys/dev/pci/
H A Demuxki_boards.c162 const struct emuxki_board *sb; local
166 sb = &emuxki_boards[i];
169 if (vendor == sb->sb_vendor && product == sb->sb_product &&
170 subsystem == sb->sb_subsystem && revision == sb->sb_revision)
171 return sb;
174 if (vendor == sb->sb_vendor && product == sb->sb_product &&
175 subsystem == sb
[all...]
/netbsd-current/sys/compat/netbsd32/
H A Dnetbsd32_compat_90.c86 struct statvfs *sb; local
89 sb = STATVFSBUF_GET();
90 error = do_sys_pstatvfs(l, SCARG_P32(uap, path), SCARG(uap, flags), sb);
92 error = netbsd32_copyout_statvfs90(sb, SCARG_P32(uap, buf),
94 STATVFSBUF_PUT(sb);
107 struct statvfs *sb; local
110 sb = STATVFSBUF_GET();
111 error = do_sys_fstatvfs(l, SCARG(uap, fd), SCARG(uap, flags), sb);
113 error = netbsd32_copyout_statvfs90(sb, SCARG_P32(uap, buf), 0);
114 STATVFSBUF_PUT(sb);
129 struct statvfs *sb; local
[all...]
/netbsd-current/bin/pax/
H A Dcpio.c105 if ((strcmp(arcn->name, TRAILER) == 0) && (arcn->sb.st_size == 0))
123 switch(arcn->sb.st_mode & C_IFMT) {
149 arcn->sb.st_mode = (arcn->sb.st_mode & 0xfff) | C_ISREG;
151 arcn->skip = arcn->sb.st_size;
177 last.sb.st_nlink = 1;
225 if ((arcn->sb.st_size == 0) ||
226 (arcn->sb.st_size >= (off_t)sizeof(arcn->ln_name))) {
228 (OFFT_T) arcn->sb.st_size);
235 if (rd_wrbuf(arcn->ln_name, (int)arcn->sb
[all...]
/netbsd-current/sys/lib/libsa/
H A Dfstat.c37 fstat(int fd, struct stat *sb) argument
56 errno = FS_STAT(f->f_ops)(f, sb); /* XXX no point setting errno */
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/dlx/
H A Dstore.s5 4: sb 4b+'0',$3
6 4: sb L1+'0'-L1,$3
/netbsd-current/external/gpl2/mkhybrid/dist/libfile/
H A Dlfile.c117 struct stat sb; local
122 if (stat(inname, &sb) != 0)
125 if (sb.st_size == 0 || ! S_ISREG(sb.st_mode))
152 utsbuf[0].tv_sec = sb.st_atime;
153 utsbuf[1].tv_sec = sb.st_mtime;
159 utbuf.actime = sb.st_atime;
160 utbuf.modtime = sb.st_mtime;
/netbsd-current/sbin/fsck_v7fs/
H A Dinode.c55 struct v7fs_superblock *sb = &fs->superblock; local
56 v7fs_ino_t *f = sb->freeinode;
57 int16_t n = sb->nfreeinode;
67 sb->nfreeinode = 0;
68 sb->modified = 1;
84 memset(sb->freeinode, 0, sizeof(*sb->freeinode));
85 sb->nfreeinode = 0;
86 sb->modified = 1;
137 struct v7fs_superblock *sb local
[all...]
/netbsd-current/external/gpl3/binutils/dist/gas/
H A Dmacro.h47 sb name; /* Name of the formal. */
48 sb def; /* The default value. */
49 sb actual; /* The actual argument (changed on each expansion). */
63 sb sub; /* Substitution text. */
174 extern int buffer_and_nest (const char *, const char *, sb *,
175 size_t (*) (sb *));
177 size_t (*) (const char *, size_t, sb *, offsetT *));
180 extern const char *define_macro (size_t, sb *, sb *, size_t (*) (sb *),
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gas/
H A Dmacro.h47 sb name; /* Name of the formal. */
48 sb def; /* The default value. */
49 sb actual; /* The actual argument (changed on each expansion). */
63 sb sub; /* Substitution text. */
174 extern int buffer_and_nest (const char *, const char *, sb *,
175 size_t (*) (sb *));
177 size_t (*) (const char *, size_t, sb *, offsetT *));
180 extern const char *define_macro (size_t, sb *, sb *, size_t (*) (sb *),
[all...]
/netbsd-current/sys/arch/alpha/stand/common/
H A Dbootxx.c87 struct stat sb; local
102 if (fd == -1 || (fstat(fd, &sb) == -1)) {
107 if (sb.st_size > SECONDARY_MAX_LOAD) {
112 if (read(fd, (void*)SECONDARY_LOAD_ADDRESS, sb.st_size) != sb.st_size) {
/netbsd-current/sys/arch/sbmips/stand/common/
H A Dbootxx.c83 struct stat sb; local
99 if (fd == -1 || (fstat(fd, &sb) == -1)) {
104 if (sb.st_size > SECONDARY_MAX_LOAD) {
109 if (read(fd, (void*)SECONDARY_LOAD_ADDRESS, sb.st_size) != sb.st_size) {
/netbsd-current/sys/arch/evbmips/stand/sbmips/common/
H A Dbootxx.c83 struct stat sb; local
99 if (fd == -1 || (fstat(fd, &sb) == -1)) {
104 if (sb.st_size > SECONDARY_MAX_LOAD) {
109 if (read(fd, (void*)SECONDARY_LOAD_ADDRESS, sb.st_size) != sb.st_size) {
/netbsd-current/sys/external/bsd/drm2/dist/drm/amd/display/modules/info_packet/
H A Damdgpu_info_packet.c189 info_packet->sb[i] = 0;
237 info_packet->sb[0] = 0x02; // Stacked Frame, Left view is on top and right view on bottom.
241 info_packet->sb[0] = 0x01; // Frame/Field Sequential, L + R view indication based on MISC1 bit 2:1
245 info_packet->sb[0] = 0x04; // Side-by-side
248 info_packet->sb[0] = 0x00; // No Stereo Video, Shall be cleared to 0x0.
384 info_packet->sb[16] = (pixelEncoding << 4) | colorimetryFormat;
392 info_packet->sb[17] = 0;
395 info_packet->sb[17] = 1;
398 info_packet->sb[17] = 2;
401 info_packet->sb[1
[all...]

Completed in 180 milliseconds

1234567891011>>