HomeSort by relevance Sort by last modified time
    Searched refs:timing (Results 26 - 50 of 168) sorted by null

12 3 4 5 6 7

  /external/r8/src/test/java/com/android/tools/r8/
R8UnreachableCodeTest.java 17 import com.android.tools.r8.utils.Timing;
35 Timing timing = new Timing("R8UnreachableCodeTest"); local
37 new ApplicationReader(input, new InternalOptions(), timing).read(executorService);
  /external/r8/src/main/java/com/android/tools/r8/ir/conversion/
IRConverter.java 39 import com.android.tools.r8.utils.Timing;
55 private final Timing timing; field in class:IRConverter
74 Timing timing,
85 this.timing = timing != null ? timing : new Timing("internal");
138 Timing timing
    [all...]
  /system/core/bootstat/
bootstat.cpp 234 // A map from bootloader timing stage to the time that stage took during boot.
271 for (const auto& timing : bootloader_timings) {
272 total_time += timing.second;
273 boot_event_store->AddBootEventWithValue("boottime.bootloader." + timing.first, timing.second);
286 for (const auto& timing : bootloader_timings) {
287 if (timing.first.compare("SW") != 0) {
288 bootloader_time_ms += timing.second;
334 // Subtract the decryption time to normalize the boot cycle timing.
  /art/test/055-enum-performance/src/
Main.java 28 boolean timing = (args.length >= 1) && args[0].equals("--timing");
29 run(timing);
32 static public void run(boolean timing) {
57 System.out.println("Timing is acceptable.");
60 timing = true;
63 if (timing) {
  /external/r8/src/main/java/com/android/tools/r8/
D8.java 19 import com.android.tools.r8.utils.Timing;
162 Timing timing = new Timing("DX timer"); local
163 DexApplication app = new ApplicationReader(inputApp, options, timing).read(executor);
165 app = optimize(app, appInfo, options, timing, executor);
194 Timing timing, ExecutorService executor)
198 IRConverter converter = new IRConverter(timing, application, appInfo, options, printer);
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
UT_reduce.java 50 private static class timing { class in class:UT_reduce
51 timing(long myJavaStart, long myJavaEnd, long myRsStart, method in class:UT_reduce.timing
68 timing(long myInputCells) { method in class:UT_reduce.timing
108 return (new timing(myJavaStart, myJavaEnd, myRsStart,
113 return (new timing(myInputCells)).string();
195 private <T extends Number> boolean result(String testName, final timing t,
205 private boolean result(String testName, final timing t,
226 private boolean result(String testName, final timing t,
247 private boolean result(String testName, final timing t,
252 private boolean result(String testName, final timing t, Int2 javaResult, Int2 rsResult)
    [all...]
  /frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
UT_reduce.java 52 private static class timing { class in class:UT_reduce
53 timing(long myJavaStart, long myJavaEnd, long myRsStart, method in class:UT_reduce.timing
70 timing(long myInputCells) { method in class:UT_reduce.timing
110 return (new timing(myJavaStart, myJavaEnd, myRsStart,
115 return (new timing(myInputCells)).string();
197 private <T extends Number> boolean result(String testName, final timing t,
207 private boolean result(String testName, final timing t,
228 private boolean result(String testName, final timing t,
249 private boolean result(String testName, final timing t,
254 private boolean result(String testName, final timing t, Int2 javaResult, Int2 rsResult)
    [all...]
  /external/speex/libspeex/
jitter.c 84 int filled; /**< Number of entries occupied in "timing" and "counts"*/
86 spx_int32_t timing[MAX_TIMINGS]; /**< Sorted list of all timings ("latest" packets first) */ member in struct:TimingBuffer
96 /* Add the timing of a new packet to the TimingBuffer */
97 static void tb_add(struct TimingBuffer *tb, spx_int16_t timing)
101 if (tb->filled >= MAX_TIMINGS && timing >= tb->timing[tb->filled-1])
107 /* Find where the timing info goes in the sorted list */
110 while (pos<tb->filled && timing >= tb->timing[pos])
123 SPEEX_MOVE(&tb->timing[pos+1], &tb->timing[pos], move_size)
    [all...]
  /external/r8/src/test/java/com/android/tools/r8/bisect/
BisectTest.java 18 import com.android.tools.r8.utils.Timing;
42 Timing timing = new Timing("bisect-test"); local
52 DexApplication appGood = new ApplicationReader(inputGood, options, timing).read();
67 DexApplication appBad = new ApplicationReader(inputBad, options, timing).read();
  /external/r8/src/test/java/com/android/tools/r8/internal/
R8GMSCoreLookupTest.java 18 import com.android.tools.r8.utils.Timing;
39 Timing timing = new Timing("ReadGMSCore"); local
40 program = new ApplicationReader(app, new InternalOptions(), timing).read(executorService);
  /hardware/intel/img/hwcomposer/merrifield/common/observers/
MultiDisplayObserver.h 52 status_t setHdmiTiming(const MDSHdmiTiming& timing);
87 status_t setHdmiTiming(const MDSHdmiTiming& timing);
107 // indicate external devices's timing is set
  /external/libxml2/
xmllint.c 184 static int timing = 0; variable
405 * Internal timing routines to remove the necessity to have *
439 * startTimer: call where you want to start timing
448 * endTimer: call where you want to stop timing and to print out a
449 * message about the timing performed; format is a printf
508 * We don't have a gettimeofday or time.h, so we just don't do timing
521 * We cannot do anything because we don't have a timing function
    [all...]
  /external/webrtc/webrtc/modules/video_coding/
generic_decoder.h 18 #include "webrtc/modules/video_coding/timing.h"
35 VCMDecodedFrameCallback(VCMTiming* timing, Clock* clock);
receiver.cc 30 VCMReceiver::VCMReceiver(VCMTiming* timing,
33 : VCMReceiver(timing,
39 VCMReceiver::VCMReceiver(VCMTiming* timing,
46 timing_(timing),
114 // We have a frame - Set timing and render timestamp.
119 // Check render timing.
121 // Assume that render timing errors are due to changes in the video stream.
139 // Timing error => reset timing and flush the jitter buffer.
241 // Initializing timing to the desired delay
    [all...]
generic_decoder.cc 20 VCMDecodedFrameCallback::VCMDecodedFrameCallback(VCMTiming* timing,
25 _timing(timing),
  /external/r8/src/main/java/com/android/tools/r8/dex/
ApplicationReader.java 36 import com.android.tools.r8.utils.Timing;
53 final Timing timing; field in class:ApplicationReader
56 public ApplicationReader(AndroidApp inputApp, InternalOptions options, Timing timing) {
59 this.timing = timing;
74 timing.begin("DexApplication.read");
75 final DexApplication.Builder builder = new DexApplication.Builder(itemFactory, timing);
92 timing.end()
    [all...]
  /frameworks/base/core/tests/coretests/src/android/os/
PerformanceCollectorTest.java 93 Bundle timing = mPerfCollector.stopTiming("timing4"); local
99 verifyTimingBundle(timing, labels);
160 Bundle timing = mPerfCollector.stopTiming("timing8"); local
166 verifyTimingBundle(timing, labels);
247 Bundle timing = mPerfCollector.stopTiming("iteration5"); local
261 verifyTimingBundle(timing, labels);
347 * Verify that snapshotting and timing do not interfere w/ each other,
348 * by staggering calls to snapshot and timing functions.
464 private void verifyTimingBundle(Bundle timing, ArrayList<String> labels) {
465 assertEquals(1, timing.size())
    [all...]
  /external/webrtc/talk/media/base/
rtpdataengine.cc 38 #include "webrtc/base/timing.h"
58 SetTiming(new rtc::Timing());
81 RtpDataMediaChannel::RtpDataMediaChannel(rtc::Timing* timing) {
82 Construct(timing);
89 void RtpDataMediaChannel::Construct(rtc::Timing* timing) {
92 timing_ = timing;
  /prebuilts/go/darwin-x86/src/go/doc/testdata/
benchmark.go 26 // timing and to specify the number of iterations to run.
36 // StartTimer starts timing a test. This function is called automatically
37 // before a benchmark starts, but it can also used to resume timing after
46 // StopTimer stops timing a test. This can be used to pause the timer
139 // to get a reasonable measurement. It prints timing information in this form
164 // Don't grow too fast in case we had timing errors previously.
  /prebuilts/go/linux-x86/src/go/doc/testdata/
benchmark.go 26 // timing and to specify the number of iterations to run.
36 // StartTimer starts timing a test. This function is called automatically
37 // before a benchmark starts, but it can also used to resume timing after
46 // StopTimer stops timing a test. This can be used to pause the timer
139 // to get a reasonable measurement. It prints timing information in this form
164 // Don't grow too fast in case we had timing errors previously.
  /art/test/023-many-interfaces/src/
ManyInterfaces.java 167 /** whether to report timing information */
168 private static boolean timing = false; field in class:ManyInterfaces
175 if (timing) {
186 * @param timing whether to print out timing info
188 public static void run(boolean timing) {
189 ManyInterfaces.timing = timing;
  /frameworks/native/vulkan/libvulkan/
swapchain.cpp 236 android::Vector<TimingInfo> timing; member in struct:vulkan::driver::__anon41557::Swapchain
304 swapchain->timing.clear();
308 if (swapchain.timing.size() < MIN_NUM_FRAMES_AGO) {
313 const size_t num_timings = swapchain.timing.size() - MIN_NUM_FRAMES_AGO + 1;
315 TimingInfo& ti = swapchain.timing.editItemAt(i);
370 if (swapchain.timing.empty()) {
375 size_t last_ready = swapchain.timing.size() - 1;
376 while (!swapchain.timing[last_ready].ready()) {
387 const TimingInfo& ti = swapchain.timing[i];
396 // We don't expect to get the timing info for those old frames
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/hmac/
hmac.go 12 timing side-channels:
92 // Equal compares two MACs for equality without leaking timing information.
  /prebuilts/go/linux-x86/src/crypto/hmac/
hmac.go 12 timing side-channels:
92 // Equal compares two MACs for equality without leaking timing information.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
timeit.py 20 -v/--verbose: print raw timing results; repeat for more digits precision
39 timing. The best thing to do when accurate timing is necessary is to
40 repeat the timing a few times and use the best time. The -r option is
51 use python -O for the older versions to avoid timing SET_LINENO
106 """Class for timing execution speed of small code snippets.
194 timing = self.inner(it, self.timer)
197 return timing
214 processes interfering with your timing accuracy. So the min()
244 When an exception happens during timing, a traceback is printed to
    [all...]

Completed in 592 milliseconds

12 3 4 5 6 7