Home
last modified time | relevance | path

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

/external/icu/icu4c/source/tools/tzcode/
Dlocaltime.c154 int * unitsptr, int base);
155 static int normalize_overflow(int * tensptr, int * unitsptr,
1626 normalize_overflow(int *const tensptr, int *const unitsptr, const int base) in normalize_overflow() argument
1630 tensdelta = (*unitsptr >= 0) ? in normalize_overflow()
1631 (*unitsptr / base) : in normalize_overflow()
1632 (-1 - (-1 - *unitsptr) / base); in normalize_overflow()
1633 *unitsptr -= tensdelta * base; in normalize_overflow()
1638 normalize_overflow32(int_fast32_t *const tensptr, int *const unitsptr, in normalize_overflow32() argument
1643 tensdelta = (*unitsptr >= 0) ? in normalize_overflow32()
1644 (*unitsptr / base) : in normalize_overflow32()
[all …]