Home
last modified time | relevance | path

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

/tools/bpf/bpftool/
Dbtf_dumper.c346 int nr_bits = BTF_INT_BITS(int_type); in btf_dumper_int_bits()
367 nr_bits = BTF_INT_BITS(*int_type); in btf_dumper_int()
383 if (BTF_INT_BITS(*int_type) == 64) in btf_dumper_int()
385 else if (BTF_INT_BITS(*int_type) == 32) in btf_dumper_int()
387 else if (BTF_INT_BITS(*int_type) == 16) in btf_dumper_int()
389 else if (BTF_INT_BITS(*int_type) == 8) in btf_dumper_int()
396 if (BTF_INT_BITS(*int_type) == 64) in btf_dumper_int()
398 else if (BTF_INT_BITS(*int_type) == 32) in btf_dumper_int()
400 else if (BTF_INT_BITS(*int_type) == 16) in btf_dumper_int()
402 else if (BTF_INT_BITS(*int_type) == 8) in btf_dumper_int()
Dbtf.c129 jsonw_uint_field(w, "nr_bits", BTF_INT_BITS(v)); in dump_btf_type()
133 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.h301 return BTF_INT_BITS(*(__u32 *)(t + 1)); in btf_int_bits()