Searched refs:timing (Results 1 - 25 of 58) sorted by relevance

123

/external/proguard/src/proguard/gui/splash/
H A DConstantTiming.java30 private final double timing; field in class:ConstantTiming
43 * @param timing the constant value of the timing.
45 public ConstantTiming(double timing) argument
47 this.timing = timing;
55 return timing;
H A DLinearDouble.java32 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) argument
45 this.timing = timing;
53 return fromValue + timing.getTiming(time) * (toValue - fromValue);
H A DLinearInt.java32 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) argument
45 this.timing = timing;
53 return (int) (fromValue + timing.getTiming(time) * (toValue - fromValue));
H A DSmoothTiming.java36 * @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.
61 double timing = (double) (time - fromTime) / (double) (toTime - fromTime);
64 return timing * timing * (3.0 - 2.0 * timing);
H A DTypeWriterString.java33 private final Timing timing; field in class:TypeWriterString
42 * @param timing the applied timing.
44 public TypeWriterString(String string, Timing timing) argument
47 this.timing = timing;
55 double t = timing.getTiming(time);
H A DLinearColor.java34 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) argument
50 this.timing = timing;
58 double t = timing.getTiming(time);
/external/webrtc/webrtc/modules/video_coding/
H A Dtiming_unittest.cc19 #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
[all...]
H A Dreceiver.h18 #include "webrtc/modules/video_coding/timing.h"
30 VCMReceiver(VCMTiming* timing, Clock* clock, EventFactory* event_factory);
36 VCMReceiver(VCMTiming* timing,
H A Dreceiver.cc30 VCMReceiver::VCMReceiver(VCMTiming* timing, argument
33 : VCMReceiver(timing,
39 VCMReceiver::VCMReceiver(VCMTiming* timing, argument
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.
250 // only an estimate based on frames' timestamps and current timing stat
[all...]
H A Dgeneric_decoder.cc20 VCMDecodedFrameCallback::VCMDecodedFrameCallback(VCMTiming* timing, argument
25 _timing(timing),
H A Dgeneric_decoder.h18 #include "webrtc/modules/video_coding/timing.h"
35 VCMDecodedFrameCallback(VCMTiming* timing, Clock* clock);
/external/chromium-trace/catapult/telemetry/telemetry/internal/browser/
H A Dnetwork_quiescence.js60 * 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
/external/webrtc/talk/media/base/
H A Drtpdataengine.h37 #include "webrtc/base/timing.h"
54 void SetTiming(rtc::Timing* timing) { argument
55 timing_.reset(timing);
88 explicit RtpDataMediaChannel(rtc::Timing* timing);
94 void set_timing(rtc::Timing* timing) { argument
95 timing_ = timing;
123 void Construct(rtc::Timing* timing);
H A Drtpdataengine.cc38 #include "webrtc/base/timing.h"
81 RtpDataMediaChannel::RtpDataMediaChannel(rtc::Timing* timing) { argument
82 Construct(timing);
89 void RtpDataMediaChannel::Construct(rtc::Timing* timing) { argument
92 timing_ = timing;
/external/autotest/scheduler/shard/
H A Dsimple_heartbeat_client.py102 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/icu/android_icu4j/src/main/tests/android/icu/dev/util/
H A DTimer.java19 private boolean timing = false; field in class:Timer
28 timing = true;
34 if (timing) {
36 timing = false;
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DTimer.java18 private boolean timing = false; field in class:Timer
27 timing = true;
33 if (timing) {
35 timing = false;
/external/speex/libspeex/
H A Djitter.c84 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) argument
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[po
335 update_timings(JitterBuffer *jitter, spx_int32_t timing) argument
[all...]
/external/libxml2/
H A Dxmllint.c184 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
1887 if ((timing) && (!repeat)) {
1897 if ((timing) && (!repeat)) {
1902 if ((timing)
[all...]
H A DtestSAX.c64 static int timing = 0; variable
70 * Internal timing routines to remove the necessity to have unix-specific
103 * startTimer: call where you want to start timing
112 * endTimer: call where you want to stop timing and to print out a
113 * message about the timing performed; format is a printf
172 * We don't have a gettimeofday or time.h, so we just don't do timing
185 * We cannot do anything because we don't have a timing function
1153 else if ((!strcmp(argv[i], "-timing")) ||
1154 (!strcmp(argv[i], "--timing"))) {
1156 timing
[all...]
/external/mesa3d/docs/OLD/
H A DMESA_trace.spec40 and back is unaffected except for timing.
89 additional information added to the trace (statistics, profiling/timing,
321 application, except for timing, possible print I/O. TRACE_ERRORS_BIT_MESA
/external/gemmlowp/test/
H A Dbenchmark.cc124 const float timing = static_cast<float>(endtime - starttime); local
126 if (timing >= min_accurate_duration) {
127 time_per_iter = timing / iters_at_a_time;
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/
H A DHistory.md2 * [Deprecated invalid timing inputs](https://github.com/web-animations/web-animations-next/pull/437) as they will soon throw [TypeErrors](https://github.com/web-animations/web-animations-next/pull/426) in native browsers.
64 * Make AnimationEffectTiming (returned by AnimationEffect.timing) attributes mutable
/external/iputils/
H A Dping_common.c45 /* timing */
46 int timing; /* flag to do timing */ variable
285 fprintf(stderr, "ping: bad timing interval\n");
883 if (timing && cc >= 8+sizeof(struct timeval)) {
953 if (timing) {
1036 if (nreceived && timing) {
1077 if (nreceived && timing) {
/external/fonttools/Lib/fontTools/
H A Dmerge.py851 def __init__(self, verbose=False, xml=False, timing=False):
854 self.timing = timing
859 for v in ['verbose', 'xml', 'timing']:
871 if not self.timing:

Completed in 1035 milliseconds

123