Home
last modified time | relevance | path

Searched refs:sign (Results 1 – 25 of 53) sorted by last modified time

123

/PHP-5.5/win32/build/
H A Dphpize.js.in183 // If it is --foo=bar, split on the equals sign
/PHP-5.5/sapi/thttpd/
H A Dthttpd_patch859 - char sign;
879 - sign = '+';
882 - sign = '-';
887 - "%s %c%04d", date_nozone, sign, zone );
2296 + char sign;
2309 + sign = '+';
2312 + sign = '-';
2316 + hs->log_date_len = sprintf( hs->log_date, "%s %c%04d", date_nozone, sign,
/PHP-5.5/
H A Dphp.ini-development59 ; sign, or by using the None keyword:
H A Dphp.ini-production59 ; sign, or by using the None keyword:
/PHP-5.5/main/
H A Dsnprintf.c86 *sign = 0; in __cvt()
96 p = zend_dtoa(value, fmode + 2, ndigit, decpt, sign, &rve); in __cvt()
132 return(__cvt(value, ndigit, decpt, sign, 0, 1)); in php_ecvt()
138 return(__cvt(value, ndigit, decpt, sign, 1, 1)); in php_fcvt()
145 int i, decpt, sign; in php_gcvt() local
147 digits = zend_dtoa(value, 2, ndigit, &decpt, &sign, NULL); in php_gcvt()
159 if (sign) { in php_gcvt()
166 sign = 1; in php_gcvt()
169 sign = 0; in php_gcvt()
182 if (sign) { in php_gcvt()
[all …]
/PHP-5.5/ext/wddx/tests/
H A Dbug41527.phpt7 $data = array('01' => 'Zero', '+1' => 'Plus sign', ' 1' => 'Space');
18 string(9) "Plus sign"
/PHP-5.5/ext/standard/
H A Dversioning.c29 #define sign(n) ((n)<0?-1:((n)>0?1:0)) macro
120 return sign(found1 - found2); in compare_special_version_forms()
165 compare = sign(l1 - l2); in php_version_compare()
H A Dcrypt_blowfish.c553 BF_word safety, sign, diff, tmp[2]; in BF_set_key() local
593 sign = diff = 0; in BF_set_key()
609 sign |= tmp[1] & 0x80; in BF_set_key()
633 sign <<= 9; /* move the non-benign sign extension flag to bit 16 */ in BF_set_key()
634 sign &= ~diff & safety; /* action needed? */ in BF_set_key()
647 initial[0] ^= sign; in BF_set_key()
/PHP-5.5/ext/standard/tests/strings/
H A Dstrip_tags_variation10.phpt20 '<html> \$ -> This represents the dollar sign</html><?php echo hello ?>',
44 string(51) "<html> \$ -> This represents the dollar sign</html>"
H A Dstrip_tags_variation9.phpt19 "<html> \$ -> This represents the dollar sign</html><?php echo hello ?>",
42 string(50) "<html> $ -> This represents the dollar sign</html>"
H A Dsprintf_f_2.phpt54 var_dump(sprintf("%%+d = '%+d'", $n)); // sign specifier on a positive integer
55 var_dump(sprintf("%%+d = '%+d'", $u)); // sign specifier on a negative integer
/PHP-5.5/ext/standard/tests/general_functions/
H A Dgettype_settype_variation2.phpt107 "-0x80001", // invalid numerics as its prefix with sign or have decimal points
H A Dgettype_settype_variation1.phpt104 "-0x80001", // invalid numerics as its prefix with sign or have decimal points
H A Dgettype_settype_variation3.phpt104 "-0x80001", // invalid numerics as its prefix with sign or have decimal points
H A Dgettype_settype_variation4.phpt111 "-0x80001", // invalid numerics as its prefix with sign or have decimal points
H A Dgettype_settype_variation5.phpt104 "-0x80001", // invalid numerics as its prefix with sign or have decimal points
H A Dgettype_settype_variation6.phpt104 "-0x80001", // invalid numerics as its prefix with sign or have decimal points
H A Dgettype_settype_variation7.phpt104 "-0x80001", // invalid numerics as its prefix with sign or have decimal points
H A Dgettype_settype_variation8.phpt104 "-0x80001", // invalid numerics as its prefix with sign or have decimal points
H A Dbug48660.phpt2 Bug #48660 (parse_ini_*(): dollar sign as last character of value fails)
/PHP-5.5/ext/standard/tests/array/
H A Darray_unshift_variation7.phpt23 "\$ -> This represents the dollar sign. hello dollar!!!",
63 string(53) "$ -> This represents the dollar sign. hello dollar!!!"
76 string(53) "$ -> This represents the dollar sign. hello dollar!!!"
H A Darray_unshift_variation8.phpt23 '\$ -> This represents the dollar sign. hello dollar!!!',
63 string(54) "\$ -> This represents the dollar sign. hello dollar!!!"
76 string(54) "\$ -> This represents the dollar sign. hello dollar!!!"
/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.c23730 int sign = 1; /* sign of significand */
23761 sign = -1;
23834 result = (sign<0 && nDigits) ? -(double)0 : (double)0;
23844 s = sign<0 ? -s : s;
/PHP-5.5/ext/pcre/pcrelib/sljit/
H A DsljitNativeX86_64.c692 static sljit_si emit_mov_int(struct sljit_compiler *compiler, sljit_si sign, in emit_mov_int() argument
706 if (sign || ((sljit_uw)srcw <= 0x7fffffff)) { in emit_mov_int()
727 if (sign) { in emit_mov_int()
H A DsljitNativeX86_common.c874 static sljit_si emit_mov_byte(struct sljit_compiler *compiler, sljit_si sign, in emit_mov_byte() argument
931 *inst = sign ? MOVSX_r_rm8 : MOVZX_r_rm8; in emit_mov_byte()
936 if (sign) { in emit_mov_byte()
960 *inst = sign ? MOVSX_r_rm8 : MOVZX_r_rm8; in emit_mov_byte()
1019 static sljit_si emit_mov_half(struct sljit_compiler *compiler, sljit_si sign, in emit_mov_half() argument
1058 *inst = sign ? MOVSX_r_rm16 : MOVZX_r_rm16; in emit_mov_half()

Completed in 540 milliseconds

123