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

  /external/v8/src/
date.h 76 // Computes floor(time_ms / kMsPerDay).
77 static int DaysFromTime(int64_t time_ms) {
78 if (time_ms < 0) time_ms -= (kMsPerDay - 1);
79 return static_cast<int>(time_ms / kMsPerDay);
83 // Computes modulo(time_ms, kMsPerDay) given that
84 // days = floor(time_ms / kMsPerDay).
85 static int TimeInDay(int64_t time_ms, int days) {
86 return static_cast<int>(time_ms - days * kMsPerDay);
112 const char* LocalTimezone(int64_t time_ms) {
184 double time_ms = static_cast<double>(time_sec * 1000); local
    [all...]
date.cc 222 int DateCache::DaylightSavingsOffsetInMs(int64_t time_ms) {
223 int time_sec = (time_ms >= 0 && time_ms <= kMaxEpochTimeInMs)
224 ? static_cast<int>(time_ms / 1000)
225 : static_cast<int>(EquivalentTime(time_ms) / 1000);
objects.cc     [all...]
  /hardware/invensense/libsensors_iio/software/core/mpl/
motion_no_motion.h 22 inv_error_t inv_set_no_motion_time(long time_ms);
mag_disturb.h 25 inv_error_t inv_set_magnetic_disturbance(int time_ms);
shake.h 84 void inv_set_shake_time_min_ms(long time_ms);
85 void inv_set_shake_time_max_ms(long time_ms);
  /system/extras/tests/bionic/libc/common/
bench_stdio.c 71 double time_ms = now_ms(); \
73 time_ms = now_ms() - time_ms; \
74 double bandwidth = sizeof(buffer)*1000./1024./time_ms; \
75 printf("bench %-30s %8.2f ms (%.1f KB/s) \n", #op, time_ms, bandwidth ); \
  /development/ndk/platforms/android-8/samples/bitmap-plasma/src/com/example/plasma/
Plasma.java 46 private static native void renderPlasma(Bitmap bitmap, long time_ms);
  /external/chromium/chrome/browser/ui/cocoa/
status_bubble_mac.h 100 void StartTimer(int64 time_ms);
  /gdk/samples/bitmap-plasma-llvm/src/com/example/plasma/llvm/
Plasma.java 81 private static native int nativeRenderPlasma(Bitmap bitmap, long time_ms, byte[] script, int scriptLength, boolean useLLVM);
  /gdk/samples/bitmap-plasma-llvm/jni/
plasma.cpp 404 jobject bitmap, jlong time_ms, jbyteArray scriptRef, jint length, jboolean use_llvm)
490 native_function(info.width, info.height, info.stride, time_ms, palette, pixels, angle_sin_tab);
501 fill_plasma(info.width, info.height, info.stride, time_ms, palette, pixels, angle_sin_tab);
  /development/ndk/platforms/android-8/samples/bitmap-plasma/jni/
plasma.c 364 JNIEXPORT void JNICALL Java_com_example_plasma_PlasmaView_renderPlasma(JNIEnv * env, jobject obj, jobject bitmap, jlong time_ms)
395 fill_plasma(&info, pixels, time_ms );
  /development/ndk/platforms/android-9/samples/native-plasma/jni/
plasma.c 400 int64_t time_ms = (((int64_t)t.tv_sec)*1000000000LL + t.tv_nsec)/1000000; local
403 fill_plasma(&buffer, time_ms);
  /cts/suite/pts/hostTests/browser/browserlauncher/assets/octane/
mandreel.js     [all...]

Completed in 928 milliseconds