repo stringlengths 1 152 ⌀ | file stringlengths 14 221 | code stringlengths 501 25k | file_length int64 501 25k | avg_line_length float64 20 99.5 | max_line_length int64 21 134 | extension_type stringclasses 2
values |
|---|---|---|---|---|---|---|
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/C/Archive/7z/7zExtract.c | /* 7zExtract.c -- Extracting from 7z archive
2008-11-23 : Igor Pavlov : Public domain */
#include "../../7zCrc.h"
#include "7zDecode.h"
#include "7zExtract.h"
SRes SzAr_Extract(
const CSzArEx *p,
ILookInStream *inStream,
UInt32 fileIndex,
UInt32 *blockIndex,
Byte **outBuffer,
size_t *outBuffer... | 2,467 | 25.255319 | 82 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/C/Archive/7z/7zDecode.c | /* 7zDecode.c -- Decoding from 7z folder
2008-11-23 : Igor Pavlov : Public domain */
#include <string.h>
#include "../../Bcj2.h"
#include "../../Bra.h"
#include "../../LzmaDec.h"
#include "7zDecode.h"
#define k_Copy 0
#define k_LZMA 0x30101
#define k_BCJ 0x03030103
#define k_BCJ2 0x0303011B
static SRes SzDecodeLzma... | 7,546 | 28.596078 | 114 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/C/Archive/7z/7zMain.c | /* 7zMain.c - Test application for 7z Decoder
2008-11-23 : Igor Pavlov : Public domain */
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "../../7zCrc.h"
#include "../../7zFile.h"
#include "../../7zVersion.h"
#include "7zAlloc.h"
#include "7zExtract.h"
#include "7zIn.h"
static void ConvertNumber... | 6,381 | 23.26616 | 102 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/C/Archive/7z/7zIn.h | /* 7zIn.h -- 7z Input functions
2008-11-23 : Igor Pavlov : Public domain */
#ifndef __7Z_IN_H
#define __7Z_IN_H
#include "7zHeader.h"
#include "7zItem.h"
typedef struct
{
CSzAr db;
UInt64 startPosAfterHeader;
UInt64 dataPos;
UInt32 *FolderStartPackStreamIndex;
UInt64 *PackStreamStartPositions;
UInt32... | 892 | 20.261905 | 96 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/C/LzmaUtil/Lzma86Dec.c | /* Lzma86Dec.c -- LZMA + x86 (BCJ) Filter Decoder
2008-04-07
Igor Pavlov
Public domain */
#include "Lzma86Dec.h"
#include "../Alloc.h"
#include "../Bra.h"
#include "../LzmaDec.h"
#define LZMA86_SIZE_OFFSET (1 + LZMA_PROPS_SIZE)
#define LZMA86_HEADER_SIZE (LZMA86_SIZE_OFFSET + 8)
static void *SzAlloc(void *p, size_t... | 1,528 | 23.66129 | 78 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/C/LzmaUtil/Lzma86Enc.c | /* Lzma86Enc.c -- LZMA + x86 (BCJ) Filter Encoder
2008-08-05
Igor Pavlov
Public domain */
#include <string.h>
#include "Lzma86Enc.h"
#include "../Alloc.h"
#include "../Bra.h"
#include "../LzmaEnc.h"
#define SZE_OUT_OVERFLOW SZE_DATA_ERROR
static void *SzAlloc(void *p, size_t size) { p = p; return MyAlloc(size); }
... | 2,883 | 24.298246 | 78 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/C/LzmaUtil/LzmaUtil.c | /* LzmaUtil.c -- Test application for LZMA compression
2008-11-23 : Igor Pavlov : Public domain */
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "../Alloc.h"
#include "../7zFile.h"
#include "../7zVersion.h"
#include "../LzmaDec.h"
#include "../LzmaEnc.h"
const c... | 6,348 | 23.898039 | 95 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/C/LzmaUtil/Lzma86Enc.h | /* Lzma86Enc.h -- LZMA + x86 (BCJ) Filter Encoder
2008-08-05
Igor Pavlov
Public domain */
#ifndef __LZMA86ENC_H
#define __LZMA86ENC_H
#include "../Types.h"
/*
It's an example for LZMA + x86 Filter use.
You can use .lzma86 extension, if you write that stream to file.
.lzma86 header adds one additional byte to standar... | 2,197 | 29.109589 | 80 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/C/LzmaUtil/Lzma86Dec.h | /* Lzma86Dec.h -- LZMA + x86 (BCJ) Filter Decoder
2008-08-05
Igor Pavlov
Public domain */
#ifndef __LZMA86DEC_H
#define __LZMA86DEC_H
#include "../Types.h"
/*
Lzma86_GetUnpackSize:
In:
src - input data
srcLen - input data size
Out:
unpackSize - size of uncompressed stream
Return code:
SZ... | 1,003 | 20.826087 | 79 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/Windows/FileIO.h | // Windows/FileIO.h
#ifndef __WINDOWS_FILEIO_H
#define __WINDOWS_FILEIO_H
#include "../Common/Types.h"
namespace NWindows {
namespace NFile {
namespace NIO {
struct CByHandleFileInfo
{
DWORD Attributes;
FILETIME CTime;
FILETIME ATime;
FILETIME MTime;
DWORD VolumeSerialNumber;
UInt64 Size;
DWOR... | 2,858 | 27.59 | 100 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/Windows/Defs.h | // Windows/Defs.h
#ifndef __WINDOWS_DEFS_H
#define __WINDOWS_DEFS_H
inline bool BOOLToBool(BOOL value)
{ return (value != FALSE); }
#ifdef _WIN32
inline bool LRESULTToBool(LRESULT value)
{ return (value != FALSE); }
#endif
inline BOOL BoolToBOOL(bool value)
{ return (value ? TRUE: FALSE); }
inline VARIANT_BO... | 505 | 20.083333 | 51 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/Windows/Time.h | // Windows/Time.h
#ifndef __WINDOWS_TIME_H
#define __WINDOWS_TIME_H
#include "Common/Types.h"
namespace NWindows {
namespace NTime {
bool DosTimeToFileTime(UInt32 dosTime, FILETIME &fileTime);
bool FileTimeToDosTime(const FILETIME &fileTime, UInt32 &dosTime);
void UnixTimeToFileTime(UInt32 unixTime, FILETIME &fileT... | 581 | 25.454545 | 69 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/Windows/Thread.h | // Windows/Thread.h
#ifndef __WINDOWS_THREAD_H
#define __WINDOWS_THREAD_H
#include "Defs.h"
extern "C"
{
#include "../../C/Threads.h"
}
namespace NWindows {
class CThread
{
::CThread thread;
public:
CThread() { Thread_Construct(&thread); }
~CThread() { Close(); }
bool IsCreated() { return Thread_WasCreated... | 1,213 | 27.904762 | 101 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/Windows/Synchronization.h | // Windows/Synchronization.h
#ifndef __WINDOWS_SYNCHRONIZATION_H
#define __WINDOWS_SYNCHRONIZATION_H
#include "Defs.h"
extern "C"
{
#include "../../C/Threads.h"
}
#ifdef _WIN32
#include "Handle.h"
#endif
namespace NWindows {
namespace NSynchronization {
class CBaseEvent
{
protected:
::CEvent _object;
public:
... | 4,137 | 23.485207 | 105 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/Windows/PropVariant.h | // Windows/PropVariant.h
#ifndef __WINDOWS_PROPVARIANT_H
#define __WINDOWS_PROPVARIANT_H
#include "../Common/MyWindows.h"
#include "../Common/Types.h"
namespace NWindows {
namespace NCOM {
class CPropVariant : public tagPROPVARIANT
{
public:
CPropVariant() { vt = VT_EMPTY; wReserved1 = 0; }
~CPropVariant() { Cl... | 1,958 | 32.775862 | 109 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/Windows/FileFind.h | // Windows/FileFind.h
#ifndef __WINDOWS_FILEFIND_H
#define __WINDOWS_FILEFIND_H
#include "../Common/MyString.h"
#include "../Common/Types.h"
#include "FileName.h"
#include "Defs.h"
namespace NWindows {
namespace NFile {
namespace NFind {
namespace NAttributes
{
inline bool IsReadOnly(DWORD attrib) { return (attri... | 4,454 | 27.928571 | 94 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/Windows/FileName.h | // Windows/FileName.h
#ifndef __WINDOWS_FILENAME_H
#define __WINDOWS_FILENAME_H
#include "../Common/MyString.h"
namespace NWindows {
namespace NFile {
namespace NName {
const TCHAR kDirDelimiter = CHAR_PATH_SEPARATOR;
const TCHAR kAnyStringWildcard = '*';
void NormalizeDirPathPrefix(CSysString &dirPath); // ensure... | 601 | 22.153846 | 84 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/Windows/FileMapping.h | // Windows/FileMapping.h
#ifndef __WINDOWS_FILEMAPPING_H
#define __WINDOWS_FILEMAPPING_H
#include "Windows/Handle.h"
#include "Windows/Defs.h"
namespace NWindows {
// namespace NFile {
// namespace NMapping {
class CFileMapping: public CHandle
{
public:
bool Create(HANDLE file, LPSECURITY_ATTRIBUTES attributes,
... | 1,234 | 23.215686 | 80 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/Windows/PropVariantConversions.h | // Windows/PropVariantConversions.h
#ifndef __PROPVARIANTCONVERSIONS_H
#define __PROPVARIANTCONVERSIONS_H
#include "Common/Types.h"
#include "Common/MyString.h"
bool ConvertFileTimeToString(const FILETIME &ft, char *s, bool includeTime = true, bool includeSeconds = true);
UString ConvertFileTimeToString(const FILETI... | 525 | 34.066667 | 111 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/Windows/FileDir.h | // Windows/FileDir.h
#ifndef __WINDOWS_FILEDIR_H
#define __WINDOWS_FILEDIR_H
#include "../Common/MyString.h"
#include "Defs.h"
namespace NWindows {
namespace NFile {
namespace NDirectory {
#ifdef WIN_LONG_PATH
bool GetLongPaths(LPCWSTR s1, LPCWSTR s2, UString &d1, UString &d2);
#endif
bool MyGetWindowsDirectory(CS... | 5,041 | 27.167598 | 103 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/Common/Buffer.h | // Common/Buffer.h
#ifndef __COMMON_BUFFER_H
#define __COMMON_BUFFER_H
#include "Defs.h"
template <class T> class CBuffer
{
protected:
size_t _capacity;
T *_items;
public:
void Free()
{
delete []_items;
_items = 0;
_capacity = 0;
}
CBuffer(): _capacity(0), _items(0) {};
CBuffer(const CBuffe... | 1,743 | 21.358974 | 78 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/Common/Wildcard.h | // Common/Wildcard.h
#ifndef __COMMON_WILDCARD_H
#define __COMMON_WILDCARD_H
#include "MyString.h"
int CompareFileNames(const UString &s1, const UString &s2);
void SplitPathToParts(const UString &path, UStringVector &pathParts);
void SplitPathToParts(const UString &path, UString &dirPrefix, UString &name);
UString ... | 2,400 | 28.641975 | 93 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/Common/MyVector.h | // Common/Vector.h
#ifndef __COMMON_VECTOR_H
#define __COMMON_VECTOR_H
#include "Defs.h"
class CBaseRecordVector
{
void MoveItems(int destIndex, int srcIndex);
protected:
int _capacity;
int _size;
void *_items;
size_t _itemSize;
void ReserveOnePosition();
void InsertOneItem(int index);
void TestIn... | 6,303 | 24.115538 | 105 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/Common/MyCom.h | // MyCom.h
#ifndef __MYCOM_H
#define __MYCOM_H
#include "MyWindows.h"
#ifndef RINOK
#define RINOK(x) { HRESULT __result_ = (x); if (__result_ != S_OK) return __result_; }
#endif
template <class T>
class CMyComPtr
{
T* _p;
public:
// typedef T _PtrClass;
CMyComPtr() { _p = NULL;}
CMyComPtr(T* p) {if ((_p = p... | 5,702 | 24.234513 | 116 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/Common/StringConvert.h | // Common/StringConvert.h
#ifndef __COMMON_STRINGCONVERT_H
#define __COMMON_STRINGCONVERT_H
#include "MyWindows.h"
#include "MyString.h"
#include "Types.h"
UString MultiByteToUnicodeString(const AString &srcString, UINT codePage = CP_ACP);
AString UnicodeStringToMultiByte(const UString &srcString, UINT codePage, cha... | 3,075 | 40.567568 | 118 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/Common/StdOutStream.h | // Common/StdOutStream.h
#ifndef __COMMON_STDOUTSTREAM_H
#define __COMMON_STDOUTSTREAM_H
#include <stdio.h>
#include "Types.h"
class CStdOutStream
{
bool _streamIsOpen;
FILE *_stream;
public:
CStdOutStream (): _streamIsOpen(false), _stream(0) {};
CStdOutStream (FILE *stream): _streamIsOpen(false), _stream(s... | 890 | 23.75 | 78 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/Common/MyString.h | // Common/String.h
#ifndef __COMMON_STRING_H
#define __COMMON_STRING_H
#include <string.h>
// #include <wchar.h>
#include "MyVector.h"
#ifdef _WIN32
#include "MyWindows.h"
#endif
template <class T>
inline int MyStringLen(const T *s)
{
int i;
for (i = 0; s[i] != '\0'; i++);
return i;
}
template <class T>
inl... | 14,643 | 22.281399 | 103 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/Common/DynamicBuffer.h | // Common/DynamicBuffer.h
#ifndef __COMMON_DYNAMICBUFFER_H
#define __COMMON_DYNAMICBUFFER_H
#include "Buffer.h"
template <class T> class CDynamicBuffer: public CBuffer<T>
{
void GrowLength(size_t size)
{
size_t delta;
if (this->_capacity > 64)
delta = this->_capacity / 4;
else if (this->_capaci... | 1,174 | 23.479167 | 73 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/IProgress.h | // Interface/IProgress.h
#ifndef __IPROGRESS_H
#define __IPROGRESS_H
#include "../Common/MyUnknown.h"
#include "../Common/Types.h"
#include "IDecl.h"
#define INTERFACE_IProgress(x) \
STDMETHOD(SetTotal)(UInt64 total) x; \
STDMETHOD(SetCompleted)(const UInt64 *completeValue) x; \
DECL_INTERFACE(IProgress, 0, 5)... | 722 | 20.264706 | 76 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/IStream.h | // IStream.h
#ifndef __ISTREAM_H
#define __ISTREAM_H
#include "../Common/MyUnknown.h"
#include "../Common/Types.h"
#include "IDecl.h"
#define STREAM_INTERFACE_SUB(i, base, x) DECL_INTERFACE_SUB(i, base, 3, x)
#define STREAM_INTERFACE(i, x) STREAM_INTERFACE_SUB(i, IUnknown, x)
STREAM_INTERFACE(ISequentialInStream, ... | 1,599 | 26.118644 | 81 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/ICoder.h | // ICoder.h
#ifndef __ICODER_H
#define __ICODER_H
#include "IStream.h"
#define CODER_INTERFACE(i, x) DECL_INTERFACE(i, 4, x)
CODER_INTERFACE(ICompressProgressInfo, 0x04)
{
STDMETHOD(SetRatioInfo)(const UInt64 *inSize, const UInt64 *outSize) PURE;
};
CODER_INTERFACE(ICompressCoder, 0x05)
{
STDMETHOD(Code)(ISequ... | 4,293 | 21.962567 | 81 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/UI/Common/Extract.h | // Extract.h
#ifndef __EXTRACT_H
#define __EXTRACT_H
#include "Common/Wildcard.h"
#include "Windows/FileFind.h"
#include "../../Archive/IArchive.h"
#include "ArchiveExtractCallback.h"
#include "ArchiveOpenCallback.h"
#include "ExtractMode.h"
#include "Property.h"
#include "../Common/LoadCodecs.h"
class CExtractOp... | 1,722 | 21.089744 | 83 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/UI/Common/OpenArchive.h | // OpenArchive.h
#ifndef __OPENARCHIVE_H
#define __OPENARCHIVE_H
#include "Common/MyString.h"
#include "Windows/FileFind.h"
#include "../../Archive/IArchive.h"
#include "LoadCodecs.h"
#include "ArchiveOpenCallback.h"
HRESULT GetArchiveItemPath(IInArchive *archive, UInt32 index, UString &result);
HRESULT GetArchiveI... | 3,061 | 24.949153 | 111 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/UI/Common/DirItem.h | // DirItem.h
#ifndef __DIR_ITEM_H
#define __DIR_ITEM_H
#include "Common/MyString.h"
#include "Common/Types.h"
#include "../../Archive/IArchive.h"
struct CDirItem
{
UInt64 Size;
FILETIME CTime;
FILETIME ATime;
FILETIME MTime;
UString Name;
UInt32 Attrib;
int PhyParent;
int LogParent;
CDirItem(): ... | 1,511 | 20.913043 | 91 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/UI/Common/ExitCode.h | // ExitCode.h
#ifndef __EXIT_CODE_H
#define __EXIT_CODE_H
namespace NExitCode {
enum EEnum {
kSuccess = 0, // Successful operation
kWarning = 1, // Non fatal error(s) occurred
kFatalError = 2, // A fatal error occurred
// kCRCError = 3, // A CRC error occurred when unpack... | 742 | 25.535714 | 78 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/UI/Common/EnumDirItems.h | // EnumDirItems.h
#ifndef __ENUM_DIR_ITEMS_H
#define __ENUM_DIR_ITEMS_H
#include "Common/Wildcard.h"
#include "Windows/FileFind.h"
#include "DirItem.h"
void AddDirFileInfo(int phyParent, int logParent,
const NWindows::NFile::NFind::CFileInfoW &fi, CObjectVector<CDirItem> &dirItems);
struct IEnumDirItemCallback
... | 620 | 22.884615 | 92 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/UI/Common/IFileExtractCallback.h | // IFileExtractCallback.h
#ifndef __IFILEEXTRACTCALLBACK_H
#define __IFILEEXTRACTCALLBACK_H
#include "Common/MyString.h"
#include "../../IDecl.h"
namespace NOverwriteAnswer
{
enum EEnum
{
kYes,
kYesToAll,
kNo,
kNoToAll,
kAutoRename,
kCancel
};
}
DECL_INTERFACE_SUB(IFolderArchiveExtract... | 1,231 | 25.212766 | 117 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/UI/Common/UpdateCallback.h | // UpdateCallback.h
#ifndef __UPDATECALLBACK_H
#define __UPDATECALLBACK_H
#include "Common/MyCom.h"
#include "Common/MyString.h"
#include "../../IPassword.h"
#include "../../ICoder.h"
#include "../Common/UpdatePair.h"
#include "../Common/UpdateProduce.h"
#define INTERFACE_IUpdateCallbackUI(x) \
virtual HRESULT S... | 1,945 | 26.408451 | 87 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/UI/Common/Update.h | // Update.h
#ifndef __UPDATE_H
#define __UPDATE_H
#include "Common/Wildcard.h"
#include "Windows/FileFind.h"
#include "../../Archive/IArchive.h"
#include "UpdateAction.h"
#include "ArchiveOpenCallback.h"
#include "UpdateCallback.h"
#include "Property.h"
#include "LoadCodecs.h"
struct CArchivePath
{
UString Prefix... | 3,740 | 21.401198 | 92 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/UI/Common/LoadCodecs.h | // LoadCodecs.h
#ifndef __LOADCODECS_H
#define __LOADCODECS_H
#include "../../../Common/Types.h"
#include "../../../Common/MyCom.h"
#include "../../../Common/MyString.h"
#include "../../../Common/Buffer.h"
#include "../../ICoder.h"
#ifdef EXTERNAL_CODECS
#include "../../../Windows/DLL.h"
#endif
struct CDllCodecInfo... | 5,262 | 22.81448 | 122 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/UI/Common/ArchiveExtractCallback.h | // ArchiveExtractCallback.h
#ifndef __ARCHIVEEXTRACTCALLBACK_H
#define __ARCHIVEEXTRACTCALLBACK_H
#include "../../Archive/IArchive.h"
#include "IFileExtractCallback.h"
#include "Common/MyString.h"
#include "Common/MyCom.h"
#include "../../Common/FileStreams.h"
#include "../../Common/ProgressUtils.h"
#include "../..... | 3,317 | 23.761194 | 89 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/UI/Common/ArchiveOpenCallback.h | // ArchiveOpenCallback.h
#ifndef __ARCHIVE_OPEN_CALLBACK_H
#define __ARCHIVE_OPEN_CALLBACK_H
#include "Common/MyString.h"
#include "Common/MyCom.h"
#include "Windows/FileFind.h"
#ifndef _NO_CRYPTO
#include "../../IPassword.h"
#endif
#include "../../Archive/IArchive.h"
#ifdef _NO_CRYPTO
#define INTERFACE_IOpenCallb... | 2,389 | 22.431373 | 82 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/UI/Console/PercentPrinter.h | // PercentPrinter.h
#ifndef __PERCENTPRINTER_H
#define __PERCENTPRINTER_H
#include "Common/Types.h"
#include "Common/StdOutStream.h"
class CPercentPrinter
{
UInt64 m_MinStepSize;
UInt64 m_PrevValue;
UInt64 m_CurValue;
UInt64 m_Total;
int m_NumExtraChars;
public:
CStdOutStream *OutStream;
CPercentPrint... | 749 | 22.4375 | 70 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/UI/Console/ExtractCallbackConsole.h | // ExtractCallbackConsole.h
#ifndef __EXTRACTCALLBACKCONSOLE_H
#define __EXTRACTCALLBACKCONSOLE_H
#include "Common/MyString.h"
#include "Common/StdOutStream.h"
#include "../../Common/FileStreams.h"
#include "../../IPassword.h"
#include "../../Archive/IArchive.h"
#include "../Common/ArchiveExtractCallback.h"
class CE... | 1,888 | 24.527027 | 113 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Archive/IArchive.h | // IArchive.h
#ifndef __IARCHIVE_H
#define __IARCHIVE_H
#include "../IStream.h"
#include "../IProgress.h"
#include "../PropID.h"
#define ARCHIVE_INTERFACE_SUB(i, base, x) DECL_INTERFACE_SUB(i, base, 6, x)
#define ARCHIVE_INTERFACE(i, x) ARCHIVE_INTERFACE_SUB(i, IUnknown, x)
namespace NFileTimeType
{
enum EEnum
... | 6,994 | 29.545852 | 123 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Archive/Lzma/LzmaHandler.h | // Lzma/Handler.h
#ifndef __GZIP_HANDLER_H
#define __GZIP_HANDLER_H
#include "Common/MyCom.h"
#include "../IArchive.h"
#include "../../Common/CreateCoder.h"
#include "LzmaIn.h"
namespace NArchive {
namespace NLzma {
// const UInt64 k_LZMA = 0x030101;
class CHandler:
public IInArchive,
PUBLIC_ISetCompressCode... | 1,562 | 21.328571 | 75 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Archive/Common/CoderMixer2.h | // CoderMixer2.h
#ifndef __CODER_MIXER2_H
#define __CODER_MIXER2_H
#include "../../../Common/MyVector.h"
#include "../../../Common/Types.h"
#include "../../../Common/MyCom.h"
#include "../../ICoder.h"
namespace NCoderMixer {
struct CBindPair
{
UInt32 InIndex;
UInt32 OutIndex;
};
struct CCoderStreamsInfo
{
UI... | 4,104 | 22.457143 | 100 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Archive/Common/ParseProperties.h | // ParseProperties.h
#ifndef __PARSEPROPERTIES_H
#define __PARSEPROPERTIES_H
#include "Common/MyString.h"
#include "Common/Types.h"
HRESULT ParsePropValue(const UString &name, const PROPVARIANT &prop, UInt32 &resValue);
HRESULT ParsePropDictionaryValue(const UString &srcStringSpec, UInt32 &dicSize);
HRESULT ParsePro... | 702 | 36 | 112 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Archive/Common/OutStreamWithCRC.h | // OutStreamWithCRC.h
#ifndef __OUT_STREAM_WITH_CRC_H
#define __OUT_STREAM_WITH_CRC_H
#include "../../../Common/MyCom.h"
#include "../../IStream.h"
extern "C"
{
#include "../../../../C/7zCrc.h"
}
class COutStreamWithCRC:
public ISequentialOutStream,
public CMyUnknownImp
{
CMyComPtr<ISequentialOutStream> _stre... | 852 | 20.871795 | 73 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Archive/Common/ItemNameUtils.h | // Archive/Common/ItemNameUtils.h
#ifndef __ARCHIVE_ITEMNAMEUTILS_H
#define __ARCHIVE_ITEMNAMEUTILS_H
#include "../../../Common/MyString.h"
namespace NArchive {
namespace NItemName {
UString MakeLegalName(const UString &name);
UString GetOSName(const UString &name);
UString GetOSName2(const UString &name);
... | 541 | 20.68 | 71 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Archive/Common/DummyOutStream.h | // DummyOutStream.h
#ifndef __DUMMYOUTSTREAM_H
#define __DUMMYOUTSTREAM_H
#include "../../IStream.h"
#include "Common/MyCom.h"
class CDummyOutStream:
public ISequentialOutStream,
public CMyUnknownImp
{
CMyComPtr<ISequentialOutStream> _stream;
UInt64 _size;
public:
void SetStream(ISequentialOutStream *outSt... | 571 | 21.88 | 74 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Archive/Common/InStreamWithCRC.h | // InStreamWithCRC.h
#ifndef __INSTREAMWITHCRC_H
#define __INSTREAMWITHCRC_H
#include "../../../Common/MyCom.h"
#include "../../IStream.h"
extern "C"
{
#include "../../../../C/7zCrc.h"
}
class CSequentialInStreamWithCRC:
public ISequentialInStream,
public CMyUnknownImp
{
public:
MY_UNKNOWN_IMP
STDMETHOD(Re... | 1,547 | 21.114286 | 72 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Archive/Common/CoderMixer2MT.h | // CoderMixer2MT.h
#ifndef __CODER_MIXER2_MT_H
#define __CODER_MIXER2_MT_H
#include "CoderMixer2.h"
#include "../../../Common/MyCom.h"
#include "../../Common/StreamBinder.h"
#include "../../Common/VirtThread.h"
namespace NCoderMixer {
struct CCoder2: public CCoderInfo2, public CVirtThread
{
HRESULT Result;
CObj... | 2,101 | 24.950617 | 87 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Archive/7z/7zOut.h | // 7z/Out.h
#ifndef __7Z_OUT_H
#define __7Z_OUT_H
#include "7zHeader.h"
#include "7zItem.h"
#include "7zCompressionMode.h"
#include "7zEncode.h"
#include "../../Common/OutBuffer.h"
namespace NArchive {
namespace N7z {
class CWriteBufferLoc
{
Byte *_data;
size_t _size;
size_t _pos;
public:
CWriteBufferLoc()... | 4,016 | 24.585987 | 98 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Archive/7z/7zDecode.h | // 7zDecode.h
#ifndef __7Z_DECODE_H
#define __7Z_DECODE_H
#include "../../IStream.h"
#include "../../IPassword.h"
#include "../Common/CoderMixer2.h"
#include "../Common/CoderMixer2MT.h"
#ifdef _ST_MODE
#include "../Common/CoderMixer2ST.h"
#endif
#include "../../Common/CreateCoder.h"
#include "7zItem.h"
namespace ... | 1,459 | 20.15942 | 76 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Archive/7z/7zEncode.h | // 7zEncode.h
#ifndef __7Z_ENCODE_H
#define __7Z_ENCODE_H
// #include "../../Common/StreamObjects.h"
#include "7zCompressionMode.h"
#include "../Common/CoderMixer2.h"
#include "../Common/CoderMixer2MT.h"
#ifdef _ST_MODE
#include "../Common/CoderMixer2ST.h"
#endif
#include "7zItem.h"
#include "../../Common/CreateCo... | 1,288 | 22.017857 | 64 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Archive/7z/7zIn.h | // 7zIn.h
#ifndef __7Z_IN_H
#define __7Z_IN_H
#include "../../../Common/MyCom.h"
#include "../../IPassword.h"
#include "../../IStream.h"
#include "../../Common/CreateCoder.h"
#include "../../Common/InBuffer.h"
#include "7zItem.h"
namespace NArchive {
namespace N7z {
struct CInArchiveInfo
{
CArchiveVersion V... | 6,469 | 25.300813 | 103 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Archive/7z/7zSpecStream.h | // 7zSpecStream.h
#ifndef __7Z_SPEC_STREAM_H
#define __7Z_SPEC_STREAM_H
#include "../../IStream.h"
#include "../../ICoder.h"
#include "../../../Common/MyCom.h"
class CSequentialInStreamSizeCount2:
public ISequentialInStream,
public ICompressGetSubStreamSize,
public CMyUnknownImp
{
CMyComPtr<ISequentialInStre... | 840 | 22.361111 | 78 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Compress/LzmaDecoder.h | // LzmaDecoder.h
#ifndef __LZMA_DECODER_H
#define __LZMA_DECODER_H
extern "C"
{
#include "../../../C/LzmaDec.h"
}
#include "../../Common/MyCom.h"
#include "../ICoder.h"
namespace NCompress {
namespace NLzma {
class CDecoder:
public ICompressCoder,
public ICompressSetDecoderProperties2,
public ICompressGetInS... | 1,665 | 21.513514 | 84 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Compress/Bcj2Coder.h | // Bcj2Coder.h
#ifndef __COMPRESS_BCJ2_CODER_H
#define __COMPRESS_BCJ2_CODER_H
#include "../../Common/MyCom.h"
#include "../ICoder.h"
#include "RangeCoderBit.h"
namespace NCompress {
namespace NBcj2 {
const int kNumMoveBits = 5;
#ifndef EXTRACT_ONLY
class CEncoder:
public ICompressCoder2,
public CMyUnknownI... | 2,777 | 21.047619 | 76 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Compress/BranchCoder.h | // BranchCoder.h
#ifndef __COMPRESS_BRANCH_CODER_H
#define __COMPRESS_BRANCH_CODER_H
#include "../../Common/MyCom.h"
#include "../ICoder.h"
class CBranchConverter:
public ICompressFilter,
public CMyUnknownImp
{
protected:
UInt32 _bufferPos;
virtual void SubInit() {}
virtual UInt32 SubFilter(Byte *data, UI... | 1,350 | 29.022222 | 111 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Compress/RangeCoderBit.h | // Compress/RangeCoderBit.h
#ifndef __COMPRESS_RANGE_CODER_BIT_H
#define __COMPRESS_RANGE_CODER_BIT_H
#include "RangeCoder.h"
namespace NCompress {
namespace NRangeCoder {
const int kNumBitModelTotalBits = 11;
const UInt32 kBitModelTotal = (1 << kNumBitModelTotalBits);
const int kNumMoveReducingBits = 4;
const i... | 2,828 | 23.815789 | 110 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Compress/LZMA_Alone/LzmaBench.h | // LzmaBench.h
#ifndef __LZMABENCH_H
#define __LZMABENCH_H
#include <stdio.h>
#include "../../../Common/Types.h"
#ifdef EXTERNAL_LZMA
#include "../../UI/Common/LoadCodecs.h"
#endif
struct CBenchInfo
{
UInt64 GlobalTime;
UInt64 GlobalFreq;
UInt64 UserTime;
UInt64 UserFreq;
UInt64 UnpackSize;
UInt64 PackSi... | 1,236 | 24.244898 | 113 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Compress/LZMA_AloneShowTime/faritimes.c | #include <unistd.h>
#include <stdio.h>
/* only for getTime() */
#include <sys/time.h>
#include <sys/times.h>
#include <sys/resource.h>
#define GET_TIME_DIVIDER ((double) 1.0 ) //getTime deals with "seconds" as time unit.
#define GET_TIME_UNIT "sec"
#define MSEC_TIME_DIVIDER ((double) 1000.0) //1 sec = 1000 msec
#de... | 2,804 | 33.207317 | 111 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Compress/LZMA_AloneShowTime/LzmaBench.h | // LzmaBench.h
#ifndef __LZMABENCH_H
#define __LZMABENCH_H
#include <stdio.h>
#include "../../../Common/Types.h"
#ifdef EXTERNAL_LZMA
#include "../../UI/Common/LoadCodecs.h"
#endif
struct CBenchInfo
{
UInt64 GlobalTime;
UInt64 GlobalFreq;
UInt64 UserTime;
UInt64 UserFreq;
UInt64 UnpackSize;
UInt64 PackSi... | 1,236 | 24.244898 | 113 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Common/FileStreams.h | // FileStreams.h
#ifndef __FILESTREAMS_H
#define __FILESTREAMS_H
#ifdef _WIN32
#define USE_WIN_FILE
#endif
#ifdef USE_WIN_FILE
#include "../../Windows/FileIO.h"
#else
#include "../../Common/C_FileIO.h"
#endif
#include "../IStream.h"
#include "../../Common/MyCom.h"
class CInFileStream:
public IInStream,
public ... | 3,004 | 20.312057 | 83 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Common/InOutTempBuffer.h | // Util/InOutTempBuffer.h
#ifndef __IN_OUT_TEMP_BUFFER_H
#define __IN_OUT_TEMP_BUFFER_H
#include "../../Windows/FileIO.h"
#include "../../Windows/FileDir.h"
#include "../../Common/MyCom.h"
#include "../IStream.h"
class CInOutTempBuffer
{
NWindows::NFile::NDirectory::CTempFile _tempFile;
NWindows::NFile::NIO::CO... | 1,273 | 21.75 | 73 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Common/FilterCoder.h | // FilterCoder.h
#ifndef __FILTERCODER_H
#define __FILTERCODER_H
#include "../../Common/MyCom.h"
#include "../ICoder.h"
#include "../IPassword.h"
#define MY_QUERYINTERFACE_ENTRY_AG(i, sub0, sub) if (iid == IID_ ## i) \
{ if (!sub) RINOK(sub0->QueryInterface(IID_ ## i, (void **)&sub)) \
*outObject = (void *)(i *)this... | 4,293 | 28.819444 | 93 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Common/RegisterArc.h | // RegisterArc.h
#ifndef __REGISTERARC_H
#define __REGISTERARC_H
#include "../Archive/IArchive.h"
typedef IInArchive * (*CreateInArchiveP)();
typedef IOutArchive * (*CreateOutArchiveP)();
struct CArcInfo
{
const wchar_t *Name;
const wchar_t *Ext;
const wchar_t *AddExt;
Byte ClassId;
Byte Signature[16];
... | 892 | 23.135135 | 85 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Common/RegisterCodec.h | // RegisterCodec.h
#ifndef __REGISTERCODEC_H
#define __REGISTERCODEC_H
#include "../Common/MethodId.h"
typedef void * (*CreateCodecP)();
struct CCodecInfo
{
CreateCodecP CreateDecoder;
CreateCodecP CreateEncoder;
CMethodId Id;
const wchar_t *Name;
UInt32 NumInStreams;
bool IsFilter;
};
void RegisterCode... | 909 | 25.764706 | 106 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Common/LimitedStreams.h | // LimitedStreams.h
#ifndef __LIMITEDSTREAMS_H
#define __LIMITEDSTREAMS_H
#include "../../Common/MyCom.h"
#include "../IStream.h"
class CLimitedSequentialInStream:
public ISequentialInStream,
public CMyUnknownImp
{
CMyComPtr<ISequentialInStream> _stream;
UInt64 _size;
UInt64 _pos;
bool _wasFinished;
publ... | 1,256 | 21.854545 | 73 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Common/StreamBinder.h | // StreamBinder.h
#ifndef __STREAMBINDER_H
#define __STREAMBINDER_H
#include "../IStream.h"
#include "../../Windows/Synchronization.h"
class CStreamBinder
{
NWindows::NSynchronization::CManualResetEvent _allBytesAreWritenEvent;
NWindows::NSynchronization::CManualResetEvent _thereAreBytesToReadEvent;
NWindows::... | 831 | 24.212121 | 74 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma465/CPP/7zip/Common/CreateCoder.h | // CreateCoder.h
#ifndef __CREATECODER_H
#define __CREATECODER_H
#include "Common/MyCom.h"
#include "Common/MyString.h"
#include "../ICoder.h"
#include "MethodId.h"
#ifdef EXTERNAL_CODECS
struct CCodecInfoEx
{
UString Name;
CMethodId Id;
UInt32 NumInStreams;
UInt32 NumOutStreams;
bool EncoderIsAssigned;
... | 3,063 | 29.949495 | 122 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma443/LZMA_C/LzmaTestFARI.c | /*
LzmaTest.c
Test application for LZMA Decoder
This file written and distributed to public domain by Igor Pavlov.
This file is part of LZMA SDK 4.26 (2005-08-05)
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "LzmaDecode.h"
unsigned long getfileSizeUtils (const char *filename){
FILE *fpTe... | 5,403 | 23.342342 | 131 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma443/LZMA_C/LzmaTest.c | /*
LzmaTest.c
Test application for LZMA Decoder
This file written and distributed to public domain by Igor Pavlov.
This file is part of LZMA SDK 4.26 (2005-08-05)
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "LzmaDecode.h"
const char *kCantReadMessage = "Can not read input file";
const ch... | 9,379 | 24.84022 | 131 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma443/LZMA_C/farilzmatypes.h | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "LzmaDecode.h"
#ifndef uchar
#define uchar unsigned char
#endif
#define TMP_FILE_TO_COMPRESS_VBYTE "TempFile09871.compressed.vbyte"
#define TMP_FILE_COMPRESSED_LZMA "TempFile09871.compressed.vbyte.lzma"
#ifndef _LZMA_OUT_REA... | 812 | 24.40625 | 86 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma443/LZMA_C/LzmaStateDecode.h | /*
LzmaStateDecode.h
LZMA Decoder interface (State version)
LZMA SDK 4.40 Copyright (c) 1999-2006 Igor Pavlov (2006-05-01)
http://www.7-zip.org/
LZMA SDK is licensed under two licenses:
1) GNU Lesser General Public License (GNU LGPL)
2) Common Public License (CPL)
It means that you can select one of ... | 2,719 | 27.041237 | 108 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma443/LZMA_C/LzmaStateDecode.c | /*
LzmaStateDecode.c
LZMA Decoder (State version)
LZMA SDK 4.40 Copyright (c) 1999-2006 Igor Pavlov (2006-05-01)
http://www.7-zip.org/
LZMA SDK is licensed under two licenses:
1) GNU Lesser General Public License (GNU LGPL)
2) Common Public License (CPL)
It means that you can select one of these two... | 15,048 | 27.501894 | 98 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma443/LZMA_C/LzmaDecode.h | /*
LzmaDecode.h
LZMA Decoder interface
LZMA SDK 4.40 Copyright (c) 1999-2006 Igor Pavlov (2006-05-01)
http://www.7-zip.org/
LZMA SDK is licensed under two licenses:
1) GNU Lesser General Public License (GNU LGPL)
2) Common Public License (CPL)
It means that you can select one of these two licenses an... | 2,766 | 23.27193 | 111 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma443/LZMA_C/LzmaDecodeSize.c | /*
LzmaDecodeSize.c
LZMA Decoder (optimized for Size version)
LZMA SDK 4.40 Copyright (c) 1999-2006 Igor Pavlov (2006-05-01)
http://www.7-zip.org/
LZMA SDK is licensed under two licenses:
1) GNU Lesser General Public License (GNU LGPL)
2) Common Public License (CPL)
It means that you can select one ... | 18,285 | 24.646564 | 101 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma443/LZMA_C/LzmaDecode.c | /*
LzmaDecode.c
LZMA Decoder (optimized for Speed version)
LZMA SDK 4.40 Copyright (c) 1999-2006 Igor Pavlov (2006-05-01)
http://www.7-zip.org/
LZMA SDK is licensed under two licenses:
1) GNU Lesser General Public License (GNU LGPL)
2) Common Public License (CPL)
It means that you can select one of ... | 15,891 | 26.073254 | 121 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma443/LZMA_C/LzmaStateTest.c | /*
LzmaStateTest.c
Test application for LZMA Decoder (State version)
This file written and distributed to public domain by Igor Pavlov.
This file is part of LZMA SDK 4.26 (2005-08-02)
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "LzmaStateDecode.h"
const char *kCantReadMessage = "Can not ... | 5,529 | 23.469027 | 100 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma443/LZMA_C/farilzma.h | #ifndef LZMA_API_INCLUDED
#define LZMA_API_INCLUDED
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h> //for the getpid();
#ifndef uchar
#define uchar unsigned char
#endif
#define LZMA_DEC_TO_BC(bc, pos, num) \
{ ... | 3,436 | 29.6875 | 89 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma443/LZMA_C[simplifiedHeader]/LzmaTestFARI.c | /*
LzmaTest.c
Test application for LZMA Decoder
This file written and distributed to public domain by Igor Pavlov.
This file is part of LZMA SDK 4.26 (2005-08-05)
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "LzmaDecode.h"
unsigned long getfileSizeUtils (const char *filename){
FILE *fpTe... | 5,403 | 23.342342 | 131 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma443/LZMA_C[simplifiedHeader]/LzmaTest.c | /*
LzmaTest.c
Test application for LZMA Decoder
This file written and distributed to public domain by Igor Pavlov.
This file is part of LZMA SDK 4.26 (2005-08-05)
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "LzmaDecode.h"
const char *kCantReadMessage = "Can not read input file";
const ch... | 9,379 | 24.84022 | 131 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma443/LZMA_C[simplifiedHeader]/farilzmatypes.h | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "LzmaDecode.h"
#ifndef uchar
#define uchar unsigned char
#endif
#define TMP_FILE_TO_COMPRESS_VBYTE "TempFile09871.compressed.vbyte"
#define TMP_FILE_COMPRESSED_LZMA "TempFile09871.compressed.vbyte.lzma"
#ifndef _LZMA_OUT_REA... | 812 | 24.40625 | 86 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma443/LZMA_C[simplifiedHeader]/LzmaStateDecode.h | /*
LzmaStateDecode.h
LZMA Decoder interface (State version)
LZMA SDK 4.40 Copyright (c) 1999-2006 Igor Pavlov (2006-05-01)
http://www.7-zip.org/
LZMA SDK is licensed under two licenses:
1) GNU Lesser General Public License (GNU LGPL)
2) Common Public License (CPL)
It means that you can select one of ... | 2,719 | 27.041237 | 108 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma443/LZMA_C[simplifiedHeader]/LzmaStateDecode.c | /*
LzmaStateDecode.c
LZMA Decoder (State version)
LZMA SDK 4.40 Copyright (c) 1999-2006 Igor Pavlov (2006-05-01)
http://www.7-zip.org/
LZMA SDK is licensed under two licenses:
1) GNU Lesser General Public License (GNU LGPL)
2) Common Public License (CPL)
It means that you can select one of these two... | 15,048 | 27.501894 | 98 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma443/LZMA_C[simplifiedHeader]/LzmaDecode.h | /*
LzmaDecode.h
LZMA Decoder interface
LZMA SDK 4.40 Copyright (c) 1999-2006 Igor Pavlov (2006-05-01)
http://www.7-zip.org/
LZMA SDK is licensed under two licenses:
1) GNU Lesser General Public License (GNU LGPL)
2) Common Public License (CPL)
It means that you can select one of these two licenses an... | 2,766 | 23.27193 | 111 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma443/LZMA_C[simplifiedHeader]/LzmaDecodeSize.c | /*
LzmaDecodeSize.c
LZMA Decoder (optimized for Size version)
LZMA SDK 4.40 Copyright (c) 1999-2006 Igor Pavlov (2006-05-01)
http://www.7-zip.org/
LZMA SDK is licensed under two licenses:
1) GNU Lesser General Public License (GNU LGPL)
2) Common Public License (CPL)
It means that you can select one ... | 18,285 | 24.646564 | 101 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma443/LZMA_C[simplifiedHeader]/LzmaDecode.c | /*
LzmaDecode.c
LZMA Decoder (optimized for Speed version)
LZMA SDK 4.40 Copyright (c) 1999-2006 Igor Pavlov (2006-05-01)
http://www.7-zip.org/
LZMA SDK is licensed under two licenses:
1) GNU Lesser General Public License (GNU LGPL)
2) Common Public License (CPL)
It means that you can select one of ... | 15,891 | 26.073254 | 121 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma443/LZMA_C[simplifiedHeader]/LzmaStateTest.c | /*
LzmaStateTest.c
Test application for LZMA Decoder (State version)
This file written and distributed to public domain by Igor Pavlov.
This file is part of LZMA SDK 4.26 (2005-08-02)
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "LzmaStateDecode.h"
const char *kCantReadMessage = "Can not ... | 5,529 | 23.469027 | 100 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/6.vbyteP7zip_acabadoMerge2yN[Fork]/lzmalib/lzma.sourceCode/LZMAFARI_LIB/lzma443/LZMA_C[simplifiedHeader]/farilzma.h | #ifndef LZMA_API_INCLUDED
#define LZMA_API_INCLUDED
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h> //for the getpid();
#ifndef uchar
#define uchar unsigned char
#endif
#define LZMA_DEC_TO_BC(bc, pos, num) \
{ ... | 3,436 | 29.6875 | 89 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/3SandersBitmapSpire.limpiado/linker/interface.h |
/**********************************************************************************/
/* General interface for using compressed representations of posting lists */
/* Any alternative representation must implement all these functions */
/**************************************************************... | 3,885 | 31.383333 | 84 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/3SandersBitmapSpire.limpiado/linker/build_il.c |
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "interface.h"
/* only for getTime() */
#include <sys/time.h>
#include <sys/resource.h>
/* macro to detect and notify errors */
#define IFERRORIL(error) {{if (error) { fprintf(stderr, "%s\n", error_il(error)); exit(1); }}}
int read_file(char *... | 3,507 | 23.704225 | 98 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/3SandersBitmapSpire.limpiado/src/interface.h |
/**********************************************************************************/
/* General interface for using compressed representations of posting lists */
/* Any alternative representation must implement all these functions */
/**************************************************************... | 3,885 | 31.383333 | 84 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/3SandersBitmapSpire.limpiado/src/ilsandersbc.h | /* only for getTime() */
#include <sys/time.h>
#include <sys/resource.h>
#include "utils/basics.h"
#include "utils/sort_alg.h"
//#include "utils/fileInfo.h"
#include "ilists/ildefconfig.h"
#include "ilists/bc.h"
#include "ilists/ildatatypes.h"
#include "ilists/ilerrors.c"
#define MAXUINT 0x7FFFFFFF
//modifies: a... | 7,597 | 34.339535 | 89 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/3SandersBitmapSpire.limpiado/src/linker/interface.h |
/**********************************************************************************/
/* General interface for using compressed representations of posting lists */
/* Any alternative representation must implement all these functions */
/**************************************************************... | 3,885 | 31.383333 | 84 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/3SandersBitmapSpire.limpiado/src/linker/build_il.c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "interface.h"
/* only for getTime() */
#include <sys/time.h>
#include <sys/resource.h>
/* macro to detect and notify errors */
#define IFERRORIL(error) {{if (error) { fprintf(stderr, "%s\n", error_il(error)); exit(1); }}}
int read_file(char *f... | 3,508 | 23.886525 | 98 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs/ilists.imp/3SandersBitmapSpire.limpiado/src/utils/basics.h |
// Basics
#ifndef BASICSINCLUDED
#define BASICSINCLUDED
// Includes
#include <sys/types.h>
#include <stdio.h>
#include <fcntl.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <sys/times.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
// Memory management
#define malloc(n) Malloc(n)
#defi... | 2,571 | 21.964286 | 61 | h |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.