Searched defs:atm (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/smbsrv/smbd/
H A Dsmbd_main.c917 struct tm *atm; local
921 atm = localtime(&clock_val);
923 gmtoff = (atm->tm_isdst) ? altzone : timezone;
/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_kutil.c982 struct tm atm; local
989 atm.tm_year = ((date >> 9) & 0x3F) + 80;
990 atm.tm_mon = ((date >> 5) & 0x0F) - 1;
991 atm.tm_mday = ((date >> 0) & 0x1F);
992 atm.tm_hour = ((time >> 11) & 0x1F);
993 atm.tm_min = ((time >> 5) & 0x3F);
994 atm.tm_sec = ((time >> 0) & 0x1F) << 1;
996 return (smb_timegm(&atm));
1002 struct tm atm; local
1013 (void) smb_gmtime_r(&tmp_time, &atm);
[all...]
/illumos-gate/usr/src/cmd/ls/
H A Dls.c305 static int atm; variable
708 atm = 0;
839 atm = 0;
914 atm = 0;
918 atm++;
926 atm = 0;
933 atm = 0;
940 atm = 0;
2006 if (uflg || (tmflg && atm))

Completed in 54 milliseconds