Lines Matching refs:_res
418 unsigned long long _res; in __bpf_strtoll() local
422 err = __bpf_strtoull(buf, buf_len, flags, &_res, &is_negative); in __bpf_strtoll()
426 if ((long long)-_res > 0) in __bpf_strtoll()
428 *res = -_res; in __bpf_strtoll()
430 if ((long long)_res < 0) in __bpf_strtoll()
432 *res = _res; in __bpf_strtoll()
440 long long _res; in BPF_CALL_4() local
443 err = __bpf_strtoll(buf, buf_len, flags, &_res); in BPF_CALL_4()
446 if (_res != (long)_res) in BPF_CALL_4()
448 *res = _res; in BPF_CALL_4()
465 unsigned long long _res; in BPF_CALL_4() local
469 err = __bpf_strtoull(buf, buf_len, flags, &_res, &is_negative); in BPF_CALL_4()
474 if (_res != (unsigned long)_res) in BPF_CALL_4()
476 *res = _res; in BPF_CALL_4()