Home
last modified time | relevance | path

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

/PHP-5.5/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-5.5/ext/standard/
H A Dhtml.c132 size_t avail = str_len - pos; in get_next_char() local
134 if (avail < 3 || in get_next_char()
136 if (avail < 2 || utf8_lead(str[pos + 1])) in get_next_char()
138 else if (avail < 3 || utf8_lead(str[pos + 2])) in get_next_char()
152 size_t avail = str_len - pos; in get_next_char() local
154 if (avail < 4 || in get_next_char()
157 if (avail < 2 || utf8_lead(str[pos + 1])) in get_next_char()
159 else if (avail < 3 || utf8_lead(str[pos + 2])) in get_next_char()
161 else if (avail < 4 || utf8_lead(str[pos + 3])) in get_next_char()
314 size_t avail = str_len - pos; in get_next_char() local
[all …]
/PHP-5.5/main/streams/
H A Dstreams.c844 size_t avail; in php_stream_locate_eol() local
850 avail = stream->writepos - stream->readpos; in php_stream_locate_eol()
853 avail = buf_len; in php_stream_locate_eol()
858 cr = memchr(readptr, '\r', avail); in php_stream_locate_eol()
859 lf = memchr(readptr, '\n', avail); in php_stream_locate_eol()
872 eol = memchr(readptr, '\r', avail); in php_stream_locate_eol()
875 eol = memchr(readptr, '\n', avail); in php_stream_locate_eol()
887 size_t avail = 0; in _php_stream_get_line() local
913 avail = stream->writepos - stream->readpos; in _php_stream_get_line()
915 if (avail > 0) { in _php_stream_get_line()
[all …]
/PHP-5.5/ext/pcre/pcrelib/doc/
H A Dpcre.txt1916 The output is an integer that is set to one if UTF-8 support is avail-
1924 The output is an integer that is set to one if UTF-16 support is avail-
1932 The output is an integer that is set to one if UTF-32 support is avail-
/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.c73144 u32 avail; /* Number of bytes of available data */
73175 pC->payloadSize = pC->szRow = avail = pReg->n;
73191 pC->aRow = sqlite3BtreeKeyFetch(pCrsr, &avail);
73197 pC->aRow = sqlite3BtreeDataFetch(pCrsr, &avail);
73199 assert( avail<=65536 ); /* Maximum page size is 64KiB */
73200 if( pC->payloadSize <= (u32)avail ){
73203 pC->szRow = avail;
73228 if( avail<offset ){

Completed in 364 milliseconds