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

  /bionic/libc/tzcode/
strftime.c 708 #define DIVISOR 100
709 trail = a % DIVISOR + b % DIVISOR;
710 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR;
711 trail %= DIVISOR;
713 trail += DIVISOR;
716 trail -= DIVISOR;
  /bionic/libc/upstream-openbsd/lib/libc/time/
wcsftime.c 535 #define DIVISOR 100
536 trail = a % DIVISOR + b % DIVISOR;
537 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR;
538 trail %= DIVISOR;
540 trail += DIVISOR;
543 trail -= DIVISOR;
  /external/chromium_org/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/icu/icu4c/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...]
  /frameworks/base/core/java/android/text/format/
TimeFormatter.java 421 final int DIVISOR = 100;
422 trail = value % DIVISOR;
423 lead = value / DIVISOR + trail / DIVISOR;
424 trail %= DIVISOR;
426 trail += DIVISOR;
429 trail -= DIVISOR;
  /external/owasp/sanitizer/lib/htmlparser-1.3/
htmlparser-1.3-with-transitions.jar 
htmlparser-1.3.jar 

Completed in 571 milliseconds