Home
last modified time | relevance | path

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

/linux/kernel/bpf/
H A Dbtf.c2441 u64 upper_num, lower_num; in btf_int128_print() local
2444 upper_num = *(u64 *)data; in btf_int128_print()
2447 upper_num = *(u64 *)(data + 8); in btf_int128_print()
2450 if (upper_num == 0) in btf_int128_print()
2453 btf_show_type_values(show, "0x%llx%016llx", upper_num, in btf_int128_print()
2460 u64 upper_num, lower_num; in btf_int128_shift() local
2463 upper_num = print_num[0]; in btf_int128_shift()
2466 upper_num = print_num[1]; in btf_int128_shift()
2472 upper_num = lower_num << (left_shift_bits - 64); in btf_int128_shift()
2475 upper_num = (upper_num << left_shift_bits) | in btf_int128_shift()
[all …]