Lines Matching refs:_res
492 unsigned long long _res; in __bpf_strtoll() local
496 err = __bpf_strtoull(buf, buf_len, flags, &_res, &is_negative); in __bpf_strtoll()
500 if ((long long)-_res > 0) in __bpf_strtoll()
502 *res = -_res; in __bpf_strtoll()
504 if ((long long)_res < 0) in __bpf_strtoll()
506 *res = _res; in __bpf_strtoll()
514 long long _res; in BPF_CALL_4() local
517 err = __bpf_strtoll(buf, buf_len, flags, &_res); in BPF_CALL_4()
520 if (_res != (long)_res) in BPF_CALL_4()
522 *res = _res; in BPF_CALL_4()
539 unsigned long long _res; in BPF_CALL_4() local
543 err = __bpf_strtoull(buf, buf_len, flags, &_res, &is_negative); in BPF_CALL_4()
548 if (_res != (unsigned long)_res) in BPF_CALL_4()
550 *res = _res; in BPF_CALL_4()