Home
last modified time | relevance | path

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

/PHP-8.1/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.1/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.1/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.1/main/streams/
H A Dstreams.c850 size_t avail; in php_stream_locate_eol() local
856 avail = stream->writepos - stream->readpos; in php_stream_locate_eol()
859 avail = ZSTR_LEN(buf); in php_stream_locate_eol()
864 cr = memchr(readptr, '\r', avail); in php_stream_locate_eol()
865 lf = memchr(readptr, '\n', avail); in php_stream_locate_eol()
878 eol = memchr(readptr, '\r', avail); in php_stream_locate_eol()
881 eol = memchr(readptr, '\n', avail); in php_stream_locate_eol()
893 size_t avail = 0; in _php_stream_get_line() local
919 avail = stream->writepos - stream->readpos; in _php_stream_get_line()
921 if (avail > 0) { in _php_stream_get_line()
[all …]
/PHP-8.1/win32/build/
H A Dconfutils.js3313 var avail = WScript.CreateObject("Scripting.Dictionary");
3314 avail.Add("sse", "__SSE__");
3315 avail.Add("sse2", "__SSE2__");
3316 avail.Add("sse3", "__SSE3__");
3317 avail.Add("ssse3", "__SSSE3__");
3318 avail.Add("sse4.1", "__SSE4_1__");
3319 avail.Add("sse4.2", "__SSE4_2__");
3333 var list = (new VBArray(avail.Keys())).toArray();
3336 AC_DEFINE(avail.Item(list[i]), 1);
3350 } else if (!avail.Exists(it) && "avx2" != it && "avx" != it) {
[all …]

Completed in 27 milliseconds