Home
last modified time | relevance | path

Searched refs:BTF_INT_BITS (Results 1 – 4 of 4) sorted by relevance

/tools/bpf/bpftool/
Dbtf_dumper.c181 int nr_bits = BTF_INT_BITS(int_type); in btf_dumper_int_bits()
202 nr_bits = BTF_INT_BITS(*int_type); in btf_dumper_int()
218 if (BTF_INT_BITS(*int_type) == 64) in btf_dumper_int()
220 else if (BTF_INT_BITS(*int_type) == 32) in btf_dumper_int()
222 else if (BTF_INT_BITS(*int_type) == 16) in btf_dumper_int()
224 else if (BTF_INT_BITS(*int_type) == 8) in btf_dumper_int()
231 if (BTF_INT_BITS(*int_type) == 64) in btf_dumper_int()
233 else if (BTF_INT_BITS(*int_type) == 32) in btf_dumper_int()
235 else if (BTF_INT_BITS(*int_type) == 16) in btf_dumper_int()
237 else if (BTF_INT_BITS(*int_type) == 8) in btf_dumper_int()
Dbtf.c113 jsonw_uint_field(w, "nr_bits", BTF_INT_BITS(v)); in dump_btf_type()
117 t->size, BTF_INT_OFFSET(v), BTF_INT_BITS(v), in dump_btf_type()
/tools/include/uapi/linux/
Dbtf.h87 #define BTF_INT_BITS(VAL) ((VAL) & 0x000000ff) macro
/tools/lib/bpf/
Dbtf.h249 return BTF_INT_BITS(*(__u32 *)(t + 1)); in btf_int_bits()