Searched refs:out_opcode_ (Results 1 – 4 of 4) sorted by relevance
/external/chromium_org/third_party/re2/re2/ |
D | prog.h | 86 Inst() : out_opcode_(0), out1_(0) { } in Inst() 99 InstOp opcode() { return static_cast<InstOp>(out_opcode_&7); } in opcode() 100 int out() { return out_opcode_>>3; } in out() 130 out_opcode_ = (out()<<3) | opcode; in set_opcode() 134 out_opcode_ = (out<<3) | opcode(); in set_out() 138 out_opcode_ = (out<<3) | opcode; in set_out_opcode() 141 uint32 out_opcode_; // 29 bits of out, 3 (low) bits opcode variable
|
D | prog.cc | 18 DCHECK_EQ(out_opcode_, 0); in InitAlt() 24 DCHECK_EQ(out_opcode_, 0); in InitByteRange() 32 DCHECK_EQ(out_opcode_, 0); in InitCapture() 38 DCHECK_EQ(out_opcode_, 0); in InitEmptyWidth() 44 DCHECK_EQ(out_opcode_, 0); in InitMatch() 50 DCHECK_EQ(out_opcode_, 0); in InitNop() 55 DCHECK_EQ(out_opcode_, 0); in InitFail()
|
/external/regex-re2/re2/ |
D | prog.h | 86 Inst() : out_opcode_(0), out1_(0) { } in Inst() 99 InstOp opcode() { return static_cast<InstOp>(out_opcode_&7); } in opcode() 100 int out() { return out_opcode_>>3; } in out() 130 out_opcode_ = (out()<<3) | opcode; in set_opcode() 134 out_opcode_ = (out<<3) | opcode(); in set_out() 138 out_opcode_ = (out<<3) | opcode; in set_out_opcode() 141 uint32 out_opcode_; // 29 bits of out, 3 (low) bits opcode variable
|
D | prog.cc | 18 DCHECK_EQ(out_opcode_, 0); in InitAlt() 24 DCHECK_EQ(out_opcode_, 0); in InitByteRange() 32 DCHECK_EQ(out_opcode_, 0); in InitCapture() 38 DCHECK_EQ(out_opcode_, 0); in InitEmptyWidth() 44 DCHECK_EQ(out_opcode_, 0); in InitMatch() 50 DCHECK_EQ(out_opcode_, 0); in InitNop() 55 DCHECK_EQ(out_opcode_, 0); in InitFail()
|