Searched refs:avail (Results 1 – 4 of 4) sorted by relevance
/PHP-5.4/ext/standard/ |
H A D | html.c | 132 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.4/main/streams/ |
H A D | streams.c | 849 size_t avail; in php_stream_locate_eol() local 855 avail = stream->writepos - stream->readpos; in php_stream_locate_eol() 858 avail = buf_len; in php_stream_locate_eol() 863 cr = memchr(readptr, '\r', avail); in php_stream_locate_eol() 864 lf = memchr(readptr, '\n', avail); in php_stream_locate_eol() 877 eol = memchr(readptr, '\r', avail); in php_stream_locate_eol() 880 eol = memchr(readptr, '\n', avail); in php_stream_locate_eol() 892 size_t avail = 0; in _php_stream_get_line() local 918 avail = stream->writepos - stream->readpos; in _php_stream_get_line() 920 if (avail > 0) { in _php_stream_get_line() [all …]
|
/PHP-5.4/ext/pcre/pcrelib/doc/ |
H A D | pcre.txt | 1905 The output is an integer that is set to one if UTF-8 support is avail- 1913 The output is an integer that is set to one if UTF-16 support is avail- 1921 The output is an integer that is set to one if UTF-32 support is avail-
|
/PHP-5.4/ext/sqlite3/libsqlite/ |
H A D | sqlite3.c | 73144 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 317 milliseconds