Home
last modified time | relevance | path

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

/freebsd/contrib/ntp/sntp/libevent/
H A Devent_tagging.c122 int off = 1, nibbles = 0; \
136 nibbles = off - 2; \
139 data[0] = (data[0] & 0x0f) | ((nibbles & 0x0f) << 4); \
323 int nibbles = 0; \
333 nibbles = ((data[0] & 0xf0) >> 4) + 1; \
334 if (nibbles > maxnibbles || (nibbles >> 1) + 1 > len) \
336 len = (nibbles >> 1) + 1; \
342 while (nibbles > 0) { \
344 if (nibbles & 0x1) \
345 number |= data[nibbles >> 1] & 0x0f; \
[all …]
/freebsd/contrib/libevent/
H A Devent_tagging.c122 int off = 1, nibbles = 0; \
136 nibbles = off - 2; \
139 data[0] = (data[0] & 0x0f) | ((nibbles & 0x0f) << 4); \
323 int nibbles = 0; \
333 nibbles = ((data[0] & 0xf0) >> 4) + 1; \
334 if (nibbles > maxnibbles || (nibbles >> 1) + 1 > len) \
336 len = (nibbles >> 1) + 1; \
342 while (nibbles > 0) { \
344 if (nibbles & 0x1) \
345 number |= data[nibbles >> 1] & 0x0f; \
[all …]
/freebsd/sys/contrib/libsodium/src/libsodium/sodium/
H A Dcodecs.c187 size_t nibbles; in sodium_bin2base64() local
192 nibbles = bin_len / 3; in sodium_bin2base64()
193 remainder = bin_len - 3 * nibbles; in sodium_bin2base64()
194 b64_len = nibbles * 4; in sodium_bin2base64()
/freebsd/contrib/ntp/sntp/unity/
H A Dunity.c211 char nibbles = nibbles_to_print; in UnityPrintNumberHex() local
215 while (nibbles > 0) in UnityPrintNumberHex()
217 nibble = (number >> (--nibbles << 2)) & 0x0000000F; in UnityPrintNumberHex()
H A Dunity_internals.h422 void UnityPrintNumberHex(const _U_UINT number, const char nibbles);
/freebsd/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRInstrInfo.td1581 // Swaps the high and low nibbles in a register.