Home
last modified time | relevance | path

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

/PHP-8.3/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-8.3/ext/opcache/jit/libudis86/
H A Dsyn.c120 int avail; in ud_asmprintf() local
123 avail = u->asm_buf_size - u->asm_buf_fill - 1 /* nullchar */; in ud_asmprintf()
124 ret = vsnprintf((char*) u->asm_buf + u->asm_buf_fill, avail, fmt, ap); in ud_asmprintf()
125 if (ret < 0 || ret > avail) { in ud_asmprintf()
/PHP-8.3/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-8.3/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-8.3/win32/build/
H A Dconfutils.js3333 var avail = WScript.CreateObject("Scripting.Dictionary");
3334 avail.Add("sse", "__SSE__");
3335 avail.Add("sse2", "__SSE2__");
3336 avail.Add("sse3", "__SSE3__");
3337 avail.Add("ssse3", "__SSSE3__");
3338 avail.Add("sse4.1", "__SSE4_1__");
3339 avail.Add("sse4.2", "__SSE4_2__");
3361 var list = (new VBArray(avail.Keys())).toArray();
3364 AC_DEFINE(avail.Item(list[i]), 1);
3378 } else if (!avail.Exists(it) && "avx2" != it && "avx" != it) {
[all …]

Completed in 43 milliseconds