HomeSort by relevance Sort by last modified time
    Searched refs:time_ms (Results 1 - 10 of 10) 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...]
  /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 80 private static native int nativeRenderPlasma(Bitmap bitmap, long time_ms, byte[] script, int scriptLength, boolean useLLVM);
  /gdk/samples/bitmap-plasma-llvm/jni/
plasmaLLVM.cpp 370 jobject bitmap, jlong time_ms, jbyteArray scriptRef, jint length, jboolean use_llvm)
442 native_function(info.width, info.height, info.stride, time_ms, palette, pixels, angle_sin_tab);
448 fill_plasma(&info, pixels, time_ms );
  /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);

Completed in 1632 milliseconds