Lines Matching refs:_res
496 unsigned long long _res; in __bpf_strtoll() local
500 err = __bpf_strtoull(buf, buf_len, flags, &_res, &is_negative); in __bpf_strtoll()
504 if ((long long)-_res > 0) in __bpf_strtoll()
506 *res = -_res; in __bpf_strtoll()
508 if ((long long)_res < 0) in __bpf_strtoll()
510 *res = _res; in __bpf_strtoll()
518 long long _res; in BPF_CALL_4() local
521 err = __bpf_strtoll(buf, buf_len, flags, &_res); in BPF_CALL_4()
524 if (_res != (long)_res) in BPF_CALL_4()
526 *res = _res; in BPF_CALL_4()
543 unsigned long long _res; in BPF_CALL_4() local
547 err = __bpf_strtoull(buf, buf_len, flags, &_res, &is_negative); in BPF_CALL_4()
552 if (_res != (unsigned long)_res) in BPF_CALL_4()
554 *res = _res; in BPF_CALL_4()