Searched +full:p7zip +full:- +full:16 (Results 1 – 9 of 9) sorted by relevance
| /third_party/lzma/CPP/Common/ |
| D | MyWindows.h | 33 // WINAPI is __stdcall in Windows-MSVC in windef.h 50 #define HIWORD(l) ((WORD)((DWORD_PTR)(l) >> 16)) 52 // MS uses long for BOOL, but long is 32-bit in MS. So we use int. 148 p7zip and 7-Zip before v23 used virtual destructor in IUnknown, 154 if we want to be compatible with old plugin interface of p7zip and 7-Zip before v23. 157 In new 7-Zip v23 we try to be more compatible with original IUnknown from _WIN32. 164 #pragma GCC diagnostic ignored "-Winconsistent-missing-destructor-override" 188 #define VARIANT_TRUE ((VARIANT_BOOL)-1) 209 VT_I1 = 16,
|
| /third_party/lzma/DOC/ |
| D | lzma-sdk.txt | 2 -------------- 17 7z is a main file format for 7-Zip compression program (www.7-zip.org). 19 7z also supports AES-256 based encryption. 28 ------- 34 2) SHA-256: Wei Dai (Crypto++ library) 38 any purpose, commercial or non-commercial, and by any means. 45 ----------------- 49 - C / C++ / C# / Java - LZMA compression and decompression 50 - C / C++ - LZMA2 compression and decompression 51 - C / C++ - XZ compression and decompression [all …]
|
| D | lzma-history.txt | 2 ----------------------- 4 23.01 2023-06-20 5 ------------------------- 6 - 7-Zip now can use new ARM64 filter for compression to 7z and xz archives. 9 Also 7-Zip now parses executable files (that have exe and dll filename extensions) 11 - BCJ or BCJ2 filter for x86 executable files, 12 - ARM64 filter for ARM64 executable files. 14 - Default section size for BCJ2 filter was changed from 64 MiB to 240 MiB. 16 - Some optimizations in filters code: BCJ, BCJ2, Swap* and opthers. 17 - If 7-Zip uses BCJ2 filter for big datasets compressing, it can use additional temp [all …]
|
| /third_party/lzma/CPP/7zip/UI/Common/ |
| D | ArchiveExtractCallback.h | 45 void InitCRC() { _hash->InitForNewFile(); } in InitCRC() 347 return (Attrib_Defined && MY_LIN_S_ISLNK(Attrib >> 16)); 358 if ((a & 0222) == 0) // (& S_IWUSR) in p7zip 363 Attrib |= (a << 16); 365 Attrib = (a << 16) | FILE_ATTRIBUTE_UNIX_EXTENSION; 468 _hashStreamSpec->_hash = hash; 567 res = _ref->CloseArc();
|
| D | PropIDUtils.cpp | 33 3 (Volume label - obsolete) 43 13 NOT_CONTENT_INDEXED (I - Win10 attrib/Explorer) 45 15 INTEGRITY_STREAM (V - ReFS Win8/Win2012) 46 16 VIRTUAL (reserved) 47 17 NO_SCRUB_DATA (X - ReFS Win8/Win2012 attrib) 56 static const char kPosixTypes[16] = { '0', 'p', 'c', '3', 'd', '5', 'b', '7', '-', '9', 'l', 'B', '… 57 #define MY_ATTR_CHAR(a, n, c) (((a) & (1 << (n))) ? c : '-') 62 for (int i = 6; i >= 0; i -= 3) in ConvertPosixAttribToString() 64 s[7 - i] = MY_ATTR_CHAR(a, i + 2, 'r'); in ConvertPosixAttribToString() 65 s[8 - i] = MY_ATTR_CHAR(a, i + 1, 'w'); in ConvertPosixAttribToString() [all …]
|
| D | LoadCodecs.cpp | 5 --------------- 8 - 7z.dll file 9 - "Formats" subdir 10 - "Codecs" subdir 13 2) WIN32: directory for REGISTRY item [HKEY_*\Software\7-Zip\Path**] 15 - HKEY_CURRENT_USER : PathXX 16 - HKEY_LOCAL_MACHINE : PathXX 17 - HKEY_CURRENT_USER : Path 18 - HKEY_LOCAL_MACHINE : Path 19 PathXX is Path32 in 32-bit code [all …]
|
| /third_party/lzma/CPP/7zip/ |
| D | ICoder.h | 56 Encoders in 7-Zip ignore (inSize). 58 Some decoders in 7-Zip check it, if (full_decoding mode was set via ICompressSetFinishMode) 66 Encoders in 7-Zip ignore (outSize). 74 ----------------------------- 77 - ICompressSetDecoderProperties2 78 - ICompressSetFinishMode 93 ----------------------------- 96 - ICompressSetCoderProperties - use it before encoding to set properties 97 - ICompressWriteCoderProperties - use it before or after encoding to request encoded properties. 155 kLdmHashRateLog, // VT_UI4 The default value is wlog - ldmhlog. [all …]
|
| /third_party/lzma/CPP/Windows/ |
| D | FileFind.cpp | 163 WinXP-64 FindFirstFile(): 164 "" - ERROR_PATH_NOT_FOUND 165 folder\ - ERROR_FILE_NOT_FOUND 166 \ - ERROR_FILE_NOT_FOUND 167 c:\ - ERROR_FILE_NOT_FOUND 168 c: - ERROR_FILE_NOT_FOUND, if current dir is ROOT ( c:\ ) 169 c: - OK, if current dir is NOT ROOT ( c:\folder ) 170 folder - OK 172 \\ - ERROR_INVALID_NAME 173 \\Server - ERROR_INVALID_NAME [all …]
|
| /third_party/lzma/C/Util/7z/ |
| D | 7zMain.c | 1 /* 7zMain.c - Test application for 7z Decoder 2 2023-04-04 : Igor Pavlov : Public domain */ 49 if (dest->size >= size) in Buf_EnsureSize() 63 #define MY_UTF8_START(n) (0x100 - (1 << (7 - (n)))) 136 val = (((val - 0xD800) << 10) | (c2 - 0xDC00)) + 0x10000; in Utf16_To_Utf8() 159 *Utf16_To_Utf8(dest->data, src, src + srcLen) = 0; in Utf16_To_Utf8Buf() 180 buf->data[0] = 0; in Utf16_To_Char() 186 … codePage, 0, (LPCWSTR)s, (int)len, (char *)buf->data, (int)size, &defaultChar, &defUsed); in Utf16_To_Char() 189 buf->data[numChars] = 0; in Utf16_To_Char() 277 for (numDigits -= pos; numDigits > 0; numDigits--) in UInt64ToStr() [all …]
|