Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dvdbemem.c110 if( p->flags & MEM_Int ){ in vdbeMemRenderNum()
115 assert( (p->flags&MEM_Int)*2==sizeof(x) ); in vdbeMemRenderNum()
626 if( flags & (MEM_Int|MEM_IntReal) ){ in sqlite3VdbeIntValue()
704 MemSetTypeFlag(pMem, MEM_Int); in sqlite3VdbeIntegerAffinity()
718 MemSetTypeFlag(pMem, MEM_Int); in sqlite3VdbeMemIntegerify()
772 testcase( pMem->flags & MEM_Int ); in sqlite3VdbeMemNumerify()
786 MemSetTypeFlag(pMem, MEM_Int); in sqlite3VdbeMemNumerify()
916 pMem->flags = MEM_Int; in vdbeReleaseAndSetInt64()
928 pMem->flags = MEM_Int; in sqlite3VdbeMemSetInt64()
1620 testcase( pVal->flags & MEM_Int ); in valueFromExpr()
[all …]
H A Dvdbe.c349 pRec->flags |= MEM_Int; in applyNumericAffinity()
455 return MEM_Int; in computeNumericType()
461 return MEM_Int; in computeNumericType()
467 return MEM_Int; in computeNumericType()
565 }else if( (p->flags & (MEM_Int|MEM_Str))==(MEM_Int|MEM_Str) ){ in memTracePrint()
657 pOut->flags = MEM_Int; in out2PrereleaseWithClear()
669 pOut->flags = MEM_Int; in out2Prerelease()
985 pIn1->flags = MEM_Int; in sqlite3VdbeExec()
1042 pOut->flags = MEM_Int; in sqlite3VdbeExec()
1092 pIn1->flags = MEM_Int; in sqlite3VdbeExec()
[all …]
H A Dvdbeaux.c3748 testcase( flags & MEM_Int );
3913 pMem->flags = MEM_Int; in serialGet()
3959 pMem->flags = MEM_Int; in sqlite3VdbeSerialGet()
3967 pMem->flags = MEM_Int; in sqlite3VdbeSerialGet()
3975 pMem->flags = MEM_Int; in sqlite3VdbeSerialGet()
3987 pMem->flags = MEM_Int; in sqlite3VdbeSerialGet()
3995 pMem->flags = MEM_Int; in sqlite3VdbeSerialGet()
4011 pMem->flags = MEM_Int; in sqlite3VdbeSerialGet()
4410 testcase( f1 & MEM_Int ); in sqlite3MemCompare()
4424 testcase( f2 & MEM_Int ); in sqlite3MemCompare()
[all …]
H A Dvdbeapi.c311 }else if( pVal->flags & MEM_Int ){ in sqlite3_value_type()
604 if( pCtx->pOut->flags & MEM_Int ){ in sqlite3ResultIntReal()
605 pCtx->pOut->flags &= ~MEM_Int; in sqlite3ResultIntReal()
1975 if( pMem->flags & (MEM_Int|MEM_IntReal) ){ in sqlite3_preupdate_old()
1976 testcase( pMem->flags & MEM_Int ); in sqlite3_preupdate_old()
H A Dvdbetrace.c131 }else if( pVar->flags & (MEM_Int|MEM_IntReal) ){ in sqlite3VdbeExpandSql()
H A DvdbeInt.h287 #define MEM_Int 0x0004 /* Value is an integer */ macro
H A Dvdbeblob.c62 v->aMem[1].flags = MEM_Int; in blobSeekToRow()