Lines Matching refs:_res
489 unsigned long long _res; in __bpf_strtoll() local
493 err = __bpf_strtoull(buf, buf_len, flags, &_res, &is_negative); in __bpf_strtoll()
497 if ((long long)-_res > 0) in __bpf_strtoll()
499 *res = -_res; in __bpf_strtoll()
501 if ((long long)_res < 0) in __bpf_strtoll()
503 *res = _res; in __bpf_strtoll()
511 long long _res; in BPF_CALL_4() local
514 err = __bpf_strtoll(buf, buf_len, flags, &_res); in BPF_CALL_4()
517 if (_res != (long)_res) in BPF_CALL_4()
519 *res = _res; in BPF_CALL_4()
536 unsigned long long _res; in BPF_CALL_4() local
540 err = __bpf_strtoull(buf, buf_len, flags, &_res, &is_negative); in BPF_CALL_4()
545 if (_res != (unsigned long)_res) in BPF_CALL_4()
547 *res = _res; in BPF_CALL_4()