HomeSort by: relevance | last modified time | path
    Searched defs:isb (Results 1 - 5 of 5) sorted by relevancy

  /src/usr.bin/compress/
compress.c 203 struct stat isb, sb; local in function:compress
224 if (stat(in, &isb)) { /* DON'T FSTAT! */
228 if (!S_ISREG(isb.st_mode))
267 if (!force && sb.st_size >= isb.st_size) {
273 setfile(out, &isb);
280 if (isb.st_size > sb.st_size)
282 ((double)sb.st_size / isb.st_size) * 100.0);
285 ((double)isb.st_size / sb.st_size) * 100.0);
  /src/sys/arch/arm/include/
cpufunc.h 63 #define isb() __asm __volatile("isb" : : : "memory") macro
72 #define isb() \ macro
  /src/usr.bin/unifdef/
unifdef.c 271 struct stat isb, osb; local in function:main
346 if (fstat(fileno(input), &isb) != 0)
349 overwriting = (osb.st_dev == isb.st_dev &&
350 osb.st_ino == isb.st_ino);
361 fchmod(ofd, isb.st_mode & ACCESSPERMS);
  /src/usr.bin/gzip/
gzip.c 1305 struct stat isb, osb; local in function:file_compress
1316 if (fstat(in, &isb) != 0) {
1321 infile_set(file, isb.st_size);
1326 if (isb.st_nlink > 1 && fflag == 0) {
1328 "skipping", file, isb.st_nlink - 1,
1329 isb.st_nlink == 1 ? "" : "s");
1367 in_size = gz_compress(in, out, &size, basename(file), (uint32_t)isb.st_mtime);
1394 copymodes(out, &isb, outfile);
1400 unlink_input(file, &isb);
1418 struct stat isb, osb local in function:file_uncompress
1807 struct stat isb; local in function:handle_stdin
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_atombios.c 982 u8 isb = supported_devices->info_2d1.asIntSrcInfo[i].ucIntSrcBitmap; local in function:radeon_get_atom_connector_info_from_supported_devices_table
983 switch (isb) {

Completed in 17 milliseconds