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

  /external/chromium_org/v8/src/
lithium-allocator.h 66 class LifetimePosition {
70 static LifetimePosition FromInstructionIndex(int index) {
71 return LifetimePosition(index * kStep);
94 LifetimePosition InstructionStart() const {
96 return LifetimePosition(value_ & ~(kStep - 1));
101 LifetimePosition InstructionEnd() const {
103 return LifetimePosition(InstructionStart().Value() + kStep/2);
107 LifetimePosition NextInstruction() const {
109 return LifetimePosition(InstructionStart().Value() + kStep);
114 LifetimePosition PrevInstruction() const
    [all...]
  /external/v8/src/
lithium-allocator.h 66 class LifetimePosition {
70 static LifetimePosition FromInstructionIndex(int index) {
71 return LifetimePosition(index * kStep);
94 LifetimePosition InstructionStart() const {
96 return LifetimePosition(value_ & ~(kStep - 1));
101 LifetimePosition InstructionEnd() const {
103 return LifetimePosition(InstructionStart().Value() + kStep/2);
107 LifetimePosition NextInstruction() const {
109 return LifetimePosition(InstructionStart().Value() + kStep);
114 LifetimePosition PrevInstruction() const
    [all...]

Completed in 166 milliseconds