HomeSort by relevance Sort by last modified time
    Searched full:dostime (Results 1 - 25 of 42) sorted by null

1 2

  /external/lzma/CPP/Windows/
TimeUtils.h 12 bool DosTimeToFileTime(UInt32 dosTime, FILETIME &fileTime) throw();
13 bool FileTimeToDosTime(const FILETIME &fileTime, UInt32 &dosTime) throw();
TimeUtils.cpp 19 bool DosTimeToFileTime(UInt32 dosTime, FILETIME &ft) throw()
22 return BOOLToBool(::DosDateTimeToFileTime((UInt16)(dosTime >> 16), (UInt16)(dosTime & 0xFFFF), &ft));
27 if (!GetSecondsSince1601(kDosTimeStartYear + (dosTime >> 25), (dosTime >> 21) & 0xF, (dosTime >> 16) & 0x1F,
28 (dosTime >> 11) & 0x1F, (dosTime >> 5) & 0x3F, (dosTime & 0x1F) * 2, res))
44 bool FileTimeToDosTime(const FILETIME &ft, UInt32 &dosTime) throw()
    [all...]
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
DosUtils.java 38 * @param dosTime
41 public static long decodeDateTime(int dosDate, int dosTime) {
45 cal.set(Calendar.SECOND, (dosTime & 0x1f) * 2);
46 cal.set(Calendar.MINUTE, (dosTime >> 5) & 0x3f);
47 cal.set(Calendar.HOUR_OF_DAY, dosTime >> 11);
  /external/curl/tests/
directories.pm 27 'dostime' => '01-11-10 10:00AM',
35 'dostime' => '02-01-10 08:00AM',
43 'dostime' => '02-01-10 08:00AM',
52 'dostime' => '05-04-10 04:31AM'
61 'dostime' => '05-04-10 04:31AM'
86 'dostime' => "04-27-10 05:12AM",
96 'dostime' => "04-23-10 03:12AM",
106 'dostime' => "04-23-10 03:12AM",
116 'dostime' => "11-01-08 11:11AM",
126 'dostime' => "11-01-08 11:11AM"
    [all...]
  /libcore/ojluni/src/main/java/java/util/zip/
ZipUtils.java 119 long dostime = javaToDosTime(time); local
120 return (dostime != ZipEntry.DOSTIME_BEFORE_1980)
121 ? dostime + ((time % 2000) << 32)
  /build/soong/third_party/zip/
struct.go 150 func msDosTimeToTime(dosDate, dosTime uint16) time.Time {
158 int(dosTime>>11),
159 int(dosTime>>5&0x3f),
160 int(dosTime&0x1f*2),
  /prebuilts/go/darwin-x86/src/archive/zip/
struct.go 205 func msDosTimeToTime(dosDate, dosTime uint16) time.Time {
213 int(dosTime>>11),
214 int(dosTime>>5&0x3f),
215 int(dosTime&0x1f*2),
  /prebuilts/go/linux-x86/src/archive/zip/
struct.go 205 func msDosTimeToTime(dosDate, dosTime uint16) time.Time {
213 int(dosTime>>11),
214 int(dosTime>>5&0x3f),
215 int(dosTime&0x1f*2),
  /external/zlib/src/contrib/minizip/
minizip.c 77 uLong *dt; /* dostime */
101 uLong *dt; /* dostime */
143 uLong *dt; /* dostime */
  /toolchain/binutils/binutils-2.27/zlib/contrib/minizip/
minizip.c 77 uLong *dt; /* dostime */
101 uLong *dt; /* dostime */
143 uLong *dt; /* dostime */
  /external/libvncserver/webclients/novnc/include/
jsunzip.js 54 this.getDOSDate = function(dosdate, dostime) {
58 var second = (dostime & 0x1f) * 2;
59 var minute = (dostime >> 5) & 0x3f;
60 hour = (dostime >> 11) & 0x1f;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
zipimport.c 955 /* dostime only stores even seconds, so be lenient */
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
zipimport.c 927 /* dostime only stores even seconds, so be lenient */
1037 parse_dostime(int dostime, int dosdate)
1043 stm.tm_sec = (dostime & 0x1f) * 2;
1044 stm.tm_min = (dostime >> 5) & 0x3f;
1045 stm.tm_hour = (dostime >> 11) & 0x1f;
    [all...]
  /external/python/cpython2/Modules/
zipimport.c 1047 /* dostime only stores even seconds, so be lenient */
    [all...]
  /external/python/cpython3/Modules/
zipimport.c     [all...]
  /external/fio/os/windows/
posix.c 227 void Time_tToSystemTime(time_t dosTime, SYSTEMTIME *systemTime)
232 jan1970 = Int32x32To64(dosTime, 10000000) + 116444736000000000;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
zipfile.py 333 dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2)
363 self.compress_type, dostime, dosdate, CRC,
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
zipfile.py 321 dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2)
346 self.compress_type, dostime, dosdate, CRC,
    [all...]
  /external/chromium-trace/catapult/third_party/zipfile/
zipfile_2_7_13.py 333 dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2)
363 self.compress_type, dostime, dosdate, CRC,
    [all...]
  /external/python/cpython2/Lib/
zipfile.py 333 dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2)
363 self.compress_type, dostime, dosdate, CRC,
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
zipfile.py 333 dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2)
363 self.compress_type, dostime, dosdate, CRC,
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
zipfile.py 333 dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2)
363 self.compress_type, dostime, dosdate, CRC,
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
zipfile.py 333 dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2)
363 self.compress_type, dostime, dosdate, CRC,
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
zipfile.py 333 dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2)
363 self.compress_type, dostime, dosdate, CRC,
    [all...]
  /external/python/cpython3/Lib/
zipfile.py 388 dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2)
425 self.compress_type, dostime, dosdate, CRC,
    [all...]

Completed in 1593 milliseconds

1 2