Lines Matching refs:_res
470 unsigned long long _res; in __bpf_strtoll() local
474 err = __bpf_strtoull(buf, buf_len, flags, &_res, &is_negative); in __bpf_strtoll()
478 if ((long long)-_res > 0) in __bpf_strtoll()
480 *res = -_res; in __bpf_strtoll()
482 if ((long long)_res < 0) in __bpf_strtoll()
484 *res = _res; in __bpf_strtoll()
492 long long _res; in BPF_CALL_4() local
495 err = __bpf_strtoll(buf, buf_len, flags, &_res); in BPF_CALL_4()
498 if (_res != (long)_res) in BPF_CALL_4()
500 *res = _res; in BPF_CALL_4()
517 unsigned long long _res; in BPF_CALL_4() local
521 err = __bpf_strtoull(buf, buf_len, flags, &_res, &is_negative); in BPF_CALL_4()
526 if (_res != (unsigned long)_res) in BPF_CALL_4()
528 *res = _res; in BPF_CALL_4()