Home | History | Annotate | Download | only in ia32

Lines Matching refs:bit_field_

213         bit_field_(IsCallBits::encode(false)) {
257 // +1/-1 so that the encoded value of position in bit_field_ is always >= 0
260 bit_field_ = PositionBits::update(bit_field_, pos + 1);
262 int position() { return PositionBits::decode(bit_field_) - 1; }
269 void MarkAsCall() { bit_field_ = IsCallBits::update(bit_field_, true); }
270 bool IsCall() const { return IsCallBits::decode(bit_field_); }
315 int bit_field_;