OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PERIOD_100
(Results
1 - 2
of
2
) sorted by null
/external/lzma/CPP/Windows/
Time.cpp
41
#define
PERIOD_100
(PERIOD_4 * 25 - 1)
42
#define PERIOD_400 (
PERIOD_100
* 4 + 1)
77
temp = (unsigned)(v /
PERIOD_100
);
81
v -= temp *
PERIOD_100
;
/external/lzma/C/Util/7z/
7zMain.c
220
#define
PERIOD_100
(PERIOD_4 * 25 - 1)
221
#define PERIOD_400 (
PERIOD_100
* 4 + 1)
239
t = v /
PERIOD_100
; if (t == 4) t = 3; year += t * 100; v -= t *
PERIOD_100
;
Completed in 70 milliseconds