Home | History | Annotate | Download | only in crankshaft

Lines Matching refs:kStep

41     return LifetimePosition(index * kStep);
53 return value_ / kStep;
59 return (value_ & (kStep - 1)) == 0;
66 return LifetimePosition(value_ & ~(kStep - 1));
73 return LifetimePosition(InstructionStart().Value() + kStep/2);
79 return LifetimePosition(InstructionStart().Value() + kStep);
87 return LifetimePosition(InstructionStart().Value() - kStep);
107 static const int kStep = 2;
109 // Code relies on kStep being a power of two.
110 STATIC_ASSERT(IS_POWER_OF_TWO(kStep));