Files
Aaru.Compression.Native/ppmd/SubAllocatorVariantG.h
Natalia Portillo 0d2e05c419 Refactor PPMd Variant G Code for Consistency and Readability
- Adjusted indentation and spacing in SubAllocatorVariantG.h for improved readability.
- Reformatted function signatures in VariantG.c for consistent spacing.
- Enhanced clarity in variable declarations and assignments throughout VariantG.c.
- Updated comments and code structure in RestartModel and UpdateModel functions for better understanding.
- Ensured consistent formatting in VariantG.h, including spacing and alignment of struct members.
- Improved readability of the Decode functions by standardizing parameter spacing.
2026-04-17 01:27:45 +01:00

46 lines
1.4 KiB
C

/*
* SubAllocatorVariantG.h
*
* Copyright (c) 2017-present, MacPaw Inc. All rights reserved.
*
* 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 your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301 USA
*/
#ifndef __PPMD_SUB_ALLOCATOR_VARIANT_G_H__
#define __PPMD_SUB_ALLOCATOR_VARIANT_G_H__
#include "SubAllocator.h"
typedef struct PPMdSubAllocatorVariantG
{
PPMdSubAllocator core;
uint32_t SubAllocatorSize;
uint8_t Index2Units[38], Units2Index[128];
uint8_t *LowUnit, *HighUnit, *LastBreath;
struct PPMAllocatorNodeVariantG
{
struct PPMAllocatorNodeVariantG *next;
} FreeList[38];
uint8_t HeapStart[0];
} PPMdSubAllocatorVariantG;
PPMdSubAllocatorVariantG *CreateSubAllocatorVariantG(int size);
void FreeSubAllocatorVariantG(PPMdSubAllocatorVariantG *self);
#endif