/freebsd/sys/contrib/zstd/zlibWrapper/examples/ |
H A D | example.c | 59 void test_deflate OF((Byte *compr, uLong comprLen)); 60 void test_inflate OF((Byte *compr, uLong comprLen, 62 void test_large_deflate OF((Byte *compr, uLong comprLen, 64 void test_large_inflate OF((Byte *compr, uLong comprLen, 66 void test_flush OF((Byte *compr, uLong *comprLen)); 67 void test_sync OF((Byte *compr, uLong comprLen, 69 void test_dict_deflate OF((Byte *compr, uLong comprLen)); 70 void test_dict_inflate OF((Byte *compr, uLong comprLen, 105 void test_compress OF((Byte *compr, uLong comprLen, 113 void test_compress(compr, comprLen, uncompr, uncomprLen) in test_compress() argument [all …]
|
H A D | example_original.c | 54 void test_deflate OF((Byte *compr, uLong comprLen)); 55 void test_inflate OF((Byte *compr, uLong comprLen, 57 void test_large_deflate OF((Byte *compr, uLong comprLen, 59 void test_large_inflate OF((Byte *compr, uLong comprLen, 61 void test_flush OF((Byte *compr, uLong *comprLen)); 62 void test_sync OF((Byte *compr, uLong comprLen, 64 void test_dict_deflate OF((Byte *compr, uLong comprLen)); 65 void test_dict_inflate OF((Byte *compr, uLong comprLen, 97 void test_compress OF((Byte *compr, uLong comprLen, 105 void test_compress(compr, comprLen, uncompr, uncomprLen) in test_compress() argument [all …]
|
/freebsd/sys/contrib/zlib/test/ |
H A D | example.c | 60 static void test_compress(Byte *compr, uLong comprLen, Byte *uncompr, in test_compress() argument 65 err = compress(compr, &comprLen, (const Bytef*)hello, len); in test_compress() 70 err = uncompress(uncompr, &uncomprLen, compr, comprLen); in test_compress() 166 static void test_deflate(Byte *compr, uLong comprLen) { in test_deflate() argument 179 c_stream.next_out = compr; in test_deflate() 201 static void test_inflate(Byte *compr, uLong comprLen, Byte *uncompr, in test_inflate() argument 212 d_stream.next_in = compr; in test_inflate() 240 static void test_large_deflate(Byte *compr, uLong comprLen, Byte *uncompr, in test_large_deflate() argument 252 c_stream.next_out = compr; in test_large_deflate() 269 c_stream.next_in = compr; in test_large_deflate() [all …]
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_receive/ |
H A D | zfs_receive_corrective.ksh | 122 typeset compr=$(get_prop compression $TESTPOOL/$TESTFS2) 123 [[ "$compr" == "off" ]] || \ 124 log_fail "Unexpected compression $compr in recved dataset" 133 typeset compr=$(get_prop compression $TESTPOOL/testfs3) 134 [[ "$compr" == "gzip" ]] || \ 135 log_fail "Unexpected compression $compr in recved dataset" 143 typeset compr=$(get_prop compression $TESTPOOL/testfs4) 144 [[ "$compr" == "gzip" ]] || \ 145 log_fail "Unexpected compression $compr in recved dataset"
|
H A D | zfs_receive_compressed_corrective.ksh | 123 typeset compr=$(get_prop compression $TESTPOOL/$TESTFS2) 124 [[ "$compr" == "off" ]] || \ 125 log_fail "Unexpected compression $compr in recved dataset" 134 typeset compr=$(get_prop compression $TESTPOOL/testfs3) 135 [[ "$compr" == "gzip" ]] || \ 136 log_fail "Unexpected compression $compr in recved dataset" 144 typeset compr=$(get_prop compression $TESTPOOL/testfs4) 145 [[ "$compr" == "gzip" ]] || \ 146 log_fail "Unexpected compression $compr in recved dataset"
|
H A D | zfs_receive_large_block_corrective.ksh | 124 typeset compr=$(get_prop compression $TESTPOOL/$TESTFS2) 125 [[ "$compr" == "off" ]] || \ 126 log_fail "Unexpected compression $compr in recved dataset" 135 typeset compr=$(get_prop compression $TESTPOOL/testfs3) 136 [[ "$compr" == "gzip" ]] || \ 137 log_fail "Unexpected compression $compr in recved dataset" 145 typeset compr=$(get_prop compression $TESTPOOL/testfs4) 146 [[ "$compr" == "gzip" ]] || \ 147 log_fail "Unexpected compression $compr in recved dataset"
|
/freebsd/contrib/file/src/ |
H A D | compress.c | 192 } compr[] = { variable 230 file_private size_t ncompr = __arraycount(compr); 302 if (nbytes < CAST(size_t, abs(compr[i].maglen))) in file_zmagic() 304 if (compr[i].maglen < 0) { in file_zmagic() 305 zm = (*compr[i].u.func)(buf); in file_zmagic() 307 zm = memcmp(buf, compr[i].u.magic, in file_zmagic() 308 CAST(size_t, compr[i].maglen)) == 0; in file_zmagic() 1082 return compr[method].argv[0]; in methodname() 1181 args = RCAST(char *const *, RCAST(intptr_t, compr[method].argv)); in uncompressbuf() 1187 DPRINTF("Executing %s\n", compr[method].argv[0]); in uncompressbuf() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | EXPInstructions.td | 17 exp_vm:$vm, exp_compr:$compr, i32imm:$en), 39 // Real instruction with optional asm operands "compr" and "vm". 42 #!if(ps.done, " done", "")#"$compr$vm">,
|
H A D | SIInstrFormats.td | 509 // Pre-GFX11 encoding has compr and vm bits. 511 bits<1> compr; 514 let Inst{10} = compr;
|
H A D | AMDGPUInstrInfo.td | 353 SDTCisInt<6>, // i1 compr
|
H A D | SIInstrInfo.td | 1101 def exp_compr : NamedBitOperand<"compr", "ExpCompr">;
|
/freebsd/sys/dev/random/ |
H A D | unit_test.c | 86 block_deflate(uint8_t *uncompr, uint8_t *compr, const size_t len) in block_deflate() argument 102 c_stream.next_out = compr; in block_deflate()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
H A D | AMDGPUInstPrinter.cpp | 1250 int ComprIdx = AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::compr); in printExpSrcN()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Disassembler/ |
H A D | AMDGPUDisassembler.cpp | 756 insertNamedMCOperand(MI, MCOperand::createImm(0), AMDGPU::OpName::compr); in convertEXPInst()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | IntrinsicsAMDGPU.td | 1723 // exp with compr bit set. Not supported on GFX11+.
|