Lines Matching refs:pIn
3837 sqlite3_value *pIn, /* Construct the decimal object from this */ in decimal_new() argument
3841 int eType = sqlite3_value_type(pIn); in decimal_new()
3848 const char *zIn = (const char*)sqlite3_value_text(pIn); in decimal_new()
3849 int n = sqlite3_value_bytes(pIn); in decimal_new()
3856 p = decimalFromDouble(sqlite3_value_double(pIn)); in decimal_new()
3866 if( sqlite3_value_bytes(pIn)!=sizeof(r) ) break; in decimal_new()
3867 x = sqlite3_value_blob(pIn); in decimal_new()
4659 static char* toBase64( u8 *pIn, int nbIn, char *pOut ){ in toBase64() argument
4663 pOut[0] = BX_NUMERAL(pIn[0]>>2); in toBase64()
4664 pOut[1] = BX_NUMERAL(((pIn[0]<<4)|(pIn[1]>>4))&0x3f); in toBase64()
4665 pOut[2] = BX_NUMERAL(((pIn[1]&0xf)<<2)|(pIn[2]>>6)); in toBase64()
4666 pOut[3] = BX_NUMERAL(pIn[2]&0x3f); in toBase64()
4669 pIn += 3; in toBase64()
4678 unsigned long qv = *pIn++; in toBase64()
4681 if( nbe<nbIn ) qv |= *pIn++; in toBase64()
4703 static u8* fromBase64( char *pIn, int ncIn, u8 *pOut ){ in fromBase64() argument
4704 if( ncIn>0 && pIn[ncIn-1]=='\n' ) --ncIn; in fromBase64()
4705 while( ncIn>0 && *pIn!=PAD_CHAR ){ in fromBase64()
4707 char *pUse = skipNonB64(pIn, ncIn); in fromBase64()
4710 ncIn -= (pUse - pIn); in fromBase64()
4711 pIn = pUse; in fromBase64()
4717 char c = (nac<nti)? *pIn++ : b64Numerals[0]; in fromBase64()
5013 static char* toBase85( u8 *pIn, int nbIn, char *pOut, char *pSep ){ in toBase85() argument
5017 unsigned long qbv = (((unsigned long)pIn[0])<<24) | in toBase85()
5018 (pIn[1]<<16) | (pIn[2]<<8) | pIn[3]; in toBase85()
5026 pIn += 4; in toBase85()
5035 unsigned long qv = *pIn++; in toBase85()
5038 qv = (qv<<8) | *pIn++; in toBase85()
5054 static u8* fromBase85( char *pIn, int ncIn, u8 *pOut ){ in fromBase85() argument
5055 if( ncIn>0 && pIn[ncIn-1]=='\n' ) --ncIn; in fromBase85()
5058 char *pUse = skipNonB85(pIn, ncIn); in fromBase85()
5061 ncIn -= (pUse - pIn); in fromBase85()
5062 pIn = pUse; in fromBase85()
5067 char c = *pIn++; in fromBase85()