MEM_Ephem        19981 third_party/sqlite/amalgamation/sqlite3.c   pMem->flags &= ~(MEM_Static|MEM_Dyn|MEM_Ephem);
MEM_Ephem        56046 third_party/sqlite/amalgamation/sqlite3.c     ((pMem->flags&MEM_Ephem) ? 1 : 0) + 
MEM_Ephem        56073 third_party/sqlite/amalgamation/sqlite3.c     pMem->flags &= ~(MEM_Ephem|MEM_Static);
MEM_Ephem        56592 third_party/sqlite/amalgamation/sqlite3.c     pTo->flags &= ~(MEM_Dyn|MEM_Static|MEM_Ephem);
MEM_Ephem        56593 third_party/sqlite/amalgamation/sqlite3.c     assert( srcType==MEM_Ephem || srcType==MEM_Static );
MEM_Ephem        56612 third_party/sqlite/amalgamation/sqlite3.c       pTo->flags |= MEM_Ephem;
MEM_Ephem        56828 third_party/sqlite/amalgamation/sqlite3.c         sqlite3VdbeMemShallowCopy(&c1, pMem1, MEM_Ephem);
MEM_Ephem        56829 third_party/sqlite/amalgamation/sqlite3.c         sqlite3VdbeMemShallowCopy(&c2, pMem2, MEM_Ephem);
MEM_Ephem        56891 third_party/sqlite/amalgamation/sqlite3.c     pMem->flags = MEM_Blob|MEM_Ephem;
MEM_Ephem        56938 third_party/sqlite/amalgamation/sqlite3.c       assert( (pVal->flags & (MEM_Ephem|MEM_Static))!=0 );
MEM_Ephem        59905 third_party/sqlite/amalgamation/sqlite3.c         pMem->flags = MEM_Str | MEM_Ephem;
MEM_Ephem        59907 third_party/sqlite/amalgamation/sqlite3.c         pMem->flags = MEM_Blob | MEM_Ephem;
MEM_Ephem        61136 third_party/sqlite/amalgamation/sqlite3.c     pOut->flags |= MEM_Ephem;
MEM_Ephem        61967 third_party/sqlite/amalgamation/sqlite3.c    if( ((P)->flags&MEM_Ephem)!=0 \
MEM_Ephem        62168 third_party/sqlite/amalgamation/sqlite3.c       assert( (f & (MEM_Static|MEM_Ephem))==0 );
MEM_Ephem        62171 third_party/sqlite/amalgamation/sqlite3.c       assert( (f & (MEM_Dyn|MEM_Ephem))==0 );
MEM_Ephem        62172 third_party/sqlite/amalgamation/sqlite3.c     }else if( f & MEM_Ephem ){
MEM_Ephem        62205 third_party/sqlite/amalgamation/sqlite3.c       assert( (f & (MEM_Static|MEM_Ephem))==0 );
MEM_Ephem        62208 third_party/sqlite/amalgamation/sqlite3.c       assert( (f & (MEM_Dyn|MEM_Ephem))==0 );
MEM_Ephem        62209 third_party/sqlite/amalgamation/sqlite3.c     }else if( f & MEM_Ephem ){
MEM_Ephem        63364 third_party/sqlite/amalgamation/sqlite3.c   sqlite3VdbeMemShallowCopy(pOut, pIn1, MEM_Ephem);
MEM_Ephem        63386 third_party/sqlite/amalgamation/sqlite3.c   sqlite3VdbeMemShallowCopy(pOut, pIn1, MEM_Ephem);
MEM_Ephem        63452 third_party/sqlite/amalgamation/sqlite3.c     assert( (u.ad.pMem[u.ad.i].flags & MEM_Ephem)==0
MEM_Ephem        64690 third_party/sqlite/amalgamation/sqlite3.c     u.am.pDest->flags &= ~(MEM_Ephem|MEM_Static);
MEM_Ephem        67441 third_party/sqlite/amalgamation/sqlite3.c   sqlite3VdbeMemShallowCopy(pOut, u.bz.pIn, MEM_Ephem);
MEM_Ephem         322 third_party/sqlite/src/src/utf.c   pMem->flags &= ~(MEM_Static|MEM_Dyn|MEM_Ephem);
MEM_Ephem         151 third_party/sqlite/src/src/vdbe.c    if( ((P)->flags&MEM_Ephem)!=0 \
MEM_Ephem         352 third_party/sqlite/src/src/vdbe.c       assert( (f & (MEM_Static|MEM_Ephem))==0 );
MEM_Ephem         355 third_party/sqlite/src/src/vdbe.c       assert( (f & (MEM_Dyn|MEM_Ephem))==0 );
MEM_Ephem         356 third_party/sqlite/src/src/vdbe.c     }else if( f & MEM_Ephem ){
MEM_Ephem         389 third_party/sqlite/src/src/vdbe.c       assert( (f & (MEM_Static|MEM_Ephem))==0 );
MEM_Ephem         392 third_party/sqlite/src/src/vdbe.c       assert( (f & (MEM_Dyn|MEM_Ephem))==0 );
MEM_Ephem         393 third_party/sqlite/src/src/vdbe.c     }else if( f & MEM_Ephem ){
MEM_Ephem        1046 third_party/sqlite/src/src/vdbe.c   sqlite3VdbeMemShallowCopy(pOut, pIn1, MEM_Ephem);
MEM_Ephem        1068 third_party/sqlite/src/src/vdbe.c   sqlite3VdbeMemShallowCopy(pOut, pIn1, MEM_Ephem);
MEM_Ephem        1132 third_party/sqlite/src/src/vdbe.c     assert( (pMem[i].flags & MEM_Ephem)==0
MEM_Ephem        2352 third_party/sqlite/src/src/vdbe.c     pDest->flags &= ~(MEM_Ephem|MEM_Static);
MEM_Ephem        5025 third_party/sqlite/src/src/vdbe.c   sqlite3VdbeMemShallowCopy(pOut, pIn, MEM_Ephem);
MEM_Ephem         802 third_party/sqlite/src/src/vdbeapi.c     pOut->flags |= MEM_Ephem;
MEM_Ephem        2780 third_party/sqlite/src/src/vdbeaux.c         pMem->flags = MEM_Str | MEM_Ephem;
MEM_Ephem        2782 third_party/sqlite/src/src/vdbeaux.c         pMem->flags = MEM_Blob | MEM_Ephem;
MEM_Ephem          81 third_party/sqlite/src/src/vdbemem.c     ((pMem->flags&MEM_Ephem) ? 1 : 0) + 
MEM_Ephem         108 third_party/sqlite/src/src/vdbemem.c     pMem->flags &= ~(MEM_Ephem|MEM_Static);
MEM_Ephem         627 third_party/sqlite/src/src/vdbemem.c     pTo->flags &= ~(MEM_Dyn|MEM_Static|MEM_Ephem);
MEM_Ephem         628 third_party/sqlite/src/src/vdbemem.c     assert( srcType==MEM_Ephem || srcType==MEM_Static );
MEM_Ephem         647 third_party/sqlite/src/src/vdbemem.c       pTo->flags |= MEM_Ephem;
MEM_Ephem         863 third_party/sqlite/src/src/vdbemem.c         sqlite3VdbeMemShallowCopy(&c1, pMem1, MEM_Ephem);
MEM_Ephem         864 third_party/sqlite/src/src/vdbemem.c         sqlite3VdbeMemShallowCopy(&c2, pMem2, MEM_Ephem);
MEM_Ephem         926 third_party/sqlite/src/src/vdbemem.c     pMem->flags = MEM_Blob|MEM_Ephem;
MEM_Ephem         973 third_party/sqlite/src/src/vdbemem.c       assert( (pVal->flags & (MEM_Ephem|MEM_Static))!=0 );