/src/sys/dev/pci/ |
igmavar.h | 50 bus_space_tag_t gmt; member in struct:igma_chip
|
igma.c | 337 bus_space_tag_t gttmmt, gmt, regt; local in function:igma_attach 369 &gmt, &gmh, &gmb, NULL)) { 373 sc->sc_chip.gmt = gmt;
|
/src/usr.sbin/ndp/ |
ndp.c | 134 static int32_t thiszone; /* time difference with gmt */ 979 * Returns the difference between gmt and local time in seconds. 986 struct tm *gmt, *loc; local in function:gmt2local 991 gmt = &sgmt; 992 *gmt = *gmtime(&t); 994 dt = (loc->tm_hour - gmt->tm_hour) * 60 * 60 + 995 (loc->tm_min - gmt->tm_min) * 60; 998 * If the year or julian day is different, we span 00:00 GMT 1002 dir = loc->tm_year - gmt->tm_year; 1004 dir = loc->tm_yday - gmt->tm_yday [all...] |
/src/usr.bin/make/ |
var.c | 1911 FormatTime(const char *fmt, time_t t, bool gmt) 1919 if (gmt && strchr(fmt, 's') != NULL) { 1932 strftime(buf, sizeof buf, fmt, (gmt ? gmtime : localtime)(&t)); 2557 bool gmt = mod[0] == 'g'; local in function:ApplyModifier_Time 2559 if (!ModMatchEq(mod, gmt ? "gmtime" : "localtime", ch)) 2561 args = mod + (gmt ? 6 : 9); 2590 Expr_SetValueOwn(expr, FormatTime(Expr_Str(expr), t, gmt));
|