Home
last modified time | relevance | path

Searched refs:unpack_size (Results 1 – 25 of 87) sorted by relevance

1234

/dports/archivers/unlzx/unlzx.c/
H A Dunlzx.c38 unsigned int unpack_size; variable
679 unpack_size = 0; in extract_normal()
699 unpack_size = node->length; in extract_normal()
701 while(unpack_size > 0) in extract_normal()
769 if(count > unpack_size) count = unpack_size; /* take only what we need */ in extract_normal()
782 unpack_size -= count; in extract_normal()
816 unpack_size = node->length; in extract_store()
817 if(unpack_size > pack_size) unpack_size = pack_size; in extract_store()
819 while(unpack_size > 0) in extract_store()
821 count = (unpack_size > 16384) ? 16384 : unpack_size; in extract_store()
[all …]
/dports/security/hashcat/hashcat-6.2.5/tools/test_modules/
H A Dm11600.pm30 …le_power, $seven_zip_salt_len, $seven_zip_salt_buf, $salt_len, $data_len, $unpack_size, $data_buf);
47 $unpack_size = $additional_param5;
59 $unpack_size = random_number (1, 32 + 1);
60 $data_buf = random_string ($unpack_size);
118 $decrypted_data = substr ($decrypted_data, 0, $unpack_size);
133 …_salt_buf, $salt_len, unpack ("H*", $salt_buf), $hash_buf, $data_len, $unpack_size, unpack ("H*", …
H A Dm23700.pm324 my $unpack_size = shift;
390 my $data_crc = substr ($data_decrypted, 0, $unpack_size);
420 $unpack_size = length ($data);
422 …8x*%i*%i*1*%s*30", unpack ("H*", $salt), $crc32_computed, $pack_size, $unpack_size, unpack ("H*", …
468 my $unpack_size = substr ($hash, $idx1 + 1, $idx2 - $idx1 - 1);
491 …my $new_hash = module_generate_hash ($word_packed, $salt, $crc32_sum, $pack_size, $unpack_size, $d…
/dports/graphics/krita/krita-4.4.8/libs/store/
H A DKoLZF.cpp340 unsigned int unpack_size = 0; in decompress() local
341 unpack_size |= ((quint8)input[0]); in decompress()
342 unpack_size |= ((quint8)input[1]) << 8; in decompress()
343 unpack_size |= ((quint8)input[2]) << 16; in decompress()
344 unpack_size |= ((quint8)input[3]) << 24; in decompress()
347 output.resize(unpack_size); in decompress()
356 unsigned int out_len = (unsigned int)unpack_size; in decompress()
/dports/editors/calligra/calligra-3.2.1/libs/store/
H A DKoLZF.cpp340 unsigned int unpack_size = 0; in decompress() local
341 unpack_size |= ((quint8)input[0]); in decompress()
342 unpack_size |= ((quint8)input[1]) << 8; in decompress()
343 unpack_size |= ((quint8)input[2]) << 16; in decompress()
344 unpack_size |= ((quint8)input[3]) << 24; in decompress()
347 output.resize(unpack_size); in decompress()
356 unsigned int out_len = (unsigned int)unpack_size; in decompress()
/dports/editors/calligraplan/calligraplan-3.3.0/src/libs/store/
H A DKoLZF.cpp341 unsigned int unpack_size = 0; in decompress() local
342 unpack_size |= ((quint8)input[0]); in decompress()
343 unpack_size |= ((quint8)input[1]) << 8; in decompress()
344 unpack_size |= ((quint8)input[2]) << 16; in decompress()
345 unpack_size |= ((quint8)input[3]) << 24; in decompress()
348 output.resize(unpack_size); in decompress()
357 unsigned int out_len = (unsigned int)unpack_size; in decompress()
/dports/archivers/undms/undms-1.3/
H A Dundms-1.3.c74 unsigned int unpack_size; variable
830 (unpack_size + 16 < BUFFERSIZE)) /* allow for overrun */ in main()
847 unpack_buffer, unpack_buffer + unpack_size)) in main()
854 unpack_buffer, unpack_buffer + unpack_size)) in main()
863 pack_buffer, pack_buffer + unpack_size)) in main()
872 pack_buffer, pack_buffer + unpack_size)) in main()
881 pack_buffer, pack_buffer + unpack_size)) in main()
894 pack_buffer, pack_buffer + unpack_size)) in main()
911 pack_buffer, pack_buffer + unpack_size)) in main()
927 actual = fwrite(buffer, 1, unpack_size, out_file); in main()
[all …]
/dports/audio/milkytracker/MilkyTracker-1.03.00/src/compression/
H A Dunlzx.cpp635 unlzx->unpack_size = 0; in extract_normal()
665 unlzx->unpack_size = node->length; in extract_normal()
666 while(unlzx->unpack_size > 0) in extract_normal()
726 if (count > unlzx->unpack_size) count = unlzx->unpack_size; in extract_normal()
739 unlzx->unpack_size -= count; in extract_normal()
790 unlzx->unpack_size = node->length; in extract_store()
791 if (unlzx->unpack_size > unlzx->pack_size) unlzx->unpack_size = unlzx->pack_size; in extract_store()
792 while (unlzx->unpack_size > 0) in extract_store()
794 count = (unlzx->unpack_size > 16384) ? 16384 : unlzx->unpack_size; in extract_store()
824 unlzx->unpack_size -= count; in extract_store()
[all …]
/dports/security/hashcat/hashcat-6.2.5/src/modules/
H A Dmodule_23700.c51 u32 unpack_size; member
236 const u32 unpack_size = hc_strtoul ((const char *) unpack_size_pos, NULL, 10); in module_hash_decode() local
238 if (unpack_size < 1) return (PARSER_SALT_VALUE); in module_hash_decode()
239 if (unpack_size > 655360) return (PARSER_SALT_VALUE); in module_hash_decode()
241 if (unpack_size > pack_size) return (PARSER_SALT_VALUE); in module_hash_decode()
243 rar3->unpack_size = unpack_size; in module_hash_decode()
313 rar3->unpack_size, in module_hash_encode()
H A Dmodule_23800.c85 u32 unpack_size; member
302 const unsigned int unpack_size = (const unsigned int) rar3->unpack_size; in module_hook23() local
331 …ice_id], rar3_hook_extra->ppm[device_param->device_id], unpack_size, data, pack_size, unpack_size,… in module_hook23()
521 const u32 unpack_size = hc_strtoul ((const char *) unpack_size_pos, NULL, 10); in module_hash_decode() local
523 if (unpack_size < 1) return (PARSER_SALT_VALUE); in module_hash_decode()
524 if (unpack_size > 655360) return (PARSER_SALT_VALUE); in module_hash_decode()
526 rar3_hook_salt->unpack_size = unpack_size; in module_hash_decode()
589 rar3_hook_salt->unpack_size, in module_hash_encode()
H A Dmodule_11600.c86 u32 unpack_size; member
193 u32 unpack_size = seven_zip->unpack_size; in module_hook23() local
281 crc = cpu_crc32_buffer ((u8 *) out_full, unpack_size); in module_hook23()
562 const int unpack_size = hc_strtoul ((const char *) unpack_size_pos, NULL, 10); in module_hash_decode() local
597 if (unpack_size > data_len) return (PARSER_SALT_VALUE); in module_hash_decode()
645 seven_zip->unpack_size = unpack_size; in module_hash_decode()
762 seven_zip->unpack_size, in module_hash_encode()
/dports/net-p2p/microdc2/microdc2-0.15.6/src/
H A Dhuffman.c247 uint32_t unpack_size; in huffman_decode() local
264 unpack_size = *(uint32_t *) (data+5); in huffman_decode()
307 output = xmalloc(unpack_size+1); in huffman_decode()
310 for (c = 0; c < unpack_size; c++) { in huffman_decode()
340 *out_size = unpack_size; in huffman_decode()
/dports/misc/vxl/vxl-3.3.2/core/vgui/
H A Dvgui_utils.cxx592 GLint unpack_size; in draw_glBitmap() local
593 glGetIntegerv(GL_UNPACK_ALIGNMENT, &unpack_size); in draw_glBitmap()
613 unsigned char mask0 = (0xff << (8 - unpack_size)) & 0xff; in draw_glBitmap()
623 mask >>= unpack_size; in draw_glBitmap()
652 int stride = width2 * unpack_size / 8; in draw_glBitmap()
664 mask >>= unpack_size; in draw_glBitmap()
/dports/audio/libxmp/libxmp-4.5.0/src/depackers/
H A Dunlzx.c131 uint32 unpack_size; member
821 decr->unpack_size = 0; in extract_normal()
842 decr->unpack_size = node->length; in extract_normal()
844 while (decr->unpack_size > 0) { in extract_normal()
911 if (count > decr->unpack_size) in extract_normal()
912 count = decr->unpack_size; /* take only what we need */ in extract_normal()
926 decr->unpack_size -= count; in extract_normal()
1017 decr->unpack_size = readmem32l(decr->archive_header + 2); in extract_archive()
1032 node->length = decr->unpack_size; in extract_archive()
/dports/games/libretro-uae/libretro-uae-8333daa/sources/src/archivers/lzx/
H A Dunlzx.c710 unsigned int unpack_size; in archive_directory_lzx() local
760unpack_size = (archive_header[5] << 24) + (archive_header[4] << 16) + (archive_header[3] << 8) + a… in archive_directory_lzx()
791 zai.size = unpack_size; in archive_directory_lzx()
798 total_unpack += unpack_size; in archive_directory_lzx()
800 merge_size += unpack_size; in archive_directory_lzx()
/dports/net/mpich/mpich-3.4.3/src/mpid/ch4/netmod/ofi/
H A Dofi_rma.c10 static MPIDI_OFI_pack_chunk *create_chunk(void *pack_buffer, MPI_Aint unpack_size, in create_chunk() argument
18 chunk->unpack_size = unpack_size; in create_chunk()
33 if (chunk->unpack_size > 0) { in MPIDI_OFI_complete_chunks()
36 chunk->unpack_size, winreq->noncontig.get.origin.addr, in MPIDI_OFI_complete_chunks()
40 MPIR_Assert(chunk->unpack_size == actual_unpack_bytes); in MPIDI_OFI_complete_chunks()
/dports/security/clamav/clamav-0.104.2/libclamav/
H A Degg.h42 uint64_t unpack_size; member
/dports/security/clamav-lts/clamav-0.103.5/libclamav/
H A Degg.h42 uint64_t unpack_size; member
/dports/biology/bio-mocha/bcftools-1.14/
H A Dvcfsort.c158 …t delta = sizeof(bcf1_t) + rec->shared.l + rec->indiv.l + rec->unpack_size[0] + rec->unpack_size[1] in buf_push()
190 while ( delta < rec->unpack_size[1] ) if ( !rec->d.als[delta++] ) break; in buf_push()
212 while ( i < rec->unpack_size[0] ) if ( !rec->d.id[i++] ) break; in buf_push()
/dports/biology/bcftools/bcftools-1.14/
H A Dvcfsort.c158 …t delta = sizeof(bcf1_t) + rec->shared.l + rec->indiv.l + rec->unpack_size[0] + rec->unpack_size[1] in buf_push()
190 while ( delta < rec->unpack_size[1] ) if ( !rec->d.als[delta++] ) break; in buf_push()
212 while ( i < rec->unpack_size[0] ) if ( !rec->d.id[i++] ) break; in buf_push()
/dports/biology/py-pysam/pysam-0.18.0/bcftools/
H A Dvcfsort.c158 …t delta = sizeof(bcf1_t) + rec->shared.l + rec->indiv.l + rec->unpack_size[0] + rec->unpack_size[1] in buf_push()
190 while ( delta < rec->unpack_size[1] ) if ( !rec->d.als[delta++] ) break; in buf_push()
212 while ( i < rec->unpack_size[0] ) if ( !rec->d.id[i++] ) break; in buf_push()
H A Dvcfsort.c.pysam.c160 …t delta = sizeof(bcf1_t) + rec->shared.l + rec->indiv.l + rec->unpack_size[0] + rec->unpack_size[1] in buf_push()
192 while ( delta < rec->unpack_size[1] ) if ( !rec->d.als[delta++] ) break; in buf_push()
214 while ( i < rec->unpack_size[0] ) if ( !rec->d.id[i++] ) break; in buf_push()
/dports/security/clamav/clamav-0.104.2/libclamunrar_iface/
H A Dunrar_iface.h59 uint64_t unpack_size; member
/dports/security/clamav-lts/clamav-0.103.5/libclamunrar_iface/
H A Dunrar_iface.h59 uint64_t unpack_size; member
/dports/security/john/john-1.9.0-jumbo-1/run/
H A D7z2john.pl938 my $unpack_size = $unpack_info->{'unpack_sizes'}[$current_index];
973 …$uncompressed_size_encoded = lzma_alone_header_field_encode ($unpack_size, 8); # 8 bytes (the "Unc…
1154 my $unpack_size = $unpack_info->{'unpack_sizes'}[$current_index];
1185 my $length_difference = $data_len - $unpack_size;
1201 $unpack_size %= 16;
1410 $unpack_size = $length_first_file;
1452 $unpack_size = $aes_len;
1489 $unpack_size,

1234