Home
last modified time | relevance | path

Searched refs:s_char_to_int (Results 1 – 2 of 2) sorted by relevance

/optee_os/core/lib/libtomcrypt/src/pk/asn1/der/generalizedtime/
H A Dder_decode_generalizedtime.c13 static int s_char_to_int(unsigned char x) in s_char_to_int() function
31 y = s_char_to_int(buf[x])*10 + s_char_to_int(buf[x+1]); \
37 …y = s_char_to_int(buf[x])*1000 + s_char_to_int(buf[x+1])*100 + s_char_to_int(buf[x+2])*10 + s_cha…
116 out->fs += s_char_to_int(buf[x]); in der_decode_generalizedtime()
/optee_os/core/lib/libtomcrypt/src/pk/asn1/der/utctime/
H A Dder_decode_utctime.c12 static int s_char_to_int(unsigned char x) in s_char_to_int() function
30 y = s_char_to_int(buf[x])*10 + s_char_to_int(buf[x+1]); \