Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dvdbe.c213 pStack->flags = MEM_Str | MEM_Short; in hardStringify()
777 }else if( pTos->flags & MEM_Short ){ in sqliteVdbeExec()
784 pTos->flags &= ~(MEM_Static|MEM_Ephem|MEM_Short); in sqliteVdbeExec()
812 if( pFrom->flags & MEM_Short ){ in sqliteVdbeExec()
819 if( pTos->flags & MEM_Short ){ in sqliteVdbeExec()
840 if( pTo->flags & MEM_Short ){ in sqliteVdbeExec()
1124 if( pTos->flags & MEM_Short ){ in sqliteVdbeExec()
1942 pTos->flags = MEM_Str | MEM_Short; in sqliteVdbeExec()
2114 pTos->flags = MEM_Str | MEM_Short; in sqliteVdbeExec()
2137 assert( pTos->flags & (MEM_Dyn|MEM_Short) ); in sqliteVdbeExec()
[all …]
H A DvdbeInt.h132 #define MEM_Short 0x0080 /* Mem.z points to Mem.zShort */ macro
H A Dvdbeaux.c426 p->s.flags = MEM_Str | MEM_Short; in sqlite_set_result_string()