Home
last modified time | relevance | path

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

/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc5078 static inline bool decimal_to_integer(const char* data, size_t len, int* out) { in decimal_to_integer() function
5121 if (!decimal_to_integer(data, 4, &year) || in NativeCrypto_ASN1_TIME_to_Calendar()
5122 !decimal_to_integer(data + 4, 2, &mon) || in NativeCrypto_ASN1_TIME_to_Calendar()
5123 !decimal_to_integer(data + 6, 2, &mday) || in NativeCrypto_ASN1_TIME_to_Calendar()
5124 !decimal_to_integer(data + 8, 2, &hour) || in NativeCrypto_ASN1_TIME_to_Calendar()
5125 !decimal_to_integer(data + 10, 2, &min) || in NativeCrypto_ASN1_TIME_to_Calendar()
5126 !decimal_to_integer(data + 12, 2, &sec)) { in NativeCrypto_ASN1_TIME_to_Calendar()