Home
last modified time | relevance | path

Searched refs:scale (Results 51 – 75 of 75) sorted by relevance

123

/php-src/ext/bcmath/libbcmath/src/
H A Drecmul.c51 static bc_num new_sub_num(size_t length, size_t scale, char *value) in new_sub_num() argument
57 temp->n_scale = scale; in new_sub_num()
256 bc_num bc_multiply(bc_num n1, bc_num n2, size_t scale) in bc_multiply() argument
266 prod_scale = MIN(full_scale, MAX(scale, MAX(n1->n_scale, n2->n_scale))); in bc_multiply()
/php-src/ext/bcmath/tests/
H A Dbug60377.phpt19 bcscale(): Argument #1 ($scale) must be between 0 and 2147483647
H A Dscale.phpt2 BCMath functions return result with requested scale
H A Dbcmod_error2.phpt6 bcmath.scale=0
/php-src/ext/odbc/tests/
H A Dodbc_gettypeinfo_001.phpt41 string(5) "scale"
125 string(15) "precision,scale"
H A Dodbc_field_num_001.phpt2 odbc_field_scale(): Getting the scale of the field
H A Dodbc_field_scale_001.phpt2 odbc_field_scale(): Getting the scale of the field
/php-src/ext/opcache/jit/ir/dynasm/
H A Ddasm_arm64.h322 int scale = (ins & 3); in dasm_put() local
323 CK((!(n & ((1<<scale)-1)) && (unsigned int)(n>>scale) < 4096) || in dasm_put()
516 int scale = (ins & 3); in dasm_encode() local
517 cp[-1] |= (!(n & ((1<<scale)-1)) && (unsigned int)(n>>scale) < 4096) ? in dasm_encode()
518 ((n << (10-scale)) | 0x01000000) : ((n & 511) << 12); in dasm_encode()
H A Ddasm_mips.lua858 local function parse_imm(imm, bits, shift, scale, signed, action)
861 local m = sar(n, scale)
862 if shl(m, scale) == n then
877 (signed and 32768 or 0)+shl(scale, 10)+shl(bits, 5)+shift, imm)
H A Ddasm_ppc.lua1538 local function parse_imm(imm, bits, shift, scale, signed)
1541 local m = sar(n, scale)
1542 if shl(m, scale) == n then
1557 waction("IMM", (signed and 32768 or 0)+scale*1024+bits*32+shift, imm)
1599 local function parse_u5disp(disp, scale)
1604 return shl(r, 16) + parse_imm(imm, 5, 11, scale, false)
1611 waction("IMM", scale*1024+5*32+11, format(tp.ctypefmt, tailr))
H A Ddasm_arm.lua600 local function parse_imm(imm, bits, shift, scale, signed)
605 local m = sar(n, scale)
606 if shl(m, scale) == n then
617 waction("IMM", (signed and 32768 or 0)+scale*1024+bits*32+shift, imm)
/php-src/ext/pdo_dblib/tests/
H A Dbug_45876.phpt28 ["scale"]=>
/php-src/Zend/
H A Dzend_strtod.c2354 p2 -= bc->scale;
2366 word0(rv) = (1 + bc->scale) << Exp_shift;
2851 bc.scale = 0;
2940 bc.scale = 2*P;
3050 j = bbe - bc.scale;
3082 bd2 += bc.scale;
3152 if (!bc.scale || y > 2*P*Exp_msk1)
3304 if (bc.scale) {
3442 if (bc.scale && y <= 2*P*Exp_msk1) {
3522 if (!bc.scale)
[all …]
/php-src/ext/pdo_odbc/
H A Dodbc_stmt.c290 SWORD sqltype = 0, ctype = 0, scale = 0, nullable = 0; in odbc_stmt_param_hook() local
326 …rc = SQLDescribeParam(S->stmt, (SQLUSMALLINT) param->paramno+1, &sqltype, &precision, &scale, &nul… in odbc_stmt_param_hook()
341 scale = 5; in odbc_stmt_param_hook()
391 P->paramtype, ctype, sqltype, precision, scale, in odbc_stmt_param_hook()
/php-src/ext/bcmath/libbcmath/
H A DREADME.md32 computations. For example, BC numbers have a "scale" that represent the number
/php-src/ext/odbc/
H A Dphp_odbc_includes.h213 SQLSMALLINT scale; member
H A Dphp_odbc.c991 &result->param_info[i].scale, &result->param_info[i].nullable); in PHP_FUNCTION()
1108 … result->param_info[i-1].sqltype, result->param_info[i-1].precision, result->param_info[i-1].scale, in PHP_FUNCTION()
1120 … result->param_info[i-1].sqltype, result->param_info[i-1].precision, result->param_info[i-1].scale, in PHP_FUNCTION()
/php-src/ext/opcache/jit/ir/
H A Dir_x86.dasc44 IR_ASSERT(scale == 1 || scale == 2 || scale == 4 || scale == 8);
84 || } else if (scale == 8) {
90 || } else if (scale == 4) {
103 || IR_ASSERT(scale == 1);
144 || IR_ASSERT(scale == 1);
3219 scale = 1;
3248 scale = 1;
3253 scale = 1;
3272 scale = 1;
3305 scale = 1;
[all …]
H A Dir_disasm.c237 && insn->detail->x86.operands[i].mem.scale == 1) { in ir_disasm_rodata_reference()
264 && insn->detail->x86.operands[i].mem.scale == 1) { in ir_disasm_rodata_reference()
/php-src/win32/build/
H A Dconfutils.js3342 var scale = new Array("sse", "sse2", "sse3", "ssse3", "sse4.1", "sse4.2", "avx", "avx2");
3374 for (var k = 0; k < scale.length; k++) {
3377 if (scale[k] == it) {
3388 if ("sse" == scale[j]) {
3392 configure_subst.Add("PHP_SIMD_SCALE", scale[j].toUpperCase());
3396 if ("avx2" == scale[j]) {
3399 } else if ("avx" == scale[j]) {
3404 var it = scale[i];
/php-src/ext/pdo_dblib/
H A Ddblib_stmt.c485 add_assoc_long(return_value, "scale", (int) dbtypeinfo->scale ); in pdo_dblib_stmt_get_column_meta()
/php-src/
H A Dphp.ini-development1267 ; https://php.net/bcmath.scale
1268 bcmath.scale = 0
H A Dphp.ini-production1269 ; https://php.net/bcmath.scale
1270 bcmath.scale = 0
/php-src/ext/fileinfo/tests/
H A Dmagic私はガラスを食べられます6057 >>0x04 byte 0x04 \b, exponential scale
20602 # Wavelet Scalar Quantization format used in gray-scale fingerprint images
26148 >0 beshort x scale %d-
26155 >11 ubyte 1 \b, show scale bar
31796 >>20 byte 1 gray scale,
31805 >>20 byte 10 gray scale 16,
31812 >>20 byte 18 gray scale 32,
H A Dmagic6057 >>0x04 byte 0x04 \b, exponential scale
20602 # Wavelet Scalar Quantization format used in gray-scale fingerprint images
26148 >0 beshort x scale %d-
26155 >11 ubyte 1 \b, show scale bar
31796 >>20 byte 1 gray scale,
31805 >>20 byte 10 gray scale 16,
31812 >>20 byte 18 gray scale 32,

Completed in 241 milliseconds

123