Searched refs:decimal_to_integer (Results  1 – 1 of 1) sorted by relevance
| /external/conscrypt/common/src/jni/main/cpp/conscrypt/ | 
| D | native_crypto.cc | 5150 static inline bool decimal_to_integer(const char* data, size_t len, int* out) {  in decimal_to_integer()  function 5193     if (!decimal_to_integer(data, 4, &year) ||  in NativeCrypto_ASN1_TIME_to_Calendar() 5194         !decimal_to_integer(data + 4, 2, &mon) ||  in NativeCrypto_ASN1_TIME_to_Calendar() 5195         !decimal_to_integer(data + 6, 2, &mday) ||  in NativeCrypto_ASN1_TIME_to_Calendar() 5196         !decimal_to_integer(data + 8, 2, &hour) ||  in NativeCrypto_ASN1_TIME_to_Calendar() 5197         !decimal_to_integer(data + 10, 2, &min) ||  in NativeCrypto_ASN1_TIME_to_Calendar() 5198         !decimal_to_integer(data + 12, 2, &sec)) {  in NativeCrypto_ASN1_TIME_to_Calendar()
  |