feat(profile): update 3.3.5a profile

This commit is contained in:
phaneron 2024-11-27 01:59:15 -05:00
parent 9053d61b6b
commit e1bab2b375
186 changed files with 1204 additions and 43942 deletions

View file

@ -0,0 +1,27 @@
#ifndef STORM_BIG_H
#define STORM_BIG_H
DECLARE_STRUCT(BigData);
DECLARE_STRUCT(BigBuffer);
DECLARE_STRUCT(BigStack);
#include "storm/array/uint8_t.h"
#include "storm/array/uint32_t.h"
struct BigBuffer {
TSGrowableArray_uint32_t m_data;
uint32_t m_offset;
};
struct BigStack {
BigBuffer m_buffer[16];
uint32_t m_used;
};
struct BigData {
BigBuffer m_primary;
BigStack m_stack;
TSGrowableArray_uint8_t m_output;
};
#endif