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

1 2 3

  /bionic/libc/unistd/
time.c 53 return tm.tv_sec * CLOCKS_PER_SEC + (tm.tv_nsec * (CLOCKS_PER_SEC/1e9));
  /system/extras/tests/bionic/libc/other/
test_thread_max.c 58 ts.tv_nsec = 0.002*1e9;
  /external/libvpx/nestegg/test/
test.c 112 fprintf(stderr, "media has %u tracks and duration %fs\n", tracks, duration / 1e9);
163 fprintf(stderr, "* t %u pts %f frames %u\n", track, tstamp / 1e9, cnt);
187 fprintf(stderr, "* t %u pts %f frames %u\n", track, tstamp / 1e9, cnt);
211 fprintf(stderr, "* t %u pts %f frames %u\n", track, tstamp / 1e9, cnt);
228 fprintf(stderr, "t %u pts %f frames %u: ", pkt_track, pkt_tstamp / 1e9, pkt_cnt);
  /system/extras/tests/memtest/
fptest.cpp 54 double ds = ((double)t) / 1e9;
83 endTime("scalar mad", 1e9);
122 endTime("neon fma", 1e9);
  /external/guava/src/com/google/common/collect/
ImmutableList.java 157 E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9) {
159 copyIntoArray(e1, e2, e3, e4, e5, e6, e7, e8, e9));
168 E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10) {
170 copyIntoArray(e1, e2, e3, e4, e5, e6, e7, e8, e9, e10));
179 E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10, E e11) {
181 copyIntoArray(e1, e2, e3, e4, e5, e6, e7, e8, e9, e10, e11));
  /external/icu4c/test/perf/perldriver/
Format.pm 95 my @MULT = (1 , 1e3, 1e6, 1e9);
  /external/v8/test/mjsunit/
integer-to-string.js 31 for (var i = -5e9; i < 5e9; i += (1e6 - 1))
string-charcodeat.js 126 assertTrue(isNaN(g().charCodeAt(1e9)), 11 + t);
  /system/core/toolbox/
uptime.c 97 up_time = up_timespec.tv_sec + up_timespec.tv_nsec / 1e9;
  /system/extras/tests/bionic/libc/common/
test_pthread_getcpuclockid.c 60 fprintf(stderr, "thread %08lx: clock_gettime() returned %g nsecs\n", self, ts.tv_sec*1e9 + ts.tv_nsec);
test_pthread_rwlock.c 78 return (double)ts->tv_sec + ts->tv_nsec/1e9;
88 ts.tv_nsec = (long)((delay - ts.tv_sec)*1e9);
test_pthread_mutex.c 79 return (double)ts->tv_sec + ts->tv_nsec/1e9;
89 ts.tv_nsec = (long)((delay - ts.tv_sec)*1e9);
  /sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/internal/repository/
ArchiveTest.java 111 a = new Archive(null, Os.WINDOWS, Arch.ANY, null, (long)18e9, "1234567890ABCDEF");
  /system/extras/tests/sdcard/
stopwatch.cpp 139 SNPRINTF_OR_RETURN(*str, *size, "%f %f\n", double(second) + double(nano) / 1.0e9, mDeltas[i]);
175 mDeltas[i / 2] = double(second) + double(nano) / 1.0e9;
211 double val = double(time.tv_nsec) / 1.0e9 + double(time.tv_sec);
  /development/tools/emulator/system/libqemu/
test_util.c 32 return (double)tm.tv_sec + (double)tm.tv_nsec/1e9;
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/
PERF.awk 40 max = (size != "") ? (size) : (max != "") ? (max) : 5e9; # max size of buffers to watch
  /bionic/libm/src/
e_jnf.c 105 * When Q(k) > 1e9 good for double
113 while(q1<(float)1.0e9) {
e_jn.c 152 * When Q(k) > 1e9 good for double
160 while(q1<1.0e9) {
  /external/blktrace/btt/
globals.h 39 #define BIT_TIME(t) ((double)SECONDS(t) + ((double)NANO_SECONDS(t) / 1.0e9))
46 #define TO_SEC(nanosec) ((double)(nanosec) / 1.0e9)
iostat.c 91 dt = (double)stamp / 1.0e9;
94 dt = (double)(stamp-last_start) / 1.0e9;
  /external/srtp/crypto/test/
cipher_driver.c 234 i, cipher_bits_per_second(c, i, num_trials) / 1e9);
469 cipher_array_bits_per_second(ca, num_cipher, i, num_trials) / 1e9);
  /external/fdlibm/
e_jn.c 156 * When Q(k) > 1e9 good for double
164 while(q1<1.0e9) {
  /frameworks/base/libs/rs/
rsScriptC_Lib.cpp 110 return ((float)(sc->mEnviroment.mLastDtTime - l)) / 1.0e9;
  /frameworks/base/services/tests/servicestests/src/com/android/server/
DropBoxTest.java 370 DropBoxManager.Entry e9 = dropbox.getNextEntry(null, e8.getTimeMillis()); local
371 assertTrue(null == dropbox.getNextEntry(null, e9.getTimeMillis()));
391 assertEquals("DropBoxTest2", e9.getTag());
394 assertEquals(blockSize - overhead, getEntrySize(e9));
405 e9.close();
  /external/qemu/audio/
winaudio.c 299 now/1e9, (now-last_time)/1e9, s->write_index);

Completed in 2683 milliseconds

1 2 3