/PHP-7.1/ext/mbstring/oniguruma/ |
H A D | regerror.c | 44 char *p; in onig_error_code_to_format() local 199 UChar *p; in to_ascii() local 203 p = s; in to_ascii() 228 p += enclen(enc, p); in to_ascii() 277 p = s; 283 p += len; 286 p += 3; 295 *p++ = *q++; 345 p = pat; 348 *s++ = *p++; [all …]
|
H A D | regenc.c | 58 p += enclen(enc, p); in onigenc_get_right_adjust_char_head() 71 p += enclen(enc, p); in onigenc_get_right_adjust_char_head_with_prev() 143 p += ONIGENC_MBC_ENC_LEN(enc, p); in onigenc_strlen_null() 168 p += ONIGENC_MBC_ENC_LEN(enc, p); in onigenc_str_bytelen_null() 420 if (0x41 <= *p && *p <= 0x5a) { in onigenc_ascii_get_case_fold_codes_by_str() 426 else if (0x61 <= *p && *p <= 0x7a) { in onigenc_ascii_get_case_fold_codes_by_str() 479 if (0x41 <= *p && *p <= 0x5a) { in onigenc_get_case_fold_codes_by_str_with_map() 484 && (*(p+1) == 0x53 || *(p+1) == 0x73)) { in onigenc_get_case_fold_codes_by_str_with_map() 494 else if (0x61 <= *p && *p <= 0x7a) { in onigenc_get_case_fold_codes_by_str_with_map() 499 && (*(p+1) == 0x73 || *(p+1) == 0x53)) { in onigenc_get_case_fold_codes_by_str_with_map() [all …]
|
/PHP-7.1/ext/pcre/pcrelib/ |
H A D | pcre_valid_utf8.c | 108 register PCRE_PUCHAR p; in PRIV() local 112 for (p = string; *p != 0; p++); in PRIV() 113 length = (int)(p - string); in PRIV() 116 for (p = string; length-- > 0; p++) in PRIV() 120 c = *p; in PRIV() 125 *erroroffset = (int)(p - string); in PRIV() 131 *erroroffset = (int)(p - string); in PRIV() 145 if (((d = *(++p)) & 0xc0) != 0x80) in PRIV() 147 *erroroffset = (int)(p - string) - 1; in PRIV() 162 *erroroffset = (int)(p - string) - 1; in PRIV() [all …]
|
H A D | pcre_maketables.c | 78 unsigned char *yield, *p; in pcre_maketables() local 88 p = yield; in pcre_maketables() 92 for (i = 0; i < 256; i++) *p++ = tolower(i); in pcre_maketables() 111 memset(p, 0, cbit_length); in pcre_maketables() 114 if (isdigit(i)) p[cbit_digit + i/8] |= 1 << (i&7); in pcre_maketables() 115 if (isupper(i)) p[cbit_upper + i/8] |= 1 << (i&7); in pcre_maketables() 116 if (islower(i)) p[cbit_lower + i/8] |= 1 << (i&7); in pcre_maketables() 117 if (isalnum(i)) p[cbit_word + i/8] |= 1 << (i&7); in pcre_maketables() 118 if (i == '_') p[cbit_word + i/8] |= 1 << (i&7); in pcre_maketables() 126 p += cbit_length; in pcre_maketables() [all …]
|
/PHP-7.1/ext/mbstring/oniguruma/enc/ |
H A D | utf32_be.c | 42 if (*(p+3) == 0x0a && *(p+2) == 0 && *(p+1) == 0 && *p == 0) in utf32be_is_mbc_newline() 49 *(p+3) == 0x85) in utf32be_is_mbc_newline() 50 && *(p+2) == 0 && *(p+1) == 0 && *p == 0x00) in utf32be_is_mbc_newline() 52 if (*(p+2) == 0x20 && (*(p+3) == 0x29 || *(p+3) == 0x28) in utf32be_is_mbc_newline() 53 && *(p+1) == 0 && *p == 0) in utf32be_is_mbc_newline() 64 return (OnigCodePoint )(((p[0] * 256 + p[1]) * 256 + p[2]) * 256 + p[3]); in utf32be_mbc_to_code() 76 UChar* p = buf; in utf32be_code_to_mbc() local 91 if (ONIGENC_IS_ASCII_CODE(*(p+3)) && *(p+2) == 0 && *(p+1) == 0 && *p == 0) { in utf32be_mbc_case_fold() 124 if (*(p+2) == 0 && *(p+1) == 0 && *p == 0) { 127 p += 3; [all …]
|
H A D | utf32_le.c | 42 if (*p == 0x0a && *(p+1) == 0 && *(p+2) == 0 && *(p+3) == 0) in utf32le_is_mbc_newline() 47 *p == 0x0d || in utf32le_is_mbc_newline() 49 *p == 0x85) in utf32le_is_mbc_newline() 50 && *(p+1) == 0x00 && (p+2) == 0x00 && *(p+3) == 0x00) in utf32le_is_mbc_newline() 52 if (*(p+1) == 0x20 && (*p == 0x29 || *p == 0x28) in utf32le_is_mbc_newline() 53 && *(p+2) == 0x00 && *(p+3) == 0x00) in utf32le_is_mbc_newline() 64 return (OnigCodePoint )(((p[3] * 256 + p[2]) * 256 + p[1]) * 256 + p[0]); in utf32le_mbc_to_code() 76 UChar* p = buf; in utf32le_code_to_mbc() local 91 if (ONIGENC_IS_ASCII_CODE(*p) && *(p+1) == 0 && *(p+2) == 0 && *(p+3) == 0) { in utf32le_mbc_case_fold() 125 if (*(p+1) == 0 && *(p+2) == 0 && *(p+3) == 0) { [all …]
|
H A D | utf16_be.c | 61 if (*(p+1) == 0x0a && *p == 0x00) in utf16be_is_mbc_newline() 68 *(p+1) == 0x85) && *p == 0x00) in utf16be_is_mbc_newline() 70 if (*p == 0x20 && (*(p+1) == 0x29 || *(p+1) == 0x28)) in utf16be_is_mbc_newline() 85 + ((((p[1] & 0x3f) << 2) + (p[2] - 0xdc)) << 8) in utf16be_mbc_to_code() 86 + p[3]; in utf16be_mbc_to_code() 90 code = p[0] * 256 + p[1]; in utf16be_mbc_to_code() 130 if (ONIGENC_IS_ASCII_CODE(*(p+1)) && *p == 0) { in utf16be_mbc_case_fold() 131 p++; in utf16be_mbc_case_fold() 161 if (*p == 0) { 164 p++; [all …]
|
H A D | utf8.c | 71 if (p < end) { in is_mbc_newline() 79 if (*(p+1) == 0x85 && *p == 0xc2) /* U+0085 */ in is_mbc_newline() 82 if ((*(p+2) == 0xa8 || *(p+2) == 0xa9) in is_mbc_newline() 83 && *(p+1) == 0x80 && *p == 0xe2) /* U+2028, U+2029 */ in is_mbc_newline() 100 if (len > end - p) len = end - p; in mbc_to_code() 102 c = *p++; in mbc_to_code() 107 c = *p++; in mbc_to_code() 179 *p = 0xfe; in code_to_mbc() 183 *p = 0xff; in code_to_mbc() 276 p = s; in left_adjust_char_head() [all …]
|
H A D | utf16_le.c | 66 if (p + 1 < end) { in utf16le_is_mbc_newline() 67 if (*p == 0x0a && *(p+1) == 0x00) in utf16le_is_mbc_newline() 72 *p == 0x0d || in utf16le_is_mbc_newline() 74 *p == 0x85) && *(p+1) == 0x00) in utf16le_is_mbc_newline() 76 if (*(p+1) == 0x20 && (*p == 0x29 || *p == 0x28)) in utf16le_is_mbc_newline() 87 UChar c0 = *p; in utf16le_mbc_to_code() 88 UChar c1 = *(p+1); in utf16le_mbc_to_code() 94 + p[2]; in utf16le_mbc_to_code() 105 UChar* p = buf; in utf16le_code_to_mbc() local 132 if (ONIGENC_IS_ASCII_CODE(*p) && *(p+1) == 0) { in utf16le_mbc_case_fold() [all …]
|
H A D | iso8859_1.c | 118 if (0x41 <= *p && *p <= 0x5a) { in get_case_fold_codes_by_str() 122 if (*p == 0x53 && end > p + 1 in get_case_fold_codes_by_str() 123 && (*(p+1) == 0x53 || *(p+1) == 0x73)) { /* SS */ in get_case_fold_codes_by_str() 132 else if (0x61 <= *p && *p <= 0x7a) { in get_case_fold_codes_by_str() 136 if (*p == 0x73 && end > p + 1 in get_case_fold_codes_by_str() 137 && (*(p+1) == 0x73 || *(p+1) == 0x53)) { /* ss */ in get_case_fold_codes_by_str() 146 else if (0xc0 <= *p && *p <= 0xcf) { in get_case_fold_codes_by_str() 152 else if (0xd0 <= *p && *p <= 0xdf) { in get_case_fold_codes_by_str() 183 else if (0xe0 <= *p && *p <= 0xef) { in get_case_fold_codes_by_str() 189 else if (0xf0 <= *p && *p <= 0xfe) { in get_case_fold_codes_by_str() [all …]
|
H A D | euc_jp.c | 71 c = *p++; in mbc_to_code() 109 UChar *p = buf; in code_to_mbc() local 119 return p - buf; in code_to_mbc() 127 const UChar* p = *pp; in mbc_case_fold() local 139 *lower++ = *p++; in mbc_case_fold() 152 const UChar *p; in left_adjust_char_head() local 156 p = s; in left_adjust_char_head() 158 while (!eucjp_islead(*p) && p > start) p--; in left_adjust_char_head() 160 if (p + len > s) return (UChar* )p; in left_adjust_char_head() 161 p += len; in left_adjust_char_head() [all …]
|
H A D | sjis.c | 102 c = *p++; in mbc_to_code() 108 c = *p++; in mbc_to_code() 117 UChar *p = buf; in code_to_mbc() local 126 return p - buf; in code_to_mbc() 145 *lower++ = *p++; in mbc_case_fold() 181 const UChar *p; in left_adjust_char_head() local 185 p = s; in left_adjust_char_head() 190 p++; in left_adjust_char_head() 196 if (p + len > s) return (UChar* )p; in left_adjust_char_head() 197 p += len; in left_adjust_char_head() [all …]
|
H A D | euc_tw.c | 52 euctw_mbc_enc_len(const UChar* p) in euctw_mbc_enc_len() argument 54 return EncLen_EUCTW[*p]; in euctw_mbc_enc_len() 58 euctw_mbc_to_code(const UChar* p, const UChar* end) in euctw_mbc_to_code() argument 60 return onigenc_mbn_mbc_to_code(ONIG_ENCODING_EUC_TW, p, end); in euctw_mbc_to_code() 91 const UChar *p; in euctw_left_adjust_char_head() local 95 p = s; in euctw_left_adjust_char_head() 97 while (!euctw_islead(*p) && p > start) p--; in euctw_left_adjust_char_head() 98 len = enclen(ONIG_ENCODING_EUC_TW, p); in euctw_left_adjust_char_head() 99 if (p + len > s) return (UChar* )p; in euctw_left_adjust_char_head() 100 p += len; in euctw_left_adjust_char_head() [all …]
|
H A D | big5.c | 52 big5_mbc_enc_len(const UChar* p) in big5_mbc_enc_len() argument 54 return EncLen_BIG5[*p]; in big5_mbc_enc_len() 117 const UChar *p; in big5_left_adjust_char_head() local 121 p = s; in big5_left_adjust_char_head() 123 if (BIG5_ISMB_TRAIL(*p)) { in big5_left_adjust_char_head() 124 while (p > start) { in big5_left_adjust_char_head() 125 if (! BIG5_ISMB_FIRST(*--p)) { in big5_left_adjust_char_head() 126 p++; in big5_left_adjust_char_head() 132 if (p + len > s) return (UChar* )p; in big5_left_adjust_char_head() 133 p += len; in big5_left_adjust_char_head() [all …]
|
/PHP-7.1/ext/pcre/pcrelib/testdata/ |
H A D | testinput7 | 773 …p{Any}+\p{Any} \p{Any}+\P{Any} \p{Any}+\p{L&} \p{Any}+\p{L} \p{Any}+\p{Lu} \p{Any}+\p{Han} \p{Any}… 775 …p{L&}+\p{Any} \p{L&}+\p{L&} \P{L&}+\p{L&} \p{L&}+\p{L} \p{L&}+\p{Lu} \p{L&}+\p{Han} \p{L&}+\p{Xan}… 777 …p{N}+\p{Any} \p{N}+\p{L&} \p{N}+\p{L} \p{N}+\P{L} \p{N}+\P{N} \p{N}+\p{Lu} \p{N}+\p{Han} \p{N}+\p{… 779 …p{Lu}+\p{Any} \p{Lu}+\p{L&} \p{Lu}+\p{L} \p{Lu}+\p{Lu} \P{Lu}+\p{Lu} \p{Lu}+\p{Nd} \p{Lu}+\P{Nd} \… 781 …p{Han}+\p{Lu} \p{Han}+\p{L&} \p{Han}+\p{L} \p{Han}+\p{Lu} \p{Han}+\p{Arabic} \p{Arabic}+\p{Arabic}… 783 …p{Xan}+\p{Any} \p{Xan}+\p{L&} \P{Xan}+\p{L&} \p{Xan}+\p{L} \p{Xan}+\p{Lu} \p{Xan}+\p{Han} \p{Xan}+… 785 …p{Xsp}+\p{Any} \p{Xsp}+\p{L&} \p{Xsp}+\p{L} \p{Xsp}+\p{Lu} \p{Xsp}+\p{Han} \p{Xsp}+\p{Xan} \p{Xsp}… 787 …p{Xwd}+\p{Any} \p{Xwd}+\p{L&} \p{Xwd}+\p{L} \p{Xwd}+\p{Lu} \p{Xwd}+\p{Han} \p{Xwd}+\p{Xan} \p{Xwd}… 789 …p{Xuc}+\p{Any} \p{Xuc}+\p{L&} \p{Xuc}+\p{L} \p{Xuc}+\p{Lu} \p{Xuc}+\p{Han} \p{Xuc}+\p{Xan} \p{Xuc}… 795 /\p{L}+\p{Xan} \p{N}+\p{Xan} \p{C}+\p{Xan} \P{L}+\p{Xan} \p{N}+\p{Xan} \P{C}+\p{Xan} \p{L}+\P{Xan}/… [all …]
|
H A D | testoutput7 | 1656 …p{Any}+\p{Any} \p{Any}+\P{Any} \p{Any}+\p{L&} \p{Any}+\p{L} \p{Any}+\p{Lu} \p{Any}+\p{Han} \p{Any}… 1685 …p{L&}+\p{Any} \p{L&}+\p{L&} \P{L&}+\p{L&} \p{L&}+\p{L} \p{L&}+\p{Lu} \p{L&}+\p{Han} \p{L&}+\p{Xan}… 1716 …p{N}+\p{Any} \p{N}+\p{L&} \p{N}+\p{L} \p{N}+\P{L} \p{N}+\P{N} \p{N}+\p{Lu} \p{N}+\p{Han} \p{N}+\p{… 1747 …p{Lu}+\p{Any} \p{Lu}+\p{L&} \p{Lu}+\p{L} \p{Lu}+\p{Lu} \P{Lu}+\p{Lu} \p{Lu}+\p{Nd} \p{Lu}+\P{Nd} \… 1780 …p{Han}+\p{Lu} \p{Han}+\p{L&} \p{Han}+\p{L} \p{Han}+\p{Lu} \p{Han}+\p{Arabic} \p{Arabic}+\p{Arabic}… 1809 …p{Xan}+\p{Any} \p{Xan}+\p{L&} \P{Xan}+\p{L&} \p{Xan}+\p{L} \p{Xan}+\p{Lu} \p{Xan}+\p{Han} \p{Xan}+… 1840 …p{Xsp}+\p{Any} \p{Xsp}+\p{L&} \p{Xsp}+\p{L} \p{Xsp}+\p{Lu} \p{Xsp}+\p{Han} \p{Xsp}+\p{Xan} \p{Xsp}… 1869 …p{Xwd}+\p{Any} \p{Xwd}+\p{L&} \p{Xwd}+\p{L} \p{Xwd}+\p{Lu} \p{Xwd}+\p{Han} \p{Xwd}+\p{Xan} \p{Xwd}… 1898 …p{Xuc}+\p{Any} \p{Xuc}+\p{L&} \p{Xuc}+\p{L} \p{Xuc}+\p{Lu} \p{Xuc}+\p{Han} \p{Xuc}+\p{Xan} \p{Xuc}… 1959 /\p{L}+\p{Xan} \p{N}+\p{Xan} \p{C}+\p{Xan} \P{L}+\p{Xan} \p{N}+\p{Xan} \P{C}+\p{Xan} \p{L}+\P{Xan}/… [all …]
|
/PHP-7.1/ext/mysqli/tests/ |
H A D | mysqli_real_escape_string_sjis.phpt | 30 if ('?p??\\\\?p??' !== ($tmp = mysqli_real_escape_string($link, '?p??\\?p??'))) 33 if ('?p??\"?p??' !== ($tmp = mysqli_real_escape_string($link, '?p??"?p??'))) 36 if ("?p??\'?p??" !== ($tmp = mysqli_real_escape_string($link, "?p??'?p??"))) 39 if ("?p??\\n?p??" !== ($tmp = mysqli_real_escape_string($link, "?p??\n?p??"))) 42 if ("?p??\\r?p??" !== ($tmp = mysqli_real_escape_string($link, "?p??\r?p??"))) 45 if ("?p??\\0?p??" !== ($tmp = mysqli_real_escape_string($link, "?p??" . chr(0) . "?p??"))) 46 printf("[009] Expecting %s, got %s\n", "?p??\\0?p??", $tmp); 48 var_dump(mysqli_query($link, "INSERT INTO test(id, label) VALUES (100, '?p')"));
|
/PHP-7.1/tests/lang/ |
H A D | engine_assignExecutionOrder_008.phpt | 33 echo $a[$i->p=f()][++$i->p]; 37 echo $a[$i->p->q=f()][++$i->p->q]; 41 echo $a[$i->p[0]=f()][++$i->p[0]]; 44 echo "\n" . '$i->p[0]->p=f(): '; 45 echo $a[$i->p[0]->p=f()][++$i->p[0]->p]; 49 static $p; 53 echo $a[C::$p=f()][++C::$p]; 57 echo $a[C::$p[0]=f()][++C::$p[0]]; 61 echo $a[C::$p->q=f()][++C::$p->q]; 69 $i->p=f(): [all …]
|
/PHP-7.1/ext/opcache/ |
H A D | zend_accelerator_blacklist.c | 90 p = regexp + 2; in zend_accel_blacklist_update_regexp() 106 p += 5; in zend_accel_blacklist_update_regexp() 112 p += 4; in zend_accel_blacklist_update_regexp() 121 p += 2; in zend_accel_blacklist_update_regexp() 130 p += 6; in zend_accel_blacklist_update_regexp() 137 p += 5; in zend_accel_blacklist_update_regexp() 170 *p++ = ')'; in zend_accel_blacklist_update_regexp() 171 *p++ = '\0'; in zend_accel_blacklist_update_regexp() 191 *p++ = '|'; in zend_accel_blacklist_update_regexp() 201 while (p<end) { in zend_accel_blacklist_shutdown() [all …]
|
/PHP-7.1/ext/simplexml/tests/ |
H A D | 034.phpt | 9 <p>Blah 1</p> 10 <p>Blah 2</p> 11 <p>Blah 3</p> 16 $p = $foo->bar->p; 17 echo count($p); 18 $p = (array)$foo->bar->p; 19 echo count($p);
|
H A D | 035.phpt | 9 <p>Blah 1</p> 10 <p>Blah 2</p> 11 <p>Blah 3</p> 16 $p = $foo->bar->p; 17 echo $p."\n"; 18 echo $p->__toString()."\n"; 19 echo $p."\n";
|
/PHP-7.1/ext/standard/ |
H A D | uuencode.c | 71 char *p, *s, *e, *ee; in php_uuencode() local 78 p = ZSTR_VAL(dest); in php_uuencode() 91 *p++ = PHP_UU_ENC(len); in php_uuencode() 103 *p++ = '\n'; in php_uuencode() 114 *p++ = PHP_UU_ENC_C2(s); in php_uuencode() 120 *p++ = '\n'; in php_uuencode() 123 *p++ = PHP_UU_ENC('\0'); in php_uuencode() 124 *p++ = '\n'; in php_uuencode() 125 *p = '\0'; in php_uuencode() 135 char *s, *e, *p, *ee; in php_uudecode() local [all …]
|
/PHP-7.1/ext/dom/tests/ |
H A D | bug70001.phpt | 7 $element = new DOMText('<p>foo & bar</p>'); 9 $element = (new DOMDocument())->createTextNode('<p>foo & bar</p>'); 11 $element->textContent = ('<p>foo & bar</p>'); 15 string(16) "<p>foo & bar</p>" 16 string(16) "<p>foo & bar</p>" 17 string(16) "<p>foo & bar</p>"
|
/PHP-7.1/Zend/ |
H A D | zend_hash.c | 531 if (p->h == h && !p->key) { in zend_hash_index_find_bucket() 557 if (p) { in _zend_hash_add_or_update_i() 779 if (p) { in _zend_hash_index_add_or_update_i() 896 p++; in zend_hash_rehash() 951 p++; in zend_hash_rehash() 1209 if ((p->h == h) && (p->key == NULL)) { in zend_hash_index_del() 1474 p--; in zend_hash_graceful_reverse_destroy() 1959 return p ? &p->val : NULL; in zend_hash_find() 1971 return p ? &p->val : NULL; in zend_hash_str_find() 2013 return p ? &p->val : NULL; in zend_hash_index_find() [all …]
|
/PHP-7.1/ext/session/tests/ |
H A D | bug74892.phpt | 13 <p><a href="index.php">Click This Anchor Tag!</a></p> 14 <p><a href="index.php#place">External link with anchor</a></p> 15 <p><a href="http://php.net#foo">External link with anchor 2</a></p> 16 <p><a href="#place">Internal link</a></p> 19 <p><a href="index.php?PHPSESSID=sessionidhere">Click This Anchor Tag!</a></p> 20 <p><a href="index.php?PHPSESSID=sessionidhere#place">External link with anchor</a></p> 21 <p><a href="http://php.net?PHPSESSID=sessionidhere#foo">External link with anchor 2</a></p> 22 <p><a href="#place">Internal link</a></p>
|