Lines Matching defs:float
5502 ** <tr><td> INTEGER <td> FLOAT <td> Convert from integer to float
5506 ** <tr><td> FLOAT <td> TEXT <td> ASCII rendering of the float
14702 # define float sqlite_int64
24882 float rLimit; /* Maximum NNN value for this transform */
24883 float rXform; /* Constant used for this transform */
88684 ** 7 8 IEEE float
88815 ** float in the wrong order. And that error has been propagated
88834 ** rather than a 64-bit float. Frank assures us that the code here
96587 ** 7 IEEE float
130465 ** 0.0 in that case. In addition, TOTAL always returns a float where
204982 #define JSONB_FLOAT 5 /* float acceptable to JSON and SQL */
204983 #define JSONB_FLOAT5 6 /* float with JSON5 extensions */
208464 case JSONB_FLOAT: sqlite3_str_appendall(pOut,"float"); break;
210534 typedef float RtreeValue; /* Low accuracy coordinate */
213316 ** Rounding constants for float->double conversion.
213323 ** Convert an sqlite3_value into an RtreeValue (presumably a float)
213328 float f = (float)d;
213330 f = (float)(d*(d<0 ? RNDAWAY : RNDTOWARDS));
213336 float f = (float)d;
213338 f = (float)(d*(d<0 ? RNDTOWARDS : RNDAWAY));
214689 typedef float GeoCoord;
215241 float mnX, mxX, mnY, mxY;
215258 if( r<mnX ) mnX = (float)r;
215259 else if( r>mxX ) mxX = (float)r;
215261 if( r<mnY ) mnY = (float)r;
215262 else if( r>mxY ) mxY = (float)r;
215494 float y0; /* Initial y value */