Home
last modified time | relevance | path

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

/PHP-5.3/ext/xml/
H A Dxml.c713 size_t avail = str_len - pos; in php_next_utf8_char() local
715 if (avail < 3 || in php_next_utf8_char()
717 if (avail < 2 || utf8_lead(str[pos + 1])) in php_next_utf8_char()
719 else if (avail < 3 || utf8_lead(str[pos + 2])) in php_next_utf8_char()
733 size_t avail = str_len - pos; in php_next_utf8_char() local
735 if (avail < 4 || in php_next_utf8_char()
738 if (avail < 2 || utf8_lead(str[pos + 1])) in php_next_utf8_char()
740 else if (avail < 3 || utf8_lead(str[pos + 2])) in php_next_utf8_char()
742 else if (avail < 4 || utf8_lead(str[pos + 3])) in php_next_utf8_char()
/PHP-5.3/main/streams/
H A Dstreams.c774 size_t avail; in php_stream_locate_eol() local
780 avail = stream->writepos - stream->readpos; in php_stream_locate_eol()
783 avail = buf_len; in php_stream_locate_eol()
788 cr = memchr(readptr, '\r', avail); in php_stream_locate_eol()
789 lf = memchr(readptr, '\n', avail); in php_stream_locate_eol()
802 eol = memchr(readptr, '\r', avail); in php_stream_locate_eol()
805 eol = memchr(readptr, '\n', avail); in php_stream_locate_eol()
817 size_t avail = 0; in _php_stream_get_line() local
843 avail = stream->writepos - stream->readpos; in _php_stream_get_line()
845 if (avail > 0) { in _php_stream_get_line()
[all …]
/PHP-5.3/ext/sqlite3/libsqlite/
H A Dsqlite3.c63009 int avail; /* Number of bytes of available data */
64886 int avail; /* Number of bytes of available data */
64977 u.am.avail = 0;
64987 u.am.zData = (char*)sqlite3BtreeKeyFetch(u.am.pCrsr, &u.am.avail);
64989 u.am.zData = (char*)sqlite3BtreeDataFetch(u.am.pCrsr, &u.am.avail);
64996 assert( u.am.avail>=0 );
64997 if( u.am.payloadSize <= (u32)u.am.avail ){
65045 if( !u.am.zRec && u.am.avail<u.am.len ){
/PHP-5.3/ext/pcre/pcrelib/doc/
H A Dpcre.txt1862 The output is an integer that is set to one if UTF-8 support is avail-
1870 The output is an integer that is set to one if UTF-16 support is avail-
1878 The output is an integer that is set to one if UTF-32 support is avail-

Completed in 250 milliseconds