Home
last modified time | relevance | path

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

/kernel/bpf/
Dhelpers.c387 unsigned long long *res, bool *is_negative) in __bpf_strtoull() argument
396 if (!buf || !buf_len || !res || !is_negative) in __bpf_strtoull()
408 *is_negative = (cur_buf < buf + buf_len && *cur_buf == '-'); in __bpf_strtoull()
409 if (*is_negative) in __bpf_strtoull()
441 bool is_negative; in __bpf_strtoll() local
444 err = __bpf_strtoull(buf, buf_len, flags, &_res, &is_negative); in __bpf_strtoll()
447 if (is_negative) { in __bpf_strtoll()
488 bool is_negative; in BPF_CALL_4() local
491 err = __bpf_strtoull(buf, buf_len, flags, &_res, &is_negative); in BPF_CALL_4()
494 if (is_negative) in BPF_CALL_4()