Lines Matching refs:_res
493 unsigned long long _res; in __bpf_strtoll() local
497 err = __bpf_strtoull(buf, buf_len, flags, &_res, &is_negative); in __bpf_strtoll()
501 if ((long long)-_res > 0) in __bpf_strtoll()
503 *res = -_res; in __bpf_strtoll()
505 if ((long long)_res < 0) in __bpf_strtoll()
507 *res = _res; in __bpf_strtoll()
515 long long _res; in BPF_CALL_4() local
518 err = __bpf_strtoll(buf, buf_len, flags, &_res); in BPF_CALL_4()
521 if (_res != (long)_res) in BPF_CALL_4()
523 *res = _res; in BPF_CALL_4()
540 unsigned long long _res; in BPF_CALL_4() local
544 err = __bpf_strtoull(buf, buf_len, flags, &_res, &is_negative); in BPF_CALL_4()
549 if (_res != (unsigned long)_res) in BPF_CALL_4()
551 *res = _res; in BPF_CALL_4()