/PHP-8.0/ext/openssl/tests/ |
H A D | openssl_verify_basic.phpt | 12 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 D | openssl_sign_basic.phpt | 11 var_dump(openssl_sign($data, $sign, $privkey)); // no output 12 var_dump(openssl_sign($data, $sign, $wrong));
|
H A D | bug66501.phpt | 20 $res = openssl_sign($data ='alpha', $sign, $key, 'SHA1');
|
H A D | bug36732.phpt | 2 Bug #36732 (add support for req_extensions in openss_csr_new and sign)
|
/PHP-8.0/scripts/dev/ |
H A D | gen_verify_stub | 35 gpg --armor --detach-sign $TARBALL 37 gpg -u $GPG_USER --armor --detach-sign $TARBALL
|
/PHP-8.0/main/ |
H A D | snprintf.c | 75 *sign = 0; in __cvt() 85 p = zend_dtoa(value, fmode + 2, ndigit, decpt, sign, &rve); in __cvt() 121 return(__cvt(value, ndigit, decpt, sign, 0, 1)); in php_ecvt() 127 return(__cvt(value, ndigit, decpt, sign, 1, 1)); in php_fcvt() 134 int i, decpt, sign; in php_gcvt() local 140 digits = zend_dtoa(value, mode, ndigit, &decpt, &sign, NULL); in php_gcvt() 152 if (sign) { in php_gcvt() 159 sign = 1; in php_gcvt() 162 sign = 0; in php_gcvt() 175 if (sign) { in php_gcvt() [all …]
|
/PHP-8.0/tests/lang/string/ |
H A D | unicode_escape_sign.phpt | 2 Invalid Unicode escape sequence: Positive sign
|
H A D | unicode_escape_sign2.phpt | 2 Invalid Unicode escape sequence: Negative sign
|
/PHP-8.0/ext/opcache/jit/libudis86/ |
H A D | syn.h | 47 void ud_syn_print_mem_disp(struct ud* u, const struct ud_operand *, int sign);
|
H A D | syn.c | 197 ud_syn_print_mem_disp(struct ud* u, const struct ud_operand *op, int sign) in ud_syn_print_mem_disp() argument 251 ud_asmprintf(u, "%s0x%" FMT64 "x", sign? "+" : "", v); in ud_syn_print_mem_disp()
|
/PHP-8.0/Zend/ |
H A D | zend_strtod.h | 27 ZEND_API char * zend_dtoa(double _d, int mode, int ndigits, int *decpt, int *sign, char **rve);
|
H A D | zend_strtod.c | 1149 c->sign = i; 1942 if (sign) 1968 if (!sign) 1972 if (sign) 2062 if (sign) 2580 sign = 1; 2760 sign = 0; 2868 if (sign) 3800 *sign = 1; 3804 *sign = 0; [all …]
|
/PHP-8.0/ext/standard/tests/misc/ |
H A D | bug65550.phpt | 2 Bug #65550 (get_browser() incorrectly parses entries with "+" sign)
|
/PHP-8.0/ext/standard/tests/strings/ |
H A D | strip_tags_variation10.phpt | 13 '<html> \$ -> This represents the dollar sign</html><?php echo hello ?>', 37 string(51) "<html> \$ -> This represents the dollar sign</html>"
|
H A D | strip_tags_variation9.phpt | 12 "<html> \$ -> This represents the dollar sign</html><?php echo hello ?>", 36 string(50) "<html> $ -> This represents the dollar sign</html>"
|
H A D | sprintf_f_2.phpt | 54 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-8.0/ext/standard/ |
H A D | crypt_blowfish.c | 538 BF_word safety, sign, diff, tmp[2]; in BF_set_key() local 578 sign = diff = 0; in BF_set_key() 594 sign |= tmp[1] & 0x80; in BF_set_key() 618 sign <<= 9; /* move the non-benign sign extension flag to bit 16 */ in BF_set_key() 619 sign &= ~diff & safety; /* action needed? */ in BF_set_key() 632 initial[0] ^= sign; in BF_set_key()
|
/PHP-8.0/ext/bcmath/libbcmath/src/ |
H A D | bcmath.h | 35 typedef enum {PLUS, MINUS} sign; typedef 41 sign n_sign;
|
/PHP-8.0/ext/standard/tests/array/ |
H A D | array_unshift_variation7.phpt | 18 "\$ -> This represents the dollar sign. hello dollar!!!", 58 string(53) "$ -> This represents the dollar sign. hello dollar!!!" 71 string(53) "$ -> This represents the dollar sign. hello dollar!!!"
|
H A D | array_unshift_variation8.phpt | 18 '\$ -> This represents the dollar sign. hello dollar!!!', 58 string(54) "\$ -> This represents the dollar sign. hello dollar!!!" 71 string(54) "\$ -> This represents the dollar sign. hello dollar!!!"
|
/PHP-8.0/ext/standard/tests/general_functions/ |
H A D | bug48660.phpt | 2 Bug #48660 (parse_ini_*(): dollar sign as last character of value fails)
|
/PHP-8.0/ext/filter/ |
H A D | logical_filters.c | 96 int sign = 0, digit = 0; in php_filter_parse_int() local 101 sign = 1; in php_filter_parse_int() 115 ctx_value = ((sign)?-1:1) * ((*(str++)) - '0'); in php_filter_parse_int() 129 if ( (!sign) && ctx_value <= (ZEND_LONG_MAX-digit)/10 ) { in php_filter_parse_int() 131 } else if ( sign && ctx_value >= (ZEND_LONG_MIN+digit)/10) { in php_filter_parse_int()
|
/PHP-8.0/ext/pcre/pcre2lib/sljit/ |
H A D | sljitNativeX86_64.c | 844 static sljit_s32 emit_mov_int(struct sljit_compiler *compiler, sljit_s32 sign, in emit_mov_int() argument 858 if (sign || ((sljit_uw)srcw <= 0x7fffffff)) { in emit_mov_int() 879 if (sign) { in emit_mov_int()
|
H A D | sljitNativeARM_64.c | 1876 sljit_u32 sign = 0, inst; in sljit_emit_mem() local 1893 sign = 1; in sljit_emit_mem() 1898 sign = 1; in sljit_emit_mem() 1903 sign = 1; in sljit_emit_mem() 1914 inst |= sign ? 0x00800000 : 0x00400000; in sljit_emit_mem()
|
/PHP-8.0/win32/build/ |
H A D | phpize.js.in | 179 // If it is --foo=bar, split on the equals sign
|