Home
last modified time | relevance | path

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

/external/chromium/third_party/modp_b64/
Dmodp_b64.h79 int modp_b64_decode(char* dest, const char* src, int len);
152 inline std::string& modp_b64_decode(std::string& s) in modp_b64_decode() function
155 int d = modp_b64_decode(const_cast<char*>(x.data()), s.data(), s.size()); in modp_b64_decode()
Dmodp_b64.cc119 int modp_b64_decode(char* dest, const char* src, int len) in modp_b64_decode() function
187 int modp_b64_decode(char* dest, const char* src, int len) in modp_b64_decode() function
/external/chromium/base/
Dbase64.cc32 int output_size = modp_b64_decode(&(temp[0]), input.data(), input_size); in Base64Decode()