Home
last modified time | relevance | path

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

/src/contrib/sqlite3/
H A Dshell.c5207 static char* toBase64( u8 *pIn, int nbIn, char *pOut ){ in toBase64() argument
5209 while( nbIn >= 3 ){ in toBase64()
5216 nbIn -= 3; in toBase64()
5218 if( (nCol += 4)>=B64_DARK_MAX || nbIn<=0 ){ in toBase64()
5223 if( nbIn > 0 ){ in toBase64()
5224 signed char nco = nbIn+1; in toBase64()
5229 if( nbe<nbIn ) qv |= *pIn++; in toBase64()
5564 static char* toBase85( u8 *pIn, int nbIn, char *pOut, char *pSep ){ in toBase85() argument
5566 while( nbIn >= 4 ){ in toBase85()
5576 nbIn -= 4; in toBase85()
[all …]