Searched defs:Interval (Results 1 - 25 of 31) sorted by relevance

12

/external/llvm/include/llvm/Support/
H A DCachePruning.h33 Interval = PruningInterval;
63 unsigned Interval = 0; member in class:llvm::CachePruning
/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...]
/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/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
78 /// isSuccessor - find out if a basic block is a successor of this Interval
92 inline bool operator==(const Interval
[all...]
/external/llvm/lib/Support/
H A DLockFileManager.cpp287 unsigned long Interval = 1; local
289 struct timespec Interval;
290 Interval.tv_sec = 0;
291 Interval.tv_nsec = 1000000;
302 Sleep(Interval);
304 nanosleep(&Interval, nullptr);
321 Interval *= 2;
323 Interval.tv_sec *= 2;
324 Interval.tv_nsec *= 2;
325 if (Interval
[all...]
/external/swiftshader/third_party/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
51 inline Interval(const Interval &I) // copy ctor function in class:llvm::Interval
66 /// Predecessors - List of BasicBlocks that have this Interval'
[all...]
/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 (bool hasNaN_, double lo_, double hi_) function in class:tcu::Interval
76 Interval (const Interval& a, const Interval& b) function in class:tcu::Interval
85 Interval na
[all...]
/external/llvm/include/llvm/LTO/legacy/
H A DThinLTOCodeGenerator.h123 void setCachePruningInterval(int Interval) { argument
124 if (Interval)
125 CacheOptions.PruningInterval = Interval;
/external/llvm/lib/DebugInfo/PDB/Raw/
H A DMappedBlockStream.cpp32 typedef std::pair<uint32_t, uint32_t> Interval; typedef
33 static Interval intersect(const Interval &I1, const Interval &I2) {
68 Interval RequestExtent = std::make_pair(Offset, Offset + Size);
86 Interval CachedExtent =
91 Interval Intersection = intersect(CachedExtent, RequestExtent);
272 Interval WriteInterval = std::make_pair(Offset, Offset + BytesWritten);
273 Interval CachedInterval =
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DImmutableIntervalMap.h21 class Interval { class in namespace:llvm
27 Interval(int64_t S, int64_t E) : Start(S), End(E) {} function in class:llvm::Interval
35 typedef const std::pair<Interval, T> value_type;
37 typedef const Interval key_type;
38 typedef const Interval &key_type_ref;
155 Interval CurrentK = ImutInfo::KeyOfValue(this->Value(T));
173 Interval NewK(CurrentK.getStart(), K.getStart()-1);
176 Interval NewK1(CurrentK.getStart(), K.getStart()-1);
179 Interval NewK2(K.getEnd()+1, CurrentK.getEnd());
184 Interval New
[all...]
/external/llvm/lib/Target/AMDGPU/
H A DSIInsertWaits.cpp342 RegInterval Interval = getRegInterval(RC, Op); local
343 for (unsigned j = Interval.first; j < Interval.second; ++j) {
472 RegInterval Interval = getRegInterval(RC, Op); local
473 for (unsigned j = Interval.first; j < Interval.second; ++j) {
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h390 void enableNodeReclamation(unsigned Interval) { argument
391 ReclaimCounter = ReclaimNodeInterval = Interval;
/external/e2fsprogs/lib/ext2fs/
H A Dnt_io.c147 IN PLARGE_INTEGER Interval
450 LARGE_INTEGER Interval; local
451 Interval.QuadPart = -5000000; // 0.5 sec. from now
453 NtDelayExecution(FALSE, &Interval);
/external/llvm/lib/CodeGen/
H A DStackColoring.cpp419 DEBUG(dbgs() << "Interval[" << I << "]:\n");
894 const LiveInterval *Interval = &*Intervals[FromSlot]; local
895 assert(Interval->find(Index) != Interval->end() &&
951 LiveInterval *Interval = &*Intervals[Slot]; local
953 if (Interval->find(Index) == Interval->end()) {
954 Interval->clear();
H A DLiveIntervalAnalysis.cpp1 //===-- LiveIntervalAnalysis.cpp - Live Interval Analysis -----------------===//
46 "Live Interval Analysis", false, false)
51 "Live Interval Analysis", false, false)
829 LiveInterval& Interval = createEmptyInterval(reg); local
830 VNInfo *VN = Interval.getNextValue(
835 Interval.addSegment(S);
/external/opencv/cvaux/src/
H A Dcvsegment.cpp75 #define DIFF(p1,p2) ((unsigned)((p1)[0] - (p2)[0] + d_lw)<=Interval && \
76 (unsigned)((p1)[1] - (p2)[1] + d_lw)<=Interval && \
77 (unsigned)((p1)[2] - (p2)[2] + d_lw)<=Interval)
81 CV_IABS((p1)[2] - (p2)[2]) <=Interval )*/
93 unsigned Interval = (unsigned) (d_up + d_lw); local
/external/v8/src/regexp/
H A Dregexp-ast.h50 class Interval { class in namespace:v8::internal
52 Interval() : from_(kNone), to_(kNone) {} function in class:v8::internal::Interval
53 Interval(int from, int to) : from_(from), to_(to) {} function in class:v8::internal::Interval
54 Interval Union(Interval that) {
60 return Interval(Min(from_, that.from_), Max(to_, that.to_));
66 static Interval Empty() { return Interval(); }
207 virtual Interval CaptureRegisters() { return Interval
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DLiveIntervalAnalysis.cpp1 //===-- LiveIntervalAnalysis.cpp - Live Interval Analysis -----------------===//
60 "Live Interval Analysis", false, false)
69 "Live Interval Analysis", false, false)
2172 LiveInterval& Interval = getOrCreateInterval(reg); local
2173 VNInfo* VN = Interval.getNextValue(
2180 Interval.addRange(LR);
H A DRegAllocLinearScan.cpp689 LiveInterval *Interval = active_[i].first; local
691 unsigned reg = Interval->reg;
693 IntervalPos = Interval->advanceTo(IntervalPos, CurPoint);
695 if (IntervalPos == Interval->end()) { // Remove expired intervals.
696 DEBUG(dbgs() << "\t\tinterval " << *Interval << " expired\n");
709 DEBUG(dbgs() << "\t\tinterval " << *Interval << " inactive\n");
715 inactive_.push_back(std::make_pair(Interval, IntervalPos));
735 LiveInterval *Interval = inactive_[i].first; local
737 unsigned reg = Interval->reg;
739 IntervalPos = Interval
[all...]
/external/valgrind/VEX/priv/
H A Dir_opt.c4945 Interval; typedef in typeref:struct:__anon22676
4948 intervals_overlap(Interval i1, Interval i2)
4955 update_interval(Interval *i, Int low, Int high)
4979 Interval getInterval;
5003 static void setHints_Expr (Bool* doesLoad, Interval* getInterval, IRExpr* e )
5617 static Interval dirty_helper_puts (
5625 Interval interval;
5669 static Interval stmt_modifies_guest_state (
5676 Interval interva
[all...]
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderBuiltinPrecisionTests.cpp83 using tcu::Interval;
188 * The type Traits<T>::IVal is the approximation of T: it is `Interval` for
276 typedef Interval IVal;
278 static Interval doMakeIVal (const T& value)
281 // hence Interval can represent their ranges without problems.
282 return Interval(double(value));
285 static Interval doUnion (const Interval& a, const Interval& b)
290 static bool doContains (const Interval
1739 innerExtrema(const EvalContext&, const Interval&, const Interval&) const argument
[all...]
/external/deqp/modules/glshared/
H A DglsBuiltinPrecisionTests.cpp94 using tcu::Interval;
209 * The type Traits<T>::IVal is the approximation of T: it is `Interval` for
297 typedef Interval IVal;
299 static Interval doMakeIVal (const T& value)
302 // hence Interval can represent their ranges without problems.
303 return Interval(double(value));
306 static Interval doUnion (const Interval& a, const Interval& b)
311 static bool doContains (const Interval
1760 innerExtrema(const EvalContext&, const Interval&, const Interval&) const argument
[all...]
/external/libusb/libusb/os/
H A Dwindows_winusb.h642 UCHAR Interval; member in struct:__anon11599
/external/caliper/lib/
H A Djoda-time-2.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/joda/ org/joda/time/ org/joda/time/base/ ...
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 2548 milliseconds

12