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

  /external/regex-re2/re2/
prog.cc 127 typedef SparseSet Workq;
129 static inline void AddToQueue(Workq* q, int id) {
134 static string ProgToString(Prog* prog, Workq* q) {
137 for (Workq::iterator i = q->begin(); i != q->end(); ++i) {
160 Workq q(size_);
166 Workq q(size_);
175 Workq q(size_);
181 for (Workq::iterator i = q.begin(); i != q.end(); ++i) {
212 for (Workq::iterator i = q.begin(); i != q.end(); ++i) {
dfa.cc 89 class Workq;
206 // Looks up and returns the State corresponding to a Workq.
208 State* WorkqToCachedState(Workq* q, uint flag);
218 // Converts a State into a Workq: the opposite of WorkqToCachedState.
220 static void StateToWorkq(State* s, Workq* q);
226 // Runs a Workq on a given byte followed by a set of empty-string flags,
227 // producing a new Workq in nq. If a match instruction is encountered,
230 void RunWorkqOnByte(Workq* q, Workq* nq,
235 // Runs a Workq on a set of empty-string flags, producing a new Workq in nq
    [all...]
nfa.cc 629 typedef SparseSet Workq;
630 Workq q(prog_->size());
632 for (Workq::iterator it = q.begin(); it != q.end(); ++it) {

Completed in 167 milliseconds