Lines Matching refs:_res
462 unsigned long long _res; in __bpf_strtoll() local
466 err = __bpf_strtoull(buf, buf_len, flags, &_res, &is_negative); in __bpf_strtoll()
470 if ((long long)-_res > 0) in __bpf_strtoll()
472 *res = -_res; in __bpf_strtoll()
474 if ((long long)_res < 0) in __bpf_strtoll()
476 *res = _res; in __bpf_strtoll()
484 long long _res; in BPF_CALL_4() local
487 err = __bpf_strtoll(buf, buf_len, flags, &_res); in BPF_CALL_4()
490 if (_res != (long)_res) in BPF_CALL_4()
492 *res = _res; in BPF_CALL_4()
509 unsigned long long _res; in BPF_CALL_4() local
513 err = __bpf_strtoull(buf, buf_len, flags, &_res, &is_negative); in BPF_CALL_4()
518 if (_res != (unsigned long)_res) in BPF_CALL_4()
520 *res = _res; in BPF_CALL_4()