Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c4659 static char* toBase64( u8 *pIn, int nbIn, char *pOut ){ in toBase64() argument
4661 while( nbIn >= 3 ){ in toBase64()
4668 nbIn -= 3; in toBase64()
4670 if( (nCol += 4)>=B64_DARK_MAX || nbIn<=0 ){ in toBase64()
4675 if( nbIn > 0 ){ in toBase64()
4676 signed char nco = nbIn+1; in toBase64()
4681 if( nbe<nbIn ) qv |= *pIn++; in toBase64()
5013 static char* toBase85( u8 *pIn, int nbIn, char *pOut, char *pSep ){ in toBase85() argument
5015 while( nbIn >= 4 ){ in toBase85()
5025 nbIn -= 4; in toBase85()
[all …]