Home
last modified time | relevance | path

Searched refs:buffSize (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/sys/contrib/zstd/programs/
H A Ddatagen.c94 void RDG_genBlock(void* buffer, size_t buffSize, size_t prefixSize, double matchProba, const BYTE* … in RDG_genBlock() argument
106 if (buffSize < pos + size0) { in RDG_genBlock()
107 memset(buffPtr+pos, 0, buffSize-pos); in RDG_genBlock()
120 while (pos < buffSize) { in RDG_genBlock()
125 U32 const d = (U32) MIN(pos + length , buffSize); in RDG_genBlock()
135 U32 const d = (U32) MIN(pos + length, buffSize); in RDG_genBlock()
H A Ddibio.c214 const void* buff, size_t buffSize) in DiB_saveDict() argument
219 { size_t const n = fwrite(buff, 1, buffSize, f); in DiB_saveDict()
220 if (n!=buffSize) EXM_THROW(4, "%s : write error", dictFileName) } in DiB_saveDict()
/freebsd-12.1/contrib/libarchive/libarchive/
H A Darchive_write_open_memory.c52 archive_write_open_memory(struct archive *a, void *buff, size_t buffSize, size_t *used) in archive_write_open_memory() argument
62 mine->size = buffSize; in archive_write_open_memory()
/freebsd-12.1/sys/contrib/zstd/tests/
H A DroundTripCrash.c112 static size_t checkBuffers(const void* buff1, const void* buff2, size_t buffSize) in checkBuffers() argument
118 for (pos=0; pos<buffSize; pos++) in checkBuffers()