Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c6812 static char* toBase64( u8 *pIn, int nbIn, char *pOut ){ in toBase64() argument
6814 while( nbIn >= 3 ){ in toBase64()
6821 nbIn -= 3; in toBase64()
6823 if( (nCol += 4)>=B64_DARK_MAX || nbIn<=0 ){ in toBase64()
6828 if( nbIn > 0 ){ in toBase64()
6829 signed char nco = nbIn+1; in toBase64()
6834 if( nbe<nbIn ) qv |= *pIn++; in toBase64()
7168 static char* toBase85( u8 *pIn, int nbIn, char *pOut, char *pSep ){ in toBase85() argument
7170 while( nbIn >= 4 ){ in toBase85()
7180 nbIn -= 4; in toBase85()
[all …]