HomeSort by relevance Sort by last modified time
    Searched defs:Interval (Results 1 - 14 of 14) sorted by null

  /external/llvm/include/llvm/Analysis/
Interval.h 1 //===- llvm/Analysis/Interval.h - Interval Class Declaration ----*- C++ -*-===//
10 // This file contains the declaration of the Interval class, which
11 // represents a set of CFG nodes and is a portion of an interval partition.
15 // 1. The header node of an interval dominates all of the elements of the
16 // interval
33 /// Interval Class - An Interval is a set of nodes defined such that every node
34 /// in the interval has all of its predecessors in the interval (except for th
    [all...]
  /external/llvm/include/llvm/ADT/
ImmutableIntervalMap.h 21 class Interval {
27 Interval(int64_t S, int64_t E) : Start(S), End(E) {}
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 NewK(K.getEnd()+1, CurrentK.getEnd())
    [all...]
  /frameworks/base/media/libdrm/mobile1/include/parser/
parser_rel.h 64 T_DRM_DATETIME Interval; /**< The interval time */
  /device/google/accessory/arduino/USB_Host_Shield/
Usb.h 103 byte Interval; // Polling interval in frames.
  /external/e2fsprogs/lib/ext2fs/
nt_io.c 147 IN PLARGE_INTEGER Interval
452 LARGE_INTEGER Interval;
453 Interval.QuadPart = -5000000; // 0.5 sec. from now
455 NtDelayExecution(FALSE, &Interval);
  /external/opencv/cvaux/src/
cvsegment.cpp 75 #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);
  /external/bluetooth/glib/glib/
guniprop.c 418 struct Interval
427 struct Interval *interval = (struct Interval *)elt; local
429 if (c < interval->start)
431 if (c > interval->end)
452 static const struct Interval wide[] = {
497 static const struct Interval ambiguous[] = {
    [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp 887 unsigned long Interval = 1;
889 struct timespec Interval;
890 Interval.tv_sec = 0;
891 Interval.tv_nsec = 1000000;
896 // Sleep for the designated interval, to allow the owning process time to
901 Sleep(Interval);
903 nanosleep(&Interval, NULL);
915 Interval *= 2;
917 Interval.tv_sec *= 2;
918 Interval.tv_nsec *= 2
    [all...]
  /external/webkit/Source/WebCore/xml/
XPathFunctions.cpp 53 class Interval {
57 Interval();
58 Interval(int value);
59 Interval(int min, int max);
71 Interval args;
266 inline Interval::Interval()
271 inline Interval::Interval(int value)
276 inline Interval::Interval(int min, int max
    [all...]
  /external/v8/test/cctest/
test-log.cc 755 class Interval {
757 Interval()
761 ~Interval() { delete next_; }
769 void CloneFrom(Interval* src) {
811 if (next_ == NULL) next_ = new Interval();
820 Interval* get_next() { return next_; }
826 Interval* next_;
892 Interval bounds;
    [all...]
  /external/llvm/lib/CodeGen/
RegAllocLinearScan.cpp 61 cl::desc("Attempt trivial coalescing of interval ends"),
239 /// initIntervalSets - initialize the interval sets.
270 /// specified interval. It's passed the physical registers whose spill
272 /// conflict with the interval.
278 /// attemptTrivialCoalescing - If a simple interval is defined by a copy,
280 /// if the register is not defined during the life time of the interval.
351 /// register interval if we have one, otherwise return 0.
440 /// attemptTrivialCoalescing - If a simple interval is defined by a copy, try
442 /// register is not defined during live time of the interval. If the interval i
    [all...]
LiveIntervalAnalysis.cpp 1 //===-- LiveIntervalAnalysis.cpp - Live Interval Analysis -----------------===//
60 "Live Interval Analysis", false, false)
69 "Live Interval Analysis", false, false)
267 /// partially re-defining the specified live interval. A common case of this is
270 LiveInterval &interval) {
276 interval.getLiveRangeContaining(RedefIndex.getUseIndex());
279 return DefMI->findRegisterDefOperandIdx(interval.reg) != -1;
289 LiveInterval &interval) {
290 DEBUG(dbgs() << "\t\tregister: " << PrintReg(interval.reg, tri_));
294 // done once for the vreg. We use an empty interval to detect the firs
    [all...]
  /external/v8/src/
jsregexp.h 712 // A simple closed interval.
713 class Interval {
715 Interval() : from_(kNone), to_(kNone) { }
716 Interval(int from, int to) : from_(from), to_(to) { }
717 Interval Union(Interval that) {
723 return Interval(Min(from_, that.from_), Max(to_, that.to_));
731 static Interval Empty() { return Interval(); }
766 static ActionNode* ClearCaptures(Interval range, RegExpNode* on_success)
    [all...]
  /frameworks/base/core/java/android/widget/
GridLayout.java 589 Interval span = spec.span;
638 lp.setRowSpecSpan(new Interval(row, row + rowSpan));
639 lp.setColumnSpecSpan(new Interval(col, col + colSpan));
643 private static int clip(Interval minorRange, boolean minorWasDefined, int count) {
666 final Interval majorRange = majorSpec.span;
674 final Interval minorRange = minorSpec.span;
873 Interval span = spec.span;
2158 Interval interval = (Interval) that; local
    [all...]

Completed in 4854 milliseconds