| /PHP_5_5/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 14170 ** If the library is compiled to omit the full-scale date and time 20896 /* if exponent, scale significand as appropriate 20899 double scale = 1.0; local 20902 while( e%308 ) { scale *= 1.0e+1; e -= 1; } 20904 result = s / scale; 20907 result = s * scale; 20913 while( e%22 ) { scale *= 1.0e+1; e -= 1; } 20914 while( e>0 ) { scale *= 1.0e+22; e -= 22; } 20916 result = s / scale; 20918 result = s * scale; [all...] |
| /PHP_5_5/ext/gd/libgd/ |
| H A D | gd_webp.c | 140 const float scale = MAX_VP8QP - MIN_VP8QP; local 142 scale * (MAX_QUALITY - quality) / (MAX_QUALITY - MIN_QUALITY) + MIN_VP8QP;
|
| H A D | mathmake.c | 4 #define scale 1024 macro 12 printf ("#define costScale %d\n", scale); 16 basis[i] = cos ((double) i * .0174532925) * scale; 36 printf ("#define sintScale %d\n", scale);
|
| H A D | testac.c | 11 double scale, 73 double scale, 81 im_out = gdImageCreateTrueColor ((int) (gdImageSX (im_in) * scale), 82 (int) (gdImageSY (im_in) * scale)); 95 gdImageFill (im_out, (int) (gdImageSX (im_in) * scale / 2), 96 (int) (gdImageSY (im_in) * scale / 2), 107 (int) (gdImageSX (im_in) * scale), (int) (gdImageSY (im_in) * scale), 71 testDrawing( gdImagePtr im_in, double scale, int blending, int palette, char *filename) argument
|
| /PHP_5_5/ext/bcmath/ |
| H A D | bcmath.c | 42 ZEND_ARG_INFO(0, scale) 48 ZEND_ARG_INFO(0, scale) 54 ZEND_ARG_INFO(0, scale) 60 ZEND_ARG_INFO(0, scale) 72 ZEND_ARG_INFO(0, scale) 78 ZEND_ARG_INFO(0, scale) 83 ZEND_ARG_INFO(0, scale) 89 ZEND_ARG_INFO(0, scale) 93 ZEND_ARG_INFO(0, scale) 135 STD_PHP_INI_ENTRY("bcmath.scale", " 212 int scale = BCG(bc_precision), argc = ZEND_NUM_ARGS(); local 251 int scale = BCG(bc_precision), argc = ZEND_NUM_ARGS(); local 290 int scale = BCG(bc_precision), argc = ZEND_NUM_ARGS(); local 329 int scale = BCG(bc_precision), argc = ZEND_NUM_ARGS(); local 409 long scale = BCG(bc_precision); local 453 int scale = BCG(bc_precision), argc = ZEND_NUM_ARGS(); local 492 int scale = BCG(bc_precision), argc = ZEND_NUM_ARGS(); local 529 int scale = BCG(bc_precision), argc = ZEND_NUM_ARGS(); local [all...] |
| /PHP_5_5/ext/interbase/ |
| H A D | ibase_query.c | 1296 int scale, int flag TSRMLS_DC) 1338 if (scale == 0) { 1342 ISC_INT64 n = *(ISC_INT64 *) data, f = scales[-scale]; 1345 l = slprintf(string_data, sizeof(string_data), "%" LL_MASK "d.%0*" LL_MASK "d", n / f, -scale, n % f); 1347 l = slprintf(string_data, sizeof(string_data), "%" LL_MASK "d.%0*" LL_MASK "d", n / f, -scale, -n % f); 1349 l = slprintf(string_data, sizeof(string_data), "-0.%0*" LL_MASK "d", -scale, -n % f); 1358 if (scale == 0) { 1361 long f = (long) scales[-scale]; 1364 l = slprintf(string_data, sizeof(string_data), "%ld.%0*ld", n / f, -scale, n % f); 1366 l = slprintf(string_data, sizeof(string_data), "%ld.%0*ld", n / f, -scale, 1295 _php_ibase_var_zval(zval *val, void *data, int type, int len, int scale, int flag TSRMLS_DC) argument [all...] |
| /PHP_5_5/ext/odbc/ |
| H A D | php_odbc.c | 1236 SQLSMALLINT sqltype, ctype, scale; local 1296 rc = SQLDescribeParam(result->stmt, (SQLUSMALLINT)i, &sqltype, &precision, &scale, &nullable); 1358 ctype, sqltype, precision, scale, 1370 ctype, sqltype, precision, scale, 2848 Get the scale of a column */
|
| /PHP_5_5/ext/pdo_odbc/ |
| H A D | odbc_stmt.c | 281 SWORD sqltype = 0, ctype = 0, scale = 0, nullable = 0; local 310 rc = SQLDescribeParam(S->stmt, (SQLUSMALLINT) param->paramno+1, &sqltype, &precision, &scale, &nullable); 318 scale = 5; 368 P->paramtype, ctype, sqltype, precision, scale,
|
| /PHP_5_5/ext/pdo_oci/ |
| H A D | oci_statement.c | 503 ub2 dtype, data_size, scale, precis; local 519 /* scale ? */ 521 (param, OCI_DTYPE_PARAM, &scale, 0, OCI_ATTR_SCALE, S->err)); 531 col->precision = scale;
|
| /PHP_5_5/ext/oci8/ |
| H A D | php_oci8_int.h | 248 sb1 scale; /* column scale */ member in struct:__anon10
|