Lines Matching refs:_res
501 unsigned long long _res; in __bpf_strtoll() local
505 err = __bpf_strtoull(buf, buf_len, flags, &_res, &is_negative); in __bpf_strtoll()
509 if ((long long)-_res > 0) in __bpf_strtoll()
511 *res = -_res; in __bpf_strtoll()
513 if ((long long)_res < 0) in __bpf_strtoll()
515 *res = _res; in __bpf_strtoll()
523 long long _res; in BPF_CALL_4() local
527 err = __bpf_strtoll(buf, buf_len, flags, &_res); in BPF_CALL_4()
530 *res = _res; in BPF_CALL_4()
548 unsigned long long _res; in BPF_CALL_4() local
553 err = __bpf_strtoull(buf, buf_len, flags, &_res, &is_negative); in BPF_CALL_4()
558 *res = _res; in BPF_CALL_4()