Home
last modified time | relevance | path

Searched refs:out_opcode_ (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/
Dprog.h82 InstOp opcode() { return static_cast<InstOp>(out_opcode_&7); } in opcode()
83 int last() { return (out_opcode_>>3)&1; } in last()
84 int out() { return out_opcode_>>4; } in out()
118 out_opcode_ = (out()<<4) | (last()<<3) | opcode; in set_opcode()
122 out_opcode_ = (out()<<4) | (1<<3) | opcode(); in set_last()
126 out_opcode_ = (out<<4) | (last()<<3) | opcode(); in set_out()
130 out_opcode_ = (out<<4) | (last()<<3) | opcode; in set_out_opcode()
133 uint32_t out_opcode_; // 28 bits: out, 1 bit: last, 3 (low) bits: opcode variable
Dprog.cc33 DCHECK_EQ(out_opcode_, 0); in InitAlt()
39 DCHECK_EQ(out_opcode_, 0); in InitByteRange()
47 DCHECK_EQ(out_opcode_, 0); in InitCapture()
53 DCHECK_EQ(out_opcode_, 0); in InitEmptyWidth()
59 DCHECK_EQ(out_opcode_, 0); in InitMatch()
65 DCHECK_EQ(out_opcode_, 0); in InitNop()
70 DCHECK_EQ(out_opcode_, 0); in InitFail()
Dcompile.cc582 inst_[id].out_opcode_ = 0; in AddSuffixRecursive()