Home
last modified time | relevance | path

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

/aosp_15_r20/external/conscrypt/common/src/jni/main/cpp/conscrypt/
H A Dnative_crypto.cc5706 static inline bool decimal_to_integer(const char* data, size_t len, int* out) { in decimal_to_integer() function
5749 if (!decimal_to_integer(data, 4, &year) || in NativeCrypto_ASN1_TIME_to_Calendar()
5750 !decimal_to_integer(data + 4, 2, &mon) || in NativeCrypto_ASN1_TIME_to_Calendar()
5751 !decimal_to_integer(data + 6, 2, &mday) || in NativeCrypto_ASN1_TIME_to_Calendar()
5752 !decimal_to_integer(data + 8, 2, &hour) || in NativeCrypto_ASN1_TIME_to_Calendar()
5753 !decimal_to_integer(data + 10, 2, &min) || in NativeCrypto_ASN1_TIME_to_Calendar()
5754 !decimal_to_integer(data + 12, 2, &sec)) { in NativeCrypto_ASN1_TIME_to_Calendar()