Home
last modified time | relevance | path

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

/freebsd/contrib/opencsd/decoder/source/stm/
H A Dtrc_pkt_proc_stm.cpp958 uint64_t gray_value = 0; in bin_to_gray() local
959 gray_value = (1ull << 63) & bin_value; in bin_to_gray()
964 gray_value |= ((gray_arg_1 ^ gray_arg_2) << i); in bin_to_gray()
966 return gray_value; in bin_to_gray()
969 uint64_t TrcPktProcStm::gray_to_bin(uint64_t gray_value) in gray_to_bin() argument
974 uint8_t bit_tmp = ((1ull << bin_bit) & gray_value) >> bin_bit; in gray_to_bin()
977 bit_tmp ^= (((1ull << gray_bit) & gray_value) >> gray_bit); in gray_to_bin()
/freebsd/contrib/opencsd/decoder/include/opencsd/stm/
H A Dtrc_pkt_proc_stm.h143 uint64_t gray_to_bin(uint64_t gray_value);