Searched defs:out_opcode_ (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/re2/re2/
H A Dprog.h86 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/
H A Dprog.h86 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

Completed in 125 milliseconds