Home | History | Annotate | Download | only in orig

Lines Matching defs:e2

19557   int  exp, e2;              /* exponent of real numbers */
19834 e2 = 0;
19836 e2 = exp;
19838 if( e2+precision+width > etBUFSIZE - 15 ){
19839 bufpt = zExtra = sqlite3Malloc( e2+precision+width+15 );
19853 if( e2<0 ){
19856 for(; e2>=0; e2--){
19866 for(e2++; e2<0; precision--, e2++){
77152 ** CASE x WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END
77155 ** CASE WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END
77158 ** CASE WHEN x=e1 THEN r1 WHEN x=e2 THEN r2 ...
105677 /* If the constraint is of the form x=VALUE or x IN (E1,E2,...)