OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:timeVal
(Results
1 - 2
of
2
) sorted by null
/libcore/luni/src/main/java/java/util/
GregorianCalendar.java
661
long
timeVal
;
668
timeVal
= hour * 3600000;
671
timeVal
+= ((long) fields[MINUTE]) * 60000;
674
timeVal
+= ((long) fields[SECOND]) * 1000;
677
timeVal
+= fields[MILLISECOND];
797
timeVal
+= days * 86400000;
800
&&
timeVal
>= gregorianCutover + julianError() * 86400000L) {
801
timeVal
-= julianError() * 86400000L;
804
// It is not possible to simply subtract getOffset(
timeVal
) from
timeVal
[
all
...]
/external/lzma/CPP/7zip/UI/Common/
Bench.cpp
243
timeval
v;
985
UInt64
timeVal
;
1001
timeVal
= GetTimeCount();
1017
timeVal
= GetTimeCount();
1021
timeVal
= GetTimeCount() -
timeVal
;
1022
if (
timeVal
== 0)
1023
timeVal
= 1;
1026
speed = MyMultDiv64(size,
timeVal
, GetFreq());
Completed in 73 milliseconds