All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lwjgl.util.zstd.ZSTDAllocFunction Maven / Gradle / Ivy

Go to download

A fast lossless compression algorithm, targeting real-time compression scenarios at zlib-level and better compression ratios.

The newest version!
/*
 * Copyright LWJGL. All rights reserved.
 * License terms: https://www.lwjgl.org/license
 * MACHINE GENERATED FILE, DO NOT EDIT
 */
package org.lwjgl.util.zstd;

import org.jspecify.annotations.*;

import org.lwjgl.system.*;

import static org.lwjgl.system.MemoryUtil.*;

/**
 * Instances of this class may be passed to the {@link ZSTDCustomMem} struct.
 * 
 * 

Type

* *

 * void * (*{@link #invoke}) (
 *     void *opaque,
 *     size_t size
 * )
*/ public abstract class ZSTDAllocFunction extends Callback implements ZSTDAllocFunctionI { /** * Creates a {@code ZSTDAllocFunction} instance from the specified function pointer. * * @return the new {@code ZSTDAllocFunction} */ public static ZSTDAllocFunction create(long functionPointer) { ZSTDAllocFunctionI instance = Callback.get(functionPointer); return instance instanceof ZSTDAllocFunction ? (ZSTDAllocFunction)instance : new Container(functionPointer, instance); } /** Like {@link #create(long) create}, but returns {@code null} if {@code functionPointer} is {@code NULL}. */ public static @Nullable ZSTDAllocFunction createSafe(long functionPointer) { return functionPointer == NULL ? null : create(functionPointer); } /** Creates a {@code ZSTDAllocFunction} instance that delegates to the specified {@code ZSTDAllocFunctionI} instance. */ public static ZSTDAllocFunction create(ZSTDAllocFunctionI instance) { return instance instanceof ZSTDAllocFunction ? (ZSTDAllocFunction)instance : new Container(instance.address(), instance); } protected ZSTDAllocFunction() { super(CIF); } ZSTDAllocFunction(long functionPointer) { super(functionPointer); } private static final class Container extends ZSTDAllocFunction { private final ZSTDAllocFunctionI delegate; Container(long functionPointer, ZSTDAllocFunctionI delegate) { super(functionPointer); this.delegate = delegate; } @Override public long invoke(long opaque, long size) { return delegate.invoke(opaque, size); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy