OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:UseInterval
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/v8/src/
lithium-allocator.h
121
class
UseInterval
: public ZoneObject {
123
UseInterval
(LifetimePosition start, LifetimePosition end)
130
UseInterval
* next() const { return next_; }
138
LifetimePosition Intersect(const
UseInterval
* other) const {
150
void set_next(
UseInterval
* next) { next_ = next; }
154
UseInterval
* next_;
196
UseInterval
* first_interval() const { return first_interval_; }
296
bool HasOverlap(
UseInterval
* target) const;
302
UseInterval
* FirstSearchIntervalForPosition(LifetimePosition position) const;
303
void AdvanceLastProcessedMarker(
UseInterval
* to_start_of
[
all
...]
/external/chromium_org/v8/src/compiler/
register-allocator.h
117
class
UseInterval
: public ZoneObject {
119
UseInterval
(LifetimePosition start, LifetimePosition end)
126
UseInterval
* next() const { return next_; }
134
LifetimePosition Intersect(const
UseInterval
* other) const {
145
void set_next(
UseInterval
* next) { next_ = next; }
149
UseInterval
* next_;
187
UseInterval
* first_interval() const { return first_interval_; }
287
bool HasOverlap(
UseInterval
* target) const;
293
UseInterval
* FirstSearchIntervalForPosition(LifetimePosition position) const;
294
void AdvanceLastProcessedMarker(
UseInterval
* to_start_of
[
all
...]
Completed in 49 milliseconds