Searched refs:nibble_to_hex_char (Results 1 - 3 of 3) sorted by relevance

/external/srtp/crypto/math/
H A Dmath.c276 nibble_to_hex_char(uint8_t nibble) { function
285 bit_string[0] = nibble_to_hex_char(x >> 4);
286 bit_string[1] = nibble_to_hex_char(x & 0xF);
305 bit_string[i] = nibble_to_hex_char(*s >> 4);
306 bit_string[i+1] = nibble_to_hex_char(*s++ & 0xF);
317 bit_string[j++] = nibble_to_hex_char(x.v8[i] >> 4);
318 bit_string[j++] = nibble_to_hex_char(x.v8[i] & 0xF);
330 bit_string[j++] = nibble_to_hex_char(x.v8[i] >> 4);
331 bit_string[j++] = nibble_to_hex_char(x.v8[i] & 0xF);
343 bit_string[j++] = nibble_to_hex_char(
[all...]
H A Ddatatypes.c101 nibble_to_hex_char(uint8_t nibble) { function
120 bit_string[i] = nibble_to_hex_char(*str >> 4);
121 bit_string[i+1] = nibble_to_hex_char(*str++ & 0xF);
200 bit_string[j++] = nibble_to_hex_char(x->v8[i] >> 4);
201 bit_string[j++] = nibble_to_hex_char(x->v8[i] & 0xF);
/external/srtp/crypto/include/
H A Ddatatypes.h127 nibble_to_hex_char(uint8_t nibble);

Completed in 59 milliseconds