HomeSort by relevance Sort by last modified time
    Searched refs:inst_len_ (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/re2/re2/
compile.cc 227 int inst_len_; // Number of instructions used. member in class:re2::Compiler
246 inst_len_ = 0;
261 if (failed_ || inst_len_ + n > max_inst_) {
266 if (inst_len_ + n > inst_cap_) {
269 while (inst_len_ + n > inst_cap_)
272 memmove(ip, inst_, inst_len_ * sizeof ip[0]);
273 memset(ip + inst_len_, 0, (inst_cap_ - inst_len_) * sizeof ip[0]);
277 int id = inst_len_;
278 inst_len_ += n
    [all...]
  /external/regex-re2/re2/
compile.cc 226 int inst_len_; // Number of instructions used. member in class:re2::Compiler
245 inst_len_ = 0;
260 if (failed_ || inst_len_ + n > max_inst_) {
265 if (inst_len_ + n > inst_cap_) {
268 while (inst_len_ + n > inst_cap_)
271 memmove(ip, inst_, inst_len_ * sizeof ip[0]);
272 memset(ip + inst_len_, 0, (inst_cap_ - inst_len_) * sizeof ip[0]);
276 int id = inst_len_;
277 inst_len_ += n
    [all...]

Completed in 758 milliseconds