Lines Matching refs:bytes
239 int *bytes, zero = 0, one = 1, two = 2, three = 3, four = 4, five = 5; in bpf_prog4() local
242 bytes = bpf_map_lookup_elem(&sock_apply_bytes, &zero); in bpf_prog4()
243 if (bytes) in bpf_prog4()
244 bpf_msg_apply_bytes(msg, *bytes); in bpf_prog4()
245 bytes = bpf_map_lookup_elem(&sock_cork_bytes, &zero); in bpf_prog4()
246 if (bytes) in bpf_prog4()
247 bpf_msg_cork_bytes(msg, *bytes); in bpf_prog4()
270 int *bytes, *start, *end, *start_push, *end_push, *start_pop, *pop, *f; in bpf_prog6() local
274 bytes = bpf_map_lookup_elem(&sock_apply_bytes, &zero); in bpf_prog6()
275 if (bytes) in bpf_prog6()
276 bpf_msg_apply_bytes(msg, *bytes); in bpf_prog6()
277 bytes = bpf_map_lookup_elem(&sock_cork_bytes, &zero); in bpf_prog6()
278 if (bytes) in bpf_prog6()
279 bpf_msg_cork_bytes(msg, *bytes); in bpf_prog6()
316 int ret = 0, *bytes, zero = 0; in bpf_prog8() local
318 bytes = bpf_map_lookup_elem(&sock_apply_bytes, &zero); in bpf_prog8()
319 if (bytes) { in bpf_prog8()
320 ret = bpf_msg_apply_bytes(msg, *bytes); in bpf_prog8()
337 int ret = 0, *bytes, zero = 0; in bpf_prog9() local
339 bytes = bpf_map_lookup_elem(&sock_cork_bytes, &zero); in bpf_prog9()
340 if (bytes) { in bpf_prog9()
341 if (((__u64)data_end - (__u64)data) >= *bytes) in bpf_prog9()
343 ret = bpf_msg_cork_bytes(msg, *bytes); in bpf_prog9()
353 int *bytes, *start, *end, *start_push, *end_push, *start_pop, *pop; in bpf_prog10() local
356 bytes = bpf_map_lookup_elem(&sock_apply_bytes, &zero); in bpf_prog10()
357 if (bytes) in bpf_prog10()
358 bpf_msg_apply_bytes(msg, *bytes); in bpf_prog10()
359 bytes = bpf_map_lookup_elem(&sock_cork_bytes, &zero); in bpf_prog10()
360 if (bytes) in bpf_prog10()
361 bpf_msg_cork_bytes(msg, *bytes); in bpf_prog10()