OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:hex_char_to_nibble
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/libsrtp/srtp/crypto/math/
datatypes.c
128
hex_char_to_nibble
(uint8_t c) {
function
161
if (
hex_char_to_nibble
(*s++) == -1)
179
tmp =
hex_char_to_nibble
(hex[0]);
184
tmp =
hex_char_to_nibble
(hex[1]);
math.c
380
hex_char_to_nibble
(uint8_t c) {
function
413
if (
hex_char_to_nibble
(*s++) == -1)
422
x = (
hex_char_to_nibble
(s[0]) << 4)
423
|
hex_char_to_nibble
(s[1] & 0xFF);
441
tmp =
hex_char_to_nibble
(hex[0]);
446
tmp =
hex_char_to_nibble
(hex[1]);
463
x.v8[j] = (
hex_char_to_nibble
(s[i]) << 4)
464
|
hex_char_to_nibble
(s[i+1] & 0xFF);
475
x.v8[j] = (
hex_char_to_nibble
(s[i]) << 4)
476
|
hex_char_to_nibble
(s[i+1] & 0xFF)
[
all
...]
Completed in 78 milliseconds