Home
last modified time | relevance | path

Searched refs:STACK_SLOT_SZ (Results 1 – 2 of 2) sorted by relevance

/linux/kernel/bpf/
H A Dliveness.c453 space, frame, spi_off(spi) + (lo ? STACK_SLOT_SZ : 0), "h"); in fmt_spis_mask()
1212 slot_hi = (-fp_off - 1) / STACK_SLOT_SZ; in record_stack_access_off()
1219 slot_hi = (-fp_off - 1) / STACK_SLOT_SZ; in record_stack_access_off()
1220 slot_lo = max_t(s32, (-fp_off - access_bytes) / STACK_SLOT_SZ, 0); in record_stack_access_off()
1227 slot_hi = (-fp_off) / STACK_SLOT_SZ - 1; in record_stack_access_off()
1228 slot_lo = max_t(s32, (-fp_off - access_bytes + STACK_SLOT_SZ - 1) / STACK_SLOT_SZ, 0); in record_stack_access_off()
/linux/include/linux/
H A Dbpf_verifier.h230 #define STACK_SLOT_SZ 4 macro