Lines Matching refs:cpysz
916 size_t cpysz = 0; in _php_stream_get_line() local
925 cpysz = eol - readptr + 1; in _php_stream_get_line()
928 cpysz = avail; in _php_stream_get_line()
939 bufstart = erealloc(bufstart, current_buf_size + cpysz + 1); in _php_stream_get_line()
940 current_buf_size += cpysz + 1; 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()
955 total_copied += cpysz; in _php_stream_get_line()