Home
last modified time | relevance | path

Searched refs:sign (Results 1 – 25 of 53) sorted by relevance

123

/PHP-5.5/ext/openssl/tests/
H A D019.phpt12 openssl_sign($data, $sign, $privkey);
13 var_dump(openssl_verify($data, $sign, $pubkey));
14 var_dump(openssl_verify($data, $sign, $privkey));
15 var_dump(openssl_verify($data, $sign, $wrong));
17 var_dump(openssl_verify($wrong, $sign, $pubkey));
H A D018.phpt11 var_dump(openssl_sign($data, $sign, $privkey)); // no output
12 var_dump(openssl_sign($data, $sign, $wrong));
13 var_dump(openssl_sign(array(), $sign, $privkey));
H A Dbug66501.phpt19 $res = openssl_sign($data ='alpha', $sign, $key, 'ecdsa-with-SHA1');
H A Dbug36732.phpt2 Bug #36732 (add support for req_extensions in openss_csr_new and sign)
/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/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/Zend/
H A Dzend_strtod.h29 ZEND_API char * zend_dtoa(double _d, int mode, int ndigits, int *decpt, int *sign, char **rve);
H A Dzend_strtod.c420 int k, maxwds, sign, wds; member
499 rv->sign = rv->wds = 0; in Balloc()
513 #define Bcopy(x,y) memcpy((char *)&x->sign, (char *)&y->sign, \
942 c->sign = i; in diff()
1495 *sign = 1; in zend_dtoa()
1499 *sign = 0; in zend_dtoa()
1935 j1 = delta->sign ? 1 : cmp(b, delta); in zend_dtoa()
2053 sign = nz0 = nz = 0; in zend_strtod()
2061 sign = 1; in zend_strtod()
2372 dsign = delta->sign; in zend_strtod()
[all …]
/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_variation9.phpt19 "<html> \$ -> This represents the dollar sign</html><?php echo hello ?>",
42 string(50) "<html> $ -> This represents the dollar sign</html>"
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 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/bcmath/libbcmath/src/
H A Dbcmath.h35 typedef enum {PLUS, MINUS} sign; typedef
41 sign n_sign;
/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/interbase/tests/
H A Dinterbase.inc98 function rand_number($len , $prec = -1, $sign = 1)
114 if ($sign && (rand() % 3 == 0)) {
/PHP-5.5/ext/filter/
H A Dlogical_filters.c71 int sign = 0, digit = 0; in php_filter_parse_int() local
76 sign = 1; in php_filter_parse_int()
90 ctx_value = ((sign)?-1:1) * ((*(str++)) - '0'); in php_filter_parse_int()
104 if ( (!sign) && ctx_value <= (LONG_MAX-digit)/10 ) { in php_filter_parse_int()
106 } else if ( sign && ctx_value >= (LONG_MIN+digit)/10) { in php_filter_parse_int()
/PHP-5.5/ext/standard/tests/general_functions/
H A Dbug48660.phpt2 Bug #48660 (parse_ini_*(): dollar sign as last character of value fails)
/PHP-5.5/ext/openssl/
H A DREADME8 NEW: support for S/MIME encrypt/decrypt/sign/verify, as well as more
264 $fp = fopen("/src/openssl-0.9.6/demos/sign/cert.pem", "r");
276 $fp = fopen("/src/openssl-0.9.6/demos/sign/key.pem", "r");
296 $fp = fopen("/src/openssl-0.9.6/demos/sign/key.pem", "r");
310 $fp = fopen("/src/openssl-0.9.6/demos/sign/cert.pem", "r");
/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()
/PHP-5.5/ext/ereg/regex/
H A DWHATSNEW4 the tests file have accordingly been uncommented. The primary sign of
61 been introduced to minimize portability problems with shifting into sign
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregparse.c2511 sign = 1; in fetch_name_with_level()
2531 sign = -1; in fetch_name_with_level()
2591 *rback_num *= sign; in fetch_name_with_level()
2613 int r, is_num, sign; in fetch_name() local
2630 sign = 1; in fetch_name()
2650 sign = -1; in fetch_name()
2705 *rback_num *= sign; in fetch_name()
2732 int r, is_num, sign; in fetch_name() local
2749 sign = 1; in fetch_name()
2764 sign = -1; in fetch_name()
[all …]
/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/win32/build/
H A Dphpize.js.in183 // If it is --foo=bar, split on the equals sign

Completed in 69 milliseconds

123