Lines Matching refs:cur_buf
446 const char *cur_buf = buf; in __bpf_strtoull() local
461 while (cur_buf < buf + buf_len && isspace(*cur_buf)) in __bpf_strtoull()
462 ++cur_buf; in __bpf_strtoull()
464 *is_negative = (cur_buf < buf + buf_len && *cur_buf == '-'); in __bpf_strtoull()
466 ++cur_buf; in __bpf_strtoull()
468 consumed = cur_buf - buf; in __bpf_strtoull()
474 memcpy(str, cur_buf, cur_len); in __bpf_strtoull()
476 cur_buf = str; in __bpf_strtoull()
478 cur_buf = _parse_integer_fixup_radix(cur_buf, &base); in __bpf_strtoull()
479 val_len = _parse_integer(cur_buf, base, res); in __bpf_strtoull()
487 cur_buf += val_len; in __bpf_strtoull()
488 consumed += cur_buf - str; in __bpf_strtoull()