Home | History | Annotate | Download | only in dist

Lines Matching defs:float

5470 ** ^For example, if the internal representation is FLOAT and a text result
5480 ** <tr><td> NULL <td> FLOAT <td> Result is 0.0
5483 ** <tr><td> INTEGER <td> FLOAT <td> Convert from integer to float
5486 ** <tr><td> FLOAT <td> INTEGER <td> [CAST] to INTEGER
5487 ** <tr><td> FLOAT <td> TEXT <td> ASCII rendering of the float
5488 ** <tr><td> FLOAT <td> BLOB <td> [CAST] to BLOB
5490 ** <tr><td> TEXT <td> FLOAT <td> [CAST] to REAL
5493 ** <tr><td> BLOB <td> FLOAT <td> [CAST] to REAL
13745 # define float sqlite_int64
13756 # include <float.h>
14657 # define float sqlite_int64
24761 float rLimit; /* Maximum NNN value for this transform */
24762 float rXform; /* Constant used for this transform */
88208 ** 7 8 IEEE float
88339 ** float in the wrong order. And that error has been propagated
88358 ** rather than a 64-bit float. Frank assures us that the code here
90128 SQLITE_FLOAT, /* 0x08 FLOAT */
90130 SQLITE_FLOAT, /* 0x0a FLOAT + TEXT */
90144 SQLITE_FLOAT, /* 0x18 FLOAT + BLOB */
96080 ** 7 IEEE float
129714 ** 0.0 in that case. In addition, TOTAL always returns a float where
139732 sqlite3VdbeChangeP5(v, 0x1b); /* NULL, INT, FLOAT, or BLOB */
172335 0, /* FLOAT => nothing */
172608 /* 153 */ "FLOAT",
172962 /* 181 */ "term ::= NULL|FLOAT|BLOB",
173037 /* 256 */ "plus_num ::= PLUS INTEGER|FLOAT",
173038 /* 257 */ "minus_num ::= MINUS INTEGER|FLOAT",
173168 /* 387 */ "plus_num ::= INTEGER|FLOAT",
173873 216, /* (181) term ::= NULL|FLOAT|BLOB */
173948 211, /* (256) plus_num ::= PLUS INTEGER|FLOAT */
173949 212, /* (257) minus_num ::= MINUS INTEGER|FLOAT */
174079 211, /* (387) plus_num ::= INTEGER|FLOAT */
174283 -1, /* (181) term ::= NULL|FLOAT|BLOB */
174358 -2, /* (256) plus_num ::= PLUS INTEGER|FLOAT */
174359 -2, /* (257) minus_num ::= MINUS INTEGER|FLOAT */
174489 -1, /* (387) plus_num ::= INTEGER|FLOAT */
174969 case 256: /* plus_num ::= PLUS INTEGER|FLOAT */ yytestcase(yyruleno==256);
174970 case 257: /* minus_num ::= MINUS INTEGER|FLOAT */ yytestcase(yyruleno==257);
175287 case 181: /* term ::= NULL|FLOAT|BLOB */
176060 /* (387) plus_num ::= INTEGER|FLOAT */ yytestcase(yyruleno==387);
203283 ** 5: FLOAT -- RFC-8259 floating point literal
203328 ** FLOAT, FLOAT5, TEXT, TEXTJ, TEXT5, and TEXTROW is text. Note that the
203359 #define JSONB_FLOAT 5 /* float acceptable to JSON and SQL */
203360 #define JSONB_FLOAT5 6 /* float with JSON5 extensions */
204965 t = 0x00; /* Bit 0x01: JSON5. Bit 0x02: FLOAT */
204970 t = 0x03; /* Bit 0x01: JSON5. Bit 0x02: FLOAT */
204988 t = 0x00; /* Bit 0x01: JSON5. Bit 0x02: FLOAT */
205384 case JSONB_FLOAT5: { /* Float literal missing digits beside "." */
206701 case JSONB_FLOAT: sqlite3_str_appendall(pOut,"float"); break;
208738 typedef float RtreeValue; /* Low accuracy coordinate */
211511 ** Rounding constants for float->double conversion.
211518 ** Convert an sqlite3_value into an RtreeValue (presumably a float)
211523 float f = (float)d;
211525 f = (float)(d*(d<0 ? RNDAWAY : RNDTOWARDS));
211531 float f = (float)d;
211533 f = (float)(d*(d<0 ? RNDTOWARDS : RNDAWAY));
212881 typedef float GeoCoord;
213433 float mnX, mxX, mnY, mxY;
213450 if( r<mnX ) mnX = (float)r;
213451 else if( r>mxX ) mxX = (float)r;
213453 if( r<mnY ) mnY = (float)r;
213454 else if( r>mxY ) mxY = (float)r;
213686 float y0; /* Initial y value */