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/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/static_bitsequence_builder_brw32.h
/* static_bitsequence_builder_brw32.h * Copyright (C) 2008, Francisco Claude, all rights reserved. * * static_bitsequence_builder_brw32 definition * * 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 Soft...
1,499
35.585366
77
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/lfs.h
/* * lfs.h for libdivsufsort * Copyright (c) 2003-2008 Yuta Mori All Rights Reserved. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without limitat...
1,689
28.649123
68
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/static_bitsequence_brw32.h
/* static_bitsequence_brw32.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 Fr...
2,716
33.392405
88
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/extractor77.h
#ifndef __EXTRACTOR77_H__ #define __EXTRACTOR77_H__ #include "extractor.h" class Extractor77: public Extractor{ public: Extractor77(char* filename, unsigned int sampling); ~Extractor77(); virtual unsigned char* extract(unsigned int start, unsigned int end); protected: void char...
577
33
131
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/LZend.nuevo.h
#ifndef __LZEND2_H__ #define __LZEND2_H__ #include "LZ77.h" #include "RMQ.h" #include "static_permutation.h" class LZEnd2: public LZparser{ public: LZEnd2(char* filename); virtual ~LZEnd2(); /* generates the LZ parsing of filename and returns the number of phrases * creates 3 diff...
1,490
32.886364
106
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/RMQ_succinct.h
#ifndef _RMQ_succinct_hpp_ #define _RMQ_succinct_hpp_ //#define MEM_COUNT #include <math.h> typedef int DT; // use long for 64bit-version (but take care of fast log!) typedef unsigned int DTidx; // for indexing in arrays #include <stdlib.h> #include <limits.h> #include <iostream> using namespace...
2,405
21.277778
90
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/utils.h
#ifndef __UTILS_H__ #define __UTILS_H__ void startTime(); unsigned long endTime(); unsigned long endTime2(); unsigned char* readText(char* filename,unsigned int* length); int saveText(unsigned char* text,int length,char* filename); unsigned int* invertSA(unsigned int* sa,int len); unsigned int* readArray(char* filenam...
796
40.947368
90
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/interfazTextCompressorDocs.h
/***************************************************************************/ /** Creates a compressed representation of a collection of text documents **/ /***************************************************************************/ /* Creates the [compressed] representation of a collection of text documents who...
2,194
40.415094
114
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/deltacodes.h
class DeltaCodes{ public: DeltaCodes(unsigned int* array, unsigned int n, unsigned int sampling); virtual ~DeltaCodes(); unsigned int select(unsigned int total); unsigned int rank(unsigned int pos); unsigned int access(unsigned int pos); unsigned int rank_select(unsig...
810
37.619048
88
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/perm.h
/* perm.h * Copyright (C) 2005, Diego Arroyuelo, all rights reserved. * * Permutation * * 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 Foundation; either * version 2.1 of the License, or (at...
2,191
23.629213
93
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/static_permutation_mrrr.h
/* static_permutation_mrrr.h * Copyright (C) 2008, Francisco Claude, all rights reserved. * * Permutation * * 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 Foundation; either * version 2.1 of...
1,826
34.134615
97
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/LZend (copia).h
#ifndef __LZend_H__ #define __LZend_H__ #include "LZ77.h" #include "RMQ.h" class LZend: public LZparser{ public: LZend(char* filename); virtual ~LZend(); /* generates the LZ parsing of filename and returns the number of phrases * creates 3 different files (arrays): * f...
1,080
29.027778
94
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/extractor.h
#ifndef __EXTRACTOR_H__ #define __EXTRACTOR_H__ //#include "basics.h" //#include "bitmap.h" #include "deltacodes.h" class Extractor{ public: Extractor(char* filename, unsigned int sampling);//sampling for deltacoding virtual ~Extractor(); virtual unsigned char* extract(unsigned int start, ...
836
26
83
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/static_bitsequence_builder.h
/* static_bitsequence_builder.h * Copyright (C) 2008, Francisco Claude, all rights reserved. * * static_bitsequence_builder definition * * 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 Foundat...
1,401
36.891892
79
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/basics.h
/* basics.h * Copyright (C) 2005, Rodrigo Gonzalez, all rights reserved. * * Some preliminary stuff * * 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 Foundation; either * version 2.1 of the L...
7,907
31.146341
97
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/static_bitsequence.h
/* static_bitsequence.h * Copyright (C) 2008, Francisco Claude, all rights reserved. * * static_bitsequence definition * * 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 Foundation; either * v...
2,716
27.6
90
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/interface.h
#ifdef __cplusplus extern "C" { #endif /* General interface for using the compressed index libraries */ #ifndef uchar #define uchar unsigned char #endif #ifndef uint #define uint unsigned int #endif #ifndef ulong #define ulong unsigned long #endif /* Error management */ /* Returns a string describing the er...
3,639
34.339806
79
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/divsufsort.h
/* * divsufsort.h for libdivsufsort * Copyright (c) 2003-2008 Yuta Mori All Rights Reserved. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without ...
5,442
29.071823
88
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/static_permutation.h
/* static_permutation.h * Copyright (C) 2008, Francisco Claude, all rights reserved. * * Permutation * * 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 Foundation; either * version 2.1 of the ...
1,599
31
77
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/LZparser.h
#ifndef __LZPARSER_H__ #define __LZPARSER_H__ #include <cstdio> class LZparser{ public: LZparser(char* filename); virtual ~LZparser(); /* generates the LZ parsing of filename and returns the number of phrases * creates 3 different files (arrays): * filename.start (4*le...
1,103
29.666667
103
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/LZ77_2.h
#ifndef __LZ77_2_H__ #define __LZ77_2_H__ #include "LZparser.h" #include "RMQ.h" class LZ77_2: public LZparser{ public: LZ77_2(char* filename); virtual ~LZ77_2(); /* generates the LZ parsing of filename and returns the number of phrases * creates 3 different files (arrays): ...
960
34.592593
107
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/LZend.h
#ifndef __LZend_H__ #define __LZend_H__ #include "LZ77.h" #include "RMQ.h" #include "static_permutation.h" class LZend: public LZparser{ public: LZend(char* filename); virtual ~LZend(); /* generates the LZ parsing of filename and returns the number of phrases * creates 3 different...
1,247
30.2
94
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/LZ77.h
#ifndef __LZ77_H__ #define __LZ77_H__ #include "LZparser.h" #include "RMQ.h" class LZ77: public LZparser{ public: LZ77(char* filename); virtual ~LZ77(); /* generates the LZ parsing of filename and returns the number of phrases * creates 3 different files (arrays): * fi...
950
34.222222
107
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/libdivsufsort-2.0.1/examples/mksary.c
/* * mksary.c for libdivsufsort * Copyright (c) 2003-2008 Yuta Mori All Rights Reserved. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without limi...
5,309
26.371134
83
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/libdivsufsort-2.0.1/examples/unbwt.c
/* * unbwt.c for libdivsufsort * Copyright (c) 2003-2008 Yuta Mori All Rights Reserved. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without limit...
5,667
26.25
79
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/libdivsufsort-2.0.1/examples/suftest.c
/* * suftest.c for libdivsufsort * Copyright (c) 2003-2008 Yuta Mori All Rights Reserved. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without lim...
4,506
26.315152
83
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/libdivsufsort-2.0.1/examples/sasearch.c
/* * sasearch.c for libdivsufsort * Copyright (c) 2003-2008 Yuta Mori All Rights Reserved. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without li...
4,424
25.656627
77
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/libdivsufsort-2.0.1/examples/bwt.c
/* * bwt.c for libdivsufsort * Copyright (c) 2003-2008 Yuta Mori All Rights Reserved. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without limitat...
6,248
27.276018
86
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/libdivsufsort-2.0.1/lib/utils.c
/* * utils.c for libdivsufsort * Copyright (c) 2003-2008 Yuta Mori All Rights Reserved. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without limit...
9,862
24.819372
83
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/libdivsufsort-2.0.1/lib/sssort.c
/* * sssort.c for libdivsufsort * Copyright (c) 2003-2008 Yuta Mori All Rights Reserved. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without limi...
24,117
28.556373
89
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/libdivsufsort-2.0.1/lib/trsort.c
/* * trsort.c for libdivsufsort * Copyright (c) 2003-2008 Yuta Mori All Rights Reserved. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without limi...
17,794
29.315162
88
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/libdivsufsort-2.0.1/lib/divsufsort.c
/* * divsufsort.c for libdivsufsort * Copyright (c) 2003-2008 Yuta Mori All Rights Reserved. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without ...
11,728
28.39599
83
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/libdivsufsort-2.0.1/include/config.h
/* include/config.h. Generated from config.h.in by configure. */ /* include/config.h.in. Generated from configure.ac by autoheader. */ /* Define to 1 if you have the <dlfcn.h> header file. */ #define HAVE_DLFCN_H 1 /* Define to 1 if you have the <fcntl.h> header file. */ #define HAVE_FCNTL_H 1 /* Define to 1 if ...
3,745
26.955224
78
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/libdivsufsort-2.0.1/include/lfs.h
/* * lfs.h for libdivsufsort * Copyright (c) 2003-2008 Yuta Mori All Rights Reserved. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without limitat...
1,689
28.649123
68
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/libdivsufsort-2.0.1/include/divsufsort.h
/* * divsufsort.h for libdivsufsort * Copyright (c) 2003-2008 Yuta Mori All Rights Reserved. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without ...
5,442
29.071823
88
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/libdivsufsort-2.0.1/include/divsufsort_private.h
/* * divsufsort_private.h for libdivsufsort * Copyright (c) 2003-2008 Yuta Mori All Rights Reserved. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including ...
5,672
26.274038
75
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/SAu.c
/* SAu.c Copyright (C) 2005, Rodrigo Gonzalez, all rights reserved. This file contains an implementation of Suffix Array in a uncompressed form. 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 S...
12,316
27.185355
130
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/helped.c
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> helped.c these routines sort a group of strings which have a common prefix using induced sorting (if possible) or a deep-sort routine >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */ #include <stdlib.h> #include <string.h...
21,838
38.137993
91
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/suftest2.c
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> suftest2.c Written by G. Manzini using the suftest.c code by N. Jesper Larsson (Copyright N. Jesper Larsson 1999) Program to test a suffix sorting function. Reads a sequence of bytes from a file and calls the deep/shallo...
14,557
29.266112
79
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/shallow.c
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> shallow.c This is the multikey quicksort from bentley-sedgewick modified so that it stops recursion when depth reaches Shallow_limit (that is when two or more suffixes have Shallow_limit chars in common). >>>>>>>>>>>>>>>>>>>>>>>>>>>>...
17,681
30.295575
80
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/blind2.c
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> string sorting routine based on a blind tree 26-jun-01 ver 1.0 03-jul-01 ver 1.1 (get rid of node header) >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */ #include <stdlib.h> #include <string.h> #include <stdio.h> #include "common.h" /* ========...
12,408
26.698661
78
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/lcp_aux.c
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> lcp_aux.c Ver 1.0 28-apr-2004 Functions for lightweight computation of the LCP array. Copyright (C) 2004 Giovanni Manzini (manzini@mfn.unipmn.it) This program is free software; you can redistribute it and/or modify it under the term...
9,930
33.96831
77
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/deep2.c
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> deep.c "deep" sorting routines >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */ #include <stdio.h> #include <stdlib.h> #include <limits.h> #include "common.h" /* ------ external global variables ------- */ extern UChar *Text; ...
6,736
26.72428
78
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/unbwt.c
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> unbwt.c Ver 1.0 6-oct-02 compute the inverse bwt. The input file must be in the following format: (bwt) N bytes + (eof position, LSB first) 4 bytes The procedure currently uses 5N bytes. Copyright (C) 2002 Giovanni Manzini ...
8,673
27.162338
79
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/ds.c
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ds.c deep-shallow sorting algorithm. these routines are taken mainly by Seward's d_copyEQ_u12.c Buckets are sorted one at a time; when bucket Y is completely sorted (except for YY) "pointer copying" is used to sort small buckets of ...
9,364
30.32107
81
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/testlcp.c
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> testlcp.c Ver 1.0 9-dec-03 Ver 1.1 28-apr-04 (uses bwt_aux) Ver 1.2 28-may-04 (uses lcp_aux) Test algorithms for computing the lcp array. Copyright (C) 2004 Giovanni Manzini (manzini@mfn.unipmn.it) This program is fr...
9,432
29.041401
79
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/bwt.c
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> bwt.c Ver 1.0 14-oct-02 compute the bwt using the ds_ssort routines The output file has the following format: (bwt) N bytes + (eof position, LSB first) 4 bytes Copyright (C) 2002 Giovanni Manzini (manzini@mfn.unipmn.it) This ...
7,068
29.339056
79
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/lcp_aux.h
// prototypes of the lcp construction procedures defined in // bwtlcp.a (source files lcp_aux.c lcp5_aux.c) // before including this file you must first include bwt_aux.h int *_lcp_sa2lcp_13n(uint8 *t, int n, int *sa); int *_lcp_sa2lcp_9125n(uint8 *t, int n, int *sa); int *_lcp_sa2lcp_9n(uint8 *t, int n, int *sa, int...
512
35.642857
62
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/common.h
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> global defintion for the ds suffix-sort algorithm Giovanni Manzini 2-apr 2001 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */ /* ----------- use assertion if DEBUG!=0 ------------- */ #ifndef DEBUG #define DEBUG 1 /* set DEBUG to 0 to remove ...
1,434
23.322034
76
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/globals.c
/* ******************************************************************* globals.c Ver 1.0 14-oct-02 This file contains the definition of the global variables which can be defined by the user + some relate procedures ******************************************************************* */ #include <stdio....
3,873
28.12782
80
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/bwt_aux.c
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> bwt_aux.c Ver 1.0 3-mar-2004 Functions for computing and transforming various representations of text and suffix array: t/sa/rank_next/rank_prev/bwt Copyright (C) 2002 Giovanni Manzini (manzini@mfn.unipmn.it) This program is free so...
9,373
26.014409
77
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/bwt_aux.h
#define _BW_ALPHA_SIZE 256 typedef unsigned char uchar; typedef unsigned char uint8; typedef int int32; // ---- struct containing the (uncompressed) bwt typedef struct { uchar *bwt; int size; int eof_pos; } bwt_data; // prototypes of bwt procedures defined in bwtlcp.a void _bw_sa2bwt(uchar *t, int32 n, int3...
912
31.607143
78
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/utils/hashWords.h
/*----------------------------------------------------------------------- Hash: Definition of HashTable class (Linear Hash) ------------------------------------------------------------------------*/ #ifndef HASHWORDSINCLUDED #define HASHWORDSINCLUDED #include <string.h> #include <stdlib.h> #include <math.h> #in...
2,564
29.903614
103
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/utils/parseparamsII.c
/***********************************************************************************/ /*** FUNCTIONS USED FOR PARSING PARAMETERS FROM COMMAND LINE ***********************/ /* Three function to variables to manage parameters */ static bool is_delimeter_II(char *delimiters, char c) { int i=0,len_delimiters=strlen(deli...
1,529
33.772727
107
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/utils/scdc.h
////////////////// Dense Codes //////////////// #ifndef byte #define byte unsigned char #endif #ifndef uint #define uint unsigned int #endif #ifndef ulong #define ulong unsigned long #endif #include "valstring.h" void initializeSC_baseTable (uint s); uint decodeETDC (byte *etdc, register uint pos, uint *num)...
1,029
28.428571
132
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/utils/mergeoccs2docs.c
#include "mergeoccs2docs.h" /** *****************************************************************************/ /** Translates absolute occs[] into docs[] positions. So union of occs in the same doc /** *****************************************************************************/ /* For each occ[i], finds its corr...
4,601
23.094241
107
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/utils/scdc.c
#include "scdc.h" ////////////////// Dense Codes //////////////// uint SS,CC; uint TABLABASE[5]; // = {0,128,16512,2113664,270549120}; void initializeSC_baseTable (uint s){ uint c = 256 - s; TABLABASE[0] = 0; TABLABASE[1] = s; TABLABASE[2] = TABLABASE[1] + s * c; TABLABASE[3] = TABLABASE[2] + s * c*c; TABLAB...
2,760
26.068627
131
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/utils/defValues.h
#ifndef DEFVALUES_INCLUDED #define DEFVALUES_INCLUDED #define MAX_SIZE_OF_WORD 32768 //255 //size of word //for queries #define MAX_INTEGER_PATTERN_SIZE 30 #define MAX_TEXT_PATTERN_SIZE 100 //maximum number of valid words in a searched pattern #define MAX_PATTERN_CODE_SIZE 100 * 20 //maximum number of bytes o...
1,060
24.878049
107
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/utils/mergeoccs2docs.h
#include <sys/types.h> #include <stdlib.h> #include <stdio.h> /* Translates occs-2-doc-ids */ /* occ(1+log(docs/occ) */ /* occ log(docs) o sino pagar occ(1+log(docs/occ)+log(occ))=occ log(docs) */ /** :: some public funcions in this module:: ------------------------------------ */ /** **************************...
2,634
46.053571
107
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/utils/basics_wi.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) #de...
2,682
22.743363
61
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/utils/errors.c
/*//////////////// //Error handling// ////////////////*/ char *error_index(int e){ static char err[100]; switch(e) { case 0: strcpy(err, "No error"); break; case 1: strcpy(err, "Out of memory"); break; case 2: strcpy(err, "The text must end with a \\0"); break; case 5: strcpy(err, "You can't free...
985
36.923077
80
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/utils/ii.h
/** **********************************************************************/ /** Saving/Loading the index to/from disk **/ /** **********************************************************************/ // * loads the source text into memory int loadTextInMem (byte **text, uint *size, cha...
3,299
40.25
108
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/utils/not needed/horspool.h
/* Searches using Horspool's algorithm adapted to search inside a text compressed with End-Tagged Dense Code. Lightweight Natural Language Text Compression: Information Retrieval 2006 Programmed by Antonio Fari�a. Author's contact: Antonio Fari�a, Databases Lab, University of A Coru�a. Campus de Elvi�a s/n. Spain ...
1,968
30.758065
93
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/utils/not needed/iisvsETDCBlock.c
/*************************************************************************************************/ int getPositions (void *index, uchar *pattern, ulong length, uint *ids, uint nids, uint **list, uint *len) { int retval; uint i; twcsa* wcsa = (twcsa *) index; //intersecting lists uint *candDocs; uint numcand...
5,708
25.188073
132
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/utils/not needed/horspool.c
#include "horspool.h" /*------------------------------------------------------------------ Initializes Horspool's d-vector (jumps for each letter) ------------------------------------------------------------------*/ void inicialize_d(byte *code, unsigned int len, byte *d) { unsigned int c,i,m_i,k; for (c=0;c...
2,031
25.38961
125
c
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/simdbitpacking.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. * * (c) Daniel Lemire */ #ifndef SIMDBITPACKING_H_ #define SIMDBITPACKING_H_ #include "common.h" void simdpack(const uint32_t * __restrict__ in,__m128i * __restrict__ out, uint32_t bit); void simdpackwithoutmask(c...
859
39.952381
118
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/stringutil.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. * * (c) Daniel Lemire, http://lemire.me/en/ */ #ifndef STRINGUTIL_H_ #define STRINGUTIL_H_ #include "common.h" #include "util.h" using namespace std; vector<string> split(const string& str, const string& del) {...
730
23.366667
62
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/bitpackingunaligned.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. * * (c) Daniel Lemire, http://lemire.me/en/ */ #ifndef BITPACKINGUNALIGNED #define BITPACKINGUNALIGNED #include "common.h" using namespace std; typedef uint8_t byte; const byte * fastunalignedunpack_8(const byte ...
1,273
52.083333
122
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/csv.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. * * (c) Daniel Lemire, http://lemire.me/en/ */ #ifndef CVSTOMAROPUCVS_H_ #define CVSTOMAROPUCVS_H_ #include "common.h" using namespace std; enum { INCREASINGCARDINALITY, DECREASINGCARDINALITY }; /** * Comma...
9,905
31.058252
87
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/compositecodec.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. * * (c) Daniel Lemire, http://lemire.me/en/ */ #ifndef COMPOSITECODEC_H_ #define COMPOSITECODEC_H_ #include "common.h" #include "util.h" #include "codecs.h" /** * This is a useful class for CODEC that only compre...
2,190
29.859155
78
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/synthetic.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. */ #ifndef SYNTHETICDATA_H_ #define SYNTHETICDATA_H_ #include "common.h" #include "util.h" #include "mersenne.h" #include "memutil.h" using namespace std; vector<uint32_t,cacheallocator> generateArray(uint32_t N, ...
5,724
27.914141
116
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/maropuparser.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. * * (c) Daniel Lemire, http://lemire.me/en/ */ #ifndef MAROPUPARSER_H_ #define MAROPUPARSER_H_ #include "common.h" using namespace std; /** * This is just a bit of code to parse the binary files provided by the...
2,128
23.755814
71
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/cpubenchmark.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. * * (c) Daniel Lemire, http://lemire.me/en/ */ #ifndef CPUBENCHMARK_H_ #define CPUBENCHMARK_H_ #include "common.h" #if defined( __corei7__ ) // __amd64__ is untested // start and stop are as recommended by // G...
2,975
27.615385
128
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/memutil.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. * * (c) Daniel Lemire, http://lemire.me/en/ */ #ifndef MEMUTIL_H_ #define MEMUTIL_H_ #include "common.h" template<class T, size_t alignment> T * moveToBoundary(T * inbyte) { return reinterpret_cast<T *> ((re...
3,407
28.128205
100
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/newpfor.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. * * (c) Daniel Lemire, http://lemire.me/en/ */ /* Based on code by * Takeshi Yamamuro <linguin.m.s_at_gmail.com> * Fabrizio Silvestri <fabrizio.silvestri_at_isti.cnr.it> * Rossano Venturini <ross...
9,410
29.654723
108
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/simdbinarypacking.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. * * (c) Daniel Lemire, http://lemire.me/en/ */ #ifndef SIMDBINARYPACKING_H_ #define SIMDBINARYPACKING_H_ #include "codecs.h" #include "simdbitpacking.h" #include "util.h" /** * * Designed by D. Lemire with ide...
6,113
36.975155
106
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/bitpacking.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. * * (c) Daniel Lemire, http://lemire.me/en/ */ #ifndef BITPACKING #define BITPACKING #include "common.h" void __fastunpack0(const uint32_t * __restrict__ in, uint32_t * __restrict__ out); void __fastunpack1(cons...
9,050
77.704348
95
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/bitpackingaligned.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. * * (c) Daniel Lemire, http://lemire.me/en/ */ #ifndef BITPACKINGALIGNED #define BITPACKINGALIGNED #include "common.h" using namespace std; const uint32_t * fastunpack_8(const uint32_t * __restrict__ in, ...
1,277
32.631579
67
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/externalvector.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. * * (c) Daniel Lemire, http://lemire.me/en/ */ #ifndef EXTERNALVECTOR_H_ #define EXTERNALVECTOR_H_ #include "common.h" using namespace std; template<class CMP> class BinaryFileBuffer { public: typedef uint32_t...
13,280
28.778027
85
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/deltautil.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. * * (c) Daniel Lemire, http://lemire.me/en/ */ #ifndef DELTAUTIL_H_ #define DELTAUTIL_H_ #include "common.h" #include "codecs.h" #include "memutil.h" #include "entropy.h" #include "ztimer.h" /** * This file is mad...
20,256
37.36553
134
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/simdfastpfor.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. * * (c) Daniel Lemire, http://lemire.me/en/ */ #ifndef SIMDFASTPFOR_H_ #define SIMDFASTPFOR_H_ #include "common.h" #include "codecs.h" #include "simdbitpacking.h" #include "memutil.h" #include "util.h" /** * SIM...
11,279
34.583596
104
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/entropy.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. * * (c) Daniel Lemire, http://lemire.me/en/ */ #ifndef ENTROPY_H_ #define ENTROPY_H_ #include "common.h" #include "util.h" using namespace std; class EntropyRecorder { public: EntropyRecorder() : co...
2,645
25.19802
128
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/pfor.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. * * (c) Daniel Lemire, http://lemire.me/en/ */ #ifndef PFOR_H_ #define PFOR_H_ #include "common.h" #include "codecs.h" #include "bitpacking.h" #include "util.h" using namespace std; /** * This implements as bes...
11,429
35.870968
127
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/blockpacking.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. * * (c) Daniel Lemire, http://lemire.me/en/ * and Owen Kaser */ #ifndef BLOCKPACKING_H_ #define BLOCKPACKING_H_ #include "codecs.h" #include "bitpackingunaligned.h" #include "bitpackingaligned.h" #include "util.h...
13,946
37.106557
97
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/simple9.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. */ /* Based on code by * Takeshi Yamamuro <linguin.m.s_at_gmail.com> * Fabrizio Silvestri <fabrizio.silvestri_at_isti.cnr.it> * Rossano Venturini <rossano.venturini_at_isti.cnr.it> * which was av...
17,164
31.144195
90
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/packingvectors.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. * * (c) Daniel Lemire, http://lemire.me/en/ */ #ifndef PACKINGVECTORS_H_ #define PACKINGVECTORS_H_ #include "common.h" #include "bitpacking.h" template <uint32_t PACKSIZE = 32> class packingvector { public: t...
1,953
27.735294
91
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/horizontalbitpacking.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. * * (c) Daniel Lemire */ /** * This is purely for technical comparisons. * * Implementation of * * Willhalm T, Popovici N, Boshmaf Y, Plattner H, Zeier A, Schaffner J. * SIMD-scan: ultra fast in-memory table ...
905
21.65
92
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/pfor2008.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. * * (c) Daniel Lemire, http://lemire.me/en/ */ #ifndef PFOR2008_H_ #define PFOR2008_H_ #include "common.h" #include "codecs.h" #include "bitpacking.h" #include "util.h" #include <iostream> using namespace std; /...
13,195
36.276836
107
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/fastpfor.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. * * (c) Daniel Lemire, http://lemire.me/en/ */ #ifndef EPFOR_H_ #define EPFOR_H_ #include "common.h" #include "codecs.h" #include "packingvectors.h" #include "cpubenchmark.h" #include "blockpacking.h" #include "sim...
15,872
34.117257
99
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/snappydelta.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. */ /** * Goal here is to use Google Snappy to compress deltas. * This is purely for comparison sake, not necessarily * because this is a good idea a priori. */ #ifdef USESNAPPY #ifndef SNAPPYDELTA_H_ #define SNAP...
1,544
28.150943
94
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/codecfactory.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. * * (c) Daniel Lemire, http://lemire.me/en/ */ #ifndef CODECFACTORY_H_ #define CODECFACTORY_H_ #include "common.h" #include "codecs.h" #include "vsencoding.h" #include "util.h" #include "simple16.h" #include "simp...
3,879
32.448276
100
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/codecs.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. * * (c) Daniel Lemire, http://lemire.me/en/ */ #ifndef CODECS_H_ #define CODECS_H_ #include "common.h" #include "util.h" #include "bitpackinghelpers.h" class NotEnoughStorage: public std::runtime_error { public:...
5,906
32
95
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/ztimer.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. */ #ifndef ZTIMER #define ZTIMER #include "common.h" // // VS2012 bug: high_precision_clock is defined as system_clock and precision is about 15 MS!! // See: https://connect.microsoft.com/VisualStudio/feedback/deta...
3,151
24.626016
127
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/rolledbitpacking.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. * * (c) Daniel Lemire, http://lemire.me/en/ and Owen Kaser */ #ifndef ROLLEDBITPACKING_H_ #define ROLLEDBITPACKING_H_ #include "common.h" /*** * The idea here is not to unroll the loops and to let the * compile...
24,947
24.535312
102
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/variablebyte.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. * * (c) Daniel Lemire, http://lemire.me/en/ */ #ifndef VARIABLEBYTE_H_ #define VARIABLEBYTE_H_ #include "common.h" #include "codecs.h" class VariableByte: public IntegerCODEC { public: template<uint32_t i> ...
3,691
31.104348
77
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/mersenne.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. */ #ifndef MERSENNE_H_ #define MERSENNE_H_ #include "common.h" #include "util.h" /** * Mersenne twister - random number generator. * Generate uniform distribution of 32 bit integers with the MT19937 algorithm. ...
2,301
22.02
80
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/FastPFor/headers/bitpackinghelpers.h
/* * bitpackinghelpers.h * * Created on: Jul 11, 2012 * Author: lemire */ #ifndef BITPACKINGHELPERS_H_ #define BITPACKINGHELPERS_H_ #include "bitpacking.h" inline void fastunpack(const uint32_t * __restrict__ in, uint32_t * __restrict__ out, const uint32_t bit) { // Could have used function pointer...
10,494
27.519022
119
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/integer_encoding_library/.utest/gtest-1.6.0/xcode/Samples/FrameworkSample/widget.h
// Copyright 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions ...
2,270
36.85
76
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/integer_encoding_library/.utest/gtest-1.6.0/test/gtest-param-test_test.h
// Copyright 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions ...
2,341
40.821429
74
h
uiHRDC
uiHRDC-master/uiHRDC/indexes/POS/EliasFano.OV14/partitioned_elias_fano/partitioned.EF.pos/integer_encoding_library/.utest/gtest-1.6.0/test/production.h
// Copyright 2006, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions ...
2,172
37.803571
73
h