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

1 2 3 4 5 6

  /external/proguard/src/proguard/gui/splash/
ConstantTiming.java 24 * This Timing is constant over time.
28 public class ConstantTiming implements Timing
30 private final double timing; field in class:ConstantTiming
43 * @param timing the constant value of the timing.
45 public ConstantTiming(double timing)
47 this.timing = timing;
51 // Implementation for Timing.
55 return timing;
    [all...]
LinearDouble.java 24 * This VariableDouble varies linearly with respect to its Timing.
32 private final Timing timing; field in class:LinearDouble
37 * @param fromValue the value that corresponds to a timing of 0.
38 * @param toValue the value that corresponds to a timing of 1.
39 * @param timing the applied timing.
41 public LinearDouble(double fromValue, double toValue, Timing timing)
45 this.timing = timing
    [all...]
LinearInt.java 24 * This VariableColor varies linearly with respect to its Timing.
32 private final Timing timing; field in class:LinearInt
37 * @param fromValue the value that corresponds to a timing of 0.
38 * @param toValue the value that corresponds to a timing of 1.
39 * @param timing the applied timing.
41 public LinearInt(int fromValue, int toValue, Timing timing)
45 this.timing = timing
    [all...]
SmoothTiming.java 24 * This Timing ramps up smoothly from 0 to 1 in a given time interval.
28 public class SmoothTiming implements Timing
36 * @param fromTime the time at which the timing starts ramping up from 0.
37 * @param toTime the time at which the timing stops ramping up at 1.
46 // Implementation for Timing.
61 double timing = (double) (time - fromTime) / (double) (toTime - fromTime); local
64 return timing * timing * (3.0 - 2.0 * timing);
TypeWriterString.java 25 * Timing, as if it is being written on a typewriter. A cursor at the end
33 private final Timing timing; field in class:TypeWriterString
42 * @param timing the applied timing.
44 public TypeWriterString(String string, Timing timing)
47 this.timing = timing;
55 double t = timing.getTiming(time)
    [all...]
LinearColor.java 26 * This VariableColor varies linearly with respect to its Timing.
34 private final Timing timing; field in class:LinearColor
42 * @param fromValue the value that corresponds to a timing of 0.
43 * @param toValue the value that corresponds to a timing of 1.
44 * @param timing the applied timing.
46 public LinearColor(Color fromValue, Color toValue, Timing timing)
50 this.timing = timing
    [all...]
  /art/test/023-many-interfaces/src/
Main.java 3 boolean timing = (args.length >= 1) && args[0].equals("--timing");
4 ManyInterfaces.run(timing);
  /external/webrtc/webrtc/modules/video_coding/
timing_unittest.cc 19 #include "webrtc/modules/video_coding/timing.h"
29 VCMTiming timing(&clock);
35 timing.Reset();
37 timing.UpdateCurrentDelay(timeStamp);
39 timing.Reset();
41 timing.IncomingTimestamp(timeStamp, clock.TimeInMilliseconds());
43 timing.SetJitterDelay(jitterDelayMs);
44 timing.UpdateCurrentDelay(timeStamp);
45 timing.set_render_delay(0);
46 waitTime = timing.MaxWaitingTime
    [all...]
receiver.h 18 #include "webrtc/modules/video_coding/timing.h"
30 VCMReceiver(VCMTiming* timing, Clock* clock, EventFactory* event_factory);
36 VCMReceiver(VCMTiming* timing,
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiLogger.java 112 Pair<Long, Integer> timing = cache.get(logMessage); local
113 if (shouldLogNow(timing, curTime)) {
114 String log = buildMessage(logMessage, timing);
123 private static String buildMessage(String message, @Nullable Pair<Long, Integer> timing) {
125 .append("[").append(timing == null ? 1 : timing.second).append("]:")
131 Pair<Long, Integer> timing = cache.get(message); local
132 if (timing != null) {
133 cache.put(message, new Pair<>(timing.first, timing.second + 1))
    [all...]
  /art/test/053-wait-some/src/
Main.java 27 boolean timing = (args.length >= 1) && args[0].equals("--timing");
28 doit(timing);
31 public static void doit(boolean timing) {
57 boolean showTime = timing;
59 if (! timing) {
  /art/test/133-static-invoke-super/src/
Main.java 25 boolean timing = (args.length >= 1) && args[0].equals("--timing");
26 run(timing);
39 static public void run(boolean timing) {
53 System.out.println("Timing is acceptable.");
56 timing = true;
58 if (timing) {
  /external/webrtc/talk/media/base/
rtpdataengine.h 37 #include "webrtc/base/timing.h"
54 void SetTiming(rtc::Timing* timing) {
55 timing_.reset(timing);
60 rtc::scoped_ptr<rtc::Timing> timing_;
87 // Timing* Used for the RtpClock
88 explicit RtpDataMediaChannel(rtc::Timing* timing);
89 // Sets Timing == NULL, so you'll need to call set_timer() before
94 void set_timing(rtc::Timing* timing)
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
Timer.java 21 private boolean timing = false; field in class:Timer
30 timing = true;
36 if (timing) {
38 timing = false;
96 // Timing on Java is very tricky, especially when you count in garbage collection. This is a simple strategy for now, we might improve later.
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
Timer.java 20 private boolean timing = false; field in class:Timer
29 timing = true;
35 if (timing) {
37 timing = false;
95 // Timing on Java is very tricky, especially when you count in garbage collection. This is a simple strategy for now, we might improve later.
  /art/test/028-array-write/src/
Main.java 22 static boolean timing = false; field in class:Main
28 if (! timing) {
80 if ((args.length >= 1) && args[0].equals("--timing")) {
81 timing = true;
  /external/autotest/scheduler/shard/
simple_heartbeat_client.py 102 timing, packet = self.get_heartbeat_packet(
104 print 'Time to perform heartbeat %s' % timing
105 timing, response = self.deserialize_heartbeat(packet)
106 print 'Time to deserialize hearbeat %s' % timing
  /external/chromium-trace/catapult/telemetry/telemetry/internal/browser/
network_quiescence.js 23 // Set the Resource Timing interface functions that will be used below
59 * This method uses the Resource Timing interface, which is described at
60 * http://www.w3.org/TR/resource-timing/. It determines whether the time
86 // objects are all in milliseconds since performance.timing.navigationStart,
88 var timing = real_performance.timing;
89 var loadTime = timing.loadEventEnd - timing.navigationStart;
92 // If there have been no resource timing entries, or the last entry was
  /hardware/intel/img/hwcomposer/merrifield/common/observers/
MultiDisplayObserver.cpp 60 status_t MultiDisplayCallback::setHdmiTiming(const MDSHdmiTiming& timing)
62 mDispObserver->setHdmiTiming(timing);
311 status_t MultiDisplayObserver::setHdmiTiming(const MDSHdmiTiming& timing)
314 mode.hdisplay = timing.width;
315 mode.vdisplay = timing.height;
316 mode.vrefresh = timing.refresh;
317 mode.flags = timing.flags;
318 ITRACE("timing to set: %dx%d@%dHz", timing.width, timing.height, timing.refresh)
    [all...]
MultiDisplayObserver.h 52 status_t setHdmiTiming(const MDSHdmiTiming& timing);
87 status_t setHdmiTiming(const MDSHdmiTiming& timing);
107 // indicate external devices's timing is set
  /frameworks/rs/perf-test-scripts/
timing 209 adb shell cat /sdcard/rsTimes/${TEST_NAMES[$testId]}_DATA.txt > timing.tmp
217 AVG=`cat timing.tmp | awk '{sum+=$2}END{printf "%.2f",sum/NR}'`
218 STDCOEF=`cat timing.tmp | awk '{sum+=$2;sos+=$2*$2}END{printf "%.2f",sqrt((sos-sum*sum/NR)/NR)/(sum/NR)*100}'`
234 echo "fit f(x) 'timing.tmp' using 1:2 via a, b" >> plot.tmp
236 echo "plot 'timing.tmp' with linespoints ls 1 title 'Data', f(x) ls 2 title string" >> plot.tmp
238 echo "plot 'timing.tmp' with linespoints ls 1 title 'Data'" >> plot.tmp
269 adb shell cat /sdcard/rsTimes/${TEST_NAMES[$testId]}_DATA.txt > timing.tmp
276 AVG=`cat timing.tmp | awk '{sum+=$2}END{printf "%.2f",sum/NR}'`
277 STDCOEF=`cat timing.tmp | awk '{sum+=$2;sos+=$2*$2}END{printf "%.2f",sqrt((sos-sum*sum/NR)/NR)/(sum/NR)*100}'`
293 echo "fit f(x) 'timing.tmp' using 1:2 via a, b" >> plot.tm
    [all...]
  /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) {
  /frameworks/rs/tests/java_api/RsTest/src/com/android/rs/test/
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...]
  /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/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...]

Completed in 365 milliseconds

1 2 3 4 5 6