Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_util_BitUtil_H
#define org_apache_lucene_util_BitUtil_H
#include "java/lang/Object.h"
namespace java {
namespace lang {
class Class;
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace util {
class BitUtil : public ::java::lang::Object {
public:
enum {
mid_deinterleave_287a2baadd48f056,
mid_flipFlop_287a2baadd48f056,
mid_interleave_1ea1f929b3ba7bf8,
mid_nextHighestPowerOfTwo_287a2baadd48f056,
mid_nextHighestPowerOfTwo_898568c95ed890a7,
mid_pop_andnot_a8d6bf65beaea065,
mid_pop_array_ae41022685e0eef0,
mid_pop_intersect_a8d6bf65beaea065,
mid_pop_union_a8d6bf65beaea065,
mid_pop_xor_a8d6bf65beaea065,
mid_zigZagDecode_898568c95ed890a7,
mid_zigZagDecode_287a2baadd48f056,
mid_zigZagEncode_287a2baadd48f056,
mid_zigZagEncode_898568c95ed890a7,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit BitUtil(jobject obj) : ::java::lang::Object(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
BitUtil(const BitUtil& obj) : ::java::lang::Object(obj) {}
static jlong deinterleave(jlong);
static jlong flipFlop(jlong);
static jlong interleave(jint, jint);
static jlong nextHighestPowerOfTwo(jlong);
static jint nextHighestPowerOfTwo(jint);
static jlong pop_andnot(const JArray< jlong > &, const JArray< jlong > &, jint, jint);
static jlong pop_array(const JArray< jlong > &, jint, jint);
static jlong pop_intersect(const JArray< jlong > &, const JArray< jlong > &, jint, jint);
static jlong pop_union(const JArray< jlong > &, const JArray< jlong > &, jint, jint);
static jlong pop_xor(const JArray< jlong > &, const JArray< jlong > &, jint, jint);
static jint zigZagDecode(jint);
static jlong zigZagDecode(jlong);
static jlong zigZagEncode(jlong);
static jint zigZagEncode(jint);
};
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace util {
extern PyType_Def PY_TYPE_DEF(BitUtil);
extern PyTypeObject *PY_TYPE(BitUtil);
class t_BitUtil {
public:
PyObject_HEAD
BitUtil object;
static PyObject *wrap_Object(const BitUtil&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
#endif