HomeSort by relevance Sort by last modified time
    Searched refs:DIVISOR (Results 1 - 4 of 4) sorted by null

  /bionic/libc/tzcode/
strftime.c 747 #define DIVISOR 100
748 trail = a % DIVISOR + b % DIVISOR;
749 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR;
750 trail %= DIVISOR;
752 trail += DIVISOR;
755 trail -= DIVISOR;
  /external/chromium/third_party/icu/source/tools/tzcode/
zdump.c 852 #define DIVISOR 10
853 trail = timeptr->tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR;
854 lead = timeptr->tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR +
855 trail / DIVISOR;
856 trail %= DIVISOR;
858 trail += DIVISOR;
861 trail -= DIVISOR;
938 trail = loc.tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR
    [all...]
  /external/icu4c/tools/tzcode/
zdump.c 852 #define DIVISOR 10
853 trail = timeptr->tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR;
854 lead = timeptr->tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR +
855 trail / DIVISOR;
856 trail %= DIVISOR;
858 trail += DIVISOR;
861 trail -= DIVISOR;
938 trail = loc.tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR
    [all...]
  /system/core/libcutils/
tzstrftime.c 697 #define DIVISOR 100
698 trail = a % DIVISOR + b % DIVISOR;
699 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR;
700 trail %= DIVISOR;
702 trail += DIVISOR;
705 trail -= DIVISOR;

Completed in 56 milliseconds