Searched refs:cpysz (Results 1 – 1 of 1) sorted by relevance
953 size_t cpysz = 0; in _php_stream_get_line() local962 cpysz = eol - readptr + 1; in _php_stream_get_line()965 cpysz = avail; in _php_stream_get_line()980 if (cpysz >= maxlen - 1) { in _php_stream_get_line()981 cpysz = maxlen - 1; in _php_stream_get_line()986 memcpy(buf, readptr, cpysz); in _php_stream_get_line()988 stream->position += cpysz; in _php_stream_get_line()989 stream->readpos += cpysz; in _php_stream_get_line()990 buf += cpysz; in _php_stream_get_line()991 maxlen -= cpysz; in _php_stream_get_line()[all …]
Completed in 10 milliseconds