HomeSort by relevance Sort by last modified time
    Searched full:msec (Results 1 - 25 of 590) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/002-sleep/
expected.txt 1 Sleeping 1000 msec...
  /external/iproute2/man/man8/
ip-ntable.8 28 .IR MSEC " ] ["
30 .IR MSEC " ] ["
32 .IR MSEC " ] ["
34 .IR MSEC " ] ["
36 .IR MSEC " ] ["
46 .IR MSEC " ] ["
48 .IR MSEC " ] ["
52 .IR MSEC " ]"
  /external/syslinux/com32/lib/sys/
sleep.c 9 unsigned int msleep(unsigned int msec)
13 while (times(NULL) - start < msec)
  /art/test/002-sleep/src/
Main.java 9 System.out.println("Sleeping " + millis + " msec...");
19 System.out.println("Actually slept about " + elapsed + " msec...");
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
GestureStrokeRecognitionParams.java 41 public final int mStaticTimeThresholdAfterFastTyping; // msec
45 public final int mDynamicThresholdDecayDuration; // msec
47 public final int mDynamicTimeThresholdFrom; // msec
48 public final int mDynamicTimeThresholdTo; // msec
55 public final int mRecognitionMinimumTime; // msec
64 mStaticTimeThresholdAfterFastTyping = 350; // msec
66 mDynamicThresholdDecayDuration = 450; // msec
67 mDynamicTimeThresholdFrom = 300; // msec
68 mDynamicTimeThresholdTo = 20; // msec
73 mRecognitionMinimumTime = 100; // msec
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
P2pBroadcastReceiverTest.java 70 * @param msec timeout value.
75 public synchronized WifiP2pDevice waitDeviceFound(String targetAddr, long msec)
78 Timeout t = new Timeout(msec);
97 * @param msec timeout value
102 public synchronized WifiP2pInfo waitConnectionNotice(long msec) throws InterruptedException {
103 Timeout t = new Timeout(msec);
117 * @param msec
121 public synchronized boolean waitPeerConnected(String targetAddr, long msec)
124 Timeout t = new Timeout(msec);
144 * @param msec
    [all...]
ListenerTest.java 61 * @param msec timeout.
65 public boolean check(ListenerArgument arg, long msec) throws InterruptedException {
68 return check(argList, msec);
76 * @param msec timeout.
80 public synchronized boolean check(List<ListenerArgument> argList, long msec)
102 waitCallback(msec);
160 * @param msec
162 private synchronized void waitCallback(long msec) throws InterruptedException {
163 Timeout t = new Timeout(msec);
Timeout.java 28 * @param msec
30 public Timeout(long msec) {
31 mExpiredTime = System.currentTimeMillis() + msec;
  /frameworks/base/graphics/java/android/graphics/
Interpolator.java 69 * @param msec The time (in mililiseconds) for this key frame. Based on the
73 public void setKeyFrame(int index, int msec, float[] values) {
74 setKeyFrame(index, msec, values, null);
82 * @param msec The time (in mililiseconds) for this key frame. Based on the
87 public void setKeyFrame(int index, int msec, float[] values, float[] blend) {
97 nativeSetKeyFrame(native_instance, index, msec, values, blend);
118 * Calls timeToValues(msec, values) with the msec set to now (by calling
126 * Given a millisecond time value (msec), return the interpolated values and
131 * @param msec The time (in milliseconds) used to sample into th
    [all...]
  /frameworks/native/services/sensorservice/
SensorRegistrationInfo.h 33 mHour = mMin = mSec = INT8_MIN;
54 mSec = static_cast<int8_t>(timeinfo->tm_sec);
60 info.mSec == INT8_MIN);
68 << std::setw(2) << static_cast<int>(mSec)
88 int8_t mHour, mMin, mSec;
  /frameworks/wilhelm/src/itf/
IRecord.cpp 69 static SLresult IRecord_SetDurationLimit(SLRecordItf self, SLmillisecond msec)
75 if (thiz->mDurationLimit != msec) {
76 thiz->mDurationLimit = msec;
179 static SLresult IRecord_SetMarkerPosition(SLRecordItf self, SLmillisecond mSec)
183 if (SL_TIME_UNKNOWN == mSec) {
189 if (thiz->mMarkerPosition != mSec) {
190 thiz->mMarkerPosition = mSec;
255 static SLresult IRecord_SetPositionUpdatePeriod(SLRecordItf self, SLmillisecond mSec)
259 if (0 == mSec) {
264 if (thiz->mPositionUpdatePeriod != mSec) {
    [all...]
  /external/vboot_reference/tests/
vboot_api_devmode_tests.c 33 uint16_t msec; member in struct:__anon43278
231 VBDEBUG((" VbExKeyboardRead() - returning %d at %d msec\n",
237 VBDEBUG((" VbExKeyboardRead() - returning %d at %d msec\n",
242 void VbExSleepMs(uint32_t msec) {
243 current_ticks += (uint64_t)msec * TICKS_PER_MSEC;
245 VBDEBUG(("VbExSleepMs(%d) -> %d\n", msec, current_time));
252 VbError_t VbExBeep(uint32_t msec, uint32_t frequency) {
253 VBDEBUG(("VbExBeep(%d, %d) at %d msec\n", msec, frequency, current_time));
256 msec == expected_event[current_event].msec &
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/include/drivers/
delay_timer.h 26 void mdelay(uint32_t msec);
  /external/fio/examples/
latency-profile.fio 13 # Set max acceptable latency to 500msec
  /frameworks/base/core/jni/android/graphics/
Interpolator.cpp 24 static void Interpolator_setKeyFrame(JNIEnv* env, jobject clazz, jlong interpHandle, jint index, jint msec, jfloatArray valueArray, jfloatArray blendArray)
37 interp->setKeyFrame(index, msec, scalars, blend);
50 static jint Interpolator_timeToValues(JNIEnv* env, jobject clazz, jlong interpHandle, jint msec, jfloatArray valueArray)
56 result = interp->timeToValues(msec, (SkScalar*)values);
  /art/test/133-static-invoke-super/src/
Main.java 59 System.out.printf("basis time: %.3g msec\n", basisMsec);
60 System.out.printf("test1: %.3g msec per iteration\n", msec1);
  /device/linaro/bootloader/arm-trusted-firmware/drivers/delay_timer/
delay_timer.c 49 void mdelay(uint32_t msec)
51 udelay(msec*1000);
  /external/skia/gm/
SkAnimTimer.h 72 * automatically, so that repeated calls to msec() or secs() will always return the
88 SkMSec msec() const { function in class:SkAnimTimer
89 const double msec = (fCurrTimeNanos - fBaseTimeNanos) * 1e-6; local
90 SkASSERT(SK_MSecMax >= msec);
91 return static_cast<SkMSec>(msec);
  /external/skqp/gm/
SkAnimTimer.h 67 * automatically, so that repeated calls to msec() or secs() will always return the
83 SkMSec msec() const { function in class:SkAnimTimer
84 const double msec = (fCurrTimeNanos - fBaseTimeNanos) * 1e-6; local
85 SkASSERT(SK_MSecMax >= msec);
86 return static_cast<SkMSec>(msec);
  /external/vboot_reference/firmware/lib/
vboot_audio.c 48 static uint64_t VbMsecToTicks(uint16_t msec) {
49 return ticks_per_msec * msec;
141 this_msecs = hdr->notes[i].msec ;
184 notebuf[hdr->count].msec = this_msecs;
260 uint16_t msec = 0; local
267 msec = audio->music_notes[audio->next_note].msec;
268 audio->play_until += VbMsecToTicks(msec);
283 } else if (freq && msec) {
284 VbExBeep(msec, freq)
    [all...]
  /tools/test/connectivity/acts/tests/google/ble/conn_oriented_chan/
BleCoc2ConnTest.py 203 """Test LE CoC data throughput with 10msec CI and 60bytes buffer size.
205 Test data throughput of 2 L2CAP CoC insecured connections with 20msec connection interval
212 3. Set the connection interval to 20 msec and buffer size to 60 bytes.
217 6. Set the connection interval to 20 msec and buffer size to 60 bytes.
248 """Test LE CoC data throughput with 10msec CI and 80bytes buffer size.
250 Test data throughput of 2 L2CAP CoC insecured connections with 20msec connection interval
257 3. Set the connection interval to 20 msec and buffer size to 80 bytes.
262 6. Set the connection interval to 20 msec and buffer size to 80 bytes.
292 """Test LE CoC data throughput with 10msec CI and 120bytes buffer size.
294 Test data throughput of 2 L2CAP CoC insecured connections with 20msec connection interva
    [all...]
  /external/autotest/client/site_tests/video_WebRtcMediaRecorder/
mediarecorder_test_utils.js 10 console.log('Waiting for ', duration.toString(), 'msec');
  /external/vboot_reference/firmware/lib/include/
vboot_audio_private.h 15 uint16_t msec; member in struct:VbDevMusicNote
  /hardware/qcom/msm8960/original-kernel-headers/linux/
msm_q6vdec.h 149 int timestamp_lo; /* lower 32 bits timestamp, in msec */
150 int timestamp_hi; /* higher 32 bits timestamp, in msec */
151 int cal_timestamp_lo; /* lower 32 bits cal timestamp, in msec */
152 int cal_timestamp_hi; /* higher 32 bits cal timestamp, in msec */
  /hardware/qcom/msm8996/original-kernel-headers/linux/
msm_q6vdec.h 149 int timestamp_lo; /* lower 32 bits timestamp, in msec */
150 int timestamp_hi; /* higher 32 bits timestamp, in msec */
151 int cal_timestamp_lo; /* lower 32 bits cal timestamp, in msec */
152 int cal_timestamp_hi; /* higher 32 bits cal timestamp, in msec */

Completed in 1289 milliseconds

1 2 3 4 5 6 7 8 91011>>