Home
last modified time | relevance | path

Searched refs:next_s (Results 1 – 3 of 3) sorted by relevance

/external/bsdiff/
Dextents.cc48 const char* next_s; in read_llong() local
50 long long val = strtoll(s, (char**)&next_s, 10); in read_llong()
52 next_s == s || val < min_val || val > max_val || in read_llong()
53 (*next_s ? *next_s != delim : !may_end)) in read_llong()
56 if (*next_s) in read_llong()
57 next_s++; /* skip delimeter */ in read_llong()
58 return next_s; in read_llong()
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
DDFA.pm91 my $next_s = $self->transition->[$s][$c - $self->min->[$s]]; # move to next state
93 if ($next_s < 0) {
113 $s = $next_s;
/external/llvm/utils/TableGen/
DCodeGenRegisters.cpp880 for (int s = 0, next_s = SC.find_first(); next_s != -1; in computeSubClasses() local
881 next_s = SC.find_next(s)) { in computeSubClasses()
882 std::advance(I, next_s - s); in computeSubClasses()
883 s = next_s; in computeSubClasses()