HomeSort by relevance Sort by last modified time
    Searched full:msec (Results 1 - 25 of 553) 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 31 .IR MSEC " | "
33 .IR MSEC " | "
35 .IR MSEC " | " "gc_stale MSEC " " | "
37 .IR MSEC " | " "queue LEN " " | "
43 .IR MSEC " | "
45 .IR MSEC " | " "proxy_queue LEN " " | "
47 .IR MSEC " }"
  /art/test/002-sleep/src/
Main.java 9 System.out.println("Sleeping " + millis + " msec...");
19 System.out.println("Actually slept about " + elapsed + " msec...");
  /external/skia/src/animator/
SkDisplayScreenplay.cpp 15 SK_MEMBER(time, MSec)
SkAnimateSet.cpp 18 SK_MEMBER(begin, MSec),
19 SK_MEMBER(dur, 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 30 int32_t mHour, mMin, mSec;
34 mHour = mMin = mSec = INT32_MIN;
41 info.mSec == INT32_MIN);
  /frameworks/wilhelm/src/itf/
IRecord.c 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:__anon26002
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...]
  /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);
  /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...]
  /dalvik/dx/tests/131-perf/
run 78 msec=`expr $nsec / 1000000`
79 echo "Classes/msec $TEST_SIZE $msec"
  /external/avahi/avahi-common/
timeval.c 86 struct timeval *avahi_elapse_time(struct timeval *tv, unsigned msec, unsigned jitter) {
91 if (msec)
92 avahi_timeval_add(tv, (AvahiUsec) msec*1000);
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDriver.h 56 virtual status_t seekTo(int msec);
57 virtual status_t getCurrentPosition(int *msec);
58 virtual status_t getDuration(int *msec);
  /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 */
  /frameworks/base/libs/common_time/
utils.h 33 // Set a timeout which should occur msec milliseconds from now.
35 void setTimeout(int msec);

Completed in 6136 milliseconds

1 2 3 4 5 6 7 8 91011>>