Lines Matching refs:p
2641 struct bpf_subprog_info *p; in find_subprog() local
2643 p = bsearch(&off, env->subprog_info, env->subprog_cnt, in find_subprog()
2645 if (!p) in find_subprog()
2647 return p - env->subprog_info; in find_subprog()
3415 struct bpf_idx_pair *p; in push_jmp_history() local
3422 alloc_size = kmalloc_size_roundup(size_mul(cnt, sizeof(*p))); in push_jmp_history()
3423 p = krealloc(cur->jmp_history, alloc_size, GFP_USER); in push_jmp_history()
3424 if (!p) in push_jmp_history()
3426 p[cnt - 1].idx = env->insn_idx; in push_jmp_history()
3427 p[cnt - 1].prev_idx = env->prev_insn_idx; in push_jmp_history()
3428 cur->jmp_history = p; in push_jmp_history()
5426 u32 p = field->offset; in check_map_access() local
5432 if (reg->smin_value + off < p + btf_field_type_size(field->type) && in check_map_access()
5433 p < reg->umax_value + off + size) { in check_map_access()
5445 if (p != off + reg->var_off.value) { in check_map_access()
5447 p, off + reg->var_off.value); in check_map_access()