Home
last modified time | relevance | path

Searched refs:cbytes (Results 1 – 25 of 336) sorted by relevance

12345678910>>...14

/dports/archivers/c-blosc/c-blosc-1.21.0/tests/
H A Dtest_maxout.c18 int nbytes, cbytes; variable
31 mu_assert("ERROR: cbytes is not 0", cbytes == 0); in test_input_too_large()
43 mu_assert("ERROR: cbytes is not 0", cbytes == 0); in test_maxout_less()
53 cbytes = blosc_compress(0, doshuffle, typesize, size, src, dest, in test_maxout_less_memcpy()
55 mu_assert("ERROR: cbytes is not 0", cbytes == 0); in test_maxout_less_memcpy()
81 cbytes = blosc_compress(0, doshuffle, typesize, size, src, dest, in test_maxout_equal_memcpy()
111 cbytes = blosc_compress(0, doshuffle, typesize, size, src, dest, in test_maxout_great_memcpy()
125 cbytes = blosc_compress(0, doshuffle, typesize, size, src, dest, in test_max_overhead()
127 mu_assert("ERROR: cbytes is not correct", cbytes == 0); in test_max_overhead()
133 mu_assert("ERROR: cbytes is not correct", cbytes == 0); in test_max_overhead()
[all …]
H A Dtest_compressor.c18 int nbytes, cbytes; variable
40 mu_assert("ERROR: cbytes is not correct", cbytes < size); in test_compressor()
66 mu_assert("ERROR: cbytes is not correct", cbytes < size); in test_compress_decompress()
93 mu_assert("ERROR: cbytes is not correct", cbytes < size); in test_clevel()
113 mu_assert("ERROR: cbytes is not correct", cbytes < size); in test_noshuffle()
120 cbytes2 > cbytes); in test_noshuffle()
135 mu_assert("ERROR: cbytes is not 0", cbytes < size); in test_shuffle()
142 cbytes2 == cbytes); in test_shuffle()
157 mu_assert("ERROR: cbytes is not 0", cbytes < size); in test_bitshuffle()
165 cbytes2 < cbytes * 20); in test_bitshuffle()
[all …]
/dports/archivers/c-blosc2/c-blosc2-2.0.4/tests/
H A Dtest_maxout.c19 int nbytes, cbytes; variable
32 mu_assert("ERROR: cbytes is not == 0", cbytes == 0); in test_input_too_large()
43 mu_assert("ERROR: cbytes is not 0", cbytes == 0); in test_maxout_less()
53 cbytes = blosc_compress(0, doshuffle, typesize, size, src, dest, in test_maxout_less_memcpy()
55 mu_assert("ERROR: cbytes is not 0", cbytes == 0); in test_maxout_less_memcpy()
81 cbytes = blosc_compress(0, doshuffle, typesize, size, src, dest, in test_maxout_equal_memcpy()
111 cbytes = blosc_compress(0, doshuffle, typesize, size, src, dest, in test_maxout_great_memcpy()
125 cbytes = blosc_compress(0, doshuffle, typesize, size, src, dest, in test_max_overhead()
127 mu_assert("ERROR: cbytes is not correct", cbytes == 0); in test_max_overhead()
133 mu_assert("ERROR: cbytes is not correct", cbytes == 0); in test_max_overhead()
[all …]
H A Dtest_compressor.c19 int nbytes, cbytes; variable
39 cbytes = blosc_compress(clevel, doshuffle, typesize, size, src, in test_compressor()
41 mu_assert("ERROR: cbytes is not correct", cbytes < (int)size); in test_compressor()
67 mu_assert("ERROR: cbytes is not correct", cbytes < (int)size); in test_compress_decompress()
121 cbytes2 > cbytes); in test_noshuffle()
136 mu_assert("ERROR: cbytes is not 0", cbytes < (int)size); in test_shuffle()
143 cbytes2 == cbytes); in test_shuffle()
161 mu_assert("ERROR: cbytes is not 0", cbytes < (int)size); in test_bitshuffle()
168 cbytes2 < cbytes); in test_bitshuffle()
185 mu_assert("ERROR: cbytes is not 0", cbytes < (int)size); in test_delta()
[all …]
H A Dtest_dict_schunk.c24 int64_t nbytes, cbytes; in test_dict() local
69 cbytes = schunk->cbytes; in test_dict()
70 float cratio = nbytes / (float)cbytes; in test_dict()
85 3 * cbytes < nbytes); in test_dict()
89 10 * cbytes < nbytes); in test_dict()
93 70 * cbytes < nbytes); in test_dict()
97 190 * cbytes < nbytes); in test_dict()
101 170 * cbytes < nbytes); in test_dict()
109 8 * cbytes < nbytes); in test_dict()
113 15 * cbytes < nbytes); in test_dict()
[all …]
H A Dtest_schunk.c25 int64_t nbytes, cbytes; in test_schunk() local
62 cbytes = schunk->cbytes; in test_schunk()
64 mu_assert("ERROR: bad compression ratio in frame", nbytes > 10 * cbytes); in test_schunk()
72 cbytes = 0; in test_schunk()
78 cbytes += cbytes_; in test_schunk()
84 mu_assert("ERROR: cbytes is not correct", cbytes == schunk->cbytes); in test_schunk()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.Common/src/System/Data/Common/
H A DDataRecordInternal.cs106 int cbytes = 0; in GetBytes()
111 cbytes = data.Length; in GetBytes()
125 return cbytes; in GetBytes()
129 if (ndataIndex < cbytes) in GetBytes()
132 if ((ndataIndex + length) > cbytes) in GetBytes()
133 cbytes = cbytes - ndataIndex; in GetBytes()
135 cbytes = length; in GetBytes()
143 cbytes = data.Length; in GetBytes()
157 if (dataIndex < 0 || dataIndex >= cbytes) in GetBytes()
163 if (cbytes + bufferIndex > buffer.Length) in GetBytes()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data/System/Data/Common/
H A DDataRecordInternal.cs109 int cbytes = 0; in GetBytes()
114 cbytes = data.Length; in GetBytes()
127 return cbytes; in GetBytes()
130 if (ndataIndex < cbytes) { in GetBytes()
132 if ((ndataIndex + length) > cbytes) in GetBytes()
133 cbytes = cbytes - ndataIndex; in GetBytes()
135 cbytes = length; in GetBytes()
144 cbytes = data.Length; in GetBytes()
154 if (dataIndex < 0 || dataIndex >= cbytes) in GetBytes()
158 if (cbytes + bufferIndex > buffer.Length) in GetBytes()
[all …]
/dports/archivers/c-blosc2/c-blosc2-2.0.4/examples/
H A Dframe_backed_schunk.c42 int64_t nbytes, cbytes; in main() local
73 cbytes = schunk1->cbytes; in main()
77 nbytes / MB, cbytes / MB, (1. * nbytes) / cbytes); in main()
95 cbytes = schunk2->cbytes; in main()
99 nbytes / MB, cbytes / MB, (1. * nbytes) / cbytes); in main()
/dports/devel/py-tables/tables-3.6.1/c-blosc/blosc/
H A Dblosc.c416 int cbytes; in lz4_wrap_compress() local
419 return cbytes; in lz4_wrap_compress()
425 int cbytes; in lz4hc_wrap_compress() local
432 return cbytes; in lz4hc_wrap_compress()
444 size_t cbytes; in lz4_wrap_decompress_unsafe() local
716 else if (cbytes == 0 || cbytes == neblock) { in blosc_c()
727 dest += cbytes; in blosc_c()
780 if (cbytes < 0 || cbytes > context->compressedsize - src_offset) { in blosc_d()
820 int32_t cbytes; in serial_blosc() local
870 if (cbytes < 0) { in serial_blosc()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity/System/Data/Common/
H A DDataRecord.cs127 int cbytes = 0; in GetBytes()
132 cbytes = data.Length; in GetBytes()
146 return cbytes; in GetBytes()
150 if (ndataIndex < cbytes) in GetBytes()
153 if ((ndataIndex + length) > cbytes) in GetBytes()
154 cbytes = cbytes - ndataIndex; in GetBytes()
156 cbytes = length; in GetBytes()
166 cbytes = data.Length; in GetBytes()
176 if (fieldOffset < 0 || fieldOffset >= cbytes) in GetBytes()
180 if (cbytes + bufferOffset > buffer.Length) in GetBytes()
[all …]
/dports/archivers/c-blosc/c-blosc-1.21.0/blosc/
H A Dblosc.c416 int cbytes; in lz4_wrap_compress() local
419 return cbytes; in lz4_wrap_compress()
425 int cbytes; in lz4hc_wrap_compress() local
432 return cbytes; in lz4hc_wrap_compress()
705 else if (cbytes == 0 || cbytes == neblock) { in blosc_c()
716 dest += cbytes; in blosc_c()
717 ntbytes += cbytes; in blosc_c()
769 if (cbytes < 0 || cbytes > context->compressedsize - src_offset) { in blosc_d()
809 int32_t cbytes; in serial_blosc() local
859 if (cbytes < 0) { in serial_blosc()
[all …]
/dports/archivers/c-blosc2/c-blosc2-2.0.4/bench/
H A Dsframe_bench.c103 sframe_update_time, schunk_sframe->cbytes); in test_update()
105 cframe_update_time, schunk_cframe->cbytes); in test_update()
169 sframe_insert_time, schunk_sframe->cbytes); in test_insert()
171 cframe_insert_time, schunk_cframe->cbytes); in test_insert()
212 sframe_reorder_time, schunk_sframe->cbytes); in test_reorder()
214 cframe_reorder_time, schunk_cframe->cbytes); in test_reorder()
224 int64_t nbytes, cbytes; in test_create_sframe_frame() local
283 cbytes = schunk_sframe->cbytes; in test_create_sframe_frame()
285 (long)nbytes, (long)cbytes, (1. * nbytes) / cbytes); in test_create_sframe_frame()
287 cbytes = schunk_cframe->cbytes; in test_create_sframe_frame()
[all …]
/dports/archivers/c-blosc/c-blosc-1.21.0/tests/fuzz/
H A Dfuzz_decompress.c11 size_t nbytes, cbytes, blocksize; in LLVMFuzzerTestOneInput() local
18 blosc_cbuffer_sizes(data, &nbytes, &cbytes, &blocksize); in LLVMFuzzerTestOneInput()
19 if (cbytes != size) { in LLVMFuzzerTestOneInput()
31 output = malloc(cbytes); in LLVMFuzzerTestOneInput()
33 blosc_decompress(data, output, cbytes); in LLVMFuzzerTestOneInput()
/dports/archivers/c-blosc2/c-blosc2-2.0.4/tests/fuzz/
H A Dfuzz_decompress_chunk.c11 size_t nbytes = 0, cbytes = 0, blocksize = 0; in LLVMFuzzerTestOneInput() local
20 blosc_cbuffer_sizes(data, &nbytes, &cbytes, &blocksize); in LLVMFuzzerTestOneInput()
22 if (cbytes != size || nbytes == 0) { in LLVMFuzzerTestOneInput()
32 output = malloc(cbytes); in LLVMFuzzerTestOneInput()
34 blosc2_decompress(data, size, output, cbytes); in LLVMFuzzerTestOneInput()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/com/sun/jdi/
H A DClassLoaderTarg.java63 byte[] cbytes = new byte[(int)fsize]; in loadBytes()
64 in.read(cbytes); in loadBytes()
66 return cbytes; in loadBytes()
78 byte[] cbytes = loadClassBytes(cname); in findClass()
79 klass = defineClass(cname, cbytes, 0, cbytes.length); in findClass()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/com/sun/jdi/
H A DClassLoaderTarg.java63 byte[] cbytes = new byte[(int)fsize]; in loadBytes()
64 in.read(cbytes); in loadBytes()
66 return cbytes; in loadBytes()
78 byte[] cbytes = loadClassBytes(cname); in findClass()
79 klass = defineClass(cname, cbytes, 0, cbytes.length); in findClass()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/com/sun/jdi/
H A DClassLoaderTarg.java63 byte[] cbytes = new byte[(int)fsize]; in loadBytes()
64 in.read(cbytes); in loadBytes()
66 return cbytes; in loadBytes()
78 byte[] cbytes = loadClassBytes(cname); in findClass()
79 klass = defineClass(cname, cbytes, 0, cbytes.length); in findClass()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/test/com/sun/jdi/
H A DClassLoaderTarg.java63 byte[] cbytes = new byte[(int)fsize]; in loadBytes()
64 in.read(cbytes); in loadBytes()
66 return cbytes; in loadBytes()
78 byte[] cbytes = loadClassBytes(cname); in findClass()
79 klass = defineClass(cname, cbytes, 0, cbytes.length); in findClass()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/com/sun/jdi/
H A DClassLoaderTarg.java63 byte[] cbytes = new byte[(int)fsize]; in loadBytes()
64 in.read(cbytes); in loadBytes()
66 return cbytes; in loadBytes()
78 byte[] cbytes = loadClassBytes(cname); in findClass()
79 klass = defineClass(cname, cbytes, 0, cbytes.length); in findClass()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/com/sun/jdi/
H A DClassLoaderTarg.java63 byte[] cbytes = new byte[(int)fsize]; in loadBytes()
64 in.read(cbytes); in loadBytes()
66 return cbytes; in loadBytes()
78 byte[] cbytes = loadClassBytes(cname); in findClass()
79 klass = defineClass(cname, cbytes, 0, cbytes.length); in findClass()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/com/sun/jdi/
H A DClassLoaderTarg.java63 byte[] cbytes = new byte[(int)fsize]; in loadBytes()
64 in.read(cbytes); in loadBytes()
66 return cbytes; in loadBytes()
78 byte[] cbytes = loadClassBytes(cname); in findClass()
79 klass = defineClass(cname, cbytes, 0, cbytes.length); in findClass()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/com/sun/jdi/
H A DClassLoaderTarg.java63 byte[] cbytes = new byte[(int)fsize]; in loadBytes()
64 in.read(cbytes); in loadBytes()
66 return cbytes; in loadBytes()
78 byte[] cbytes = loadClassBytes(cname); in findClass()
79 klass = defineClass(cname, cbytes, 0, cbytes.length); in findClass()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/jdk/com/sun/jdi/
H A DClassLoaderTarg.java63 byte[] cbytes = new byte[(int)fsize]; in loadBytes()
64 in.read(cbytes); in loadBytes()
66 return cbytes; in loadBytes()
78 byte[] cbytes = loadClassBytes(cname); in findClass()
79 klass = defineClass(cname, cbytes, 0, cbytes.length); in findClass()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/test/com/sun/jdi/
H A DClassLoaderTarg.java63 byte[] cbytes = new byte[(int)fsize]; in loadBytes()
64 in.read(cbytes); in loadBytes()
66 return cbytes; in loadBytes()
78 byte[] cbytes = loadClassBytes(cname); in findClass()
79 klass = defineClass(cname, cbytes, 0, cbytes.length); in findClass()

12345678910>>...14