OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:nibble_to_hex_char
(Results
1 - 2
of
2
) sorted by null
/external/srtp/crypto/math/
datatypes.c
101
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);
math.c
276
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
(x->v8[i] >> 4)
[
all
...]
Completed in 7885 milliseconds