Searched refs:uc (Results 1 – 1 of 1) sorted by relevance
50 static int ascii2uc(const char c, unsigned char *uc) in ascii2uc() argument53 *uc = c - '0'; in ascii2uc()55 *uc = c - 'a' + 10; in ascii2uc()57 *uc = c - 'A' + 10; in ascii2uc()130 unsigned char uc, uc2; in mbedtls_test_unhexify() local144 if ( ascii2uc( *(ibuf++), &uc ) != 0 ) in mbedtls_test_unhexify()150 *(obuf++) = ( uc << 4 ) | uc2; in mbedtls_test_unhexify()
Completed in 3 milliseconds