Lines Matching refs:_res
495 unsigned long long _res; in __bpf_strtoll() local
499 err = __bpf_strtoull(buf, buf_len, flags, &_res, &is_negative); in __bpf_strtoll()
503 if ((long long)-_res > 0) in __bpf_strtoll()
505 *res = -_res; in __bpf_strtoll()
507 if ((long long)_res < 0) in __bpf_strtoll()
509 *res = _res; in __bpf_strtoll()
517 long long _res; in BPF_CALL_4() local
520 err = __bpf_strtoll(buf, buf_len, flags, &_res); in BPF_CALL_4()
523 if (_res != (long)_res) in BPF_CALL_4()
525 *res = _res; in BPF_CALL_4()
542 unsigned long long _res; in BPF_CALL_4() local
546 err = __bpf_strtoull(buf, buf_len, flags, &_res, &is_negative); in BPF_CALL_4()
551 if (_res != (unsigned long)_res) in BPF_CALL_4()
553 *res = _res; in BPF_CALL_4()