Searched refs:ms (Results 126 - 150 of 526) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/platform/
H A DDateComponents.cpp506 bool DateComponents::setMillisecondsSinceEpochForDateInternal(double ms) argument
508 m_year = msToYear(ms);
509 int yearDay = dayInYear(ms, m_year);
515 bool DateComponents::setMillisecondsSinceEpochForDate(double ms) argument
518 if (!std::isfinite(ms))
520 if (!setMillisecondsSinceEpochForDateInternal(round(ms)))
528 bool DateComponents::setMillisecondsSinceEpochForDateTime(double ms) argument
531 if (!std::isfinite(ms))
533 ms = round(ms);
543 setMillisecondsSinceEpochForDateTimeLocal(double ms) argument
552 setMillisecondsSinceEpochForMonth(double ms) argument
565 setMillisecondsSinceMidnight(double ms) argument
604 setMillisecondsSinceEpochForWeek(double ms) argument
[all...]
/external/chromium_org/chrome/browser/resources/ntp4/
H A Dnav_dot.css27 -webkit-transition: -webkit-margin-end 250ms, max-width 250ms, opacity 250ms;
51 -webkit-transition: border-color 200ms;
60 -webkit-transition: color 200ms;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
H A Dxorg_output.c94 modesettingPtr ms = modesettingPTR(output->scrn); local
99 drm_connector = drmModeGetConnector(ms->fd, priv->drm_connector->connector_id);
197 modesettingPtr ms = modesettingPTR(output->scrn); local
198 CustomizerPtr cust = ms->cust;
255 modesettingPtr ms = modesettingPTR(pScrn); local
264 res = drmModeGetResources(ms->fd);
271 drm_connector = drmModeGetConnector(ms->fd, res->connectors[c]);
279 prop = drmModeGetProperty(ms->fd, drm_connector->props[p]);
310 drm_encoder = drmModeGetEncoder(ms->fd, drm_connector->encoders[0]);
320 priv->fd = ms
[all...]
/external/mesa3d/src/gallium/state_trackers/xorg/
H A Dxorg_output.c94 modesettingPtr ms = modesettingPTR(output->scrn); local
99 drm_connector = drmModeGetConnector(ms->fd, priv->drm_connector->connector_id);
197 modesettingPtr ms = modesettingPTR(output->scrn); local
198 CustomizerPtr cust = ms->cust;
255 modesettingPtr ms = modesettingPTR(pScrn); local
264 res = drmModeGetResources(ms->fd);
271 drm_connector = drmModeGetConnector(ms->fd, res->connectors[c]);
279 prop = drmModeGetProperty(ms->fd, drm_connector->props[p]);
310 drm_encoder = drmModeGetEncoder(ms->fd, drm_connector->encoders[0]);
320 priv->fd = ms
[all...]
/external/ksoap2/kobjects/org/ksoap2/kobjects/isodate/
H A DIsoDate.java66 int ms = c.get(Calendar.MILLISECOND);
67 buf.append((char) (((int) '0') + (ms / 100)));
68 dd(buf, ms % 100);
117 int ms = 0;
123 ms += (d - '0') * f;
126 c.set(Calendar.MILLISECOND, ms);
/external/lzma/CPP/Windows/
H A DTime.cpp60 Byte ms[] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
96 ms[1] = 29;
99 unsigned s = ms[mon - 1];
152 Byte ms[] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; local
154 ms[1] = 29;
157 numDays += ms[i];
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Dremote_ntp_time_estimator_unittest.cc38 void AdvanceTimeMilliseconds(int64_t ms) { argument
39 local_clock_.AdvanceTimeMilliseconds(ms);
40 remote_clock_.AdvanceTimeMilliseconds(ms);
/external/chromium_org/ui/webui/resources/css/
H A Ddialogs.css8 -webkit-transition: opacity 250ms linear;
55 -webkit-animation-duration: 180ms;
70 -webkit-transition: all 180ms;
71 -webkit-transition-duration: 250ms;
76 -webkit-transition: opacity 500ms;
89 -webkit-transition: opacity 500ms;
H A Dtrash.css32 -webkit-transition: -webkit-transform 150ms;
44 -webkit-transition: -webkit-transform 250ms;
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DSilenceTrackImpl.java22 public SilenceTrackImpl(Track ofType, long ms) { argument
25 long numFrames = getTrackMetaData().getTimescale() * ms / 1000 / 1024;
26 long standZeit = getTrackMetaData().getTimescale() * ms / numFrames / 1000;
/external/qemu/distrib/sdl-1.2.15/src/thread/pthread/
H A DSDL_syscond.c98 int SDL_CondWaitTimeout(SDL_cond *cond, SDL_mutex *mutex, Uint32 ms) argument
111 abstime.tv_sec = delta.tv_sec + (ms/1000);
112 abstime.tv_nsec = (delta.tv_usec + (ms%1000) * 1000) * 1000;
/external/qemu/distrib/sdl-1.2.15/src/thread/riscos/
H A DSDL_syscond.c102 int SDL_CondWaitTimeout(SDL_cond *cond, SDL_mutex *mutex, Uint32 ms) argument
115 abstime.tv_sec = delta.tv_sec + (ms/1000);
116 abstime.tv_nsec = (delta.tv_usec + (ms%1000) * 1000) * 1000;
/external/chromium_org/ui/login/account_picker/
H A Dscreen_account_picker.css7 -webkit-transition: width 180ms ease,
8 height 180ms ease;
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2185-2.js50 var ms = end - start;
51 print("Short " + Math.floor(ms) + "ms");
129 var ms = end - start;
130 print(name + " " + Math.floor(ms) + "ms");
/external/libcxx/test/thread/futures/futures.shared_future/
H A Dwait.pass.cpp43 typedef std::chrono::duration<double, std::milli> ms; typedef
56 assert(t1-t0 < ms(5));
70 assert(t1-t0 < ms(5));
84 assert(t1-t0 < ms(5));
/external/libcxx/test/thread/futures/futures.unique_future/
H A Dwait.pass.cpp43 typedef std::chrono::duration<double, std::milli> ms; typedef
56 assert(t1-t0 < ms(5));
70 assert(t1-t0 < ms(5));
84 assert(t1-t0 < ms(5));
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_timer.h52 extern DECLSPEC void SDLCALL SDL_Delay(Uint32 ms);
70 * The maximum resolution of this timer is 10 ms, which means that if
71 * you request a 16 ms timer, your callback will run approximately 20 ms
73 * a frame update at 30 frames per second (every 33 ms), you might set a
74 * timer for 30 ms:
H A DSDL_mutex.h113 * of 1 ms, and so should be avoided if possible.
115 extern DECLSPEC int SDLCALL SDL_SemWaitTimeout(SDL_sem *sem, Uint32 ms);
160 /** Waits for at most 'ms' milliseconds, and returns 0 if the condition
164 * of 1 ms, and so should be avoided if possible.
166 extern DECLSPEC int SDLCALL SDL_CondWaitTimeout(SDL_cond *cond, SDL_mutex *mutex, Uint32 ms);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DDateMath.cpp160 static double msToDays(double ms) argument
162 return floor(ms / msPerDay);
173 int msToYear(double ms) argument
175 int approxYear = static_cast<int>(floor(ms / (msPerDay * 365.2425)) + 1970);
177 if (msFromApproxYearTo1970 > ms)
179 if (msFromApproxYearTo1970 + msPerDay * daysInYear(approxYear) <= ms)
184 int dayInYear(double ms, int year) argument
186 return static_cast<int>(msToDays(ms) - daysFrom1970ToYear(year));
189 static inline double msToMilliseconds(double ms) argument
191 double result = fmod(ms, msPerDa
381 calculateDSTOffset(double ms, double utcOffset) argument
790 double ms = parseDateFromNullTerminatedCharacters(dateString, haveTZ, offset); local
831 convertToLocalTime(double ms) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_server_mschapv2.c102 struct eap_mschapv2_hdr *ms; local
113 ms_len = sizeof(*ms) + 1 + CHALLENGE_LEN + sm->server_id_len;
123 ms = wpabuf_put(req, sizeof(*ms));
124 ms->op_code = MSCHAPV2_OP_CHALLENGE;
125 ms->mschapv2_id = id;
126 WPA_PUT_BE16(ms->ms_length, ms_len);
145 struct eap_mschapv2_hdr *ms; local
150 ms_len = sizeof(*ms) + 2 + 2 * sizeof(data->auth_response) + 1 + 2 +
161 ms
189 struct eap_mschapv2_hdr *ms; local
[all...]
/external/wpa_supplicant_8/src/eap_server/
H A Deap_server_mschapv2.c102 struct eap_mschapv2_hdr *ms; local
113 ms_len = sizeof(*ms) + 1 + CHALLENGE_LEN + sm->server_id_len;
123 ms = wpabuf_put(req, sizeof(*ms));
124 ms->op_code = MSCHAPV2_OP_CHALLENGE;
125 ms->mschapv2_id = id;
126 WPA_PUT_BE16(ms->ms_length, ms_len);
145 struct eap_mschapv2_hdr *ms; local
150 ms_len = sizeof(*ms) + 2 + 2 * sizeof(data->auth_response) + 1 + 2 +
161 ms
189 struct eap_mschapv2_hdr *ms; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Deap_server_mschapv2.c102 struct eap_mschapv2_hdr *ms; local
113 ms_len = sizeof(*ms) + 1 + CHALLENGE_LEN + sm->server_id_len;
123 ms = wpabuf_put(req, sizeof(*ms));
124 ms->op_code = MSCHAPV2_OP_CHALLENGE;
125 ms->mschapv2_id = id;
126 WPA_PUT_BE16(ms->ms_length, ms_len);
145 struct eap_mschapv2_hdr *ms; local
150 ms_len = sizeof(*ms) + 2 + 2 * sizeof(data->auth_response) + 1 + 2 +
161 ms
189 struct eap_mschapv2_hdr *ms; local
[all...]
/external/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/
H A Dtry_lock_until.pass.cpp29 typedef std::chrono::milliseconds ms; typedef
30 assert(Clock::now() - abs_time < ms(5));
/external/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/
H A Dtry_lock_until.pass.cpp27 typedef std::chrono::milliseconds ms; typedef
28 assert(Clock::now() - abs_time < ms(5));
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-annotate.c71 if (he->ms.sym != NULL) {
72 struct annotation *notes = symbol__annotation(he->ms.sym);
73 if (notes->src == NULL && symbol__alloc_hist(he->ms.sym) < 0)
115 return symbol__tty_annotate(he->ms.sym, he->ms.map, evsel,
130 if (he->ms.sym == NULL || he->ms.map->dso->annotate_warned)
133 notes = symbol__annotation(he->ms.sym);
176 * symbol, free he->ms.sym->src to signal we already

Completed in 6403 milliseconds

1234567891011>>