Home
last modified time | relevance | path

Searched refs:dec (Results 1 – 22 of 22) sorted by relevance

/PHP-5.5/ext/standard/tests/strings/
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 …]
H A Dhtml_entity_decode3.phpt38 $dec = html_entity_decode($t, ENT_QUOTES | ENT_HTML401, "UTF-8");
39 if ($t == $dec) {
49 $dec = html_entity_decode($t, ENT_QUOTES | ENT_XHTML, "UTF-8");
50 if ($t == $dec) {
60 $dec = html_entity_decode($t, ENT_QUOTES | ENT_HTML5, "UTF-8");
61 if ($t == $dec) {
71 $dec = html_entity_decode($t, ENT_QUOTES | ENT_XML1, "UTF-8");
72 if ($t == $dec) {
/PHP-5.5/ext/standard/
H A Dmath.c1117 dec = MAX(0, dec); in _php_math_number_format_ex_len()
1118 d = _php_math_round(d, dec, PHP_ROUND_HALF_UP); in _php_math_number_format_ex_len()
1120 tmplen = spprintf(&tmpbuf, 0, "%.*F", dec, d); in _php_math_number_format_ex_len()
1131 if (dec) { in _php_math_number_format_ex_len()
1152 if (dec) { in _php_math_number_format_ex_len()
1153 reslen += dec; in _php_math_number_format_ex_len()
1173 if (dec) { in _php_math_number_format_ex_len()
1175 int topad = dec > declen ? dec - declen : 0; in _php_math_number_format_ex_len()
1224 return _php_math_number_format_ex_len(d, dec, dec_point, dec_point_len, in _php_math_number_format_ex()
1234 long dec = 0; in PHP_FUNCTION() local
[all …]
/PHP-5.5/ext/soap/interop/
H A Dserver_round2_base.php86 function echoDecimal($dec) argument
88 return $dec;
/PHP-5.5/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-5.5/ext/soap/tests/interop/Round2/Base/
H A Dround2_base.inc65 function echoDecimal($dec)
67 return $dec;
/PHP-5.5/ext/standard/tests/url/
H A Dbase64_encode_basic_002.phpt32 $dec = base64_decode($enc);
34 if ($dec != $str) {
/PHP-5.5/ext/soap/tests/soap12/
H A Dsoap12-test.inc57 function echoDecimal($dec) {
58 return $dec;
/PHP-5.5/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_get_result_bit.phpt25 function dec32bin($dec, $bits) {
30 if (($dec / $bitval) >= 1) {
32 $dec -= $bitval;
H A Dmysqli_stmt_bind_result_bit.phpt13 function dec32bin($dec, $bits) {
18 if (($dec / $bitval) >= 1) {
20 $dec -= $bitval;
/PHP-5.5/ext/mcrypt/tests/
H A Dbug37595.phpt41 var_dump($dec = @mdecrypt_generic($td, $enc));
/PHP-5.5/ext/date/lib/
H A Dastro.c155 static void astro_sun_RA_dec(double d, double *RA, double *dec, double *r) in astro_sun_RA_dec() argument
175 *dec = atan2d(z, sqrt(x*x + y*y)); in astro_sun_RA_dec()
H A Dparse_date.re266 { "dec", 0, 12 },
855 …' | 'feb' | 'mar' | 'apr' | 'may' | 'jun' | 'jul' | 'aug' | 'sep' | 'sept' | 'oct' | 'nov' | 'dec';
/PHP-5.5/
H A Dconfig.guess274 …echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQ…
286 echo alpha-dec-winnt3.5
427 echo mips-dec-mach_bsd4.3
430 echo mips-dec-ultrix${UNAME_RELEASE}
433 echo vax-dec-ultrix${UNAME_RELEASE}
1007 echo ${UNAME_MACHINE}-dec-linux-gnu
1308 echo pdp10-dec-tops20
1328 A*) echo alpha-dec-vms ; exit ;;
1329 I*) echo ia64-dec-vms ; exit ;;
1330 V*) echo vax-dec-vms ; exit ;;
H A Dconfig.sub153 -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \
1318 basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
1576 *-dec | vax-*)
H A DNEWS9387 - Fixed bug #34311 (unserialize() crashes with chars above 191 dec). (Nuno)
/PHP-5.5/ext/soap/tests/interop/Round4/GroupI/
H A Dround4_groupI_xsd.inc95 function echoDecimal($dec)
97 return array("return"=>$dec->inputDecimal);
/PHP-5.5/ext/gd/libgd/
H A Dwebpimg.c393 vpx_codec_ctx_t dec; in VPXDecode() local
402 if (vpx_codec_dec_init(&dec, in VPXDecode()
408 vpx_codec_control(&dec, VP8_SET_POSTPROC, &ppcfg); in VPXDecode()
411 if (vpx_codec_decode(&dec, data, data_size, NULL, 0) == VPX_CODEC_OK) { in VPXDecode()
413 vpx_image_t* const img = vpx_codec_get_frame(&dec, &iter); in VPXDecode()
447 vpx_codec_destroy(&dec); in VPXDecode()
/PHP-5.5/win32/
H A Dsendmail.c908 int dec = 0; in Ack() local
912 dec++; in Ack()
914 dec++; in Ack()
919 *server_response = estrndup(buf, Received - dec); in Ack()
/PHP-5.5/ext/fileinfo/tests/
H A Dmagic2623 !:mime audio/x-dec-basic
2625 !:mime audio/x-dec-basic
2627 !:mime audio/x-dec-basic
2629 !:mime audio/x-dec-basic
2631 !:mime audio/x-dec-basic
2633 !:mime audio/x-dec-basic
2635 !:mime audio/x-dec-basic
2647 !:mime audio/x-dec-basic
/PHP-5.5/ext/pcre/pcrelib/doc/
H A Dpcre.txt8734 ^\d?\d(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\d\d$
8956 re> /^\d?\d(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\d\d$/
8989 re> /^\d?\d(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\d\d$/
9032 re> /\d?\d(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\d\d/

Completed in 148 milliseconds