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

  /external/srtp/crypto/math/
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...]
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);
  /external/srtp/crypto/include/
datatypes.h 127 nibble_to_hex_char(uint8_t nibble);

Completed in 35 milliseconds