Searched defs:gmt (Results 1 - 9 of 9) sorted by relevance

/illumos-gate/usr/src/cmd/sendmail/src/
H A Darpadate.c67 struct tm gmt; local
127 gmt = *gmtime(&t);
130 off = (lt->tm_hour - gmt.tm_hour) * 60 + lt->tm_min - gmt.tm_min;
133 if (lt->tm_year < gmt.tm_year)
135 else if (lt->tm_year > gmt.tm_year)
137 else if (lt->tm_yday < gmt.tm_yday)
139 else if (lt->tm_yday > gmt.tm_yday)
/illumos-gate/usr/src/lib/udapl/udapl_tavor/common/
H A Ddapl_name_service.c127 DAPL_GID_MAP gmt; local
149 gmt.ip_address = 0x01020304;
156 gmt.ip_address = si->sin_addr.s_addr;
162 gmt.ip_address = 0x01020304;
166 gmt.gid.gid_prefix = gid.gid_prefix;
167 gmt.gid.gid_guid = gid.gid_guid;
169 dapli_ns_add_address(&gmt);
198 DAPL_GID_MAP *gmt; local
201 gmt = g_gid_map_table;
202 for (count = 0, gmt
239 DAPL_GID_MAP *gmt; local
[all...]
/illumos-gate/usr/src/cmd/ipcs/
H A Dipcs.c443 time_t gmt = (time_t)gmt64; local
445 if (gmt && gmt64 <= UINT_MAX) {
446 t = localtime(&gmt);
/illumos-gate/usr/src/cmd/bnu/
H A Dperfstat.c335 gmt(), FS, /* current time. */
393 gmt(), FS, /* Current time. */
568 * Function: gmt - Generate Current Time String
583 gmt() function
H A Duustat.c77 static char * gmt();
1330 strncpy(upperlimit, gmt(), MAXDATE);
1505 * Local Function: gmt - Generate Current Time String
1520 gmt() function
/illumos-gate/usr/src/lib/libkmf/libkmf/common/
H A Dcertgetsetop.c1938 struct tm *gmt; local
1951 gmt = gmtime(&clock); /* valid starting today */
1955 "%y%m%d%H" "%M00Z", gmt);
1964 gmt = gmtime(&clock);
1968 "%y%m%d%H" "%M00Z", gmt);
H A Dcertop.c2782 struct tm *gmt; local
2806 gmt = gmtime(&t_now);
2807 t_now = mktime(gmt);
/illumos-gate/usr/src/cmd/praudit/
H A Dformat.c2394 struct tm *gmt; local
2397 gmt = gmtime(tv_sec);
2399 min_off = ((tm->tm_hour - gmt->tm_hour) * 60) +
2400 (tm->tm_min - gmt->tm_min);
2402 if (tm->tm_year < gmt->tm_year) /* cross new year */
2404 else if (tm->tm_year > gmt->tm_year)
2406 else if (tm->tm_yday < gmt->tm_yday) /* cross dateline */
2408 else if (tm->tm_yday > gmt->tm_yday)
/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_kutil.c946 * Apply the gmt offset to convert between local time and gmt
949 smb_time_gmt_to_local(smb_request_t *sr, int32_t gmt) argument
951 if ((gmt == 0) || (gmt == -1))
954 return (gmt - sr->sr_gmtoff);

Completed in 86 milliseconds