HomeSort by relevance Sort by last modified time
    Searched full:monotonic (Results 26 - 50 of 458) sorted by null

12 3 4 5 6 7 8 91011>>

  /build/tools/releasetools/
test_rangelib.py 114 self.assertTrue(RangeSet("0-9").monotonic)
115 self.assertTrue(RangeSet("2-9").monotonic)
116 self.assertTrue(RangeSet("2-9 30 31 35").monotonic)
117 self.assertTrue(RangeSet("").monotonic)
118 self.assertTrue(RangeSet("0-4 5-9").monotonic)
119 self.assertFalse(RangeSet("5-9 0-4").monotonic)
120 self.assertFalse(RangeSet("258768-259211 196604").monotonic)
122 self.assertTrue(RangeSet(data=[0, 10]).monotonic)
123 self.assertTrue(RangeSet(data=[0, 10, 15, 20]).monotonic)
124 self.assertTrue(RangeSet(data=[2, 9, 30, 31, 31, 32, 35, 36]).monotonic)
    [all...]
  /external/clang/test/OpenMP/
atomic_codegen.cpp 22 // CHECK: [[SCALAR_VAL:%.+]] = load atomic i32, i32* [[SCALAR_ADDR]] monotonic
30 // CHECK: store atomic i32 [[B_VAL]], i32* [[SCALAR_ADDR]] monotonic
37 // CHECK: [[OLD_VAL:%.+]] = load atomic i32, i32* [[SCALAR_ADDR]] monotonic,
44 // CHECK: [[RES:%.+]] = cmpxchg i32* [[SCALAR_ADDR]], i32 [[OLD_PHI_VAL]], i32 [[NEW_VAL]] monotonic monotonic
57 // CHECK: [[OLD_VAL:%.+]] = load atomic i32, i32* [[SCALAR_ADDR]] monotonic,
64 // CHECK: [[RES:%.+]] = cmpxchg i32* [[SCALAR_ADDR]], i32 [[OLD_PHI_VAL]], i32 [[NEW_VAL]] monotonic monotonic
86 // TERM_DEBUG: load atomic i32, i32* @{{.+}} monotonic, {{.*}}!dbg [[READ_LOC:![0-9]+]]
93 // TERM_DEBUG: store atomic i32 {{%.+}}, i32* @{{.+}} monotonic, {{.*}}!dbg [[WRITE_LOC:![0-9]+]
    [all...]
  /external/llvm/test/Bitcode/
use-list-order2.ll 44 %cmpxchg.0 = cmpxchg i32* %word, i32 0, i32 2 monotonic monotonic
45 %cmpxchg.1 = cmpxchg i32* %word, i32 0, i32 2 acq_rel monotonic
memInstructions.3.2.ll 89 ; CHECK-NEXT: %res2 = load atomic i8, i8* %ptr1 monotonic, align 1
90 %res2 = load atomic i8, i8* %ptr1 monotonic, align 1
101 ; CHECK-NEXT: %res6 = load atomic volatile i8, i8* %ptr1 monotonic, align 1
102 %res6 = load atomic volatile i8, i8* %ptr1 monotonic, align 1
113 ; CHECK-NEXT: %res10 = load atomic i8, i8* %ptr1 singlethread monotonic, align 1
114 %res10 = load atomic i8, i8* %ptr1 singlethread monotonic, align 1
125 ; CHECK-NEXT: %res14 = load atomic volatile i8, i8* %ptr1 singlethread monotonic, align 1
126 %res14 = load atomic volatile i8, i8* %ptr1 singlethread monotonic, align 1
175 ; CHECK-NEXT: store atomic i8 2, i8* %ptr1 monotonic, align 1
176 store atomic i8 2, i8* %ptr1 monotonic, align
    [all...]
  /external/llvm/test/CodeGen/Mips/
micromips-atomic1.ll 14 %0 = atomicrmw add i8* @y, i8 %incr monotonic
23 %pair0 = cmpxchg i8* @y, i8 %oldval, i8 %newval monotonic monotonic
  /external/llvm/test/Transforms/DeadStoreElimination/
atomic.ll 78 ; DSE across monotonic load (allowed as long as the eliminated store isUnordered)
84 %x = load atomic i32, i32* @y monotonic, align 4
89 ; DSE across monotonic store (allowed as long as the eliminated store isUnordered)
95 store atomic i32 42, i32* @y monotonic, align 4
100 ; DSE across monotonic load (forbidden since the eliminated store is atomic)
105 store atomic i32 0, i32* @x monotonic, align 4
106 %x = load atomic i32, i32* @y monotonic, align 4
107 store atomic i32 1, i32* @x monotonic, align 4
111 ; DSE across monotonic store (forbidden since the eliminated store is atomic)
116 store atomic i32 0, i32* @x monotonic, align
    [all...]
  /external/llvm/test/Transforms/LowerAtomic/
atomic-load.ll 6 %j = atomicrmw add i8* %i, i8 42 monotonic
17 %j = atomicrmw nand i8* %i, i8 42 monotonic
29 %j = atomicrmw min i8* %i, i8 42 monotonic
atomic-swap.ll 6 %pair = cmpxchg i8* %i, i8 0, i8 42 monotonic monotonic
23 %j = atomicrmw xchg i8* %i, i8 42 monotonic
  /external/llvm/test/CodeGen/X86/
lock-inst-encoding.ll 10 %1 = atomicrmw add i64* %a, i64 %b monotonic
18 %1 = atomicrmw sub i64* %a, i64 %b monotonic
26 %1 = atomicrmw and i64* %a, i64 %b monotonic
34 %1 = atomicrmw or i64* %a, i64 %b monotonic
42 %1 = atomicrmw xor i64* %a, i64 %b monotonic
2010-10-08-cmpxchg8b.ll 20 %pair = cmpxchg i64* %ptr, i64 0, i64 1 monotonic monotonic
  /system/connectivity/shill/net/
shill_time.h 31 // Timestamp encapsulates a |monotonic| and a |boottime| clock that can be used
34 // format. Note that the monotonic clock does not necessarily advance during
38 Timestamp() : monotonic{} {}
42 : monotonic(in_monotonic),
46 struct timeval monotonic; member in struct:shill::Timestamp
event_history_unittest.cc 87 struct timeval monotonic = {.tv_sec = monotonic_seconds, .tv_usec = 0}; local
89 return Timestamp(monotonic, boottime, wall_clock);
110 EXPECT_EQ(kTime1, GetEvents()->back().monotonic.tv_sec);
116 EXPECT_EQ(kTime2, GetEvents()->back().monotonic.tv_sec);
131 EXPECT_EQ(kTime1, GetEvents()->back().monotonic.tv_sec);
138 EXPECT_EQ(kTime2, GetEvents()->back().monotonic.tv_sec);
153 EXPECT_EQ(kTimeEarly, GetEvents()->front().monotonic.tv_sec);
158 EXPECT_EQ(kTimeEarly, GetEvents()->front().monotonic.tv_sec);
160 EXPECT_EQ(kTimeLate, GetEvents()->back().monotonic.tv_sec);
169 EXPECT_EQ(kTimeLate, GetEvents()->front().monotonic.tv_sec)
    [all...]
  /external/llvm/test/Transforms/LICM/
atomics.ll 22 ; Check that we don't sink/hoist monotonic loads
24 ; use monotonic for spinlock-like constructs.)
30 %val = load atomic i32, i32* %y monotonic, align 4
42 ; Check that we hoist unordered around monotonic.
50 %vala = load atomic i32, i32* %y monotonic, align 4
69 %vala = load atomic i32, i32* %y monotonic, align 4
77 ; CHECK: load atomic i32, i32* %y monotonic
  /external/llvm/test/CodeGen/ARM/
atomic-op.ll 36 %0 = atomicrmw add i32* %val1, i32 %tmp monotonic
45 %1 = atomicrmw sub i32* %val2, i32 30 monotonic
54 %2 = atomicrmw add i32* %val2, i32 1 monotonic
63 %3 = atomicrmw sub i32* %val2, i32 1 monotonic
72 %4 = atomicrmw and i32* %andt, i32 4080 monotonic
81 %5 = atomicrmw or i32* %ort, i32 4080 monotonic
90 %6 = atomicrmw xor i32* %xort, i32 4080 monotonic
99 %7 = atomicrmw min i32* %val2, i32 16 monotonic
109 %8 = atomicrmw min i32* %val2, i32 %neg monotonic
118 %9 = atomicrmw max i32* %val2, i32 1 monotonic
    [all...]
  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/
trace_time.py 41 """ Get a monotonic clock for the Mac platform.
47 Function pointer to monotonic clock for mac platform.
77 """ Get a monotonic clock for linux platforms.
82 Function pointer to monotonic clock for linux platform.
138 """ Get a monotonic clock for windows platforms.
143 Function pointer to monotonic clock for windows platform.
189 """ Get a monotonic clock for the current platform.
194 Function pointer to monotonic clock function for current platform.
213 return monotonic()
215 monotonic = InitializeNowFunction(sys.platform variable
    [all...]
  /external/llvm/test/CodeGen/CPP/
atomic.ll 14 %inst2 = atomicrmw volatile sub i32* %addr, i32 %inc singlethread monotonic
15 ; CHECK: AtomicRMWInst* [[INST:[a-zA-Z0-9_]+]] = new AtomicRMWInst(AtomicRMWInst::Sub, {{.*}}, Monotonic, SingleThread
39 %inst7 = atomicrmw volatile max i32* %addr, i32 %inc singlethread monotonic
40 ; CHECK: AtomicRMWInst* [[INST:[a-zA-Z0-9_]+]] = new AtomicRMWInst(AtomicRMWInst::Max, {{.*}}, Monotonic, SingleThread
49 %inst9 = atomicrmw volatile umax i32* %addr, i32 %inc monotonic
50 ; CHECK: AtomicRMWInst* [[INST:[a-zA-Z0-9_]+]] = new AtomicRMWInst(AtomicRMWInst::UMax, {{.*}}, Monotonic, CrossThread
64 %inst0 = cmpxchg i32* %addr, i32 %desired, i32 %new seq_cst monotonic
65 ; CHECK: AtomicCmpXchgInst* [[INST:[a-zA-Z0-9_]+]] = new AtomicCmpXchgInst({{.*}}, SequentiallyConsistent, Monotonic, CrossThread
76 %inst2 = cmpxchg weak i32* %addr, i32 %desired, i32 %new seq_cst monotonic
77 ; CHECK: AtomicCmpXchgInst* [[INST:[a-zA-Z0-9_]+]] = new AtomicCmpXchgInst({{.*}}, SequentiallyConsistent, Monotonic, CrossThrea
    [all...]
  /external/autotest/client/site_tests/platform_TraceClockMonotonic/
platform_TraceClockMonotonic.py 15 This verifies that the kernel supports monotonic clock timestamps for
21 executable = 'ftrace-clock-monotonic'
30 Verify that the system supports the monotonic trace clock and set up
37 raise error.TestFail('Kernel does not support monotonic clock')
39 # Set up to use the monotonic clock
51 """Cleans and makes ftrace-clock-monotonic.c.
  /external/llvm/test/CodeGen/XCore/
atomic.ll 83 %6 = load atomic i32, i32* bitcast (i64* @pool to i32*) monotonic, align 4
84 store atomic i32 %6, i32* bitcast (i64* @pool to i32*) monotonic, align 4
85 %7 = load atomic i16, i16* bitcast (i64* @pool to i16*) monotonic, align 2
86 store atomic i16 %7, i16* bitcast (i64* @pool to i16*) monotonic, align 2
87 %8 = load atomic i8, i8* bitcast (i64* @pool to i8*) monotonic, align 1
88 store atomic i8 %8, i8* bitcast (i64* @pool to i8*) monotonic, align 1
  /external/libchrome/base/time/
tick_clock.h 32 // assume that NowTicks() is monotonic (but not strictly monotonic).
  /external/llvm/test/Analysis/GlobalsModRef/
atomic-instrs.ll 18 %1 = cmpxchg i32* @X, i32 0, i32 -1 monotonic monotonic
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/pulse/
rtclock.h 30 * Monotonic clock utilities. */
34 /** Return the current monotonic system time in usec, if such a clock
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/pulse/
rtclock.h 29 * Monotonic clock utilities. */
33 /** Return the current monotonic system time in usec, if such a clock
  /art/runtime/base/
time_utils.h 53 // Returns the monotonic time since some unspecified starting point in milliseconds.
56 // Returns the monotonic time since some unspecified starting point in microseconds.
59 // Returns the monotonic time since some unspecified starting point in nanoseconds.
  /external/tlsdate/src/events/
check_continuity.c 39 struct timespec monotonic, real; local
42 if (clock_gettime (CLOCK_MONOTONIC_RAW, &monotonic) < 0)
44 new_delta = real.tv_sec - monotonic.tv_sec;
  /frameworks/base/media/java/android/media/
MediaTimeProvider.java 58 * @param monotonic Whether returned time should be monotonic: that is,
64 public long getCurrentTimeUs(boolean precise, boolean monotonic)

Completed in 1464 milliseconds

12 3 4 5 6 7 8 91011>>