Lines Matching defs:float
5370 ** <tr><td> INTEGER <td> FLOAT <td> Convert from integer to float
5374 ** <tr><td> FLOAT <td> TEXT <td> ASCII rendering of the float
14200 # define float sqlite_int64
24130 float rLimit; /* Maximum NNN value for this transform */
24131 float rXform; /* Constant used for this transform */
30068 ** 16 (the number of significant digits in a 64-bit float) '0' is
86245 ** 7 8 IEEE float
86376 ** float in the wrong order. And that error has been propagated
86395 ** rather than a 64-bit float. Frank assures us that the code here
93728 ** 7 IEEE float
126272 ** 0.0 in that case. In addition, TOTAL always returns a float where
201162 typedef float RtreeValue; /* Low accuracy coordinate */
204085 ** Rounding constants for float->double conversion.
204092 ** Convert an sqlite3_value into an RtreeValue (presumably a float)
204097 float f = (float)d;
204099 f = (float)(d*(d<0 ? RNDAWAY : RNDTOWARDS));
204105 float f = (float)d;
204107 f = (float)(d*(d<0 ? RNDTOWARDS : RNDAWAY));
205438 typedef float GeoCoord;
205984 float mnX, mxX, mnY, mxY;
206001 if( r<mnX ) mnX = (float)r;
206002 else if( r>mxX ) mxX = (float)r;
206004 if( r<mnY ) mnY = (float)r;
206005 else if( r>mxY ) mxY = (float)r;
206232 float y0; /* Initial y value */