HomeSort by relevance Sort by last modified time
    Searched refs:ms (Results 1 - 25 of 295) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Index/Inputs/
t2.c 9 struct MyStruct *ms; local
10 ms->field_var = 10;
t1.c 24 struct MyStruct ms; local
25 ms.field_var = 10;
  /frameworks/base/core/java/android/os/
SystemClock.java 105 * @param ms to sleep before returning, in milliseconds of uptime.
107 public static void sleep(long ms)
110 long duration = ms;
119 duration = start + ms - uptimeMillis();
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnTextureCoords.cpp 58 float ms = 3.0f * classification.d2 + t1; local
61 float mtMinusMs = mt - ms;
62 result.klmCoordinates[0] = FloatPoint3D(ls * ms,
64 ms * ms * ms);
65 result.klmCoordinates[1] = FloatPoint3D(OneThird * (3.0f * ls * ms - ls * mt - lt * ms),
67 ms * ms * (ms - mt))
83 float ms = classification.d2 + t1; local
    [all...]
  /external/valgrind/main/drd/tests/
rwlock_race.c 20 static void sleep_ms(const int ms)
22 struct timespec delay = { ms / 1000, (ms % 1000) * 1000 * 1000 };
hold_lock.c 14 static void delay_ms(const int ms)
18 assert(ms >= 0);
19 ts.tv_sec = ms / 1000;
20 ts.tv_nsec = (ms % 1000) * 1000 * 1000;
40 fprintf(stderr, "Usage: %s [-i <interval time in ms>].\n", argv[0]);
  /dalvik/tests/030-bad-finalizer/src/
BadFinalizer.java 7 public static void snooze(int ms) {
9 Thread.sleep(ms);
  /external/qemu/distrib/sdl-1.2.12/src/timer/riscos/
SDL_systimer.c 84 void SDL_Delay (Uint32 ms)
118 if ( elapsed >= ms ) {
121 ms -= elapsed;
162 Uint32 ms; local
164 ms = SDL_alarm_callback(SDL_alarm_interval);
165 if ( ms != SDL_alarm_interval )
167 if ( ms )
169 SDL_alarm_interval = ROUND_RESOLUTION(ms);
  /external/webkit/Source/WebCore/html/
DateComponents.h 113 bool setMillisecondsSinceEpochForDate(double ms);
115 bool setMillisecondsSinceEpochForDateTime(double ms);
117 bool setMillisecondsSinceEpochForDateTimeLocal(double ms);
119 bool setMillisecondsSinceEpochForMonth(double ms);
121 bool setMillisecondsSinceEpochForWeek(double ms);
124 bool setMillisecondsSinceMidnight(double ms);
162 bool setMillisecondsSinceEpochForDateInternal(double ms);
163 void setMillisecondsSinceMidnightInternal(double ms);
  /external/chromium/chrome/browser/resources/ntp4/
tile_page.css 33 -webkit-transition-duration: 200ms;
39 -webkit-transition: left 200ms, top 200ms;
  /external/qemu/distrib/sdl-1.2.12/src/timer/macos/
SDL_systimer.c 68 void SDL_Delay(Uint32 ms)
72 stop = SDL_GetTicks() + ms;
93 UnsignedWide ms;
95 Microseconds (&ms);
97 return ( ms.lo / 1000 );
100 void SDL_Delay(Uint32 ms)
108 stop = microsecs.lo + (ms * 1000);
146 Uint32 ms; local
150 ms = SDL_alarm_callback(SDL_alarm_interval);
151 if ( ms ) {
    [all...]
SDL_MPWtimer.c 71 void SDL_Delay(Uint32 ms)
76 end_ms = SDL_GetTicks() + ms;
82 Delay(ms/MS_PER_TICK, &unused);
112 Uint32 ms; local
116 ms = SDL_alarm_callback(SDL_alarm_interval);
117 if ( ms ) {
118 SDL_alarm_interval = ROUND_RESOLUTION(ms);
  /external/qemu/distrib/sdl-1.2.12/src/timer/unix/
SDL_systimer.c 88 void SDL_Delay (Uint32 ms)
92 tv.tv_sec = ms/1000;
93 tv.tv_usec = (ms%1000)*1000;
107 elapsed.tv_sec = ms/1000;
108 elapsed.tv_nsec = (ms%1000)*1000000;
124 if ( elapsed >= ms ) {
127 ms -= elapsed;
128 tv.tv_sec = ms/1000;
129 tv.tv_usec = (ms%1000)*1000;
141 Uint32 ms; local
    [all...]
  /external/chromium/net/base/
bandwidth_metrics.h 91 double ms = delta.InMillisecondsF(); local
92 if (ms > 0.0) {
93 double kbps = static_cast<double>(bytes_since_last_start_) * 8 / ms;
  /external/qemu/distrib/sdl-1.2.12/src/timer/epoc/
SDL_systimer.cpp 61 void SDL_Delay(Uint32 ms)
64 User::After(TTimeIntervalMicroSeconds32(ms*1000));
73 Uint32 ms; local
  /external/qemu/distrib/sdl-1.2.12/src/timer/beos/
SDL_systimer.c 45 void SDL_Delay(Uint32 ms)
47 snooze(ms*1000);
  /external/qemu/distrib/sdl-1.2.12/src/timer/dc/
SDL_systimer.c 35 jif = ms * HZ /1000
36 ms = jif * 1000/HZ
50 void SDL_Delay(Uint32 ms)
52 thd_sleep(ms);
  /frameworks/base/media/libdrm/mobile1/src/objmng/
drm_time.c 32 void DRM_time_sleep(uint32_t ms)
34 usleep(ms * 1000);
  /sdk/monkeyrunner/src/com/android/monkeyrunner/recorder/actions/
WaitAction.java 40 long ms = (long) (1000.0f * howLongSeconds); local
41 Thread.sleep(ms);
  /frameworks/base/core/tests/coretests/src/android/os/storage/
AsecTests.java 60 IMountService ms = getMs(); local
61 String[] containers = ms.getSecureContainerList();
65 ms.destroySecureContainer(containers[i], true);
71 IMountService ms = getMs(); local
72 String[] containers = ms.getSecureContainerList();
87 IMountService ms = getMs(); local
88 return ms.createSecureContainer(fullId, size, "fat", key, android.os.Process.myUid());
95 IMountService ms = getMs(); local
96 return ms.mountSecureContainer(fullId, key, android.os.Process.myUid());
104 IMountService ms = getMs() local
112 IMountService ms = getMs(); local
120 IMountService ms = getMs(); local
128 IMountService ms = getMs(); local
239 IMountService ms = getMs(); local
250 IMountService ms = getMs(); local
272 IMountService ms = getMs(); local
342 IMountService ms = getMs(); local
540 IMountService ms = getMs(); local
586 IMountService ms = getMs(); local
    [all...]
  /device/samsung/crespo/sec_mm/sec_omx/sec_osal/
SEC_OSAL_Thread.h 42 void SEC_OSAL_SleepMillisec(OMX_U32 ms);
  /frameworks/base/media/libdrm/mobile1/include/objmng/
drm_time.h 61 * \param ms suspended time by millisecond
63 void DRM_time_sleep(uint32_t ms);
  /external/qemu/distrib/sdl-1.2.12/src/timer/amigaos/
SDL_systimer.c 85 void SDL_Delay (Uint32 ms)
87 // Do a busy wait if time is less than 50ms
89 if(ms<50)
94 ms*=(CLOCKS_PER_SEC/1000);
96 to_wait+=ms;
102 Delay(ms/20);
143 void SDL_Delay (Uint32 ms)
145 // Do a busy wait if time is less than 50ms
147 if(ms<50)
152 to_wait[1]+=ms*1000/MY_CLOCKS_PER_SEC
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/timer/
SDL_timer.c 106 Uint32 now, ms; local
115 ms = t->interval - SDL_TIMESLICE;
117 if ( (int)(now - t->last_alarm) > (int)ms ) {
131 ms = timer.cb(timer.interval, timer.param);
135 /* FIXME: what if ms was changed? */
138 if ( ms != t->interval ) {
139 if ( ms ) {
140 t->interval = ROUND_RESOLUTION(ms);
236 static Uint32 SDLCALL callback_wrapper(Uint32 ms, void *param)
239 return (*func)(ms);
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
DateMath.cpp 178 static inline double msToDays(double ms)
180 return floor(ms / msPerDay);
183 int msToYear(double ms)
185 int approxYear = static_cast<int>(floor(ms / (msPerDay * 365.2425)) + 1970);
187 if (msFromApproxYearTo1970 > ms)
189 if (msFromApproxYearTo1970 + msPerDay * daysInYear(approxYear) <= ms)
194 int dayInYear(double ms, int year)
196 return static_cast<int>(msToDays(ms) - daysFrom1970ToYear(year));
199 static inline double msToMilliseconds(double ms)
201 double result = fmod(ms, msPerDay)
1010 double ms = parseDateFromNullTerminatedCharacters(dateString, haveTZ, offset); local
1114 double ms = timeToMS(t.hour, t.minute, t.second, milliSeconds); local
1156 double ms = WTF::parseDateFromNullTerminatedCharacters(dateString, haveTZ, offset); local
    [all...]

Completed in 494 milliseconds

1 2 3 4 5 6 7 8 91011>>