Home
last modified time | relevance | path

Searched refs:func_cnt (Results 1 – 6 of 6) sorted by relevance

/linux/drivers/pinctrl/
H A Dpinctrl-tps6594.c311 int func_cnt; member
320 .func_cnt = ARRAY_SIZE(tps652g1_pinctrl_functions),
330 .func_cnt = ARRAY_SIZE(tps65224_pinctrl_functions),
340 .func_cnt = ARRAY_SIZE(pinctrl_functions),
375 return pinctrl->func_cnt; in tps6594_pmx_func_cnt()
/linux/drivers/pinctrl/samsung/
H A Dpinctrl-samsung.c818 unsigned int func_cnt = 0; in samsung_pinctrl_create_functions() local
832 ++func_cnt; in samsung_pinctrl_create_functions()
840 ++func_cnt; in samsung_pinctrl_create_functions()
844 functions = devm_kcalloc(dev, func_cnt, sizeof(*functions), in samsung_pinctrl_create_functions()
854 func_cnt = 0; in samsung_pinctrl_create_functions()
863 ++func_cnt; in samsung_pinctrl_create_functions()
875 ++func_cnt; in samsung_pinctrl_create_functions()
880 *cnt = func_cnt; in samsung_pinctrl_create_functions()
896 unsigned int grp_cnt = 0, func_cnt = 0; in samsung_pinctrl_parse_dt() local
904 functions = samsung_pinctrl_create_functions(dev, drvdata, &func_cnt); in samsung_pinctrl_parse_dt()
[all …]
/linux/kernel/bpf/
H A Dsyscall.c5207 if (prog->aux->func_cnt) { in bpf_prog_get_info_by_fd()
5211 for (i = 0; i < prog->aux->func_cnt; i++) in bpf_prog_get_info_by_fd()
5225 if (prog->aux->func_cnt) { in bpf_prog_get_info_by_fd()
5230 for (i = 0; i < prog->aux->func_cnt; i++) { in bpf_prog_get_info_by_fd()
5251 info.nr_jited_ksyms = prog->aux->func_cnt ? : 1; in bpf_prog_get_info_by_fd()
5263 if (prog->aux->func_cnt) { in bpf_prog_get_info_by_fd()
5282 info.nr_jited_func_lens = prog->aux->func_cnt ? : 1; in bpf_prog_get_info_by_fd()
5291 if (prog->aux->func_cnt) { in bpf_prog_get_info_by_fd()
5360 info.nr_prog_tags = prog->aux->func_cnt ? : 1; in bpf_prog_get_info_by_fd()
5367 if (prog->aux->func_cnt) { in bpf_prog_get_info_by_fd()
H A Dfixups.c1242 func[i]->aux->func_cnt = env->subprog_cnt - env->hidden_subprog_cnt; in jit_subprogs()
1302 prog->aux->func_cnt = env->subprog_cnt - env->hidden_subprog_cnt; in jit_subprogs()
H A Dcore.c236 if (!prog->aux->jited_linfo || prog->aux->func_idx > prog->aux->func_cnt) in bpf_prog_fill_jited_linfo()
/linux/include/linux/
H A Dbpf.h1749 u32 func_cnt; /* used by non-func prog as the number of func progs */ member