Home
last modified time | relevance | path

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

/Linux-v5.10/tools/bpf/bpftool/
Dbtf_dumper.c251 __u64 upper_num, lower_num; in btf_int128_print() local
254 upper_num = *(__u64 *)data; in btf_int128_print()
257 upper_num = *(__u64 *)(data + 8); in btf_int128_print()
262 if (upper_num == 0) in btf_int128_print()
265 jsonw_printf(jw, "0x%llx%016llx", upper_num, lower_num); in btf_int128_print()
267 if (upper_num == 0) in btf_int128_print()
270 jsonw_printf(jw, "\"0x%llx%016llx\"", upper_num, lower_num); in btf_int128_print()
277 __u64 upper_num, lower_num; in btf_int128_shift() local
280 upper_num = print_num[0]; in btf_int128_shift()
283 upper_num = print_num[1]; in btf_int128_shift()
[all …]
/Linux-v5.10/kernel/bpf/
Dbtf.c1999 u64 upper_num, lower_num; in btf_int128_print() local
2002 upper_num = *(u64 *)data; in btf_int128_print()
2005 upper_num = *(u64 *)(data + 8); in btf_int128_print()
2008 if (upper_num == 0) in btf_int128_print()
2011 btf_show_type_values(show, "0x%llx%016llx", upper_num, in btf_int128_print()
2018 u64 upper_num, lower_num; in btf_int128_shift() local
2021 upper_num = print_num[0]; in btf_int128_shift()
2024 upper_num = print_num[1]; in btf_int128_shift()
2030 upper_num = lower_num << (left_shift_bits - 64); in btf_int128_shift()
2033 upper_num = (upper_num << left_shift_bits) | in btf_int128_shift()
[all …]