Home
last modified time | relevance | path

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

/nrf_hw_models-latest/src/HW_models/
Dcrc.c16 static uint8_t rev_byte(uint8_t input){ in rev_byte() function
26 ret = rev_byte((input >> 0) & 0xff) << 16 in rev_24()
27 | rev_byte((input >> 8) & 0xff) << 8 in rev_24()
28 | rev_byte((input >> 16) & 0xff); in rev_24()
37 ret = rev_byte((input >> 0) & 0xff) << 8 in rev_16()
38 | rev_byte((input >> 8) & 0xff) << 0; in rev_16()