OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DIVISOR
(Results
1 - 2
of
2
) sorted by null
/bionic/libc/tzcode/
strftime.c
748
#define
DIVISOR
100
749
trail = a %
DIVISOR
+ b %
DIVISOR
;
750
lead = a /
DIVISOR
+ b /
DIVISOR
+ trail /
DIVISOR
;
751
trail %=
DIVISOR
;
753
trail +=
DIVISOR
;
756
trail -=
DIVISOR
;
/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
...]
Completed in 52 milliseconds