/external/chromium_org/third_party/re2/re2/ |
prog.cc | 18 DCHECK_EQ(out_opcode_, 0); 24 DCHECK_EQ(out_opcode_, 0); 32 DCHECK_EQ(out_opcode_, 0); 38 DCHECK_EQ(out_opcode_, 0); 44 DCHECK_EQ(out_opcode_, 0); 50 DCHECK_EQ(out_opcode_, 0); 55 DCHECK_EQ(out_opcode_, 0);
|
prog.h | 86 Inst() : out_opcode_(0), out1_(0) { } 99 InstOp opcode() { return static_cast<InstOp>(out_opcode_&7); } 100 int out() { return out_opcode_>>3; } 125 // (Must fit in out_opcode_, and PatchList steals another bit.) 130 out_opcode_ = (out()<<3) | opcode; 134 out_opcode_ = (out<<3) | opcode(); 138 out_opcode_ = (out<<3) | opcode; 141 uint32 out_opcode_; // 29 bits of out, 3 (low) bits opcode member in class:re2::Prog::Inst
|
/external/regex-re2/re2/ |
prog.cc | 18 DCHECK_EQ(out_opcode_, 0); 24 DCHECK_EQ(out_opcode_, 0); 32 DCHECK_EQ(out_opcode_, 0); 38 DCHECK_EQ(out_opcode_, 0); 44 DCHECK_EQ(out_opcode_, 0); 50 DCHECK_EQ(out_opcode_, 0); 55 DCHECK_EQ(out_opcode_, 0);
|
prog.h | 86 Inst() : out_opcode_(0), out1_(0) { } 99 InstOp opcode() { return static_cast<InstOp>(out_opcode_&7); } 100 int out() { return out_opcode_>>3; } 125 // (Must fit in out_opcode_, and PatchList steals another bit.) 130 out_opcode_ = (out()<<3) | opcode; 134 out_opcode_ = (out<<3) | opcode(); 138 out_opcode_ = (out<<3) | opcode; 141 uint32 out_opcode_; // 29 bits of out, 3 (low) bits opcode member in class:re2::Prog::Inst
|