Home
last modified time | relevance | path

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

/kernel/bpf/
Dhelpers.c442 unsigned long long *res, bool *is_negative) in __bpf_strtoull() argument
451 if (!buf || !buf_len || !res || !is_negative) in __bpf_strtoull()
463 *is_negative = (cur_buf < buf + buf_len && *cur_buf == '-'); in __bpf_strtoull()
464 if (*is_negative) in __bpf_strtoull()
496 bool is_negative; in __bpf_strtoll() local
499 err = __bpf_strtoull(buf, buf_len, flags, &_res, &is_negative); in __bpf_strtoll()
502 if (is_negative) { in __bpf_strtoll()
543 bool is_negative; in BPF_CALL_4() local
546 err = __bpf_strtoull(buf, buf_len, flags, &_res, &is_negative); in BPF_CALL_4()
549 if (is_negative) in BPF_CALL_4()