/lib/lz4/ |
D | lz4_decompress.c | 449 int LZ4_decompress_safe(const char *source, char *dest, in LZ4_decompress_safe() argument 452 return LZ4_decompress_generic(source, dest, in LZ4_decompress_safe() 467 int LZ4_decompress_fast(const char *source, char *dest, int originalSize) in LZ4_decompress_fast() argument 469 return LZ4_decompress_generic(source, dest, 0, originalSize, in LZ4_decompress_fast() 477 int LZ4_decompress_safe_withPrefix64k(const char *source, char *dest, in LZ4_decompress_safe_withPrefix64k() argument 480 return LZ4_decompress_generic(source, dest, in LZ4_decompress_safe_withPrefix64k() 487 static int LZ4_decompress_safe_withSmallPrefix(const char *source, char *dest, in LZ4_decompress_safe_withSmallPrefix() argument 492 return LZ4_decompress_generic(source, dest, in LZ4_decompress_safe_withSmallPrefix() 499 int LZ4_decompress_safe_forceExtDict(const char *source, char *dest, in LZ4_decompress_safe_forceExtDict() argument 503 return LZ4_decompress_generic(source, dest, in LZ4_decompress_safe_forceExtDict() [all …]
|
D | lz4_compress.c | 178 const char * const source, in LZ4_compress_generic() argument 188 const BYTE *ip = (const BYTE *) source; in LZ4_compress_generic() 194 const size_t dictDelta = dictEnd - (const BYTE *)source; in LZ4_compress_generic() 195 const BYTE *anchor = (const BYTE *) source; in LZ4_compress_generic() 215 base = (const BYTE *)source; in LZ4_compress_generic() 216 lowLimit = (const BYTE *)source; in LZ4_compress_generic() 219 base = (const BYTE *)source - dictPtr->currentOffset; in LZ4_compress_generic() 220 lowLimit = (const BYTE *)source - dictPtr->dictSize; in LZ4_compress_generic() 223 base = (const BYTE *)source - dictPtr->currentOffset; in LZ4_compress_generic() 224 lowLimit = (const BYTE *)source; in LZ4_compress_generic() [all …]
|
D | lz4hc_compress.c | 340 const char * const source, in LZ4HC_compress_generic() argument 348 const BYTE *ip = (const BYTE *) source; in LZ4HC_compress_generic() 669 const char *source, in LZ4_compressHC_continue_generic() argument 679 LZ4HC_init(ctxPtr, (const BYTE *) source); in LZ4_compressHC_continue_generic() 692 if ((const BYTE *)source != ctxPtr->end) in LZ4_compressHC_continue_generic() 693 LZ4HC_setExternalDict(ctxPtr, (const BYTE *)source); in LZ4_compressHC_continue_generic() 697 const BYTE *sourceEnd = (const BYTE *) source + inputSize; in LZ4_compressHC_continue_generic() 702 && ((const BYTE *)source < dictEnd)) { in LZ4_compressHC_continue_generic() 712 return LZ4HC_compress_generic(ctxPtr, source, dest, in LZ4_compressHC_continue_generic() 718 const char *source, in LZ4_compress_HC_continue() argument [all …]
|
/lib/zstd/ |
D | fse_compress.c | 357 …_parallel_wksp(unsigned *count, unsigned *maxSymbolValuePtr, const void *source, size_t sourceSize… in FSE_count_parallel_wksp() argument 360 const BYTE *ip = (const BYTE *)source; in FSE_count_parallel_wksp() 448 size_t FSE_countFast_wksp(unsigned *count, unsigned *maxSymbolValuePtr, const void *source, size_t … in FSE_countFast_wksp() argument 451 return FSE_count_simple(count, maxSymbolValuePtr, source, sourceSize); in FSE_countFast_wksp() 452 return FSE_count_parallel_wksp(count, maxSymbolValuePtr, source, sourceSize, 0, workSpace); in FSE_countFast_wksp() 458 size_t FSE_count_wksp(unsigned *count, unsigned *maxSymbolValuePtr, const void *source, size_t sour… in FSE_count_wksp() argument 461 return FSE_count_parallel_wksp(count, maxSymbolValuePtr, source, sourceSize, 1, workSpace); in FSE_count_wksp() 463 return FSE_countFast_wksp(count, maxSymbolValuePtr, source, sourceSize, workSpace); in FSE_count_wksp()
|
D | fse.h | 249 size_t FSE_count_wksp(unsigned *count, unsigned *maxSymbolValuePtr, const void *source, size_t sour…
|
/lib/ |
D | test_blackhole_dev.c | 52 uh->source = uh->dest = htons(UDP_PORT); in test_blackholedev_init()
|
D | Kconfig | 62 source "lib/math/Kconfig" 304 source "lib/xz/Kconfig" 457 source "kernel/dma/Kconfig" 580 source "lib/vdso/Kconfig" 582 source "lib/fonts/Kconfig"
|
D | Kconfig.debug | 106 enabled/disabled based on various levels of scope - per source file, 111 If a source file is compiled with DEBUG flag set, any 127 filename : source file of the debug statement 454 source "mm/Kconfig.debug" 757 source "lib/Kconfig.kasan" 1406 source "kernel/rcu/Kconfig.debug" 1636 source "kernel/trace/Kconfig" 2083 source "samples/Kconfig" 2085 source "lib/Kconfig.kgdb" 2087 source "lib/Kconfig.ubsan" [all …]
|