Searched refs:nibble (Results 1 – 1 of 1) sorted by relevance
833 uint8_t nibble = (in_array_hex[i] >> (shift ? 0 : 4)) & 0x0F; local834 if (nibble < 10) {835 out_str[i * 2 + shift] = '0' + nibble;837 out_str[i * 2 + shift] = 'a' + nibble - 10;853 uint8_t nibble = (bytes[i] >> (shift ? 0 : 4)) & 0x0F; local854 if (nibble < 10) {855 hexbuf[i * 2 + shift] = '0' + nibble;857 hexbuf[i * 2 + shift] = 'a' + nibble - 10;