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

  /src/sys/arch/i386/stand/dosboot/
dosfile.h 35 FS_DEF(dos); variable
  /src/sbin/fdisk/
fdisk.c 161 * For historic reasons the BIOS geometry is the called the dos geometry!
271 static void dos(int, unsigned char *, unsigned char *, unsigned char *);
1827 dos(le32toh(partp->mbrp_start),
1829 dos(le32toh(partp->mbrp_start) + le32toh(partp->mbrp_size) - 1,
2286 dos(start, &partp->mbrp_scyl, &partp->mbrp_shd, &partp->mbrp_ssect);
2287 dos(start + size - 1,
2467 * Change real numbers into strange dos numbers *
2470 dos(int sector, unsigned char *cylinderp, unsigned char *headp, function
  /src/external/bsd/libarchive/dist/libarchive/
archive_write_set_format_mtree.c 1751 int mb, dos; local
1753 mb = dos = 0;
1762 dos = 1;
1766 if (!mb || !dos)
archive_write_set_format_iso9660.c 4676 int mb, dos; local
4678 mb = dos = 0;
4687 dos = 1;
4691 if (!mb || !dos)
  /src/external/zlib/pigz/dist/
pigz.c 840 /* convert Unix time to MS-DOS date and time, assuming current timezone
845 unsigned long dos; local
852 dos = (tm->tm_year - 80) << 25;
853 dos += (tm->tm_mon + 1) << 21;
854 dos += tm->tm_mday << 16;
855 dos += tm->tm_hour << 11;
856 dos += tm->tm_min << 5;
857 dos += (tm->tm_sec + 1) >> 1; /* round to double-seconds */
858 return dos;
2292 /* convert MS-DOS date and time to a Unix time, assuming current timezon
    [all...]

Completed in 33 milliseconds