Lines Matching defs:next_pos
4133 uint64_t next_pos = pos + 16;
4134 if (next_pos <= len) { // if it is safe to read 16 more bytes, check that they are ascii
4141 pos = next_pos;
4153 next_pos = pos + 2;
4154 if (next_pos > len) { return false; }
4160 next_pos = pos + 3;
4161 if (next_pos > len) { return false; }
4173 next_pos = pos + 4;
4174 if (next_pos > len) { return false; }
4187 pos = next_pos;
4199 size_t next_pos = pos + 16;
4200 if (next_pos <= len) { // if it is safe to read 16 more bytes, check that they are ascii
4207 pos = next_pos;
4219 next_pos = pos + 2;
4220 if (next_pos > len) { return result(error_code::TOO_SHORT, pos); }
4226 next_pos = pos + 3;
4227 if (next_pos > len) { return result(error_code::TOO_SHORT, pos); }
4237 next_pos = pos + 4;
4238 if (next_pos > len) { return result(error_code::TOO_SHORT, pos); }
4253 pos = next_pos;