Lines Matching refs:bytes

237 	int *bytes, zero = 0, one = 1, two = 2, three = 3, four = 4, five = 5;  in bpf_prog4()  local
240 bytes = bpf_map_lookup_elem(&sock_apply_bytes, &zero); in bpf_prog4()
241 if (bytes) in bpf_prog4()
242 bpf_msg_apply_bytes(msg, *bytes); in bpf_prog4()
243 bytes = bpf_map_lookup_elem(&sock_cork_bytes, &zero); in bpf_prog4()
244 if (bytes) in bpf_prog4()
245 bpf_msg_cork_bytes(msg, *bytes); in bpf_prog4()
265 int *bytes, *start, *end, *start_push, *end_push, *start_pop, *pop, *f; in bpf_prog6() local
268 bytes = bpf_map_lookup_elem(&sock_apply_bytes, &zero); in bpf_prog6()
269 if (bytes) in bpf_prog6()
270 bpf_msg_apply_bytes(msg, *bytes); in bpf_prog6()
271 bytes = bpf_map_lookup_elem(&sock_cork_bytes, &zero); in bpf_prog6()
272 if (bytes) in bpf_prog6()
273 bpf_msg_cork_bytes(msg, *bytes); in bpf_prog6()
307 int ret = 0, *bytes, zero = 0; in bpf_prog8() local
309 bytes = bpf_map_lookup_elem(&sock_apply_bytes, &zero); in bpf_prog8()
310 if (bytes) { in bpf_prog8()
311 ret = bpf_msg_apply_bytes(msg, *bytes); in bpf_prog8()
324 int ret = 0, *bytes, zero = 0; in bpf_prog9() local
326 bytes = bpf_map_lookup_elem(&sock_cork_bytes, &zero); in bpf_prog9()
327 if (bytes) { in bpf_prog9()
328 if (((__u64)data_end - (__u64)data) >= *bytes) in bpf_prog9()
330 ret = bpf_msg_cork_bytes(msg, *bytes); in bpf_prog9()
340 int *bytes, *start, *end, *start_push, *end_push, *start_pop, *pop; in bpf_prog10() local
343 bytes = bpf_map_lookup_elem(&sock_apply_bytes, &zero); in bpf_prog10()
344 if (bytes) in bpf_prog10()
345 bpf_msg_apply_bytes(msg, *bytes); in bpf_prog10()
346 bytes = bpf_map_lookup_elem(&sock_cork_bytes, &zero); in bpf_prog10()
347 if (bytes) in bpf_prog10()
348 bpf_msg_cork_bytes(msg, *bytes); in bpf_prog10()