Home
last modified time | relevance | path

Searched refs:chars (Results 1 – 25 of 178) sorted by last modified time

12345678

/PHP-7.4/
H A DNEWS1130 with more than 20 chars). (Nikita)
H A Dphp.ini-development1463 ; Users should use 32 or more chars.
1650 ; mbstring.internal_encoding setting. Input chars are
H A Dphp.ini-production1463 ; Users should use 32 or more chars.
1650 ; mbstring.internal_encoding setting. Input chars are
H A DCONTRIBUTING.md382 <long description, 79 chars per line>
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_jit_compile.c5338 chars->chars[0] = chr; in add_prefix_char()
5346 if (chars->chars[i] == chr) in add_prefix_char()
5355 chars->chars[count] = chr; in add_prefix_char()
5800 a1 = chars[i].chars[0]; in check_fast_forward_char_pair_simd()
5801 a2 = chars[i].chars[1]; in check_fast_forward_char_pair_simd()
5831 …har_pair_simd(common, max_i, chars[max_i].chars[0], chars[max_i].chars[1], max_j, chars[max_j].cha… in check_fast_forward_char_pair_simd()
5959 chars[i].chars[1] = chars[i].chars[0]; in fast_forward_first_n_chars()
5963 SLJIT_ASSERT(chars[i].chars[0] != chars[i].chars[1]); in fast_forward_first_n_chars()
5965 if (is_powerof2(chars[i].chars[0] ^ chars[i].chars[1])) in fast_forward_first_n_chars()
6050 fast_forward_first_char2(common, chars[offset].chars[0], chars[offset].chars[1], offset); in fast_forward_first_n_chars()
[all …]
H A Dpcre2_jit_neon_inc.h85 …T_FUNC FF_FUN(sljit_u8 *str_end, sljit_u8 *str_ptr, sljit_uw offs1, sljit_uw offs2, sljit_uw chars) in FF_FUN() argument
90 ic.x = chars; in FF_FUN()
/PHP-7.4/ext/date/lib/
H A Dparse_date.re2294 …case TIMELIB_FORMAT_SKIP_TO_SEPARATOR: /* random chars until a separator or number ([ \t.,:;/-0123…
2298 case TIMELIB_FORMAT_ALLOW_EXTRA_CHARACTERS: /* allow extra chars in the format */
/PHP-7.4/ext/standard/
H A Dstring.c5592 int chars[256]; local
5612 memset((void*) chars, 0, sizeof(chars));
5615 chars[*buf]++;
5627 add_index_long(return_value, inx, chars[inx]);
5630 if (chars[inx] != 0) {
5631 add_index_long(return_value, inx, chars[inx]);
5635 if (chars[inx] == 0) {
5636 add_index_long(return_value, inx, chars[inx]);
5640 if (chars[inx] != 0) {
5645 if (chars[inx] == 0) {
H A Durl.c90 static const char *binary_strcspn(const char *s, const char *e, const char *chars) { in binary_strcspn() argument
91 while (*chars) { in binary_strcspn()
92 const char *p = memchr(s, *chars, e - s); in binary_strcspn()
96 chars++; in binary_strcspn()
H A Durl_scanner_ex.re189 smart_str_0(url); /* FIXME: Bug #70480 php_url_parse_ex() crashes by processing chars exceed len */
346 scdebug(("appending %d chars, starting with %c\n", YYCURSOR-start, *start));
/PHP-7.4/build/
H A Dlibtool.m46349 # 10000 chars as input seems more than enough
/PHP-7.4/ext/ldap/
H A Dldap.c3868 static void php_ldap_escape_map_set_chars(zend_bool *map, const char *chars, const size_t charslen,… in php_ldap_escape_map_set_chars() argument
3872 map[(unsigned char) chars[i++]] = escape; in php_ldap_escape_map_set_chars()
/PHP-7.4/ext/standard/tests/filters/
H A Dbug74267.phpt6 …d($stream, 'convert.quoted-printable-decode', STREAM_FILTER_WRITE, ['line-break-chars' => "\r\n"]);
/PHP-7.4/ext/filter/
H A Dsanitizing_filters.c28 static void php_filter_encode_html(zval *value, const unsigned char *chars) in php_filter_encode_html() argument
40 if (chars[*s]) { in php_filter_encode_html()
64 static void php_filter_encode_url(zval *value, const unsigned char* chars, const int char_len, int … in php_filter_encode_url() argument
68 unsigned char *s = (unsigned char *)chars; in php_filter_encode_url()
/PHP-7.4/ext/standard/tests/file/windows_mb_path/
H A Dtest_cp1250_to_utf8_4.phpt23 $item = "Árvíztűrő tükörfúrógép"; // cp1250 specific chars
H A Dtest_cp1250_to_utf8_5.phpt23 $item = "Árvíztűrő tükörfúrógép"; // cp1250 specific chars
H A Dtest_cp1250_to_utf8_0.phpt23 $item = "šđčćž_ŠĐČĆŽ"; // cp1250 specific chars
H A Dtest_cp1250_to_utf8_1.phpt23 $item = "šđčćž_ŠĐČĆŽ"; // cp1250 specific chars
H A Dtest_cp1250_to_utf8_2.phpt23 $item = "šđčćž_ŠĐČĆŽ"; // cp1250 specific chars
H A Dtest_cp1250_to_utf8_3.phpt23 $item = "Árvíztűrő tükörfúrógép"; // cp1250 specific chars
/PHP-7.4/ext/intl/converter/
H A Dconverter.c73 char chars[127]; in php_converter_default_callback() local
74 int8_t chars_len = sizeof(chars); in php_converter_default_callback()
78 chars[0] = 0x1A; in php_converter_default_callback()
79 chars[1] = 0; in php_converter_default_callback()
96 chars[0] = 0x1A; in php_converter_default_callback()
97 chars[1] = 0; in php_converter_default_callback()
101 RETVAL_STRINGL(chars, chars_len); in php_converter_default_callback()
584 ZEND_ARG_INFO(0, chars)
589 char *chars; in PHP_METHOD() local
634 char chars[127]; in PHP_METHOD() local
[all …]
/PHP-7.4/ext/mbstring/tests/
H A Dmb_str_split_utf8_utf16.phpt2 mb_str_split() tests UTF-8 illegal chars & UTF-16 surrogate pairs
/PHP-7.4/ext/standard/tests/strings/
H A Dvfprintf_variation9.phpt11 * Test vfprintf() for char formats with an array of chars passed to the function
H A Dvprintf_variation9.phpt11 * Test vprintf() for char formats with an array of chars passed to the function
H A Dstrtoupper1-win32.phpt16 echo "*** Testing strtoupper() with all 256 chars ***\n";
62 *** Testing strtoupper() with all 256 chars ***

Completed in 145 milliseconds

12345678