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

  /bionic/libc/tzcode/
strftime.c 693 #define DIVISOR 100
694 trail = a % DIVISOR + b % DIVISOR;
695 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR;
696 trail %= DIVISOR;
698 trail += DIVISOR;
701 trail -= DIVISOR;
  /bionic/libc/upstream-openbsd/lib/libc/time/
wcsftime.c 530 #define DIVISOR 100
531 trail = a % DIVISOR + b % DIVISOR;
532 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR;
533 trail %= DIVISOR;
535 trail += DIVISOR;
538 trail -= DIVISOR;
  /external/icu/icu4c/source/tools/tzcode/
zdump.c 908 #define DIVISOR 10
909 trail = timeptr->tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR;
910 lead = timeptr->tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR +
911 trail / DIVISOR;
912 trail %= DIVISOR;
914 trail += DIVISOR;
917 trail -= DIVISOR;
994 trail = loc.tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR
    [all...]
  /frameworks/base/core/java/android/text/format/
TimeFormatter.java 422 final int DIVISOR = 100;
423 trail = value % DIVISOR;
424 lead = value / DIVISOR + trail / DIVISOR;
425 trail %= DIVISOR;
427 trail += DIVISOR;
430 trail -= DIVISOR;
  /external/owasp/sanitizer/lib/htmlparser-1.3/
htmlparser-1.3-with-transitions.jar 
htmlparser-1.3.jar 

Completed in 262 milliseconds