Lines Matching refs:depth
2610 int depth = 0, frame = 0, idx = 0, i = 0, subprog_end; in check_max_stack_depth() local
2620 depth += round_up(max_t(u32, subprog[idx].stack_depth, 1), 32); in check_max_stack_depth()
2621 if (depth > MAX_BPF_STACK) { in check_max_stack_depth()
2623 frame + 1, depth); in check_max_stack_depth()
2658 depth -= round_up(max_t(u32, subprog[idx].stack_depth, 1), 32); in check_max_stack_depth()
8871 int i, depth; in fixup_call_args() local
8888 depth = get_callee_stack_depth(env, insn, i); in fixup_call_args()
8889 if (depth < 0) in fixup_call_args()
8890 return depth; in fixup_call_args()
8891 bpf_patch_call_args(insn, depth); in fixup_call_args()
9228 u32 depth = env->subprog_info[i].stack_depth; in print_verification_stats() local
9230 verbose(env, "%d", depth); in print_verification_stats()