Lines Matching refs:cur_buf
451 const char *cur_buf = buf; in __bpf_strtoull() local
466 while (cur_buf < buf + buf_len && isspace(*cur_buf)) in __bpf_strtoull()
467 ++cur_buf; in __bpf_strtoull()
469 *is_negative = (cur_buf < buf + buf_len && *cur_buf == '-'); in __bpf_strtoull()
471 ++cur_buf; in __bpf_strtoull()
473 consumed = cur_buf - buf; in __bpf_strtoull()
479 memcpy(str, cur_buf, cur_len); in __bpf_strtoull()
481 cur_buf = str; in __bpf_strtoull()
483 cur_buf = _parse_integer_fixup_radix(cur_buf, &base); in __bpf_strtoull()
484 val_len = _parse_integer(cur_buf, base, res); in __bpf_strtoull()
492 cur_buf += val_len; in __bpf_strtoull()
493 consumed += cur_buf - str; in __bpf_strtoull()