MCPcopy Create free account
hub / github.com/catboost/catboost / Base64Decode

Function Base64Decode

library/cpp/string_utils/base64/base64.h:26–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24size_t Base64Decode(void* dst, const char* b, const char* e);
25
26inline TStringBuf Base64Decode(const TStringBuf src, void* dst) {
27 return TStringBuf(static_cast<const char*>(dst), Base64Decode(dst, src.begin(), src.end()));
28}
29
30inline void Base64Decode(const TStringBuf src, TString& dst) {
31 dst.ReserveAndResize(Base64DecodeBufSize(src.size()));

Callers 5

Y_UNIT_TESTFunction · 0.70
Y_UNIT_TESTFunction · 0.50
BenchDecodeFunction · 0.50
LLVMFuzzerTestOneInputFunction · 0.50

Calls 5

Base64DecodeBufSizeFunction · 0.85
beginMethod · 0.45
endMethod · 0.45
sizeMethod · 0.45
resizeMethod · 0.45

Tested by 1