Home
last modified time | relevance | path

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

/freebsd-12.1/sys/contrib/zstd/programs/
H A Dfileio.c213 static U32 g_sparseFileSupport = 1; /* 0: no sparse allowed; 1: auto (file yes, stdout no); 2: fo… variable
214 void FIO_setSparseWrite(unsigned sparse) { g_sparseFileSupport=sparse; } in FIO_setSparseWrite()
322 if (g_sparseFileSupport==1) { in FIO_openDstFile()
323 g_sparseFileSupport = 0; in FIO_openDstFile()
329 if (g_sparseFileSupport == 1) { in FIO_openDstFile()
330 g_sparseFileSupport = ZSTD_SPARSE_DEFAULT; in FIO_openDstFile()
1088 if (!g_sparseFileSupport) { /* normal write */ in FIO_fwriteSparse()