Lines Matching full:24
40 /** @brief Encode 24-bit value into array values in little-endian format.
42 * Helper macro to encode 24-bit values into comma separated values.
46 * @param _v 24-bit integer in host endianness.
48 * @return The comma separated values for the 24-bit value.
66 (((_v) >> 24) & 0xFFU) \
80 BT_BYTES_LIST_LE16((_v) >> 24) \
122 /** @brief Encode 24-bit value into array values in big-endian format.
124 * Helper macro to encode 24-bit values into comma separated values.
128 * @param _v 24-bit integer in host endianness.
130 * @return The comma separated values for the 24-bit value.
144 #define BT_BYTES_LIST_BE32(_v) (((_v) >> 24) & 0xFFU), BT_BYTES_LIST_BE24(_v)
156 #define BT_BYTES_LIST_BE40(_v) BT_BYTES_LIST_BE16((_v) >> 24), BT_BYTES_LIST_BE24(_v)