Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c20111 #define EP_Reduced 0x004000 /* Expr struct EXPR_REDUCEDSIZE bytes only */ macro
20144 #define ExprIsFullSize(E) (((E)->flags&(EP_Reduced|EP_TokenOnly))==0)
110128 testcase( ExprHasProperty(pExpr, EP_Reduced) );
110407 assert( !ExprHasProperty(pExpr, EP_Reduced|EP_TokenOnly) );
110628 assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) );
111730 assert( !ExprHasProperty(pExpr, EP_Reduced) );
113970 assert( !ExprHasProperty(pExpr, EP_IntValue|EP_Reduced|EP_TokenOnly) );
114138 if( ExprHasProperty(p, EP_Reduced) ) return EXPR_REDUCEDSIZE;
114180 assert( (0xfff & (EP_Reduced|EP_TokenOnly))==0 );
114184 assert( !ExprHasProperty(p, EP_TokenOnly|EP_Reduced) );
[all …]