Home
last modified time | relevance | path

Searched refs:avail (Results 1 – 4 of 4) sorted by relevance

/php-src/ext/intl/tests/
H A Duconverter_enum.phpt7 $avail = UConverter::getAvailable();
8 var_dump(count($avail) > 100);
9 var_dump(in_array('UTF-7', $avail));
10 var_dump(in_array('CESU-8', $avail));
11 var_dump(in_array('ISO-8859-1', $avail));
/php-src/ext/standard/
H A Dhtml.c136 size_t avail = str_len - pos; in get_next_char() local
138 if (avail < 3 || in get_next_char()
140 if (avail < 2 || utf8_lead(str[pos + 1])) in get_next_char()
142 else if (avail < 3 || utf8_lead(str[pos + 2])) in get_next_char()
156 size_t avail = str_len - pos; in get_next_char() local
158 if (avail < 4 || in get_next_char()
161 if (avail < 2 || utf8_lead(str[pos + 1])) in get_next_char()
163 else if (avail < 3 || utf8_lead(str[pos + 2])) in get_next_char()
165 else if (avail < 4 || utf8_lead(str[pos + 3])) in get_next_char()
318 size_t avail = str_len - pos; in get_next_char() local
[all …]
/php-src/main/streams/
H A Dstreams.c881 size_t avail; in php_stream_locate_eol() local
887 avail = stream->writepos - stream->readpos; in php_stream_locate_eol()
890 avail = ZSTR_LEN(buf); in php_stream_locate_eol()
895 cr = memchr(readptr, '\r', avail); in php_stream_locate_eol()
896 lf = memchr(readptr, '\n', avail); in php_stream_locate_eol()
909 eol = memchr(readptr, '\r', avail); in php_stream_locate_eol()
912 eol = memchr(readptr, '\n', avail); in php_stream_locate_eol()
924 size_t avail = 0; in _php_stream_get_line() local
950 avail = stream->writepos - stream->readpos; in _php_stream_get_line()
952 if (avail > 0) { in _php_stream_get_line()
[all …]
/php-src/win32/build/
H A Dconfutils.js3334 var avail = WScript.CreateObject("Scripting.Dictionary");
3335 avail.Add("sse", "__SSE__");
3336 avail.Add("sse2", "__SSE2__");
3337 avail.Add("sse3", "__SSE3__");
3338 avail.Add("ssse3", "__SSSE3__");
3339 avail.Add("sse4.1", "__SSE4_1__");
3340 avail.Add("sse4.2", "__SSE4_2__");
3362 var list = (new VBArray(avail.Keys())).toArray();
3365 AC_DEFINE(avail.Item(list[i]), 1);
3379 } else if (!avail.Exists(it) && "avx2" != it && "avx" != it) {
[all …]

Completed in 39 milliseconds