HomeSort by relevance Sort by last modified time
    Searched refs:hex_char_to_nibble (Results 1 - 3 of 3) sorted by null

  /external/srtp/crypto/math/
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...]
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]);
  /external/srtp/crypto/include/
crypto_math.h 81 hex_char_to_nibble(uint8_t c);

Completed in 485 milliseconds