HomeSort by relevance Sort by last modified time
    Searched refs:modp_b64_decode_len (Results 1 - 3 of 3) sorted by null

  /external/modp_b64/modp_b64/
modp_b64.h 76 * char* dest = (char*) malloc(modp_b64_decode_len(srclen));
104 #define modp_b64_decode_len(A) (A / 4 * 3 + 2) macro
158 std::string x(modp_b64_decode_len(s.size()), '\0');
  /external/libchrome/base/
base64.cc 26 temp.resize(modp_b64_decode_len(input.size()));
  /external/libbrillo/brillo/
data_encoding.cc 138 // modp_b64_decode_len provides an upper estimate of the size of the output
140 output->resize(modp_b64_decode_len(data->size()));

Completed in 140 milliseconds