/freebsd/crypto/openssl/test/ |
H A D | gmdifftest.c | 24 struct tm tm1, tm2, o1; in check_time() local 32 OPENSSL_gmtime(&t2, &tm2); in check_time() 36 || !TEST_int_eq(tm1.tm_year, tm2.tm_year) in check_time() 37 || !TEST_int_eq(tm1.tm_mon, tm2.tm_mon) in check_time() 38 || !TEST_int_eq(tm1.tm_mday, tm2.tm_mday) in check_time() 39 || !TEST_int_eq(tm1.tm_hour, tm2.tm_hour) in check_time() 40 || !TEST_int_eq(tm1.tm_min, tm2.tm_min) in check_time() 41 || !TEST_int_eq(tm1.tm_sec, tm2.tm_sec) in check_time()
|
/freebsd/sys/contrib/device-tree/src/arm64/exynos/ |
H A D | exynos5433-tm2.dts | 3 * Samsung Exynos5433 TM2 board device tree source 7 * Device tree source file for Samsung's TM2 board which is based on 11 #include "exynos5433-tm2-common.dtsi" 14 model = "Samsung TM2 board"; 15 compatible = "samsung,tm2", "samsung,exynos5433"; 21 * TM2 and TM2e differ only by DISP_PLL rate, but define all assigned 70 compatible = "cypress,tm2-touchkey";
|
H A D | exynos5433-tm2e.dts | 7 * Device tree source file for Samsung's TM2E(TM2 EDGE) board which is based on 11 #include "exynos5433-tm2-common.dtsi" 21 * TM2 and TM2e differ only by DISP_PLL rate, but define all assigned
|
H A D | exynos5433-tm2-common.dtsi | 3 * Samsung Exynos5433 TM2 board device tree source 7 * Common device tree source file for Samsung's TM2 and TM2E boards 121 compatible = "samsung,tm2-audio";
|
/freebsd/contrib/wpa/src/utils/ |
H A D | os_win32.c | 104 struct tm *tm2; in os_gmtime() local 107 tm2 = gmtime(&t2); in os_gmtime() 108 if (tm2 == NULL) in os_gmtime() 110 tm->sec = tm2->tm_sec; in os_gmtime() 111 tm->min = tm2->tm_min; in os_gmtime() 112 tm->hour = tm2->tm_hour; in os_gmtime() 113 tm->day = tm2->tm_mday; in os_gmtime() 114 tm->month = tm2->tm_mon + 1; in os_gmtime() 115 tm->year = tm2->tm_year + 1900; in os_gmtime()
|
H A D | os_internal.c | 88 struct tm *tm2; in os_gmtime() local 91 tm2 = gmtime(&t2); in os_gmtime() 92 if (tm2 == NULL) in os_gmtime() 94 tm->sec = tm2->tm_sec; in os_gmtime() 95 tm->min = tm2->tm_min; in os_gmtime() 96 tm->hour = tm2->tm_hour; in os_gmtime() 97 tm->day = tm2->tm_mday; in os_gmtime() 98 tm->month = tm2->tm_mon + 1; in os_gmtime() 99 tm->year = tm2->tm_year + 1900; in os_gmtime()
|
H A D | os_unix.c | 181 struct tm *tm2; in os_gmtime() local 184 tm2 = gmtime(&t2); in os_gmtime() 185 if (tm2 == NULL) in os_gmtime() 187 tm->sec = tm2->tm_sec; in os_gmtime() 188 tm->min = tm2->tm_min; in os_gmtime() 189 tm->hour = tm2->tm_hour; in os_gmtime() 190 tm->day = tm2->tm_mday; in os_gmtime() 191 tm->month = tm2->tm_mon + 1; in os_gmtime() 192 tm->year = tm2->tm_year + 1900; in os_gmtime()
|
/freebsd/sys/contrib/device-tree/Bindings/input/ |
H A D | cypress,tm2-touchkey.yaml | 4 $id: http://devicetree.org/schemas/input/cypress,tm2-touchkey.yaml# 7 title: Samsung TM2 touch key controller 13 Touch key controllers similar to the TM2 can be found in a wide range of 23 - cypress,tm2-touchkey 65 compatible = "cypress,tm2-touchkey";
|
H A D | cypress,tm2-touchkey.txt | 1 Samsung tm2-touchkey 5 * "cypress,tm2-touchkey" - for the touchkey found on the tm2 board 25 compatible = "cypress,tm2-touchkey";
|
/freebsd/sys/contrib/device-tree/Bindings/sound/ |
H A D | samsung,tm2.yaml | 4 $id: http://devicetree.org/schemas/sound/samsung,tm2.yaml# 7 title: Samsung Exynos5433 TM2(E) audio complex with WM5110 codec 18 const: samsung,tm2-audio 70 compatible = "samsung,tm2-audio";
|
H A D | samsung,tm2-audio.txt | 1 Samsung Exynos5433 TM2(E) audio complex with WM5110 codec 5 - compatible : "samsung,tm2-audio" 28 compatible = "samsung,tm2-audio";
|
/freebsd/crypto/heimdal/lib/roken/ |
H A D | strpftime-test.c | 243 struct tm tm2; in main() local 261 memset (&tm2, 0, sizeof(tm2)); in main() 264 &tm2); in main() 272 strftime (buf, sizeof(buf), tests[i].vals[j].format, &tm2); in main()
|
/freebsd/crypto/heimdal/kadmin/ |
H A D | util.c | 180 struct tm tm, tm2; in str2time_t() local 183 memset (&tm2, 0, sizeof (tm2)); in str2time_t() 217 if(p[0] != '\0' && strptime (p, "%H:%M:%S", &tm2) != NULL) { in str2time_t() 218 tm.tm_hour = tm2.tm_hour; in str2time_t() 219 tm.tm_min = tm2.tm_min; in str2time_t() 220 tm.tm_sec = tm2.tm_sec; in str2time_t()
|
/freebsd/sys/contrib/device-tree/Bindings/arm/samsung/ |
H A D | samsung-boards.yaml | 205 - samsung,tm2 # Samsung TM2
|
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | lvm.c | 189 const TValue *tm2; in get_equalTM() local 192 tm2 = fasttm(L, mt2, event); in get_equalTM() 193 if (tm2 == NULL) return NULL; /* no metamethod */ in get_equalTM() 194 if (luaV_rawequalobj(tm1, tm2)) /* same metamethods? */ in get_equalTM()
|
/freebsd/sys/contrib/openzfs/module/zstd/lib/common/ |
H A D | cpu.h | 127 C(tm2, 8)
|
/freebsd/sys/contrib/zstd/lib/common/ |
H A D | cpu.h | 125 C(tm2, 8)
|
/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | cpuid.h | 42 /* TM2: "GenuineTMx86" */
|
/freebsd/lib/libpmc/pmu-events/arch/x86/knightslanding/ |
H A D | pipeline.json | 181 … due to transitions associated with Enhanced Intel SpeedStep Technology or TM2. For this reason th…
|
/freebsd/sys/dev/qcom_tlmm/ |
H A D | qcom_tlmm_ipq4018.c | 180 NULL, NULL, "boot9", "tm2"),
|
/freebsd/lib/libpmc/pmu-events/arch/x86/skylake/ |
H A D | pipeline.json | 210 …is event is not affected by core frequency changes (for example, P states, TM2 transitions) but ha… 249 … due to transitions associated with Enhanced Intel SpeedStep Technology or TM2. For this reason th…
|
/freebsd/lib/libpmc/pmu-events/arch/x86/cascadelakex/ |
H A D | pipeline.json | 210 …is event is not affected by core frequency changes (for example, P states, TM2 transitions) but ha… 249 … due to transitions associated with Enhanced Intel SpeedStep Technology or TM2. For this reason th…
|
/freebsd/lib/libpmc/pmu-events/arch/x86/skylakex/ |
H A D | pipeline.json | 210 …is event is not affected by core frequency changes (for example, P states, TM2 transitions) but ha… 249 … due to transitions associated with Enhanced Intel SpeedStep Technology or TM2. For this reason th…
|
/freebsd/lib/libpmc/pmu-events/arch/x86/icelake/ |
H A D | pipeline.json | 259 …is event is not affected by core frequency changes (for example, P states, TM2 transitions) but ha… 282 … due to transitions associated with Enhanced Intel SpeedStep Technology or TM2. For this reason th…
|
/freebsd/lib/libpmc/pmu-events/arch/x86/icelakex/ |
H A D | pipeline.json | 259 …is event is not affected by core frequency changes (for example, P states, TM2 transitions) but ha… 282 … due to transitions associated with Enhanced Intel SpeedStep Technology or TM2. For this reason th…
|