Searched refs:sb (Results 1 - 25 of 41) sorted by relevance

12

/barrelfish-2018-10-04/lib/libc/stdio/
H A Dremove.c47 struct stat sb; local
49 if (lstat(file, &sb) < 0)
51 if (S_ISDIR(sb.st_mode))
/barrelfish-2018-10-04/usr/eclipseclp/CPViz/viztool/src/components/
H A DSquiggleInputHandlerFilter.java43 StringBuffer sb = new StringBuffer();
48 sb.append(", ");
50 sb.append(extensions[i]);
54 sb.append( ' ' );
57 sb.append(handler.getDescription());
58 return sb.toString();
/barrelfish-2018-10-04/lib/tommath/
H A Dbn_mp_add.c21 int sa, sb, res; local
25 sb = b->sign;
28 if (sa == sb) {
39 c->sign = sb;
H A Dbn_mp_sub.c22 int sa, sb, res; local
25 sb = b->sign;
27 if (sa != sb) {
/barrelfish-2018-10-04/lib/libc/gen/
H A Dctermid.c45 struct stat sb; local
58 if (stat(_PATH_TTY, &sb) == 0 && S_ISCHR(sb.st_mode))
60 &dlen, &sb.st_rdev, sizeof(sb.st_rdev));
H A Dpututxline.c47 struct stat sb; local
55 if (_fstat(fd, &sb) != -1 && sb.st_size % sizeof(struct futx) != 0) {
238 struct stat sb; local
250 if (_fstat(fd, &sb) != -1 && sb.st_size % sizeof(struct futx) != 0)
H A Dgetutxent.c52 struct stat sb; local
80 if (_fstat(fileno(uf), &sb) != -1 &&
81 sb.st_size % sizeof(struct futx) != 0) {
H A Dfstab.c92 struct stat sb; local
104 if (stat(buf, &sb) != 0 ||
105 (!S_ISBLK(sb.st_mode) && !S_ISCHR(sb.st_mode)))
/barrelfish-2018-10-04/lib/compiler-rt/builtins/
H A Dmulodi4.c43 di_int sb = b >> (N - 1); local
44 di_int abs_b = (b ^ sb) - sb;
47 if (sa == sb)
H A Dmulosi4.c43 si_int sb = b >> (N - 1); local
44 si_int abs_b = (b ^ sb) - sb;
47 if (sa == sb)
H A Dmuloti4.c45 ti_int sb = b >> (N - 1); local
46 ti_int abs_b = (b ^ sb) - sb;
49 if (sa == sb)
H A Dmulvdi3.c41 di_int sb = b >> (N - 1); local
42 di_int abs_b = (b ^ sb) - sb;
45 if (sa == sb)
H A Dmulvsi3.c41 si_int sb = b >> (N - 1); local
42 si_int abs_b = (b ^ sb) - sb;
45 if (sa == sb)
H A Dmulvti3.c43 ti_int sb = b >> (N - 1); local
44 ti_int abs_b = (b ^ sb) - sb;
47 if (sa == sb)
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/rand/
H A Drandfile.c113 struct stat sb; local
127 memset(&sb, 0, sizeof(sb));
129 if (stat(file,&sb) < 0) return(0);
130 RAND_add(&sb,sizeof(sb),0.0);
141 if (sb.st_mode & (S_IFBLK | S_IFCHR)) {
184 struct stat sb; local
186 i=stat(file,&sb);
189 if (S_ISBLK(sb
273 struct stat sb; local
[all...]
/barrelfish-2018-10-04/lib/libc/sys/
H A Dfutimens.c44 struct stat sb; local
78 if (_fstat(fd, &sb) == -1)
81 tv[0].tv_sec = sb.st_atim.tv_sec;
82 tv[0].tv_usec = sb.st_atim.tv_nsec / 1000;
85 tv[1].tv_sec = sb.st_mtim.tv_sec;
86 tv[1].tv_usec = sb.st_mtim.tv_nsec / 1000;
H A Dutimensat.c44 struct stat sb; local
82 if (fstatat(fd, path, &sb, flag) == -1)
85 tv[0].tv_sec = sb.st_atim.tv_sec;
86 tv[0].tv_usec = sb.st_atim.tv_nsec / 1000;
89 tv[1].tv_sec = sb.st_mtim.tv_sec;
90 tv[1].tv_usec = sb.st_mtim.tv_nsec / 1000;
/barrelfish-2018-10-04/lib/libc/resolv/
H A Dres_state.c70 struct stat sb; local
88 if (stat(_PATH_RESCONF, &sb) == 0 &&
89 (sb.st_mtim.tv_sec != ext->conf_mtim.tv_sec ||
90 sb.st_mtim.tv_nsec != ext->conf_mtim.tv_nsec)) {
/barrelfish-2018-10-04/usr/eclipseclp/Visualisation/src/com/parctechnologies/eclipse/visualisation/
H A DScenario.java165 StringBuffer sb =
169 sb.append(ecl.toString());
171 return sb.toString();
269 StringBuffer sb = new StringBuffer("\nCommandList\n");
276 sb.append("state:"+integer+" command:"+command);
278 return sb.toString();
/barrelfish-2018-10-04/lib/libc/locale/
H A Drune.c66 struct stat sb; local
80 if (_fstat(fd, &sb) < 0) {
86 if ((size_t)sb.st_size < sizeof (_FileRuneLocale)) {
93 fdata = mmap(NULL, sb.st_size, PROT_READ, MAP_PRIVATE, fd, 0);
101 lastp = fdata + sb.st_size;
156 munmap(fdata, sb.st_size);
228 munmap(fdata, sb.st_size);
248 munmap(fdata, sb.st_size);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/ssl/
H A Dbio_ssl.c143 BIO_SSL *sb; local
149 sb=(BIO_SSL *)b->ptr;
150 ssl=sb->ssl;
174 if (sb->renegotiate_count > 0)
176 sb->byte_count+=ret;
177 if (sb->byte_count > sb->renegotiate_count)
179 sb->byte_count=0;
180 sb->num_renegotiates++;
185 if ((sb
[all...]
/barrelfish-2018-10-04/lib/libc/stdlib/
H A Drealpath.c53 struct stat sb; local
164 if (lstat(resolved, &sb) != 0) {
169 if (S_ISLNK(sb.st_mode)) {
220 } else if (!S_ISDIR(sb.st_mode) && p != NULL) {
/barrelfish-2018-10-04/lib/libc/db/recno/
H A Drec_open.c63 struct stat sb; local
145 if (_fstat(rfd, &sb))
156 if (sb.st_size == 0)
167 t->bt_msize = sb.st_size;
173 t->bt_emap = t->bt_smap + sb.st_size;
/barrelfish-2018-10-04/lib/lwip2/src/apps/snmp_private_mib/
H A Dlwip_prvmib.c181 struct stat sb; local
197 fstat(fd, &sb);
198 bufsize = sb.st_size;
199 if (bufsize < (size_t)sb.st_blksize)
201 bufsize = sb.st_blksize;
/barrelfish-2018-10-04/lib/libc/db/btree/
H A Dbt_open.c93 struct stat sb; local
211 if (_fstat(t->bt_fd, &sb))
213 if (sb.st_size) {
255 b.psize = sb.st_blksize;

Completed in 263 milliseconds

12