the-algorithm/ann/src/main/java/com/twitter/ann/faiss/swig/AlignedTableUint8.java

99 lines
2.9 KiB
Java

/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
* Version 4.0.2
*
* Do not make changes to this file unless you know what you are doing--modify
* the SWIG interface file instead.
* ----------------------------------------------------------------------------- */
package com.twitter.ann.faiss;
public class AlignedTableUint8 {
private transient long swigCPtr;
protected transient boolean swigCMemOwn;
protected AlignedTableUint8(long cPtr, boolean cMemoryOwn) {
swigCMemOwn = cMemoryOwn;
swigCPtr = cPtr;
}
protected static long getCPtr(AlignedTableUint8 obj) {
return (obj == null) ? 0 : obj.swigCPtr;
}
@SuppressWarnings("deprecation")
protected void finalize() {
delete();
}
public synchronized void delete() {
if (swigCPtr != 0) {
if (swigCMemOwn) {
swigCMemOwn = false;
swigfaissJNI.delete_AlignedTableUint8(swigCPtr);
}
swigCPtr = 0;
}
}
public void setTab(SWIGTYPE_p_faiss__AlignedTableTightAllocT_unsigned_char_32_t value) {
swigfaissJNI.AlignedTableUint8_tab_set(swigCPtr, this, SWIGTYPE_p_faiss__AlignedTableTightAllocT_unsigned_char_32_t.getCPtr(value));
}
public SWIGTYPE_p_faiss__AlignedTableTightAllocT_unsigned_char_32_t getTab() {
long cPtr = swigfaissJNI.AlignedTableUint8_tab_get(swigCPtr, this);
return (cPtr == 0) ? null : new SWIGTYPE_p_faiss__AlignedTableTightAllocT_unsigned_char_32_t(cPtr, false);
}
public void setNumel(long value) {
swigfaissJNI.AlignedTableUint8_numel_set(swigCPtr, this, value);
}
public long getNumel() {
return swigfaissJNI.AlignedTableUint8_numel_get(swigCPtr, this);
}
public static long round_capacity(long n) {
return swigfaissJNI.AlignedTableUint8_round_capacity(n);
}
public AlignedTableUint8() {
this(swigfaissJNI.new_AlignedTableUint8__SWIG_0(), true);
}
public AlignedTableUint8(long n) {
this(swigfaissJNI.new_AlignedTableUint8__SWIG_1(n), true);
}
public long itemsize() {
return swigfaissJNI.AlignedTableUint8_itemsize(swigCPtr, this);
}
public void resize(long n) {
swigfaissJNI.AlignedTableUint8_resize(swigCPtr, this, n);
}
public void clear() {
swigfaissJNI.AlignedTableUint8_clear(swigCPtr, this);
}
public long size() {
return swigfaissJNI.AlignedTableUint8_size(swigCPtr, this);
}
public long nbytes() {
return swigfaissJNI.AlignedTableUint8_nbytes(swigCPtr, this);
}
public SWIGTYPE_p_unsigned_char get() {
long cPtr = swigfaissJNI.AlignedTableUint8_get__SWIG_0(swigCPtr, this);
return (cPtr == 0) ? null : new SWIGTYPE_p_unsigned_char(cPtr, false);
}
public SWIGTYPE_p_unsigned_char data() {
long cPtr = swigfaissJNI.AlignedTableUint8_data__SWIG_0(swigCPtr, this);
return (cPtr == 0) ? null : new SWIGTYPE_p_unsigned_char(cPtr, false);
}
}