Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c19471 #define EP_Reduced 0x004000 /* Expr struct EXPR_REDUCEDSIZE bytes only */ macro
19504 #define ExprIsFullSize(E) (((E)->flags&(EP_Reduced|EP_TokenOnly))==0)
107837 testcase( ExprHasProperty(pExpr, EP_Reduced) );
108116 assert( !ExprHasProperty(pExpr, EP_Reduced|EP_TokenOnly) );
108337 assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) );
109433 assert( !ExprHasProperty(pExpr, EP_Reduced) );
111655 assert( !ExprHasProperty(pExpr, EP_IntValue|EP_Reduced|EP_TokenOnly) );
111823 if( ExprHasProperty(p, EP_Reduced) ) return EXPR_REDUCEDSIZE;
111865 assert( (0xfff & (EP_Reduced|EP_TokenOnly))==0 );
111869 assert( !ExprHasProperty(p, EP_TokenOnly|EP_Reduced) );
[all …]