Home
last modified time | relevance | path

Searched refs:gmt (Results 1 – 24 of 24) sorted by relevance

/freebsd/contrib/sendmail/src/
H A Darpadate.c65 struct tm gmt; variable
125 gmt = *gmtime(&t);
128 off = (lt->tm_hour - gmt.tm_hour) * 60 + lt->tm_min - gmt.tm_min;
131 if (lt->tm_year < gmt.tm_year)
133 else if (lt->tm_year > gmt.tm_year)
135 else if (lt->tm_yday < gmt.tm_yday)
137 else if (lt->tm_yday > gmt.tm_yday)
/freebsd/sys/contrib/device-tree/Bindings/hwmon/
H A Dg762.txt5 - "compatible": must be either "gmt,g762" or "gmt,g763"
41 compatible = "gmt,g762";
H A Dlm75.txt9 "gmt,g751",
H A Dlm90.txt8 "gmt,g781"
/freebsd/sbin/setkey/
H A Dsetkey.c634 * Returns the difference between gmt and local time in seconds.
641 register struct tm *gmt, *loc; in gmt2local() local
646 gmt = &sgmt; in gmt2local()
647 *gmt = *gmtime(&t); in gmt2local()
649 dt = (loc->tm_hour - gmt->tm_hour) * 60 * 60 + in gmt2local()
650 (loc->tm_min - gmt->tm_min) * 60; in gmt2local()
657 dir = loc->tm_year - gmt->tm_year; in gmt2local()
659 dir = loc->tm_yday - gmt->tm_yday; in gmt2local()
/freebsd/contrib/file/magic/Magdir/
H A Dtimezone12 >20 belong 0 \b, no gmt time flags
13 >20 belong 1 \b, 1 gmt time flag
14 >20 belong >1 \b, %d gmt time flags
/freebsd/contrib/libarchive/libarchive/
H A Darchive_getdate.c549 { 0, "gmt", tZONE, 0*HOUR }, /* Greenwich Mean */
946 struct tm gmt, *gmt_ptr; in __archive_get_date()
975 gmt_ptr = gmtime_s(&gmt, &now) ? NULL : &gmt; in __archive_get_date()
977 gmt_ptr = gmtime_r(&now, &gmt); in __archive_get_date()
979 memset(&gmt, 0, sizeof(gmt)); in __archive_get_date()
983 gmt = *gmt_ptr; in __archive_get_date()
987 tzone = difftm (&gmt, &local); in __archive_get_date()
1020 gmt_ptr = gmtime_s(&gmt, in __archive_get_date()
950 struct tm gmt, *gmt_ptr; __archive_get_date() local
[all...]
/freebsd/sys/contrib/device-tree/src/arm/marvell/
H A Darmada-xp-netgear-rn2120.dts47 compatible = "gmt,g762";
57 compatible = "gmt,g762";
67 compatible = "gmt,g762";
77 compatible = "gmt,g751";
H A Dkirkwood-net2big.dts59 compatible = "gmt,g762";
H A Dkirkwood-nas2big.dts102 compatible = "gmt,g762";
H A Dkirkwood-net5big.dts165 compatible = "gmt,g762";
H A Dkirkwood-netgear_readynas_duo_v2.dts92 compatible = "gmt,g762";
H A Dkirkwood-netgear_readynas_nv+_v2.dts97 compatible = "gmt,g762";
H A Darmada-370-netgear-rn102.dts76 compatible = "gmt,g762";
H A Dorion5x-lacie-d2-network.dts154 compatible = "gmt,g762";
H A Darmada-370-netgear-rn104.dts78 compatible = "gmt,g762";
/freebsd/lib/libc/stdtime/
H A Dstrptime.c690 int gmt;
693 gmt = 0; in strptime_l()
694 ret = _strptime(buf, fmt, tm, &gmt, loc); in strptime_l()
695 if (ret && gmt) { in strptime_l()
696 int gmt; strptime_l() local
/freebsd/usr.bin/find/
H A Dgetdate.y838 struct tm *tm, *gmt_ptr, gmt; in get_date() local
844 bzero (&gmt, sizeof(struct tm)); in get_date()
856 gmt = *gmt_ptr; in get_date()
863 tzoff = difftm (&gmt, tm) / 60; in get_date()
/freebsd/contrib/bmake/
H A Dvar.c1902 FormatTime(const char *fmt, time_t t, bool gmt) in FormatTime() argument
1910 if (gmt && strchr(fmt, 's') != NULL) { in FormatTime()
1923 strftime(buf, sizeof buf, fmt, (gmt ? gmtime : localtime)(&t)); in FormatTime()
2552 bool gmt = mod[0] == 'g'; in ApplyModifier_Time() local
2554 if (!ModMatchEq(mod, gmt ? "gmtime" : "localtime", ch)) in ApplyModifier_Time()
2556 args = mod + (gmt ? 6 : 9); in ApplyModifier_Time()
2585 Expr_SetValueOwn(expr, FormatTime(Expr_Str(expr), t, gmt)); in ApplyModifier_Time()
/freebsd/sys/contrib/device-tree/src/arm/gemini/
H A Dgemini-dlink-dns-313.dts102 compatible = "gmt,g751";
/freebsd/sys/contrib/device-tree/src/arm/samsung/
H A Dexynos5250-spring.dts408 compatible = "gmt,g781";
/freebsd/contrib/tzdata/
H A Dafrica819 …/article/1035870-enquete-l-economiste-sunergia-64-des-marocains-plebiscitent-le-gmt-pendant-ramadan
830 # https://maroc-diplomatique.net/maroc-le-retour-a-lheure-gmt-est-prevu-dimanche-prochain/
846 # https://www.ecoactu.ma/horaires-administration-ramadan-gmtheure-gmt-a-partir-de-dimanche-27-mars/
851 # https://www.mmsp.gov.ma/fr/actualites/passage-à-l%E2%80%99heure-gmt-à-partir-du-dimanche-19-mars-…
/freebsd/contrib/sendmail/contrib/
H A Dmmuegel463 # gettime - get the time via {local,gmt}time
466 # maketime - make a time via time{local,gmt}
/freebsd/contrib/file/
H A DChangeLog667 Also stop adjusting daylight savings for gmt printing.