Lines Matching defs:self
79 int (*fill_helper)(struct bpf_test *self);
87 static int bpf_fill_maxinsns1(struct bpf_test *self)
101 self->u.ptr.insns = insn;
102 self->u.ptr.len = len;
107 static int bpf_fill_maxinsns2(struct bpf_test *self)
120 self->u.ptr.insns = insn;
121 self->u.ptr.len = len;
126 static int bpf_fill_maxinsns3(struct bpf_test *self)
147 self->u.ptr.insns = insn;
148 self->u.ptr.len = len;
153 static int bpf_fill_maxinsns4(struct bpf_test *self)
166 self->u.ptr.insns = insn;
167 self->u.ptr.len = len;
172 static int bpf_fill_maxinsns5(struct bpf_test *self)
189 self->u.ptr.insns = insn;
190 self->u.ptr.len = len;
195 static int bpf_fill_maxinsns6(struct bpf_test *self)
211 self->u.ptr.insns = insn;
212 self->u.ptr.len = len;
217 static int bpf_fill_maxinsns7(struct bpf_test *self)
237 self->u.ptr.insns = insn;
238 self->u.ptr.len = len;
243 static int bpf_fill_maxinsns8(struct bpf_test *self)
260 self->u.ptr.insns = insn;
261 self->u.ptr.len = len;
266 static int bpf_fill_maxinsns9(struct bpf_test *self)
286 self->u.ptr.insns = insn;
287 self->u.ptr.len = len;
292 static int bpf_fill_maxinsns10(struct bpf_test *self)
311 self->u.ptr.insns = insn;
312 self->u.ptr.len = len;
317 static int __bpf_fill_ja(struct bpf_test *self, unsigned int len,
340 self->u.ptr.insns = insn;
341 self->u.ptr.len = len;
346 static int bpf_fill_maxinsns11(struct bpf_test *self)
349 return __bpf_fill_ja(self, BPF_MAXINSNS, 68);
352 static int bpf_fill_maxinsns12(struct bpf_test *self)
369 self->u.ptr.insns = insn;
370 self->u.ptr.len = len;
375 static int bpf_fill_maxinsns13(struct bpf_test *self)
392 self->u.ptr.insns = insn;
393 self->u.ptr.len = len;
398 static int bpf_fill_ja(struct bpf_test *self)
401 return __bpf_fill_ja(self, 12, 9);
404 static int bpf_fill_ld_abs_get_processor_id(struct bpf_test *self)
422 self->u.ptr.insns = insn;
423 self->u.ptr.len = len;
428 static int __bpf_fill_stxdw(struct bpf_test *self, int size)
447 self->u.ptr.insns = insn;
448 self->u.ptr.len = len;
449 self->stack_depth = 40;
454 static int bpf_fill_stxw(struct bpf_test *self)
456 return __bpf_fill_stxdw(self, BPF_W);
459 static int bpf_fill_stxdw(struct bpf_test *self)
461 return __bpf_fill_stxdw(self, BPF_DW);