Searched refs:STREAM_THRESHOLD (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Dverify.c417 #define STREAM_THRESHOLD 4096
420 * exceed STREAM_THRESHOLD. Use SCRATCH_POOL for temporary allocations.
429 unsigned char buffer[STREAM_THRESHOLD];
430 apr_uint64_t chunks[STREAM_THRESHOLD / sizeof(apr_uint64_t)];
434 SVN_ERR_ASSERT(size <= STREAM_THRESHOLD);
474 for (; size >= STREAM_THRESHOLD; size -= STREAM_THRESHOLD)
475 SVN_ERR(expect_buffer_nul(file, STREAM_THRESHOLD, scratch_pool));
511 * exceed STREAM_THRESHOLD. Use SCRATCH_POOL for temporary allocations.
518 unsigned char buffer[STREAM_THRESHOLD];
416 #define STREAM_THRESHOLD macro
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Dverify.c447 #define STREAM_THRESHOLD 4096
450 * SIZE must not exceed STREAM_THRESHOLD. Use POOL for allocations.
459 unsigned char buffer[STREAM_THRESHOLD];
460 apr_uint64_t chunks[STREAM_THRESHOLD / sizeof(apr_uint64_t)];
464 SVN_ERR_ASSERT(size <= STREAM_THRESHOLD);
504 for (; size >= STREAM_THRESHOLD; size -= STREAM_THRESHOLD)
505 SVN_ERR(expect_buffer_nul(file, STREAM_THRESHOLD, pool));
540 * exceed STREAM_THRESHOLD. Use POOL for allocations.
547 unsigned char buffer[STREAM_THRESHOLD];
446 #define STREAM_THRESHOLD macro
[all...]

Completed in 105 milliseconds