Home
last modified time | relevance | path

Searched refs:dec (Results 1 – 20 of 20) sorted by path

/PHP-7.3/Zend/tests/
H A Dobject_property_ref_incdec.phpt2 Inc/dec of reference object properties
/PHP-7.3/
H A Dconfig.guess276 echo mips-dec-osf1
329 …echo "$UNAME_MACHINE"-dec-osf"`echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQ…
473 echo mips-dec-mach_bsd4.3
476 echo mips-dec-ultrix"$UNAME_RELEASE"
479 echo vax-dec-ultrix"$UNAME_RELEASE"
1046 echo "$UNAME_MACHINE"-dec-linux-"$LIBC"
1375 echo pdp10-dec-tops20
1395 A*) echo alpha-dec-vms ; exit ;;
1396 I*) echo ia64-dec-vms ; exit ;;
1397 V*) echo vax-dec-vms ; exit ;;
H A Dconfig.sub165 -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \
1352 basic_machine=`echo "$basic_machine" | sed 's/digital.*/dec/'`
1619 *-dec | vax-*)
/PHP-7.3/ext/date/lib/
H A Dastro.c160 static void astro_sun_RA_dec(double d, double *RA, double *dec, double *r) in astro_sun_RA_dec() argument
180 *dec = atan2d(z, sqrt(x*x + y*y)); in astro_sun_RA_dec()
H A Dparse_date.re261 { "dec", 0, 12 },
925 …' | 'feb' | 'mar' | 'apr' | 'may' | 'jun' | 'jul' | 'aug' | 'sep' | 'sept' | 'oct' | 'nov' | 'dec';
/PHP-7.3/ext/fileinfo/tests/
H A Dmagic3745 !:mime audio/x-dec-basic
3747 !:mime audio/x-dec-basic
3749 !:mime audio/x-dec-basic
3751 !:mime audio/x-dec-basic
3753 !:mime audio/x-dec-basic
3755 !:mime audio/x-dec-basic
3757 !:mime audio/x-dec-basic
3769 !:mime audio/x-dec-basic
H A Dmagic私はガラスを食べられます3745 !:mime audio/x-dec-basic
3747 !:mime audio/x-dec-basic
3749 !:mime audio/x-dec-basic
3751 !:mime audio/x-dec-basic
3753 !:mime audio/x-dec-basic
3755 !:mime audio/x-dec-basic
3757 !:mime audio/x-dec-basic
3769 !:mime audio/x-dec-basic
/PHP-7.3/ext/filter/tests/
H A D031.phpt35 foreach ($floats as $float => $dec) {
36 $out = filter_var($float, FILTER_VALIDATE_FLOAT, array("options"=>array('decimal' => $dec)));
/PHP-7.3/ext/mysqli/tests/
H A Dmysqli_fetch_assoc_bit.phpt22 function dec32bin($dec, $bits) {
27 if (($dec / $bitval) >= 1) {
29 $dec -= $bitval;
H A Dmysqli_stmt_bind_result_bit.phpt13 function dec32bin($dec, $bits) {
18 if (($dec / $bitval) >= 1) {
20 $dec -= $bitval;
H A Dmysqli_stmt_get_result_bit.phpt25 function dec32bin($dec, $bits) {
30 if (($dec / $bitval) >= 1) {
32 $dec -= $bitval;
/PHP-7.3/ext/soap/interop/
H A Dserver_round2_base.php83 function echoDecimal($dec) argument
85 return $dec;
/PHP-7.3/ext/soap/tests/interop/Round2/Base/
H A Dround2_base.inc65 function echoDecimal($dec)
67 return $dec;
/PHP-7.3/ext/soap/tests/interop/Round4/GroupI/
H A Dround4_groupI_xsd.inc95 function echoDecimal($dec)
97 return array("return"=>$dec->inputDecimal);
/PHP-7.3/ext/soap/tests/soap12/
H A Dsoap12-test.inc57 function echoDecimal($dec) {
58 return $dec;
/PHP-7.3/ext/standard/
H A Dmath.c1136 dec = MAX(0, dec); in _php_math_number_format_ex()
1137 d = _php_math_round(d, dec, PHP_ROUND_HALF_UP); in _php_math_number_format_ex()
1138 tmpbuf = strpprintf(0, "%.*F", dec, d); in _php_math_number_format_ex()
1151 if (dec) { in _php_math_number_format_ex()
1172 if (dec) { in _php_math_number_format_ex()
1173 reslen += dec; in _php_math_number_format_ex()
1193 if (dec) { in _php_math_number_format_ex()
1195 size_t topad = (size_t)dec > declen ? dec - declen : 0; in _php_math_number_format_ex()
1242 zend_long dec = 0; in PHP_FUNCTION() local
1250 Z_PARAM_LONG(dec) in PHP_FUNCTION()
[all …]
/PHP-7.3/ext/standard/tests/strings/
H A Dhtml_entity_decode3.phpt39 $dec = html_entity_decode($t, ENT_QUOTES | ENT_HTML401, "UTF-8");
40 if ($t == $dec) {
50 $dec = html_entity_decode($t, ENT_QUOTES | ENT_XHTML, "UTF-8");
51 if ($t == $dec) {
61 $dec = html_entity_decode($t, ENT_QUOTES | ENT_HTML5, "UTF-8");
62 if ($t == $dec) {
72 $dec = html_entity_decode($t, ENT_QUOTES | ENT_XML1, "UTF-8");
73 if ($t == $dec) {
83 $dec = html_entity_decode($t);
84 if ($t == $dec) {
H A Dhtmlspecialchars_decode_variation7.phpt17 $dec = htmlspecialchars_decode($t, ENT_QUOTES | ENT_HTML401);
18 if ($t == $dec) {
28 $dec = htmlspecialchars_decode($t, ENT_QUOTES | ENT_XHTML);
29 if ($t == $dec) {
39 $dec = htmlspecialchars_decode($t, ENT_QUOTES | ENT_HTML5);
40 if ($t == $dec) {
50 $dec = htmlspecialchars_decode($t, ENT_QUOTES | ENT_XML1);
51 if ($t == $dec) {
62 if ($t == $dec) {
72 $dec = htmlspecialchars_decode($t, ENT_COMPAT | ENT_HTML5);
[all …]
/PHP-7.3/ext/standard/tests/url/
H A Dbase64_encode_basic_002.phpt32 $dec = base64_decode($enc);
34 if ($dec != $str) {
/PHP-7.3/win32/
H A Dsendmail.c900 int dec = 0; in Ack() local
904 dec++; in Ack()
906 dec++; in Ack()
911 *server_response = estrndup(buf, Received - dec); in Ack()

Completed in 178 milliseconds