Searched refs:encodeLength (Results 1 – 2 of 2) sorted by relevance
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
H A D | base64.d | 183 pure nothrow size_t encodeLength(in size_t sourceLength) in encodeLength() function 197 auto buf = new char[Base64.encodeLength(data.length)]; 224 assert(buffer.length >= encodeLength(source.length), "Insufficient buffer for encoding"); 228 …assert(result.length == encodeLength(source.length), "The length of result is different from Base6… in out() 285 auto encodedLength = Base64.encodeLength(data.length); 306 assert(buffer.length >= encodeLength(source.length), "Insufficient buffer for encoding"); 367 bufptr - buffer.ptr == encodeLength(srcLen), 398 …assert(result == encodeLength(source.length), "The number of put is different from the length of B… in out() 551 pcount == encodeLength(srcLen), 575 return encode(source, new char[encodeLength(source.length)]); [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/ |
H A D | base64.d | 184 pure nothrow size_t encodeLength(in size_t sourceLength) in encodeLength() function 198 auto buf = new char[Base64.encodeLength(data.length)]; 225 assert(buffer.length >= encodeLength(source.length), "Insufficient buffer for encoding"); 229 …assert(result.length == encodeLength(source.length), "The length of result is different from Base6… in out() 286 auto encodedLength = Base64.encodeLength(data.length); 307 assert(buffer.length >= encodeLength(source.length), "Insufficient buffer for encoding"); 368 bufptr - buffer.ptr == encodeLength(srcLen), 398 …assert(result == encodeLength(source.length), "The number of put is different from the length of B… in out() 540 pcount == encodeLength(srcLen), 564 return encode(source, new char[encodeLength(source.length)]); [all …]
|