Home | History | Annotate | Download | only in orig

Lines Matching defs:EP_Reduced

11342 ** If the EP_Reduced and EP_TokenOnly flags are set when
11343 ** an Expr object is truncated. When EP_Reduced is set, then all
11347 ** allocated, regardless of whether or not EP_Reduced is set.
11370 /* If the EP_Reduced flag is set in the Expr.flags mask, then no
11409 #define EP_Reduced 0x002000 /* Expr struct EXPR_REDUCEDSIZE bytes only */
11438 ** struct, an Expr struct with the EP_Reduced flag set in Expr.flags
76654 testcase( ExprHasProperty(pExpr, EP_Reduced) );
76898 assert( (pExpr->flags & (EP_Reduced|EP_TokenOnly))==0 );
77002 assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) );
78848 assert( !ExprHasProperty(pExpr, EP_IntValue|EP_Reduced|EP_TokenOnly) );
78942 if( ExprHasProperty(p, EP_Reduced) ) return EXPR_REDUCEDSIZE;
78963 ** EXPR_REDUCEDSIZE | EP_Reduced
78968 ** return value with EP_Reduced|EP_TokenOnly.
78984 assert( (0xfff & (EP_Reduced|EP_TokenOnly))==0 );
78988 assert( !ExprHasProperty(p, EP_TokenOnly|EP_Reduced) );
78993 nSize = EXPR_REDUCEDSIZE | EP_Reduced;
79080 assert( ExprHasProperty(p, EP_Reduced)==0 );
79088 /* Set the EP_Reduced, EP_TokenOnly, and EP_Static flags appropriately. */
79089 pNew->flags &= ~(EP_Reduced|EP_TokenOnly|EP_Static|EP_MemToken);
79090 pNew->flags |= nStructSize & (EP_Reduced|EP_TokenOnly);
79109 if( ExprHasProperty(pNew, EP_Reduced|EP_TokenOnly) ){
79111 if( ExprHasProperty(pNew, EP_Reduced) ){
82178 if( ALWAYS((combinedFlags & EP_Reduced)==0) ){
82367 assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) );
82462 assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) );
101752 assert( !ExprHasProperty(pEq, EP_TokenOnly|EP_Reduced) );
101788 assert( !ExprHasProperty(p, EP_TokenOnly|EP_Reduced) );