Searched refs:MEM_Real (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dvdbemem.c195 ** Existing representations MEM_Int and MEM_Real are *not* invalidated.
211 assert( fg&(MEM_Int|MEM_Real) );
229 assert( fg & MEM_Real );
367 }else if( flags & MEM_Real ){
389 if( pMem->flags & MEM_Real ){
405 ** The MEM structure is already a MEM_Real. Try to also make it a
409 assert( pMem->flags & MEM_Real );
448 ** Convert pMem so that it is of type MEM_Real.
456 MemSetTypeFlag(pMem, MEM_Real);
461 ** Convert pMem so that it has types MEM_Real o
[all...]
H A Dvdbetrace.c121 }else if( pVar->flags & MEM_Real ){
H A DvdbeInt.h169 ** set, then the string is nul terminated. The MEM_Int and MEM_Real
175 #define MEM_Real 0x0008 /* Value is a real number */ macro
H A Dvdbe.c174 else if( flags & MEM_Real ){
251 if( (pRec->flags & (MEM_Real|MEM_Int))==0 ){
262 pRec->flags |= MEM_Real;
295 if( 0==(pRec->flags&MEM_Str) && (pRec->flags&(MEM_Real|MEM_Int)) ){
298 pRec->flags &= ~(MEM_Real|MEM_Int);
303 if( pRec->flags & MEM_Real ){
431 }else if( p->flags & MEM_Real ){
900 pOut->flags = MEM_Real;
1298 MemSetTypeFlag(pOut, MEM_Real);
1299 if( (flags & MEM_Real)
[all...]
H A Dvdbeaux.c915 }else if( pMem->flags & MEM_Real ){
2552 if( flags&MEM_Real ){
2764 pMem->flags = sqlite3IsNaN(pMem->r) ? MEM_Null : MEM_Real;
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c12383 ** set, then the string is nul terminated. The MEM_Int and MEM_Real
12389 #define MEM_Real 0x0008 /* Value is a real number */ macro
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c14052 ** set, then the string is nul terminated. The MEM_Int and MEM_Real
14058 #define MEM_Real 0x0008 /* Value is a real number */ macro
[all...]
/external/sqlite/dist/
H A Dsqlite3.c14052 ** set, then the string is nul terminated. The MEM_Int and MEM_Real
14058 #define MEM_Real 0x0008 /* Value is a real number */ macro
[all...]

Completed in 1838 milliseconds