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

1234

/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,
/external/r8/src/main/java/com/android/tools/r8/
H A DReadKeepFile.java20 final Timing timing = new Timing("ReadKeepFile"); field in class:ReadKeepFile
25 timing.begin("Reading " + fileName);
27 timing.end();
46 timing.report();
H A DReadProguardMap.java19 final Timing timing = new Timing("ReadProguardMap"); field in class:ReadProguardMap
24 timing.begin("Reading " + fileName);
26 timing.end();
43 timing.report();
H A DR8.java65 private final Timing timing = new Timing("R8"); field in class:R8
102 timing.begin("Create IR");
105 timing, application, appInfo, options, printer, graphLense);
108 timing.end();
113 timing.begin("DebugStripper");
118 timing.end();
153 Timing timing = new Timing("disassemble");
155 DexApplication application = new ApplicationReader(app, options, timing).read(executor);
204 new ApplicationReader(inputApp, options, timing).read(executorService);
209 timing
[all...]
H A DD8.java162 Timing timing = new Timing("DX timer");
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);
192 optimize( DexApplication application, AppInfo appInfo, InternalOptions options, Timing timing, ExecutorService executor) argument
/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);
/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.java21 private boolean timing = false; field in class:Timer
30 timing = true;
36 if (timing) {
38 timing = false;
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DTimer.java20 private boolean timing = false; field in class:Timer
29 timing = true;
35 if (timing) {
37 timing = false;
/external/r8/src/main/java/com/android/tools/r8/naming/
H A DMethodNameMinifier.java102 public Map<DexMethod, DexString> computeRenaming(Timing timing) { argument
105 timing.begin("Phase 1");
110 timing.end();
112 timing.begin("Phase 2");
116 timing.end();
119 timing.begin("Phase 3");
121 assignNamesToInterfaceMethods(frontierMap, renaming, timing);
122 timing.end();
124 timing.begin("Phase 4");
126 timing
182 assignNamesToInterfaceMethods(Map<DexType, DexType> frontierMap, Map<DexMethod, DexString> renaming, Timing timing) argument
[all...]
H A DMinifier.java37 public NamingLens run(Timing timing) { argument
42 timing.begin("MinifyClasses");
48 timing.end();
49 timing.begin("MinifyMethods");
52 .computeRenaming(timing);
53 timing.end();
54 timing.begin("MinifyFields");
57 timing.end();
/external/r8/src/main/java/com/android/tools/r8/graph/
H A DDexApplication.java44 public final Timing timing; field in class:DexApplication
60 Timing timing) {
69 this.timing = timing;
311 private final Timing timing; field in class:DexApplication.Builder
316 public Builder(DexItemFactory dexItemFactory, Timing timing) { argument
319 this.timing = timing;
329 timing = application.timing;
52 DexApplication( ClassNameMapper proguardMap, ProgramClassCollection programClasses, ClasspathClassCollection classpathClasses, LibraryClassCollection libraryClasses, ImmutableSet<DexType> mainDexList, DexItemFactory dexItemFactory, DexString highestSortingString, Timing timing) argument
[all...]
/external/r8/src/test/java/com/android/tools/r8/
H A DR8UnreachableCodeTest.java35 Timing timing = new Timing("R8UnreachableCodeTest");
37 new ApplicationReader(input, new InternalOptions(), timing).read(executorService);
/external/r8/src/main/java/com/android/tools/r8/ir/conversion/
H A DIRConverter.java55 private final Timing timing; field in class:IRConverter
74 Timing timing,
85 this.timing = timing != null ? timing : new Timing("internal");
138 Timing timing,
143 this(timing, application, appInfo, null, options, printer, true, false);
150 Timing timing,
156 this(timing, application, appInfo, graphLense, options, printer, true, true);
267 timing
73 IRConverter( Timing timing, DexApplication application, AppInfo appInfo, GraphLense graphLense, InternalOptions options, CfgPrinter printer, boolean enableDesugaring, boolean enableWholeProgramOptimizations) argument
137 IRConverter( Timing timing, DexApplication application, AppInfo appInfo, InternalOptions options, CfgPrinter printer) argument
149 IRConverter( Timing timing, DexApplication application, AppInfoWithSubtyping appInfo, InternalOptions options, CfgPrinter printer, GraphLense graphLense) argument
[all...]
/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/r8/src/test/java/com/android/tools/r8/bisect/
H A DBisectTest.java42 Timing timing = new Timing("bisect-test");
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/
H A DR8GMSCoreLookupTest.java39 Timing timing = new Timing("ReadGMSCore");
40 program = new ApplicationReader(app, new InternalOptions(), timing).read(executorService);
/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...]

Completed in 2011 milliseconds

1234