Home
last modified time | relevance | path

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

/dports/archivers/snzip/snzip-1.0.5/
H A Dframing-format.c54 size_t uncompressed_data_len; in framing_format_compress() local
69 …while ((uncompressed_data_len = fread(uncompressed_data, 1, max_uncompressed_data_len, infp)) > 0)… in framing_format_compress()
70 unsigned int crc32c = masked_crc32c(uncompressed_data, uncompressed_data_len); in framing_format_compress()
77 … snappy_compress(uncompressed_data, uncompressed_data_len, compressed_data, &compressed_data_len); in framing_format_compress()
79 if (compressed_data_len >= (uncompressed_data_len - (uncompressed_data_len / 8))) { in framing_format_compress()
82 write_len = uncompressed_data_len; in framing_format_compress()
156 size_t uncompressed_data_len; in framing_format_uncompress() local
197 uncompressed_data_len = max_uncompressed_data_len; in framing_format_uncompress()
198 if (snappy_uncompress(data + 4, data_len - 4, uncompressed_data, &uncompressed_data_len)) { in framing_format_uncompress()
202 if (check_crc32c(uncompressed_data, uncompressed_data_len, data) != 0) { in framing_format_uncompress()
[all …]
H A Dframing2-format.c54 size_t uncompressed_data_len; in framing_format_compress() local
69 …while ((uncompressed_data_len = fread(uncompressed_data, 1, max_uncompressed_data_len, infp)) > 0)… in framing_format_compress()
70 unsigned int crc32c = masked_crc32c(uncompressed_data, uncompressed_data_len); in framing_format_compress()
77 … snappy_compress(uncompressed_data, uncompressed_data_len, compressed_data, &compressed_data_len); in framing_format_compress()
79 if (compressed_data_len >= (uncompressed_data_len - (uncompressed_data_len / 8))) { in framing_format_compress()
82 write_len = uncompressed_data_len; in framing_format_compress()
157 size_t uncompressed_data_len; in framing_format_uncompress() local
199 uncompressed_data_len = max_uncompressed_data_len; in framing_format_uncompress()
200 if (snappy_uncompress(data + 4, data_len - 4, uncompressed_data, &uncompressed_data_len)) { in framing_format_uncompress()
204 if (check_crc32c(uncompressed_data, uncompressed_data_len, data) != 0) { in framing_format_uncompress()
[all …]
H A Diwa-format.c49 size_t uncompressed_data_len; in iwa_compress() local
61 …while ((uncompressed_data_len = fread(uncompressed_data, 1, max_uncompressed_data_len, infp)) > 0)… in iwa_compress()
64 … snappy_compress(uncompressed_data, uncompressed_data_len, compressed_data, &compressed_data_len); in iwa_compress()
112 size_t uncompressed_data_len; in iwa_uncompress() local
145 uncompressed_data_len = max_uncompressed_data_len; in iwa_uncompress()
146 if (snappy_uncompress(data, data_len, uncompressed_data, &uncompressed_data_len)) { in iwa_uncompress()
150 if (fwrite(uncompressed_data, uncompressed_data_len, 1, outfp) != 1) { in iwa_uncompress()
H A Dhadoop-snappy-format.c73 size_t uncompressed_data_len; in hadoop_snappy_format_compress() local
79 while ((uncompressed_data_len = fread(wb.uc, 1, wb.uclen, infp)) > 0) { in hadoop_snappy_format_compress()
82 if (write_num(outfp, uncompressed_data_len) == 0) { in hadoop_snappy_format_compress()
88 snappy_compress(wb.uc, uncompressed_data_len, wb.c, &compressed_data_len); in hadoop_snappy_format_compress()
/dports/net/gsk/gsk-1.0.63/src/
H A Dgsktable-flat.c111 guint uncompressed_data_len; member
271 guint n_compressed_entries, uncompressed_data_len; in cache_entry_deserialize() local
296 if (uncompressed_data_len < 32*1024) in cache_entry_deserialize()
297 uncompressed_data = g_alloca (uncompressed_data_len); in cache_entry_deserialize()
299 uncompressed_data = to_free2 = g_malloc (uncompressed_data_len); in cache_entry_deserialize()
306 uncompress_buf.avail_out = uncompressed_data_len; in cache_entry_deserialize()
353 if (uc_at - uncompressed_data != (gssize) uncompressed_data_len) in cache_entry_deserialize()
832 builder->uncompressed_data_len = 0; in reinit_compressor()
846 && builder->uncompressed_data_len == 0); in flat_file_builder_new()
1139 builder->uncompressed_data_len += len; in do_compress()
[all …]
/dports/www/mod_php81/php-8.1.1/ext/mysqlnd/
H A Dmysqlnd_protocol_frame_codec.c264 …LND_METHOD(mysqlnd_pfc, decode)(zend_uchar * uncompressed_data, const size_t uncompressed_data_len, in MYSQLND_METHOD()
269 uLongf tmp_complen = uncompressed_data_len; in MYSQLND_METHOD()
289 const zend_uchar * const uncompressed_data, const size_t uncompressed_data_len) in MYSQLND_METHOD()
295 error = compress(compress_buffer, &tmp_complen, uncompressed_data, uncompressed_data_len); in MYSQLND_METHOD()
H A Dmysqlnd_structs.h1092 …mysqlnd_pfc__decode)(zend_uchar * uncompressed_data, const size_t uncompressed_data_len, const zen…
1093 …mpress_buffer_len, const zend_uchar * const uncompressed_data, const size_t uncompressed_data_len);
/dports/lang/php81/php-8.1.1/ext/mysqlnd/
H A Dmysqlnd_protocol_frame_codec.c264 …LND_METHOD(mysqlnd_pfc, decode)(zend_uchar * uncompressed_data, const size_t uncompressed_data_len, in MYSQLND_METHOD()
269 uLongf tmp_complen = uncompressed_data_len; in MYSQLND_METHOD()
289 const zend_uchar * const uncompressed_data, const size_t uncompressed_data_len) in MYSQLND_METHOD()
295 error = compress(compress_buffer, &tmp_complen, uncompressed_data, uncompressed_data_len); in MYSQLND_METHOD()
H A Dmysqlnd_structs.h1092 …mysqlnd_pfc__decode)(zend_uchar * uncompressed_data, const size_t uncompressed_data_len, const zen…
1093 …mpress_buffer_len, const zend_uchar * const uncompressed_data, const size_t uncompressed_data_len);
/dports/lang/php73/php-7.3.33/ext/mysqlnd/
H A Dmysqlnd_protocol_frame_codec.c265 …LND_METHOD(mysqlnd_pfc, decode)(zend_uchar * uncompressed_data, const size_t uncompressed_data_len, in MYSQLND_METHOD()
270 uLongf tmp_complen = uncompressed_data_len; in MYSQLND_METHOD()
290 const zend_uchar * const uncompressed_data, const size_t uncompressed_data_len) in MYSQLND_METHOD()
296 error = compress(compress_buffer, &tmp_complen, uncompressed_data, uncompressed_data_len); in MYSQLND_METHOD()
H A Dmysqlnd_net.c600 …LND_METHOD(mysqlnd_net, decode)(zend_uchar * uncompressed_data, const size_t uncompressed_data_len, in MYSQLND_METHOD()
605 uLongf tmp_complen = uncompressed_data_len; in MYSQLND_METHOD()
625 const zend_uchar * const uncompressed_data, const size_t uncompressed_data_len) in MYSQLND_METHOD()
631 error = compress(compress_buffer, &tmp_complen, uncompressed_data, uncompressed_data_len); in MYSQLND_METHOD()
H A Dmysqlnd_structs.h1069 …mysqlnd_pfc__decode)(zend_uchar * uncompressed_data, const size_t uncompressed_data_len, const zen…
1070 …mpress_buffer_len, const zend_uchar * const uncompressed_data, const size_t uncompressed_data_len);
/dports/lang/php74/php-7.4.27/ext/mysqlnd/
H A Dmysqlnd_protocol_frame_codec.c266 …LND_METHOD(mysqlnd_pfc, decode)(zend_uchar * uncompressed_data, const size_t uncompressed_data_len, in MYSQLND_METHOD()
271 uLongf tmp_complen = uncompressed_data_len; in MYSQLND_METHOD()
291 const zend_uchar * const uncompressed_data, const size_t uncompressed_data_len) in MYSQLND_METHOD()
297 error = compress(compress_buffer, &tmp_complen, uncompressed_data, uncompressed_data_len); in MYSQLND_METHOD()
H A Dmysqlnd_structs.h1122 …mysqlnd_pfc__decode)(zend_uchar * uncompressed_data, const size_t uncompressed_data_len, const zen…
1123 …mpress_buffer_len, const zend_uchar * const uncompressed_data, const size_t uncompressed_data_len);
/dports/lang/php80/php-8.0.15/ext/mysqlnd/
H A Dmysqlnd_protocol_frame_codec.c264 …LND_METHOD(mysqlnd_pfc, decode)(zend_uchar * uncompressed_data, const size_t uncompressed_data_len, in MYSQLND_METHOD()
269 uLongf tmp_complen = uncompressed_data_len; in MYSQLND_METHOD()
289 const zend_uchar * const uncompressed_data, const size_t uncompressed_data_len) in MYSQLND_METHOD()
295 error = compress(compress_buffer, &tmp_complen, uncompressed_data, uncompressed_data_len); in MYSQLND_METHOD()
H A Dmysqlnd_structs.h1120 …mysqlnd_pfc__decode)(zend_uchar * uncompressed_data, const size_t uncompressed_data_len, const zen…
1121 …mpress_buffer_len, const zend_uchar * const uncompressed_data, const size_t uncompressed_data_len);
/dports/www/mod_php73/php-7.3.33/ext/mysqlnd/
H A Dmysqlnd_protocol_frame_codec.c265 …LND_METHOD(mysqlnd_pfc, decode)(zend_uchar * uncompressed_data, const size_t uncompressed_data_len, in MYSQLND_METHOD()
270 uLongf tmp_complen = uncompressed_data_len; in MYSQLND_METHOD()
290 const zend_uchar * const uncompressed_data, const size_t uncompressed_data_len) in MYSQLND_METHOD()
296 error = compress(compress_buffer, &tmp_complen, uncompressed_data, uncompressed_data_len); in MYSQLND_METHOD()
H A Dmysqlnd_net.c600 …LND_METHOD(mysqlnd_net, decode)(zend_uchar * uncompressed_data, const size_t uncompressed_data_len, in MYSQLND_METHOD()
605 uLongf tmp_complen = uncompressed_data_len; in MYSQLND_METHOD()
625 const zend_uchar * const uncompressed_data, const size_t uncompressed_data_len) in MYSQLND_METHOD()
631 error = compress(compress_buffer, &tmp_complen, uncompressed_data, uncompressed_data_len); in MYSQLND_METHOD()
H A Dmysqlnd_structs.h1069 …mysqlnd_pfc__decode)(zend_uchar * uncompressed_data, const size_t uncompressed_data_len, const zen…
1070 …mpress_buffer_len, const zend_uchar * const uncompressed_data, const size_t uncompressed_data_len);
/dports/www/mod_php74/php-7.4.27/ext/mysqlnd/
H A Dmysqlnd_protocol_frame_codec.c266 …LND_METHOD(mysqlnd_pfc, decode)(zend_uchar * uncompressed_data, const size_t uncompressed_data_len, in MYSQLND_METHOD()
271 uLongf tmp_complen = uncompressed_data_len; in MYSQLND_METHOD()
291 const zend_uchar * const uncompressed_data, const size_t uncompressed_data_len) in MYSQLND_METHOD()
297 error = compress(compress_buffer, &tmp_complen, uncompressed_data, uncompressed_data_len); in MYSQLND_METHOD()
H A Dmysqlnd_structs.h1122 …mysqlnd_pfc__decode)(zend_uchar * uncompressed_data, const size_t uncompressed_data_len, const zen…
1123 …mpress_buffer_len, const zend_uchar * const uncompressed_data, const size_t uncompressed_data_len);
/dports/www/mod_php80/php-8.0.15/ext/mysqlnd/
H A Dmysqlnd_protocol_frame_codec.c264 …LND_METHOD(mysqlnd_pfc, decode)(zend_uchar * uncompressed_data, const size_t uncompressed_data_len, in MYSQLND_METHOD()
269 uLongf tmp_complen = uncompressed_data_len; in MYSQLND_METHOD()
289 const zend_uchar * const uncompressed_data, const size_t uncompressed_data_len) in MYSQLND_METHOD()
295 error = compress(compress_buffer, &tmp_complen, uncompressed_data, uncompressed_data_len); in MYSQLND_METHOD()
H A Dmysqlnd_structs.h1120 …mysqlnd_pfc__decode)(zend_uchar * uncompressed_data, const size_t uncompressed_data_len, const zen…
1121 …mpress_buffer_len, const zend_uchar * const uncompressed_data, const size_t uncompressed_data_len);