Home | History | Annotate | Download | only in jni

Lines Matching defs:milliseconds

29 #define MS_PER_SECOND 1000                  /* Milliseconds per second */
30 #define MS_PER_MINUTE 60 * MS_PER_SECOND /* Milliseconds per minute */
31 #define MS_PER_HOUR 60 * MS_PER_MINUTE /* Milliseconds per hour */
32 #define MS_PER_DAY 24 * MS_PER_HOUR /* Milliseconds per day */
343 * Compute the milliseconds by the specified <code>date</code>
351 * @return the related milliseconds
381 * Compute the milliseconds by the specified <code>date</code>
394 * @return the related milliseconds
399 int64_t milliseconds;
408 /* milliseconds = ((((year * 365 + month * 30 + day) * 24
411 int64_mul(milliseconds,
414 int64_add(milliseconds, milliseconds,
418 return milliseconds;