Searched refs:succ (Results 1 – 8 of 8) sorted by relevance
| /linux/kernel/bpf/ |
| H A D | liveness.c | 486 struct bpf_iarray *succ, *jt; in bpf_insn_successors() local 494 succ = env->succ; in bpf_insn_successors() 495 succ->cnt = 0; in bpf_insn_successors() 500 succ->items[succ->cnt++] = idx + insn_sz; in bpf_insn_successors() 503 succ->items[succ->cnt++] = idx + bpf_jmp_offset(insn) + 1; in bpf_insn_successors() 505 return succ; in bpf_insn_successors() 567 struct bpf_iarray *succ; in update_insn() local 571 succ = bpf_insn_successors(env, insn_idx); in update_insn() 572 if (succ->cnt == 0) in update_insn() 584 for (s = 0; s < succ->cnt; ++s) { in update_insn() [all …]
|
| H A D | verifier.c | 19050 struct bpf_iarray *succ; in compute_postorder() local 19074 succ = bpf_insn_successors(env, top); in compute_postorder() 19075 for (s = 0; s < succ->cnt; ++s) { in compute_postorder() 19076 if (!state[succ->items[s]]) { in compute_postorder() 19077 stack[stack_sz++] = succ->items[s]; in compute_postorder() 19078 state[succ->items[s]] |= DISCOVERED; in compute_postorder() 25726 struct bpf_iarray *succ; in compute_live_registers() local 25730 succ = bpf_insn_successors(env, insn_idx); in compute_live_registers() 25731 for (int s = 0; s < succ->cnt; ++s) in compute_live_registers() 25732 new_out |= state[succ->items[s]].in; in compute_live_registers() [all …]
|
| /linux/net/netfilter/ |
| H A D | xt_recent.c | 568 bool add, succ; in recent_mt_proc_write() local 601 succ = in6_pton(c, size, (void *)&addr, '\n', NULL); in recent_mt_proc_write() 604 succ = in4_pton(c, size, (void *)&addr, '\n', NULL); in recent_mt_proc_write() 607 if (!succ) in recent_mt_proc_write()
|
| /linux/tools/testing/selftests/kvm/s390/ |
| H A D | memop.c | 327 bool succ; in default_cmpxchg() local 336 CMPXCHG_SUCCESS(&succ), KEY(key)); in default_cmpxchg() 339 TEST_ASSERT(succ, "exchange of values should succeed"); in default_cmpxchg() 349 CMPXCHG_SUCCESS(&succ), KEY(key)); in default_cmpxchg() 352 TEST_ASSERT(!succ, "exchange of values should not succeed"); in default_cmpxchg()
|
| /linux/drivers/gpu/drm/ |
| H A D | drm_vblank.c | 2179 bool succ; in drm_vblank_timer_function() local 2193 succ = crtc_funcs->handle_vblank_timeout(crtc); in drm_vblank_timer_function() 2195 succ = drm_crtc_handle_vblank(crtc); in drm_vblank_timer_function() 2196 if (!succ) in drm_vblank_timer_function()
|
| /linux/drivers/staging/media/atomisp/pci/ |
| H A D | sh_css_params.c | 2326 bool succ = true; in sh_css_create_isp_params() local 2363 succ &= (ddr_ptrs->isp_param != mmgr_NULL); in sh_css_create_isp_params() 2369 succ &= (ddr_ptrs->macc_tbl != mmgr_NULL); in sh_css_create_isp_params() 2373 if (!succ) in sh_css_create_isp_params() 3825 bool succ; in write_ia_css_isp_parameter_set_info_to_ddr() local 3834 succ = (*out != mmgr_NULL); in write_ia_css_isp_parameter_set_info_to_ddr() 3835 if (succ) in write_ia_css_isp_parameter_set_info_to_ddr()
|
| /linux/arch/powerpc/kernel/ |
| H A D | prom_init.c | 1908 u32 entry = 0, size = 0, succ = 0; in prom_instantiate_sml() local 1927 if (call_prom_ret("call-method", 2, 2, &succ, in prom_instantiate_sml() 1929 ibmvtpm_inst) != 0 || succ == 0) { in prom_instantiate_sml()
|
| /linux/arch/riscv/net/ |
| H A D | bpf_jit.h | 600 static inline u32 rv_fence(u8 pred, u8 succ) in rv_fence() argument 602 u16 imm11_0 = pred << 4 | succ; in rv_fence()
|