Home
last modified time | relevance | path

Searched refs:SVN__STREAM_CHUNK_SIZE (Results 1 – 12 of 12) sorted by relevance

/NextBSD/contrib/subversion/subversion/libsvn_subr/
HDstream.c536 char *buf = apr_palloc(scratch_pool, SVN__STREAM_CHUNK_SIZE); in svn_stream_copy3()
545 apr_size_t len = SVN__STREAM_CHUNK_SIZE; in svn_stream_copy3()
561 if (err || (len != SVN__STREAM_CHUNK_SIZE)) in svn_stream_copy3()
577 char *buf1 = apr_palloc(pool, SVN__STREAM_CHUNK_SIZE); in svn_stream_contents_same2()
578 char *buf2 = apr_palloc(pool, SVN__STREAM_CHUNK_SIZE); in svn_stream_contents_same2()
579 apr_size_t bytes_read1 = SVN__STREAM_CHUNK_SIZE; in svn_stream_contents_same2()
580 apr_size_t bytes_read2 = SVN__STREAM_CHUNK_SIZE; in svn_stream_contents_same2()
584 while (bytes_read1 == SVN__STREAM_CHUNK_SIZE in svn_stream_contents_same2()
585 && bytes_read2 == SVN__STREAM_CHUNK_SIZE) in svn_stream_contents_same2()
1415 char *buf = apr_palloc(btn->pool, SVN__STREAM_CHUNK_SIZE); in close_handler_checksum()
[all …]
HDio.c846 char buf[SVN__STREAM_CHUNK_SIZE]; in copy_contents()
2524 apr_size_t res_initial_len = SVN__STREAM_CHUNK_SIZE; in stringbuf_from_aprfile()
2552 buf = apr_palloc(pool, SVN__STREAM_CHUNK_SIZE); in stringbuf_from_aprfile()
2557 len = SVN__STREAM_CHUNK_SIZE; in stringbuf_from_aprfile()
2562 len = SVN__STREAM_CHUNK_SIZE; in stringbuf_from_aprfile()
4735 char *buf1 = apr_palloc(pool, SVN__STREAM_CHUNK_SIZE); in contents_identical_p()
4736 char *buf2 = apr_palloc(pool, SVN__STREAM_CHUNK_SIZE); in contents_identical_p()
4757 SVN__STREAM_CHUNK_SIZE, &bytes_read1, in contents_identical_p()
4763 SVN__STREAM_CHUNK_SIZE, &bytes_read2, in contents_identical_p()
4800 char *buf1 = apr_palloc(scratch_pool, SVN__STREAM_CHUNK_SIZE); in contents_three_identical_p()
[all …]
HDsubst.c1244 #define SVN__TRANSLATION_BUF_SIZE (SVN__STREAM_CHUNK_SIZE + 1)
1258 apr_size_t readlen = SVN__STREAM_CHUNK_SIZE; in translated_stream_read()
1281 while (readlen == SVN__STREAM_CHUNK_SIZE && unsatisfied > 0) in translated_stream_read()
1300 if (readlen != SVN__STREAM_CHUNK_SIZE) in translated_stream_read()
HDconfig_file.c74 char parser_buffer[SVN__STREAM_CHUNK_SIZE]; /* Larger than most config files */
/NextBSD/contrib/subversion/subversion/libsvn_repos/
HDload.c406 char *buffer = apr_palloc(pool, SVN__STREAM_CHUNK_SIZE); in svn_repos_parse_dumpstream3()
407 apr_size_t buflen = SVN__STREAM_CHUNK_SIZE; in svn_repos_parse_dumpstream3()
/NextBSD/contrib/subversion/subversion/libsvn_delta/
HDtext_delta.c877 char read_buf[SVN__STREAM_CHUNK_SIZE + 1]; in svn_txdelta_send_stream()
885 apr_size_t read_len = SVN__STREAM_CHUNK_SIZE; in svn_txdelta_send_stream()
908 if (read_len < SVN__STREAM_CHUNK_SIZE) in svn_txdelta_send_stream()
/NextBSD/contrib/subversion/subversion/include/
HDsvn_types.h1121 #define SVN__STREAM_CHUNK_SIZE 16384 macro
/NextBSD/contrib/subversion/subversion/libsvn_fs_fs/
HDcached_data.c1887 if (needed <= SVN__STREAM_CHUNK_SIZE) in optimimal_allocation_size()
1904 optimal = SVN__STREAM_CHUNK_SIZE; in optimimal_allocation_size()
1957 char *buffer = apr_palloc(subpool, SVN__STREAM_CHUNK_SIZE); in skip_contents()
1961 apr_size_t to_read = len > SVN__STREAM_CHUNK_SIZE in skip_contents()
1962 ? SVN__STREAM_CHUNK_SIZE in skip_contents()
HDverify.c177 unsigned char buffer[SVN__STREAM_CHUNK_SIZE]; in verify_index_checksum()
/NextBSD/contrib/subversion/subversion/libsvn_fs_x/
HDcached_data.c1990 if (needed <= SVN__STREAM_CHUNK_SIZE) in optimimal_allocation_size()
2007 optimal = SVN__STREAM_CHUNK_SIZE; in optimimal_allocation_size()
2060 char *buffer = apr_palloc(subpool, SVN__STREAM_CHUNK_SIZE); in skip_contents()
2064 apr_size_t to_read = len > SVN__STREAM_CHUNK_SIZE in skip_contents()
2065 ? SVN__STREAM_CHUNK_SIZE in skip_contents()
HDverify.c153 unsigned char buffer[SVN__STREAM_CHUNK_SIZE]; in verify_index_checksum()
/NextBSD/contrib/subversion/subversion/libsvn_fs_base/
HDfs.c1348 if (pagesize < SVN__STREAM_CHUNK_SIZE) in base_hotcopy()
1351 int multiple = SVN__STREAM_CHUNK_SIZE / pagesize; in base_hotcopy()