Home
last modified time | relevance | path

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

/Linux-v5.15/tools/bpf/bpftool/
Dbtf_dumper.c253 __u64 upper_num, lower_num; in btf_int128_print() local
256 upper_num = *(__u64 *)data; in btf_int128_print()
259 upper_num = *(__u64 *)(data + 8); in btf_int128_print()
264 if (upper_num == 0) in btf_int128_print()
267 jsonw_printf(jw, "0x%llx%016llx", upper_num, lower_num); in btf_int128_print()
269 if (upper_num == 0) in btf_int128_print()
272 jsonw_printf(jw, "\"0x%llx%016llx\"", upper_num, lower_num); in btf_int128_print()
279 __u64 upper_num, lower_num; in btf_int128_shift() local
282 upper_num = print_num[0]; in btf_int128_shift()
285 upper_num = print_num[1]; in btf_int128_shift()
[all …]
/Linux-v5.15/kernel/bpf/
Dbtf.c2069 u64 upper_num, lower_num; in btf_int128_print() local
2072 upper_num = *(u64 *)data; in btf_int128_print()
2075 upper_num = *(u64 *)(data + 8); in btf_int128_print()
2078 if (upper_num == 0) in btf_int128_print()
2081 btf_show_type_values(show, "0x%llx%016llx", upper_num, in btf_int128_print()
2088 u64 upper_num, lower_num; in btf_int128_shift() local
2091 upper_num = print_num[0]; in btf_int128_shift()
2094 upper_num = print_num[1]; in btf_int128_shift()
2100 upper_num = lower_num << (left_shift_bits - 64); in btf_int128_shift()
2103 upper_num = (upper_num << left_shift_bits) | in btf_int128_shift()
[all …]