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_large/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_large/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_large/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_large/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_large/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_large/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_large/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_large/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_large/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_large/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_large/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_large/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_large/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_large/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_large/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_large/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_large/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_large/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_large/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_large/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_large/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_large/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_large/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_large/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_large/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_large/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_large/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_large/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_large/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_large/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_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/linker/interface.h
/**********************************************************************************/ /* General interface for using compressed representations of posting lists */ /* Any alternative representation must implement all these functions */ /**************************************************************...
4,023
31.715447
84
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/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,566
24.661871
109
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/heap.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
10,215
28.611594
75
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/idespair.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
4,256
25.116564
85
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/heap.h
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
2,757
31.447059
76
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/hash.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
3,718
27.389313
75
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/basics.h
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
1,357
26.16
75
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/repair.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
10,239
27.365651
79
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/basics.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
1,616
23.876923
75
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/despair.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
3,971
25.304636
75
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/array.h
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
1,527
27.830189
75
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/toint.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
1,148
29.236842
75
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/records.h
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
2,337
28.225
75
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/array.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
2,115
24.493976
75
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/hash.h
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
1,762
29.396552
75
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/records.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
3,332
26.775
78
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/bal/heap.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
10,282
28.464183
75
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/bal/irepair.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
11,289
28.097938
114
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/bal/idespair.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
3,897
26.069444
85
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/bal/heap.h
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
2,738
31.223529
76
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/bal/hash.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
3,707
27.305344
75
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/bal/basics.h
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
1,303
27.977778
75
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/bal/repair.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
10,239
27.365651
79
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/bal/basics.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
1,610
23.784615
75
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/bal/despair.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
3,971
25.304636
75
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/bal/array.h
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
1,607
28.236364
81
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/bal/toint.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
1,148
29.236842
75
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/bal/records.h
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
2,326
28.0875
75
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/bal/array.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
2,999
23.590164
75
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/bal/hash.h
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
1,754
29.258621
75
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/repairGonzalo.srcs/bal/records.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
3,306
26.789916
78
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/src/HashTablePos.h
#ifndef HASHTABLEPOS_H #define HASHTABLEPOS_H #include "basic.h" #define maxAlpha 0.6 #define VERBOSE class HashTablePos { public: HashTablePos(uint * data, uint dataLen, int * buff, uint buffLen); ~HashTablePos(); bool increment(uint pos); uint get(uint pos); bool insert(uint pos, uint value); uint h(...
720
22.258065
97
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/src/bitrankw32int.h
/* bitarray.h Copyright (C) 2005, Rodrigo Gonzalez, all rights reserved. New RANK, SELECT, SELECT-NEXT and SPARSE RANK implementations. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foun...
2,028
29.283582
88
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/src/bitmapw32int.h
/* bitarray.h Copyright (C) 2005, Rodrigo Gonzalez, all rights reserved. New RANK, SELECT, SELECT-NEXT and SPARSE RANK implementations. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foun...
1,274
26.12766
77
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/src/RepairPost.h
#ifndef REPAIRDECOMPRESSOR #define REPAIRDECOMPRESSOR #include <iostream> #include <cassert> #include "bitrankw32int.h" #include "bitmapw32int.h" #include "basic.h" #include "sort_alg_Rep.h" #define GAP 1 //#include "RePair.h" //** del build_index.cpp #define CEILLOG_2(x,v) \ { ...
4,456
27.754839
101
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/src/ilistimp.h
/* only for getTime() */ #include <sys/types.h> #include <unistd.h> #include <sys/time.h> #include <sys/resource.h> #include <stdio.h> #include <string.h> #include <stdlib.h> #include "RepairPost.h" //#include "utils/sort_alg.h" #include "ilists/ildefconfig.h" #include "ilists/ildatatypes.h" //depends on "RepairPos...
4,806
34.345588
85
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/src/interface.h
/**********************************************************************************/ /* General interface for using compressed representations of posting lists */ /* Any alternative representation must implement all these functions */ /**************************************************************...
4,029
31.764228
84
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/src/ilists/ilerrors.c
/*//////////////// //Error handling// ////////////////*/ /* char *error_il(int e){ switch(e) { case 0: return "No error"; break; case 1: return "Out of memory"; break; case 30: return "Error reading source posting lists";break; case 31: return "Empty Source list or incomplete !!";break; case 40: retu...
2,558
38.369231
83
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/3.integradoSkippingBB.ClaudeSolucion2013_v2(nowarn)/srcREPAIR/src/ilists/ildatatypes.h
#ifndef DATA_TYPES_IL_INCLUDED #define DATA_TYPES_IL_INCLUDED typedef struct{ int (*defaultFsearch) ( uint id, uint value); //int (*defaultIntersect2) ( uint id1, uint id2, uint *noccs, uint **occs ); //int (*defaultIntersectN) ( uint *ids, uint nids, uint *noccs, uint **occs ); int (RepairPost::*default...
1,047
29.823529
100
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/linker/interface.h
/**********************************************************************************/ /* General interface for using compressed representations of posting lists */ /* Any alternative representation must implement all these functions */ /**************************************************************...
4,023
31.715447
84
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/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,566
24.661871
109
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/heap.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
10,215
28.611594
75
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/idespair.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
4,256
25.116564
85
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/heap.h
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
2,757
31.447059
76
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/hash.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
3,718
27.389313
75
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/basics.h
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
1,357
26.16
75
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/repair.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
10,239
27.365651
79
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/basics.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
1,616
23.876923
75
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/despair.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
3,971
25.304636
75
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/array.h
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
1,527
27.830189
75
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/toint.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
1,148
29.236842
75
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/records.h
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
2,337
28.225
75
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/array.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
2,115
24.493976
75
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/hash.h
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
1,762
29.396552
75
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/records.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
3,332
26.775
78
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/bal/heap.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
10,282
28.464183
75
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/bal/irepair.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
11,289
28.097938
114
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/bal/idespair.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
3,897
26.069444
85
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/bal/heap.h
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
2,738
31.223529
76
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/bal/hash.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
3,707
27.305344
75
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/bal/basics.h
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
1,303
27.977778
75
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/bal/repair.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
10,239
27.365651
79
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/bal/basics.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
1,610
23.784615
75
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/bal/despair.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
3,971
25.304636
75
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/bal/array.h
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
1,607
28.236364
81
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/bal/toint.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
1,148
29.236842
75
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/bal/records.h
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
2,326
28.0875
75
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/bal/array.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
2,999
23.590164
75
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/bal/hash.h
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
1,754
29.258621
75
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/ilists.imp/4.Repair/2.integradoBB.ClaudeSolucion2013/srcREPAIR/repairGonzalo.srcs/bal/records.c
/* Repair -- an implementation of Larsson and Moffat's compression and decompression algorithms. Copyright (C) 2010-current_year Gonzalo Navarro This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; eith...
3,306
26.789916
78
c