Home
last modified time | relevance | path

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

/netbsd-src/external/public-domain/sqlite/dist/
H A Dshell.c4645 static char* toBase64( u8 *pIn, int nbIn, char *pOut ){ in toBase64() argument
4647 while( nbIn >= 3 ){ in toBase64()
4654 nbIn -= 3; in toBase64()
4656 if( (nCol += 4)>=B64_DARK_MAX || nbIn<=0 ){ in toBase64()
4661 if( nbIn > 0 ){ in toBase64()
4662 signed char nco = nbIn+1; in toBase64()
4667 if( nbe<nbIn ) qv |= *pIn++; in toBase64()
4999 static char* toBase85( u8 *pIn, int nbIn, char *pOut, char *pSep ){ in toBase85() argument
5001 while( nbIn >= 4 ){ in toBase85()
5011 nbIn -= 4; in toBase85()
[all …]