Home
last modified time | relevance | path

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

/Zephyr-latest/lib/libc/common/source/time/
Dgmtime_r.c19 typedef time_t bigint_type; typedef
35 static void time_civil_from_days(bigint_type z, in time_civil_from_days()
41 bigint_type era = ((z >= 0) ? z : (z - 146096)) / 146097; in time_civil_from_days()
42 unsigned int doe = (z - era * (bigint_type)146097); in time_civil_from_days()
45 bigint_type y = (time_t)yoe + era * 400; in time_civil_from_days()
85 bigint_type days = (z >= 0 ? z : z - 86399) / 86400; in gmtime_r()