Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c6825 static char* toBase64( u8 *pIn, int nbIn, char *pOut ){ in toBase64() argument
6827 while( nbIn >= 3 ){ in toBase64()
6834 nbIn -= 3; in toBase64()
6836 if( (nCol += 4)>=B64_DARK_MAX || nbIn<=0 ){ in toBase64()
6841 if( nbIn > 0 ){ in toBase64()
6842 signed char nco = nbIn+1; in toBase64()
6847 if( nbe<nbIn ) qv |= *pIn++; in toBase64()
7181 static char* toBase85( u8 *pIn, int nbIn, char *pOut, char *pSep ){ in toBase85() argument
7183 while( nbIn >= 4 ){ in toBase85()
7193 nbIn -= 4; in toBase85()
[all …]