Searched refs:nibbles (Results 1 – 6 of 6) sorted by relevance
122 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 …]
187 size_t nibbles; in sodium_bin2base64() local192 nibbles = bin_len / 3; in sodium_bin2base64()193 remainder = bin_len - 3 * nibbles; in sodium_bin2base64()194 b64_len = nibbles * 4; in sodium_bin2base64()
211 char nibbles = nibbles_to_print; in UnityPrintNumberHex() local215 while (nibbles > 0) in UnityPrintNumberHex()217 nibble = (number >> (--nibbles << 2)) & 0x0000000F; in UnityPrintNumberHex()
422 void UnityPrintNumberHex(const _U_UINT number, const char nibbles);
1581 // Swaps the high and low nibbles in a register.