scale             219 ext/bcmath/bcmath.c 	int scale = BCG(bc_precision);
scale             232 ext/bcmath/bcmath.c 				scale = (int) ((int)Z_LVAL_PP(scale_param) < 0) ? 0 : Z_LVAL_PP(scale_param);
scale             245 ext/bcmath/bcmath.c 	bc_add (first, second, &result, scale);
scale             246 ext/bcmath/bcmath.c 	if (result->n_scale > scale) {
scale             247 ext/bcmath/bcmath.c 		result->n_scale = scale;
scale             265 ext/bcmath/bcmath.c 	int scale = BCG(bc_precision);
scale             278 ext/bcmath/bcmath.c 				scale = (int) ((int)Z_LVAL_PP(scale_param) < 0) ? 0 : Z_LVAL_PP(scale_param);
scale             291 ext/bcmath/bcmath.c 	bc_sub (first, second, &result, scale);
scale             292 ext/bcmath/bcmath.c 	if (result->n_scale > scale) {
scale             293 ext/bcmath/bcmath.c 		result->n_scale = scale;
scale             311 ext/bcmath/bcmath.c 	int scale = BCG(bc_precision);
scale             324 ext/bcmath/bcmath.c 				scale = (int) ((int)Z_LVAL_PP(scale_param) < 0) ? 0 : Z_LVAL_PP(scale_param);
scale             337 ext/bcmath/bcmath.c 	bc_multiply (first, second, &result, scale TSRMLS_CC);
scale             338 ext/bcmath/bcmath.c 	if (result->n_scale > scale) {
scale             339 ext/bcmath/bcmath.c 		result->n_scale = scale;
scale             357 ext/bcmath/bcmath.c 	int scale = BCG(bc_precision);
scale             370 ext/bcmath/bcmath.c 				scale = (int) ((int)Z_LVAL_PP(scale_param) < 0) ? 0 : Z_LVAL_PP(scale_param);
scale             383 ext/bcmath/bcmath.c 	switch (bc_divide(first, second, &result, scale TSRMLS_CC)) {
scale             385 ext/bcmath/bcmath.c 			if (result->n_scale > scale) {
scale             386 ext/bcmath/bcmath.c 				result->n_scale = scale;
scale             451 ext/bcmath/bcmath.c 	long scale = BCG(bc_precision);
scale             454 ext/bcmath/bcmath.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sss|l", &left, &left_len, &right, &right_len, &modulous, &modulous_len, &scale) == FAILURE) {
scale             466 ext/bcmath/bcmath.c 	scale_int = (int) ((int)scale < 0) ? 0 : scale;
scale             469 ext/bcmath/bcmath.c 		if (result->n_scale > scale) {
scale             470 ext/bcmath/bcmath.c 			result->n_scale = scale;
scale             493 ext/bcmath/bcmath.c 	int scale = BCG(bc_precision);
scale             506 ext/bcmath/bcmath.c 				scale = (int) ((int)Z_LVAL_PP(scale_param) < 0) ? 0 : Z_LVAL_PP(scale_param);
scale             519 ext/bcmath/bcmath.c 	bc_raise (first, second, &result, scale TSRMLS_CC);
scale             520 ext/bcmath/bcmath.c 	if (result->n_scale > scale) {
scale             521 ext/bcmath/bcmath.c 		result->n_scale = scale;
scale             539 ext/bcmath/bcmath.c 	int scale = BCG(bc_precision);
scale             552 ext/bcmath/bcmath.c 				scale = (int) ((int)Z_LVAL_PP(scale_param) < 0) ? 0 : Z_LVAL_PP(scale_param);
scale             561 ext/bcmath/bcmath.c 	if (bc_sqrt (&result, scale TSRMLS_CC) != 0) {
scale             562 ext/bcmath/bcmath.c 		if (result->n_scale > scale) {
scale             563 ext/bcmath/bcmath.c 			result->n_scale = scale;
scale             582 ext/bcmath/bcmath.c 	int scale = BCG(bc_precision);
scale             595 ext/bcmath/bcmath.c 				scale = (int) ((int)Z_LVAL_PP(scale_param) < 0) ? 0 : Z_LVAL_PP(scale_param);
scale             607 ext/bcmath/bcmath.c 	bc_str2num(&first, Z_STRVAL_PP(left), scale TSRMLS_CC);
scale             608 ext/bcmath/bcmath.c 	bc_str2num(&second, Z_STRVAL_PP(right), scale TSRMLS_CC);
scale             159 ext/bcmath/libbcmath/src/bcmath.h #define bc_new_num(length, scale)	_bc_new_num_ex((length), (scale), 0)
scale             108 ext/bcmath/libbcmath/src/div.c 	  qval = bc_new_num (n1->n_len, scale);
scale             110 ext/bcmath/libbcmath/src/div.c 	  memset (&qval->n_value[n1->n_len],0,scale);
scale             112 ext/bcmath/libbcmath/src/div.c 		  n1->n_len + MIN(n1->n_scale,scale));
scale             126 ext/bcmath/libbcmath/src/div.c   if (scale1 < scale)
scale             127 ext/bcmath/libbcmath/src/div.c     extra = scale - scale1;
scale             148 ext/bcmath/libbcmath/src/div.c   if (len2 > len1+scale)
scale             150 ext/bcmath/libbcmath/src/div.c       qdigits = scale+1;
scale             157 ext/bcmath/libbcmath/src/div.c 	qdigits = scale+1;  	/* One for the zero integer part. */
scale             159 ext/bcmath/libbcmath/src/div.c 	qdigits = len1-len2+scale+1;
scale             163 ext/bcmath/libbcmath/src/div.c   qval = bc_new_num (qdigits-scale,scale);
scale             189 ext/bcmath/libbcmath/src/div.c       while (qdig <= len1+scale-len2)
scale              58 ext/bcmath/libbcmath/src/divmod.c   rscale = MAX (num1->n_scale, num2->n_scale+scale);
scale              62 ext/bcmath/libbcmath/src/divmod.c   bc_divide (num1, num2, &temp, scale TSRMLS_CC);
scale              85 ext/bcmath/libbcmath/src/divmod.c   return bc_divmod (num1, num2, NULL, result, scale TSRMLS_CC);
scale              54 ext/bcmath/libbcmath/src/init.c   temp = (bc_num) safe_pemalloc (1, sizeof(bc_struct)+length, scale, persistent);
scale              66 ext/bcmath/libbcmath/src/init.c   temp->n_scale = scale;
scale              69 ext/bcmath/libbcmath/src/init.c   temp->n_ptr = (char *) safe_pemalloc (1, length, scale, persistent);
scale              72 ext/bcmath/libbcmath/src/init.c   memset (temp->n_ptr, 0, length+scale);
scale              54 ext/bcmath/libbcmath/src/nearzero.c   if (scale > num->n_scale)
scale              55 ext/bcmath/libbcmath/src/nearzero.c     scale = num->n_scale;
scale              58 ext/bcmath/libbcmath/src/nearzero.c   count = num->n_len + scale;
scale              76 ext/bcmath/libbcmath/src/raise.c        rscale = scale;
scale              81 ext/bcmath/libbcmath/src/raise.c        rscale = MIN (num1->n_scale*exponent, MAX(scale, num1->n_scale));
scale              77 ext/bcmath/libbcmath/src/raisemod.c   rscale = MAX(scale, base->n_scale);
scale              84 ext/bcmath/libbcmath/src/raisemod.c 	  (void) bc_modulo (temp, mod, &temp, scale TSRMLS_CC);
scale              88 ext/bcmath/libbcmath/src/raisemod.c       (void) bc_modulo (power, mod, &power, scale TSRMLS_CC);
scale              73 ext/bcmath/libbcmath/src/recmul.c   temp->n_scale = scale;
scale             291 ext/bcmath/libbcmath/src/recmul.c   prod_scale = MIN(full_scale,MAX(scale,MAX(n1->n_scale,n2->n_scale)));
scale              73 ext/bcmath/libbcmath/src/sqrt.c   rscale = MAX (scale, (*num)->n_scale);
scale              70 ext/bcmath/libbcmath/src/str2num.c   strscale = MIN(strscale, scale);
scale            2905 ext/fbsql/php_fbsql.c  			unsigned scale = fbcdmdScale(dtmd);
scale            2908 ext/fbsql/php_fbsql.c  			snprintf(b, sizeof(b), "%.*F", scale, v);
scale              12 ext/gd/libgd/mathmake.c   printf ("#define costScale %d\n", scale);
scale              16 ext/gd/libgd/mathmake.c       basis[i] = cos ((double) i * .0174532925) * scale;
scale              36 ext/gd/libgd/mathmake.c   printf ("#define sintScale %d\n", scale);
scale              81 ext/gd/libgd/testac.c   im_out = gdImageCreateTrueColor ((int) (gdImageSX (im_in) * scale),
scale              82 ext/gd/libgd/testac.c 				   (int) (gdImageSY (im_in) * scale));
scale              95 ext/gd/libgd/testac.c   gdImageFill (im_out, (int) (gdImageSX (im_in) * scale / 2),
scale              96 ext/gd/libgd/testac.c 	       (int) (gdImageSY (im_in) * scale / 2),
scale             107 ext/gd/libgd/testac.c        (int) (gdImageSX (im_in) * scale), (int) (gdImageSY (im_in) * scale),
scale            1322 ext/interbase/ibase_query.c 			if (scale == 0) {
scale            1326 ext/interbase/ibase_query.c 				ISC_INT64 n = *(ISC_INT64 *) data, f = scales[-scale];
scale            1329 ext/interbase/ibase_query.c 					l = slprintf(string_data, sizeof(string_data), "%" LL_MASK "d.%0*" LL_MASK "d", n / f, -scale, n % f);
scale            1331 ext/interbase/ibase_query.c 					l = slprintf(string_data, sizeof(string_data), "%" LL_MASK "d.%0*" LL_MASK "d", n / f, -scale, -n % f);				
scale            1333 ext/interbase/ibase_query.c 					l = slprintf(string_data, sizeof(string_data), "-0.%0*" LL_MASK "d", -scale, -n % f);
scale            1342 ext/interbase/ibase_query.c 			if (scale == 0) {
scale            1345 ext/interbase/ibase_query.c 				long f = (long) scales[-scale];
scale            1348 ext/interbase/ibase_query.c 					l = slprintf(string_data, sizeof(string_data), "%ld.%0*ld", n / f, -scale,  n % f);
scale            1350 ext/interbase/ibase_query.c 					l = slprintf(string_data, sizeof(string_data), "%ld.%0*ld", n / f, -scale,  -n % f);
scale            1352 ext/interbase/ibase_query.c 					l = slprintf(string_data, sizeof(string_data), "-0.%0*ld", -scale, -n % f);
scale            1206 ext/ming/ming.c 	PHP_ME(swfdisplayitem, scale,       NULL, 0)
scale            1147 ext/oci8/oci8_interface.c 		RETURN_LONG(column->scale);
scale             543 ext/oci8/oci8_statement.c 			PHP_OCI_CALL_RETURN(statement->errcode, OCIAttrGet, ((dvoid *)param, OCI_DTYPE_PARAM, (dvoid *)&outcol->scale, (dvoid *)0, OCI_ATTR_SCALE, statement->err));
scale             220 ext/oci8/php_oci8_int.h 	sb1 scale;						/* column scale */
scale             941 ext/odbc/php_odbc.c    	SWORD sqltype, ctype, scale;
scale            1001 ext/odbc/php_odbc.c 							 &scale, &nullable);
scale            1048 ext/odbc/php_odbc.c 									  ctype, sqltype, precision, scale,
scale            1060 ext/odbc/php_odbc.c 									  ctype, sqltype, precision, scale,
scale             501 ext/pdo_oci/oci_statement.c 	ub2 dtype, data_size, scale, precis;
scale             519 ext/pdo_oci/oci_statement.c 			(param, OCI_DTYPE_PARAM, &scale, 0, OCI_ATTR_SCALE, S->err));
scale             529 ext/pdo_oci/oci_statement.c 	col->precision = scale;
scale             160 ext/pdo_odbc/odbc_stmt.c 	SWORD sqltype = 0, ctype = 0, scale = 0, nullable = 0;
scale             189 ext/pdo_odbc/odbc_stmt.c 				rc = SQLDescribeParam(S->stmt, param->paramno+1, &sqltype, &precision, &scale, &nullable);
scale             197 ext/pdo_odbc/odbc_stmt.c 					scale = 5;
scale             238 ext/pdo_odbc/odbc_stmt.c 						P->paramtype, ctype, sqltype, precision, scale,
scale            1020 ext/pdo_sqlite/sqlite/src/util.c     LONGDOUBLE_TYPE scale = 1.0;
scale            1032 ext/pdo_sqlite/sqlite/src/util.c     while( eval>=64 ){ scale *= 1.0e+64; eval -= 64; }
scale            1033 ext/pdo_sqlite/sqlite/src/util.c     while( eval>=16 ){ scale *= 1.0e+16; eval -= 16; }
scale            1034 ext/pdo_sqlite/sqlite/src/util.c     while( eval>=4 ){ scale *= 1.0e+4; eval -= 4; }
scale            1035 ext/pdo_sqlite/sqlite/src/util.c     while( eval>=1 ){ scale *= 1.0e+1; eval -= 1; }
scale            1037 ext/pdo_sqlite/sqlite/src/util.c       v1 /= scale;
scale            1039 ext/pdo_sqlite/sqlite/src/util.c       v1 *= scale;
scale             581 ext/sqlite/libsqlite/src/util.c     LONGDOUBLE_TYPE scale = 1.0;
scale             593 ext/sqlite/libsqlite/src/util.c     while( eval>=64 ){ scale *= 1.0e+64; eval -= 64; }
scale             594 ext/sqlite/libsqlite/src/util.c     while( eval>=16 ){ scale *= 1.0e+16; eval -= 16; }
scale             595 ext/sqlite/libsqlite/src/util.c     while( eval>=4 ){ scale *= 1.0e+4; eval -= 4; }
scale             596 ext/sqlite/libsqlite/src/util.c     while( eval>=1 ){ scale *= 1.0e+1; eval -= 1; }
scale             598 ext/sqlite/libsqlite/src/util.c       v1 /= scale;
scale             600 ext/sqlite/libsqlite/src/util.c       v1 *= scale;
scale            1309 ext/sybase_ct/php_sybase_ct.c 				result->numerics[i] = (result->datafmt[i].scale == 0) ? 3 : 2;