Lines Matching defs:x1

18025 #define SQLITE_TOKEN_QUOTED    0x1 /* Token is a quoted identifier. */
33816 #define SQLITE_FSFLAGS_IS_MSDOS 0x1
119733 ** The userdata is 0x1 for left trim, 0x2 for right trim, 0x3 for both.
137370 SELECTTRACE(0x1,pParse,p,("end compound-select processing\n"));
138311 SELECTTRACE(0x1,pParse,p,("end processing\n"));
144976 int x1, x2;
144978 x1 = pIdx->aiColumn[i];
144979 x2 = sqlite3TableColumnToStorage(pTab, x1);
144980 testcase( x1!=x2 );
144981 if( x1>=0 ) ai[x2+1] = i+1;
145449 op = aMoveOp[((pX->op - TK_GT - 1) & 0x3) | 0x1];
146037 /* If the original WHERE clause is z of the form: (x1 OR x2 OR ...) AND y
146047 ** This optimization also only applies if the (x1 OR x2 OR ...) term
162383 /* x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xa xb xc xd xe xf */
162402 /* x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xa xb xc xd xe xf */
162978 /* x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xA xB xC xD xE xF */
178922 /* x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xA xB xC xD xE xF */
193354 RtreeDValue x1, x2;
193355 x1 = MAX(DCOORD(p->aCoord[jj]), DCOORD(aCell[ii].aCoord[jj]));
193357 if( x2<x1 ){
193361 o = o * (x2-x1);
194407 ** 2. The supplied data violates the "x2>=x1" constraint.
195286 ** x1>x2 conditions) and adds an error message to the RtreeCheck object
196004 ** x1 = A*x0 + B*y0 + E
196027 GeoCoord x1, y1, x0, y0;
196033 x1 = (GeoCoord)(A*x0 + B*y0 + E);
196035 GeoX(p,ii) = x1;
196055 rArea += (GeoX(p,ii) - GeoX(p,ii+1)) /* (x0 - x1) */
196327 ** Determine if point (x0,y0) is beneath line segment (x1,y1)->(x2,y2).
196337 ** The left-most coordinate min(x1,x2) is not considered to be part of
196342 double x1, double y1,
196346 if( x0==x1 && y0==y1 ) return 2;
196347 if( x1<x2 ){
196348 if( x0<=x1 || x0>x2 ) return 0;
196349 }else if( x1>x2 ){
196350 if( x0<=x2 || x0>x1 ) return 0;
196353 if( x0!=x1 ) return 0;
196358 y = y1 + (y2-y1)*(x0-x1)/(x2-x1);
196465 GeoCoord x1,
196472 if( x0==x1 ) return; /* Ignore vertical segments */
196473 if( x0>x1 ){
196475 x0 = x1;
196476 x1 = t;
196483 pSeg->C = (y1-y0)/(x1-x0);
196484 pSeg->B = y1 - x1*pSeg->C;
196495 pEvent->x = x1;
198590 ** CREATE VIRTUAL TABLE x1 USING fts3(a, b);
198591 ** CREATE TABLE x1(a, b)