Searched refs:cpysz (Results 1 – 1 of 1) sorted by relevance
916 size_t cpysz = 0; in _php_stream_get_line() local925 cpysz = eol - readptr + 1; in _php_stream_get_line()928 cpysz = avail; in _php_stream_get_line()943 if (cpysz >= maxlen - 1) { in _php_stream_get_line()944 cpysz = maxlen - 1; in _php_stream_get_line()949 memcpy(buf, readptr, cpysz); in _php_stream_get_line()951 stream->position += cpysz; in _php_stream_get_line()952 stream->readpos += cpysz; in _php_stream_get_line()953 buf += cpysz; in _php_stream_get_line()954 maxlen -= cpysz; in _php_stream_get_line()[all …]
Completed in 13 milliseconds