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

123

/external/deqp/framework/common/
H A DtcuInterval.hpp23 * \brief Interval arithmetic and floating point precisions.
57 class Interval class in namespace:tcu
61 Interval (void) function in class:tcu::Interval
66 // Intentionally not explicit. Conversion from double to Interval is common
68 Interval (double val) function in class:tcu::Interval
73 Interval (const Interval& a, const Interval& b) function in class:tcu::Interval
82 Interval nan (void) const { return m_hasNaN ? TCU_NAN : Interval(); }
148 Interval (bool hasNaN_, double lo_, double hi_) function in class:tcu::Interval
[all...]
H A DtcuInterval.cpp21 * \brief Interval arithmetic.
35 Interval applyMonotone (DoubleFunc1& func, const Interval& arg0)
37 Interval ret;
43 Interval applyMonotone (DoubleIntervalFunc1& func, const Interval& arg0)
45 return Interval(func(arg0.lo()), func(arg0.hi()));
48 Interval applyMonotone (DoubleFunc2& func, const Interval& arg0, const Interval
[all...]
H A DtcuFloatFormat.hpp61 Interval roundOut (const Interval& x, bool roundUnderOverflow) const;
64 Interval convert (const Interval& x) const;
67 std::string intervalToHex (const Interval& interval) const;
74 Interval clampValue (double d) const;
H A DtcuFloatFormat.cpp38 Interval chooseInterval(YesNoMaybe choice, const Interval& no, const Interval& yes)
48 return Interval();
155 Interval FloatFormat::clampValue (double d) const
168 return Interval(d);
173 Interval FloatFormat::convert (const Interval& x) const
175 Interval ret;
176 Interval tm
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DInterval.java31 public class Interval { class
34 static Interval[] cache = new Interval[INTERVAL_POOL_MAX_VALUE+1];
44 public Interval(int a, int b) { this.a=a; this.b=b; } method in class:Interval
46 /** Interval objects are used readonly so share all with the
49 * Interval object with a..a in it. On Java.g, 218623 IntervalSets
52 public static Interval create(int a, int b) {
53 //return new Interval(a,b);
56 return new Interval(a,b);
59 cache[a] = new Interval(
[all...]
H A DIntervalSet.java56 protected List<Interval> intervals;
60 intervals = new ArrayList<Interval>(2); // most sets are 1 or 2 elements
63 public IntervalSet(List<Interval> intervals) {
96 add(Interval.create(a,b));
100 protected void add(Interval addition) {
108 Interval r = (Interval) iter.next();
114 Interval bigger = addition.union(r);
119 Interval next = (Interval) ite
[all...]
/external/llvm/include/llvm/Analysis/
H A DInterval.h1 //===- llvm/Analysis/Interval.h - Interval Class Declaration ----*- C++ -*-===//
10 // This file contains the declaration of the Interval class, which
33 /// Interval Class - An Interval is a set of nodes defined such that every node
37 class Interval { class in namespace:llvm
47 inline Interval(BasicBlock *Header) : HeaderNode(Header) { function in class:llvm::Interval
63 /// Predecessors - List of BasicBlocks that have this Interval's header block
77 /// isSuccessor - find out if a basic block is a successor of this Interval
90 inline bool operator==(const Interval
[all...]
H A DIntervalPartition.h1 //===- IntervalPartition.h - Interval partition Calculation -----*- C++ -*-===//
26 #include "llvm/Analysis/Interval.h"
41 typedef std::map<BasicBlock*, Interval*> IntervalMapTy;
44 typedef std::vector<Interval*> IntervalListTy;
45 Interval *RootInterval;
46 std::vector<Interval*> Intervals;
69 inline Interval *getRootInterval() { return RootInterval; }
78 inline Interval *getBlockInterval(BasicBlock *BB) {
89 const std::vector<Interval*> &getIntervals() const { return Intervals; }
99 void addIntervalToPartition(Interval *
[all...]
H A DIntervalIterator.h1 //===- IntervalIterator.h - Interval Iterator Declaration -------*- C++ -*-===//
15 // 2. An IntervalPartition& object, composed of Interval nodes.
50 inline BasicBlock *getNodeHeader(Interval *I) { return I->getHeaderNode(); }
59 inline Interval *getSourceGraphNode(IntervalPartition *IP, BasicBlock *BB) {
68 inline void addNodeToInterval(Interval *Int, BasicBlock *BB) {
76 // an IntervalPartition source graph (Interval case), all of the member
79 inline void addNodeToInterval(Interval *Int, Interval *I) {
91 std::vector<std::pair<Interval*, typename Interval
[all...]
/external/chromium_org/cc/scheduler/
H A Ddelay_based_time_source_unittest.cc15 base::TimeDelta Interval() { function in namespace:cc::__anon2791
25 FakeDelayBasedTimeSource::Create(Interval(), task_runner.get());
43 FakeDelayBasedTimeSource::Create(Interval(), task_runner.get());
57 FakeDelayBasedTimeSource::Create(Interval(), task_runner.get());
71 FakeDelayBasedTimeSource::Create(Interval(), task_runner.get());
88 FakeDelayBasedTimeSource::Create(Interval(), task_runner.get());
96 timer->SetNow(timer->Now() + Interval());
109 FakeDelayBasedTimeSource::Create(Interval(), task_runner.get());
117 timer->SetNow(timer->Now() + Interval() +
132 FakeDelayBasedTimeSource::Create(Interval(), task_runne
[all...]
/external/llvm/lib/Support/
H A DLockFileManager.cpp183 unsigned long Interval = 1; local
185 struct timespec Interval;
186 Interval.tv_sec = 0;
187 Interval.tv_nsec = 1000000;
198 Sleep(Interval);
200 nanosleep(&Interval, nullptr);
228 Interval = 1;
230 Interval.tv_sec = 0;
231 Interval.tv_nsec = 1000000;
246 Interval *
[all...]
/external/chromium_org/media/filters/
H A Dwsola_internals.h20 typedef std::pair<int, int> Interval; typedef in namespace:media::internal
54 Interval exclude_interval,
66 Interval exclude_interval,
77 Interval exclude_interval);
H A Dwsola_internals.cc22 bool InInterval(int n, Interval q) {
109 Interval exclude_interval,
188 Interval exclude_interval,
222 Interval exclude_interval) {
/external/openfst/src/include/fst/
H A Dinterval-set.h39 struct Interval { struct in class:fst::IntervalSet
43 Interval() : begin(-1), end(-1) {} function in struct:fst::IntervalSet::Interval
45 Interval(T b, T e) : begin(b), end(e) {} function in struct:fst::IntervalSet::Interval
47 bool operator<(const Interval &i) const {
51 bool operator==(const Interval &i) const {
55 bool operator!=(const Interval &i) const {
80 vector<Interval> *Intervals() { return &intervals_; }
82 const vector<Interval> *Intervals() const { return &intervals_; }
98 const vector<Interval> *intervals = iset.Intervals();
99 for (typename vector<Interval>
365 typedef typename IntervalSet<T>::Interval Interval; typedef
[all...]
H A Dstate-reachable.h50 typedef typename IntervalSet<I>::Interval Interval; typedef in class:fst::IntervalReachVisitor
73 vector<Interval> *intervals = (*isets_)[s].Intervals();
87 intervals->push_back(Interval(index, index + 1));
89 intervals->push_back(Interval(index_, index_ + 1));
114 vector<Interval> *intervals = (*isets_)[s].Intervals();
146 typedef typename IntervalSet<I>::Interval Interval; typedef in class:fst::StateReachable
189 vector< IntervalSet<I> > isets_; // Interval sets per state
/external/llvm/lib/Analysis/
H A DInterval.cpp1 //===- Interval.cpp - Interval class code ---------------------------------===//
10 // This file contains the definition of the Interval class, which represents a
15 #include "llvm/Analysis/Interval.h"
24 // Interval Implementation
29 bool Interval::isLoop() const {
40 void Interval::print(raw_ostream &OS) const {
42 << "Interval Contents:\n";
49 OS << "Interval Predecessors:\n";
54 OS << "Interval Successor
[all...]
H A DIntervalPartition.cpp1 //===- IntervalPartition.cpp - Interval Partition module code -------------===//
20 "Interval Partition Construction", true, true)
44 void IntervalPartition::addIntervalToPartition(Interval *I) {
48 for (Interval::node_iterator It = I->Nodes.begin(), End = I->Nodes.end();
53 // updatePredecessors - Interval generation only sets the successor fields of
58 void IntervalPartition::updatePredecessors(Interval *Int) {
60 for (Interval::succ_iterator I = Int->Successors.begin(),
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_util.cpp91 Interval::Interval(const Interval& that) : head(NULL), tail(NULL) function in class:nv50_ir::Interval
96 Interval::~Interval()
102 Interval::clear()
112 Interval::extend(int a, int b)
156 bool Interval::contains(int pos) const
164 bool Interval::overlaps(const Interval
[all...]
H A Dnv50_ir_util.h418 class Interval
421 Interval() : head(0), tail(0) { }
422 Interval(const Interval&);
423 ~Interval();
426 void insert(const Interval&);
427 void unify(Interval&); // clears source interval
433 bool overlaps(const Interval&) const;
571 void Interval::checkTail() const
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_util.cpp91 Interval::Interval(const Interval& that) : head(NULL), tail(NULL) function in class:nv50_ir::Interval
96 Interval::~Interval()
102 Interval::clear()
112 Interval::extend(int a, int b)
156 bool Interval::contains(int pos) const
164 bool Interval::overlaps(const Interval
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/api/messaging/timer/
H A Dpopup.js20 var timer = new chrome.Interval();
40 var timer = new chrome.Interval();
/external/chromium_org/components/cloud_devices/common/
H A Dprinter_description.h313 struct Interval { struct in namespace:cloud_devices::printer
314 Interval();
315 Interval(int32 start, int32 end);
316 Interval(int32 start);
318 bool operator==(const Interval& other) const;
319 bool operator!=(const Interval& other) const { return !(*this == other); }
325 typedef std::vector<Interval> PageRange;
/external/deqp/modules/glshared/
H A DglsBuiltinPrecisionTests.cpp83 using tcu::Interval;
198 * The type Traits<T>::IVal is the approximation of T: it is `Interval` for
286 typedef Interval IVal;
288 static Interval doMakeIVal (const T& value)
291 // hence Interval can represent their ranges without problems.
292 return Interval(double(value));
295 static Interval doUnion (const Interval& a, const Interval& b)
300 static bool doContains (const Interval
1717 innerExtrema(const EvalContext&, const Interval&, const Interval&) const argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathFunctions.cpp52 class Interval { class in namespace:blink::XPath
56 Interval();
57 Interval(int value);
58 Interval(int min, int max);
70 Interval args;
265 inline Interval::Interval() function in class:blink::XPath::Interval
270 inline Interval::Interval(int value) function in class:blink::XPath::Interval
275 inline Interval function in class:blink::XPath::Interval
[all...]
/external/llvm/lib/Target/R600/
H A DSIInsertWaits.cpp230 RegInterval Interval = getRegInterval(Op); local
231 for (unsigned j = Interval.first; j < Interval.second; ++j) {
328 RegInterval Interval = getRegInterval(Op); local
329 for (unsigned j = Interval.first; j < Interval.second; ++j) {

Completed in 2111 milliseconds

123