Searched refs:cur_buf (Results 1 – 1 of 1) sorted by relevance
390 const char *cur_buf = buf; in __bpf_strtoull() local405 while (cur_buf < buf + buf_len && isspace(*cur_buf)) in __bpf_strtoull()406 ++cur_buf; in __bpf_strtoull()408 *is_negative = (cur_buf < buf + buf_len && *cur_buf == '-'); in __bpf_strtoull()410 ++cur_buf; in __bpf_strtoull()412 consumed = cur_buf - buf; in __bpf_strtoull()418 memcpy(str, cur_buf, cur_len); in __bpf_strtoull()420 cur_buf = str; in __bpf_strtoull()422 cur_buf = _parse_integer_fixup_radix(cur_buf, &base); in __bpf_strtoull()423 val_len = _parse_integer(cur_buf, base, res); in __bpf_strtoull()[all …]