Searched refs:_res (Results 1 – 1 of 1) sorted by relevance
495 unsigned long long _res; in __bpf_strtoll() local499 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() local520 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()[all …]