Home | History | Annotate | Download | only in dist

Lines Matching refs:EP_Reduced

10539 ** If the EP_Reduced and EP_TokenOnly flags are set when
10540 ** an Expr object is truncated. When EP_Reduced is set, then all
10544 ** allocated, regardless of whether or not EP_Reduced is set.
10568 /* If the EP_Reduced flag is set in the Expr.flags mask, then no
10605 #define EP_Reduced 0x2000 /* Expr struct is EXPR_REDUCEDSIZE bytes only */
10638 ** struct, an Expr struct with the EP_Reduced flag set in Expr.flags
73082 testcase( ExprHasProperty(pExpr, EP_Reduced) );
73259 assert( (pDup->flags & (EP_Reduced|EP_TokenOnly))==0 );
73343 assert( ~ExprHasAnyProperty(pExpr, EP_TokenOnly|EP_Reduced) );
74953 assert( !ExprHasAnyProperty(pExpr, EP_IntValue|EP_Reduced|EP_TokenOnly) );
75026 if( !ExprHasProperty(p, EP_Reduced) && (p->flags2 & EP2_MallocedToken)!=0 ){
75047 if( ExprHasProperty(p, EP_Reduced) ) return EXPR_REDUCEDSIZE;
75068 ** EXPR_REDUCEDSIZE | EP_Reduced
75073 ** return value with EP_Reduced|EP_TokenOnly.
75091 assert( !ExprHasAnyProperty(p, EP_TokenOnly|EP_Reduced) );
75096 nSize = EXPR_REDUCEDSIZE | EP_Reduced;
75182 assert( ExprHasProperty(p, EP_Reduced
75190 /* Set the EP_Reduced, EP_TokenOnly, and EP_Static flags appropriately. */
75191 pNew->flags &= ~(EP_Reduced|EP_TokenOnly|EP_Static);
75192 pNew->flags |= nStructSize & (EP_Reduced|EP_TokenOnly);
75211 if( ExprHasAnyProperty(pNew, EP_Reduced|EP_TokenOnly) ){
75213 if( ExprHasProperty(pNew, EP_Reduced) ){
78120 assert( !ExprHasAnyProperty(pA, EP_TokenOnly|EP_Reduced) );
78121 assert( !ExprHasAnyProperty(pB, EP_TokenOnly|EP_Reduced) );
78227 assert( !ExprHasAnyProperty(pExpr, EP_TokenOnly|EP_Reduced) );
78322 assert( !ExprHasAnyProperty(pExpr, EP_TokenOnly|EP_Reduced) );
94779 assert( !ExprHasAnyProperty(pEq, EP_TokenOnly|EP_Reduced) );
94815 assert( !ExprHasAnyProperty(p, EP_TokenOnly|EP_Reduced) );