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

1 2 3 4 5

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mmix/
swym-op.d 8 4: ff840def trip 132,13,239
12 14: ff170c43 trip 23,12,67
13 18: ff175678 trip 23,86,120
swym-op-r.d 10 4: ff840def trip 132,13,239
14 14: ff170c43 trip 23,12,67
15 18: ff175678 trip 23,86,120
swym-opreg1.d 23 40: ff0b1621 trip 11,22,33
26 4c: ff12d687 trip 18,214,135
29 58: fffeff01 trip 254,255,1
reloc8-r.d 15 c: ff000000 trip 0,0,0
reloc8.d 13 c: ff000000 trip 0,0,0
zerop-1.d 17 8: ff000000 trip 0,0,0
  /art/compiler/optimizing/
induction_var_range.cc 212 HInductionVarAnalysis::InductionInfo* trip = nullptr; local
213 if (!HasInductionInfo(context, instruction, &loop, &info, &trip)) {
233 *min_val = SimplifyMin(GetVal(info, trip, in_body, /* is_min */ true));
234 *max_val = SimplifyMax(GetVal(info, trip, in_body, /* is_min */ false), chase_hint);
235 *needs_finite_test = NeedsTripCount(info, &stride_value) && IsUnsafeTripCount(trip);
239 *min_val = SimplifyMin(GetVal(info, trip, in_body, /* is_min */ true));
363 // Update loop's trip-count information.
369 HInductionVarAnalysis::InductionInfo *trip = local
371 if (trip != nullptr && !IsUnsafeTripCount(trip)) {
384 HInductionVarAnalysis::InductionInfo* trip = nullptr; local
408 HInductionVarAnalysis::InductionInfo *trip = local
983 HInductionVarAnalysis::InductionInfo* trip = nullptr; local
    [all...]
induction_var_range.h 164 * Checks if header logic of a loop terminates. Sets trip-count tc if known.
180 * Generates the trip count expression for the given loop. Code is generated in given block
181 * and graph. The expression is guarded by a taken test if needed. Returns the trip count
209 /*out*/ HInductionVarAnalysis::InductionInfo** trip) const;
214 bool IsBodyTripCount(HInductionVarAnalysis::InductionInfo* trip) const;
215 bool IsUnsafeTripCount(HInductionVarAnalysis::InductionInfo* trip) const;
216 bool IsWellBehavedTripCount(HInductionVarAnalysis::InductionInfo* trip) const;
219 HInductionVarAnalysis::InductionInfo* trip,
223 HInductionVarAnalysis::InductionInfo* trip,
227 HInductionVarAnalysis::InductionInfo* trip,
    [all...]
  /libcore/ojluni/src/main/java/java/util/
PrimitiveIterator.java 127 Tripwire.trip(getClass(), "{0} calling PrimitiveIterator.OfInt.nextInt()");
149 Tripwire.trip(getClass(), "{0} calling PrimitiveIterator.OfInt.forEachRemainingInt(action::accept)");
201 Tripwire.trip(getClass(), "{0} calling PrimitiveIterator.OfLong.nextLong()");
223 Tripwire.trip(getClass(), "{0} calling PrimitiveIterator.OfLong.forEachRemainingLong(action::accept)");
274 Tripwire.trip(getClass(), "{0} calling PrimitiveIterator.OfDouble.nextLong()");
297 Tripwire.trip(getClass(), "{0} calling PrimitiveIterator.OfDouble.forEachRemainingDouble(action::accept)");
Tripwire.java 43 * Tripwire.trip(getClass(), "{0} calling PrimitiveIterator.OfInt.nextInt()");
66 static void trip(Class<?> trippingClass, String msg) { method in class:Tripwire
Spliterator.java 674 Tripwire.trip(getClass(),
697 Tripwire.trip(getClass(),
    [all...]
  /external/libchrome/base/strings/
sys_string_conversions_unittest.cc 174 std::wstring trip = SysNativeMBToWide(SysWideToNativeMB(wide)); local
175 EXPECT_EQ(wide.size(), trip.size());
176 EXPECT_EQ(wide, trip);
182 std::wstring trip = SysNativeMBToWide(WideToUTF8(wide)); local
183 EXPECT_EQ(wide.size(), trip.size());
184 EXPECT_EQ(wide, trip);
189 std::wstring trip = UTF8ToWide(SysWideToNativeMB(wide)); local
190 EXPECT_EQ(wide.size(), trip.size());
191 EXPECT_EQ(wide, trip);
  /libcore/ojluni/src/main/java/java/util/stream/
TerminalOp.java 83 Tripwire.trip(getClass(), "{0} triggering TerminalOp.evaluateParallel serial default");
Tripwire.java 43 * Tripwire.trip(getClass(), "{0} calling Sink.OfInt.accept(Integer)");
66 static void trip(Class<?> trippingClass, String msg) { method in class:Tripwire
Sink.java 197 Tripwire.trip(getClass(), "{0} calling Sink.OfInt.accept(Integer)");
214 Tripwire.trip(getClass(), "{0} calling Sink.OfLong.accept(Long)");
231 Tripwire.trip(getClass(), "{0} calling Sink.OfDouble.accept(Double)");
Node.java 266 java.util.stream.Tripwire.trip(getClass(), "{0} calling Node.OfPrimitive.asArray");
331 Tripwire.trip(getClass(), "{0} calling Node.OfInt.forEachRemaining(Consumer)");
347 Tripwire.trip(getClass(), "{0} calling Node.OfInt.copyInto(Integer[], int)");
404 Tripwire.trip(getClass(), "{0} calling Node.OfLong.forEachRemaining(Consumer)");
420 Tripwire.trip(getClass(), "{0} calling Node.OfInt.copyInto(Long[], int)");
477 Tripwire.trip(getClass(), "{0} calling Node.OfLong.forEachRemaining(Consumer)");
495 Tripwire.trip(getClass(), "{0} calling Node.OfDouble.copyInto(Double[], int)");
  /libcore/ojluni/src/main/java/java/util/concurrent/
CyclicBarrier.java 159 private final Condition trip = lock.newCondition(); field in class:CyclicBarrier
175 * Updates state on barrier trip and wakes up everyone.
180 trip.signalAll();
193 trip.signalAll();
235 trip.await();
237 nanos = trip.awaitNanos(nanos);
267 * Creates a new {@code CyclicBarrier} that will trip when the
286 * Creates a new {@code CyclicBarrier} that will trip when the
299 * Returns the number of parties required to trip this barrier.
301 * @return the number of parties required to trip this barrie
    [all...]
  /external/curl/docs/cmdline-opts/
proxy-anyauth.d 7 the given HTTP proxy. This might cause an extra request/response round-trip.
anyauth.d 9 network round-trip. This is used instead of setting a specific authentication
  /external/drrickorang/LoopbackApp/
PrivacyPolicy.md 6 Loopback app needs the Record Audio permission in order to measure round-trip audio latency.
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
CodeMangler.java 330 void trip(boolean trip) { method in class:CodeMangler.State
331 if (!tripped & trip) {
339 State push(int lc, String line, boolean trip) {
344 ret.emit = this.emit & trip;
345 ret.tripped = trip;
451 state.trip(true);
536 state.trip(eval);
    [all...]
  /external/walt/docs/
AudioLatency.md 35 TODO: Is the round trip latency expected to be Recording latency + Playback latency + one buffer length?
51 #### Published round trip measurements
52 Superpowered Inc. maintains an open source app for measuring round trip audio latency -
55 * [Audio round trip measurements published by Android group](https://source.android.com/devices/audio/latency_measurements.html#measurements)
56 * [Audio round trip measurements published by Superpowered Inc.](http://superpowered.com/latency)
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-cris/
gotplt1.d 12 # we make a round-trip to the PLT in the executable if it's
  /compatibility/cdd/5_multimedia/
5_10_professional-audio.md 11 * [C-1-2] MUST have the continuous round-trip audio latency, as defined in
77 * [C-2-1] MUST have the continuous round-trip audio latency to be 20
84 * The continuous round-trip audio latency SHOULD be 10 milliseconds
91 * [C-3-2] MUST have a continuous round-trip audio latency of 20
93 * The continuous round-trip audio latency SHOULD be 10 milliseconds
5_6_audio-latency.md 31 * **continuous round-trip latency**. The sum of continuous input latency plus
69 * [SR] Continuous round-trip latency of 50 milliseconds or less

Completed in 520 milliseconds

1 2 3 4 5