Lines Matching refs:MEM_Str
83 if( (p->flags & (MEM_Str|MEM_Blob))!=0 && p->n>sqlite3_max_blobsize ){ in updateMaxBlobsize()
345 assert( (pRec->flags & (MEM_Str|MEM_Int|MEM_Real|MEM_IntReal))==MEM_Str ); in applyNumericAffinity()
359 pRec->flags &= ~MEM_Str; in applyNumericAffinity()
391 if( pRec->flags & MEM_Str ) applyNumericAffinity(pRec,1); in applyAffinity()
402 if( 0==(pRec->flags&MEM_Str) ){ /*OPTIMIZATION-IF-FALSE*/ in applyAffinity()
452 assert( (pMem->flags & (MEM_Str|MEM_Blob))!=0 ); in computeNumericType()
488 assert( pMem->flags & (MEM_Str|MEM_Blob) ); in numericType()
489 testcase( pMem->flags & MEM_Str ); in numericType()
531 }else if( f & MEM_Str ){ in sqlite3VdbeMemPrettyPrint()
565 }else if( (p->flags & (MEM_Int|MEM_Str))==(MEM_Int|MEM_Str) ){ in memTracePrint()
689 }else if( p->flags & (MEM_Str|MEM_Blob) ){ in filterHash()
1303 pOut->flags = MEM_Str|MEM_Static|MEM_Term; in sqlite3VdbeExec()
1652 if( (flags1 & (MEM_Str|MEM_Blob))==0 ){ in sqlite3VdbeExec()
1654 flags1 = pIn1->flags & ~MEM_Str; in sqlite3VdbeExec()
1657 flags1 = pIn1->flags & ~MEM_Str; in sqlite3VdbeExec()
1660 if( (flags2 & (MEM_Str|MEM_Blob))==0 ){ in sqlite3VdbeExec()
1662 flags2 = pIn2->flags & ~MEM_Str; in sqlite3VdbeExec()
1665 flags2 = pIn2->flags & ~MEM_Str; in sqlite3VdbeExec()
1674 MemSetTypeFlag(pOut, MEM_Str); in sqlite3VdbeExec()
2187 if( (flags1 | flags3)&MEM_Str ){ in sqlite3VdbeExec()
2188 if( (flags1 & (MEM_Int|MEM_IntReal|MEM_Real|MEM_Str))==MEM_Str ){ in sqlite3VdbeExec()
2193 if( (flags3 & (MEM_Int|MEM_IntReal|MEM_Real|MEM_Str))==MEM_Str ){ in sqlite3VdbeExec()
2198 if( (flags1 & MEM_Str)==0 && (flags1&(MEM_Int|MEM_Real|MEM_IntReal))!=0 ){ in sqlite3VdbeExec()
2205 if( pIn1==pIn3 ) flags3 = flags1 | MEM_Str; in sqlite3VdbeExec()
2207 if( (flags3 & MEM_Str)==0 && (flags3&(MEM_Int|MEM_Real|MEM_IntReal))!=0 ){ in sqlite3VdbeExec()
3019 static const u16 aFlag[] = { MEM_Blob, MEM_Str|MEM_Term }; in sqlite3VdbeExec()
3135 if( (pIn1->flags & MEM_Str)==0 ) goto vdbe_type_error; in sqlite3VdbeExec()
3435 assert( db->mallocFailed || pRec->flags&(MEM_Str|MEM_Blob) ); in sqlite3VdbeExec()
3438 serial_type = (len*2) + 12 + ((pRec->flags & MEM_Str)!=0); in sqlite3VdbeExec()
4638 if( (flags3 & (MEM_Int|MEM_Real|MEM_IntReal|MEM_Str))==MEM_Str ){ in sqlite3VdbeExec()
5275 testcase( (pIn3->flags & (MEM_Str|MEM_Int))==MEM_Str ); in sqlite3VdbeExec()
5572 assert( (pData->flags & (MEM_Blob|MEM_Str))!=0 || pData->n==0 ); in sqlite3VdbeExec()
6948 assert( (pnErr->flags & (MEM_Str|MEM_Blob))==0 ); in sqlite3VdbeExec()
7742 pOut->flags = MEM_Str|MEM_Static|MEM_Term; in sqlite3VdbeExec()
7922 assert( (aMem[pOp->p2].flags & MEM_Str)!=0 ); in sqlite3VdbeExec()
8211 assert( pName->flags & MEM_Str ); in sqlite3VdbeExec()
8437 assert( (pOut->flags&MEM_Str)==0 in sqlite3VdbeExec()