Searched
full:1000 (Results
351 -
375 of
7621) sorted by null
<<11121314151617181920>>
/cts/suite/audio_quality/test_description/test/ |
test_rms_vma.xml | 20 <!-- prepare sound source id: to be used in output, sine 1000Hz, 20000ms long --> 21 <sound id="sound1" type="sin:100:1000:20000" /> 29 <process method="builtin:rms_mva" input="id:sound1,consti:1000,consti:2000" output="val:rms_$i_$j" />
|
test_io.xml | 20 <!-- prepare sound source id: to be used in output, sine 1000Hz, 1000ms long --> 21 <sound id="sound1" type="sin:10000:1000:1000" preload="1" />
|
/development/samples/ApiDemos/res/anim/ |
object_animator_pvh_kf_interpolated.xml | 18 android:duration="1000" 26 android:value="1000" /> 37 android:value="1000" />
|
/external/conscrypt/src/platform/java/org/conscrypt/ |
PinFailureLogger.java | 27 private static final long LOG_INTERVAL_NANOS = 1000 * 1000 * 1000 * 60 * 60;
|
/external/google-breakpad/src/processor/testdata/ |
module1.out | 6 FUNC 1000 c 0 Function1_1 7 1000 4 44 1 20 STACK WIN 4 1000 c 1 0 0 0 0 0 1 $eip 4 + ^ = $esp $ebp 8 + = $ebp $ebp ^ =
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/srt/ |
SrtParser.java | 56 return hours * 60 * 60 * 1000 + minutes * 60 * 1000 + seconds * 1000 + millies;
|
/external/ppp/pppd/plugins/radius/ |
util.c | 58 tv.tv_sec = (int) msecs / 1000; 59 tv.tv_usec = (msecs % 1000) * 1000;
|
/external/vboot_reference/tests/tpm_lite/ |
tpmtest_timing.c | 35 time = (int) ((after.tv_sec - before.tv_sec) * 1000 + \ 36 (after.tv_usec - before.tv_usec) / 1000); \ 54 TTPM_CHECK(TlclSelfTestFull(), 1000);
|
/packages/apps/Messaging/src/com/android/messaging/util/ |
VersionUtil.java | 51 final int majorBuildNumber = versionCode / 1000; 56 (majorBuildNumber / 1000) % 10, 57 majorBuildNumber % 1000);
|
/sdk/find_java2/src/ |
JavaPath.h | 23 #define JAVA_VERS_TO_INT(major, minor) ((major) * 1000 + (minor))
25 #define JAVA_MAJOR(majorMinor) ((majorMinor) / 1000)
27 #define JAVA_MINOR(majorMinor) ((majorMinor) % 1000)
|
/system/media/audio_effects/include/audio_effects/ |
effect_environmentalreverb.h | 39 REVERB_PARAM_DECAY_HF_RATIO, // in permilles, range 100 to 1000 44 REVERB_PARAM_DIFFUSION, // in permilles, range 0 to 1000 45 REVERB_PARAM_DENSITY, // in permilles, range 0 to 1000
|
/art/runtime/ |
barrier.cc | 75 timeout_ns = time_left % (1000*1000); 76 timeout_ms = time_left / (1000*1000);
|
/art/runtime/base/ |
time_utils.h | 67 return ns / 1000 / 1000; 72 return ms * 1000 * 1000;
|
/art/test/002-sleep/src/ |
Main.java | 3 int millis = 1000;
|
/bionic/libc/bionic/ |
bionic_time_conversions.cpp | 41 ts.tv_nsec = tv.tv_usec * 1000; 46 ts.tv_sec = ms / 1000; 47 ts.tv_nsec = (ms % 1000) * 1000000; 52 tv.tv_usec = ts.tv_nsec / 1000;
|
/cts/suite/audio_quality/test_description/ |
dut_recording_thd.xml | 20 <!-- prepare sound source id: to be used in output, sine 1000Hz, 40000ms long --> 21 <sound id="sound1" type="sin:32000:1000:40000" /> 23 <sound id="sound2" type="sin:1:1000:2" preload="1"/> 35 <process method="script:recording_thd" input="id:host_in_$k,id:dut_in_$k,consti:1000,constf:1.0" output="val:thd_host_$k,val:thd_device_$k" />
|
/development/samples/devbytes/graphics/ImagePixelization/res/values/ |
integers.xml | 17 <integer name="seek_max">1000</integer>
|
/device/moto/shamu/ |
sec_config | 3 16:4294967295:1000
|
/external/chromium-trace/trace-viewer/third_party/Paste/tests/ |
test_profilemiddleware.py | 14 for i in range(1000):
|
/external/chromium-trace/trace-viewer/tracing/tracing/base/units/ |
time.html | 23 return Math.round(a * 1000) < Math.round(b * 1000);
89 return us / 1000;
92 return us === undefined ? undefined : us / 1000;
|
/external/chromium-trace/trace-viewer/tracing/tracing/model/ |
power_series_test.html | 39 var sample1 = series.addPowerSample(0, 1000); 48 series.addPowerSample(0, 1000); 66 series.addPowerSample(0, 1000); 92 var sample1 = series.addPowerSample(0, 1000);
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/ |
p9.cpp | 6 int i2 = f<1000>(0); // expected-error{{ambiguous}}
|
/external/clang/test/Index/ |
annotate-deep-statements.cpp | 1 // RUN: c-index-test -test-annotate-tokens=%s:1:1:1000:1 %s | FileCheck %s
|
/external/compiler-rt/test/msan/ |
strerror_r-non-gnu.c | 13 char buf[1000];
|
/external/deqp/framework/delibs/depool/ |
dePoolMultiSet.c | 53 for (i = 0; i < 1000; i++) 59 deBool inserted = deInBounds32(i, 1000, 5000); 72 deBool inserted = (deInBounds32(i, 1000, 5000) || deInBounds32(i, 10000, 12000)); 82 for (i = 0; i < 1000; i++) 89 DE_TEST_ASSERT(deTestMultiSet_getNumElements(set) == 1000 + 500 + 250); 97 count += deInBounds32(i, 0, 1000) ? 1 : 0; 106 for (i = 0; i < 1000; i++) 127 for (i = 750; i < 1000; i++) 139 count += deInBounds32(i, 750, 1000) ? 3 : 0;
|
Completed in 2096 milliseconds
<<11121314151617181920>>