Home
last modified time | relevance | path

Searched refs:_res (Results 1 – 2 of 2) sorted by relevance

/kernel/bpf/
Dhelpers.c492 unsigned long long _res; in __bpf_strtoll() local
496 err = __bpf_strtoull(buf, buf_len, flags, &_res, &is_negative); in __bpf_strtoll()
500 if ((long long)-_res > 0) in __bpf_strtoll()
502 *res = -_res; in __bpf_strtoll()
504 if ((long long)_res < 0) in __bpf_strtoll()
506 *res = _res; in __bpf_strtoll()
514 long long _res; in BPF_CALL_4() local
517 err = __bpf_strtoll(buf, buf_len, flags, &_res); in BPF_CALL_4()
520 if (_res != (long)_res) in BPF_CALL_4()
522 *res = _res; in BPF_CALL_4()
[all …]
/kernel/
Dresource.c1811 static void remove_free_mem_region(void *_res) in remove_free_mem_region() argument
1813 struct resource *res = _res; in remove_free_mem_region()