Lines Matching refs:_res
504 unsigned long long _res; in __bpf_strtoll() local
508 err = __bpf_strtoull(buf, buf_len, flags, &_res, &is_negative); in __bpf_strtoll()
512 if ((long long)-_res > 0) in __bpf_strtoll()
514 *res = -_res; in __bpf_strtoll()
516 if ((long long)_res < 0) in __bpf_strtoll()
518 *res = _res; in __bpf_strtoll()
526 long long _res; in BPF_CALL_4() local
530 err = __bpf_strtoll(buf, buf_len, flags, &_res); in BPF_CALL_4()
533 *res = _res; in BPF_CALL_4()
551 unsigned long long _res; in BPF_CALL_4() local
556 err = __bpf_strtoull(buf, buf_len, flags, &_res, &is_negative); in BPF_CALL_4()
561 *res = _res; in BPF_CALL_4()