1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-04 04:50:22 +00:00

Merge branch 'QB64-Phoenix-Edition:main' into miniaudio-upgrade

This commit is contained in:
Samuel Gomes 2023-12-27 23:59:26 +05:30 committed by GitHub
commit 4fc7fa3fd4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
572 changed files with 128935 additions and 126699 deletions

View file

@ -177,6 +177,7 @@ endif
DEP_SOCKETS := y
DEP_HTTP := y
DEP_CONSOLE := y
DEP_ZLIB := y
endif
include $(PATH_INTERNAL_C)/libqb/build.mk
@ -364,6 +365,10 @@ ifneq ($(filter y,$(DEP_DATA)),)
EXE_OBJS += $(PATH_INTERNAL_TEMP)/data.o
endif
ifneq ($(filter y,$(DEP_EMBED)),)
EXE_OBJS += $(PATH_INTERNAL_TEMP)/embedded.o
endif
QBLIB := $(PATH_INTERNAL_C)/$(QBLIB_NAME).o
@ -390,6 +395,9 @@ endif
$(PATH_INTERNAL_TEMP)/data.o: $(PATH_INTERNAL_TEMP)/data.bin
$(OBJCOPY) -Ibinary $(OBJCOPY_FLAGS) $< $@
$(PATH_INTERNAL_TEMP)/embedded.o: $(PATH_INTERNAL_TEMP)/embedded.cpp
$(CXX) $(CXXFLAGS) $< -c -o $@
# Clean all files out of ./internal/temp except for temp.bin
CLEAN_LIST += $(wildcard $(PATH_INTERNAL_TEMP)/*)
CLEAN_LIST := $(filter-out $(PATH_INTERNAL_TEMP)/temp.bin,$(CLEAN_LIST))

View file

@ -129,6 +129,7 @@ These flags controls whether certain dependencies are compiled in or not. All of
| `DEP_DEVICEINPUT` | Enables game controller input support. |
| `DEP_ZLIB` | Adds `_DEFLATE` and `_INFLATE` support. |
| `DEP_DATA` | Compiles in data produced via `DATA` statements. |
| `DEP_EMBED` | Compiles in data embedded via `$EMBED` statements. |
| `DEP_CONSOLE` | On Windows, this gives the program console support (graphical support is still allowed) |
| `DEP_CONSOLE_ONLY` | Same as `DEP_CONSOLE`, but also removes GLUT and graphics support. |
| `DEP_AUDIO_MINIAUDIO` | Pulls in sound support using miniaudio for playing sounds via `PLAY`, `_SNDPLAY`, and various other functions that makes sounds. |

View file

@ -69,5 +69,6 @@ extern int32 no_control_characters2;
extern qbs *qbs_lcase(qbs *str);
extern qbs *qbs_ucase(qbs *str);
extern int32 qbs_equal(qbs *str1, qbs *str2);
#endif

View file

@ -112,6 +112,8 @@ extern void sub__filedrop(int32 on_off = NULL);
extern int32 func__totaldroppedfiles();
extern qbs *func__droppedfile(int32 fileIndex, int32 passed);
extern qbs *func__embedded(qbs *handle);
extern void sub__glrender(int32 method);
extern void sub__displayorder(int32 method1, int32 method2, int32 method3,
int32 method4);

View file

@ -970,6 +970,28 @@ __STRING_LASTWARNINGHEADER->len=0;
__STRING_QB64PREFIX->len=0;
*__LONG_QB64PREFIX_SET=0;
*__BYTE_VERSIONINFOSET=0;
if (__ARRAY_STRING_EMBEDFILELIST[2]&1){
if (__ARRAY_STRING_EMBEDFILELIST[2]&2){
tmp_long=__ARRAY_STRING_EMBEDFILELIST[5]*__ARRAY_STRING_EMBEDFILELIST[9];
while(tmp_long--){
((qbs*)(((uint64*)(__ARRAY_STRING_EMBEDFILELIST[0]))[tmp_long]))->len=0;
}
}else{
tmp_long=__ARRAY_STRING_EMBEDFILELIST[5]*__ARRAY_STRING_EMBEDFILELIST[9];
while(tmp_long--){
qbs_free((qbs*)(((uint64*)(__ARRAY_STRING_EMBEDFILELIST[0]))[tmp_long]));
}
free((void*)(__ARRAY_STRING_EMBEDFILELIST[0]));
__ARRAY_STRING_EMBEDFILELIST[2]^=1;
__ARRAY_STRING_EMBEDFILELIST[4]=2147483647;
__ARRAY_STRING_EMBEDFILELIST[5]=0;
__ARRAY_STRING_EMBEDFILELIST[6]=0;
__ARRAY_STRING_EMBEDFILELIST[8]=2147483647;
__ARRAY_STRING_EMBEDFILELIST[9]=0;
__ARRAY_STRING_EMBEDFILELIST[10]=0;
__ARRAY_STRING_EMBEDFILELIST[0]=(ptrszint)&nothingstring;
}
}
__STRING_VIFILEVERSIONNUM->len=0;
__STRING_VIPRODUCTVERSIONNUM->len=0;
__STRING_VICOMPANYNAME->len=0;
@ -2797,6 +2819,13 @@ __STRING_TEMPOP->len=0;
__STRING_VERSIONINFOKEY->len=0;
__STRING_VERSIONINFOVALUE->len=0;
*__LONG_VICOMMAS=0;
*__LONG_BRA=0;
*__LONG_KET=0;
__STRING_EMBEDFILE->len=0;
__STRING_EMBEDHANDLE->len=0;
__STRING_EMBEDPATH->len=0;
__STRING_EMBEDFILEONLY->len=0;
*__LONG_EFLUB=0;
__STRING_EXEICONFILE->len=0;
__STRING_ICONPATH->len=0;
__STRING_EXEICONFILEONLY->len=0;
@ -3021,6 +3050,7 @@ __STRING_T__ASCII_CHR_046__PATH__ASCII_CHR_046__EXE->len=0;
*__LONG_ERRNO=0;
*__LONG_MANIBUF=0;
*__LONG_ICONRCBUF=0;
*__LONG_EFLFF=0;
*__LONG_WIN=0;
*__LONG_LNX=0;
*__LONG_MAC=0;

View file

@ -1,4 +1,4 @@
g++ -no-pie -w -std=gnu++14 -DFREEGLUT_STATIC -I./internal/c/libqb/include -I./internal/c/parts/core/src/ -I./internal/c/parts/core/glew/include/ -DDEPENDENCY_SOCKETS -DDEPENDENCY_NO_PRINTER -DDEPENDENCY_ICON -DDEPENDENCY_NO_SCREENIMAGE internal/c/qbx.cpp -c -o internal/c/qbx.o
g++ -no-pie -w -std=gnu++14 -DFREEGLUT_STATIC -I./internal/c/libqb/include -I./internal/c/parts/core/src/ -I./internal/c/parts/core/glew/include/ -DDEPENDENCY_SOCKETS -DDEPENDENCY_NO_PRINTER -DDEPENDENCY_ICON -DDEPENDENCY_NO_SCREENIMAGE ./internal/c/libqb_make_000101000.o ./internal/c/qbx.o -o "/home/runner/work/QB64pe/QB64pe/qb64pe" ./internal/c/libqb/src/threading.o ./internal/c/libqb/src/buffer.o ./internal/c/libqb/src/filepath.o ./internal/c/libqb/src/datetime.o ./internal/c/libqb/src/rounding.o ./internal/c/libqb/src/http.o ./internal/c/libqb/src/threading-posix.o ./internal/c/libqb/src/glut-main-thread.o ./internal/c/libqb/src/glut-message.o ./internal/c/libqb/src/glut-msg-queue.o ./internal/c/parts/gui/tinyfiledialogs.o ./internal/c/parts/gui/gui.o ./internal/c/parts/video/font/freetypeamalgam.o ./internal/c/parts/video/font/font.o ./internal/c/parts/audio/stub_audio.o ./internal/c/parts/core/src.a -lGL -lGLU -lX11 -lpthread -ldl -lrt -lcurl
g++ -no-pie -w -std=gnu++14 -DFREEGLUT_STATIC -I./internal/c/libqb/include -I./internal/c/parts/core/src/ -I./internal/c/parts/core/glew/include/ -DDEPENDENCY_SOCKETS -DDEPENDENCY_NO_PRINTER -DDEPENDENCY_ICON -DDEPENDENCY_NO_SCREENIMAGE ./internal/c/libqb_make_000101000.o ./internal/c/qbx.o -o "/home/runner/work/QB64pe/QB64pe/qb64pe" ./internal/c/libqb/src/threading.o ./internal/c/libqb/src/buffer.o ./internal/c/libqb/src/filepath.o ./internal/c/libqb/src/datetime.o ./internal/c/libqb/src/rounding.o ./internal/c/libqb/src/http.o ./internal/c/libqb/src/threading-posix.o ./internal/c/libqb/src/glut-main-thread.o ./internal/c/libqb/src/glut-message.o ./internal/c/libqb/src/glut-msg-queue.o ./internal/c/parts/gui/tinyfiledialogs.o ./internal/c/parts/gui/gui.o ./internal/c/parts/video/font/freetypeamalgam.o ./internal/c/parts/video/font/font.o ./internal/c/parts/audio/stub_audio.o ./internal/c/parts/compression/miniz.o ./internal/c/parts/compression/compression.o ./internal/c/parts/core/src.a -lGL -lGLU -lX11 -lpthread -ldl -lrt -lcurl
objcopy --only-keep-debug "/home/runner/work/QB64pe/QB64pe/qb64pe" "./internal/temp/qb64pe.sym"
objcopy --strip-unneeded "/home/runner/work/QB64pe/QB64pe/qb64pe"

View file

@ -5,13 +5,13 @@ if(_FUNC_PARSECMDLINEARGS_LONG_I==NULL){
_FUNC_PARSECMDLINEARGS_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_PARSECMDLINEARGS_LONG_I=0;
}
int64 fornext_value2134;
int64 fornext_finalvalue2134;
int64 fornext_step2134;
uint8 fornext_step_negative2134;
int64 fornext_value2167;
int64 fornext_finalvalue2167;
int64 fornext_step2167;
uint8 fornext_step_negative2167;
qbs *_FUNC_PARSECMDLINEARGS_STRING_TOKEN=NULL;
if (!_FUNC_PARSECMDLINEARGS_STRING_TOKEN)_FUNC_PARSECMDLINEARGS_STRING_TOKEN=qbs_new(0,0);
static qbs *sc_2135=qbs_new(0,0);
static qbs *sc_2168=qbs_new(0,0);
int32 *_FUNC_PARSECMDLINEARGS_LONG_CMDLINESWITCH=NULL;
if(_FUNC_PARSECMDLINEARGS_LONG_CMDLINESWITCH==NULL){
_FUNC_PARSECMDLINEARGS_LONG_CMDLINESWITCH=(int32*)mem_static_malloc(4);
@ -22,16 +22,16 @@ if(_FUNC_PARSECMDLINEARGS_LONG_SETTINGSMODE==NULL){
_FUNC_PARSECMDLINEARGS_LONG_SETTINGSMODE=(int32*)mem_static_malloc(4);
*_FUNC_PARSECMDLINEARGS_LONG_SETTINGSMODE=0;
}
static qbs *sc_2162=qbs_new(0,0);
static qbs *sc_2195=qbs_new(0,0);
qbs *_FUNC_PARSECMDLINEARGS_STRING_DEBUGINFOINIWARNING=NULL;
if (!_FUNC_PARSECMDLINEARGS_STRING_DEBUGINFOINIWARNING)_FUNC_PARSECMDLINEARGS_STRING_DEBUGINFOINIWARNING=qbs_new(0,0);
int32 pass2178;
int32 pass2180;
int32 pass2186;
static qbs *sc_2187=qbs_new(0,0);
int32 pass2211;
int32 pass2213;
int32 pass2219;
static qbs *sc_2220=qbs_new(0,0);
qbs *_FUNC_PARSECMDLINEARGS_STRING_PASSEDFILENAME=NULL;
if (!_FUNC_PARSECMDLINEARGS_STRING_PASSEDFILENAME)_FUNC_PARSECMDLINEARGS_STRING_PASSEDFILENAME=qbs_new(0,0);
byte_element_struct *byte_element_2188=NULL;
if (!byte_element_2188){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2188=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2188=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_2221=NULL;
if (!byte_element_2221){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2221=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2221=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -1,22 +1,22 @@
qbs*oldstr2307=NULL;
qbs*oldstr2340=NULL;
if(_SUB_ASSIGN_STRING_A->tmp||_SUB_ASSIGN_STRING_A->fixed||_SUB_ASSIGN_STRING_A->readonly){
oldstr2307=_SUB_ASSIGN_STRING_A;
if (oldstr2307->cmem_descriptor){
_SUB_ASSIGN_STRING_A=qbs_new_cmem(oldstr2307->len,0);
oldstr2340=_SUB_ASSIGN_STRING_A;
if (oldstr2340->cmem_descriptor){
_SUB_ASSIGN_STRING_A=qbs_new_cmem(oldstr2340->len,0);
}else{
_SUB_ASSIGN_STRING_A=qbs_new(oldstr2307->len,0);
_SUB_ASSIGN_STRING_A=qbs_new(oldstr2340->len,0);
}
memcpy(_SUB_ASSIGN_STRING_A->chr,oldstr2307->chr,oldstr2307->len);
memcpy(_SUB_ASSIGN_STRING_A->chr,oldstr2340->chr,oldstr2340->len);
}
int32 *_SUB_ASSIGN_LONG_I=NULL;
if(_SUB_ASSIGN_LONG_I==NULL){
_SUB_ASSIGN_LONG_I=(int32*)mem_static_malloc(4);
*_SUB_ASSIGN_LONG_I=0;
}
int64 fornext_value2309;
int64 fornext_finalvalue2309;
int64 fornext_step2309;
uint8 fornext_step_negative2309;
int64 fornext_value2342;
int64 fornext_finalvalue2342;
int64 fornext_step2342;
uint8 fornext_step_negative2342;
int32 *_SUB_ASSIGN_LONG_C=NULL;
if(_SUB_ASSIGN_LONG_C==NULL){
_SUB_ASSIGN_LONG_C=(int32*)mem_static_malloc(4);
@ -29,8 +29,8 @@ _SUB_ASSIGN_LONG_B=(int32*)mem_static_malloc(4);
}
qbs *_SUB_ASSIGN_STRING_A2=NULL;
if (!_SUB_ASSIGN_STRING_A2)_SUB_ASSIGN_STRING_A2=qbs_new(0,0);
int32 pass2310;
int32 pass2311;
int32 pass2343;
int32 pass2344;
qbs *_SUB_ASSIGN_STRING_L=NULL;
if (!_SUB_ASSIGN_STRING_L)_SUB_ASSIGN_STRING_L=qbs_new(0,0);
int32 *_SUB_ASSIGN_LONG_TRY=NULL;
@ -43,5 +43,5 @@ if(_SUB_ASSIGN_LONG_TYP==NULL){
_SUB_ASSIGN_LONG_TYP=(int32*)mem_static_malloc(4);
*_SUB_ASSIGN_LONG_TYP=0;
}
int32 pass2313;
int32 pass2314;
int32 pass2346;
int32 pass2347;

View file

@ -1,32 +1,32 @@
qbs*oldstr3702=NULL;
qbs*oldstr3743=NULL;
if(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N->tmp||_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N->fixed||_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N->readonly){
oldstr3702=_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N;
if (oldstr3702->cmem_descriptor){
_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N=qbs_new_cmem(oldstr3702->len,0);
oldstr3743=_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N;
if (oldstr3743->cmem_descriptor){
_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N=qbs_new_cmem(oldstr3743->len,0);
}else{
_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N=qbs_new(oldstr3702->len,0);
_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N=qbs_new(oldstr3743->len,0);
}
memcpy(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N->chr,oldstr3702->chr,oldstr3702->len);
memcpy(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_N->chr,oldstr3743->chr,oldstr3743->len);
}
qbs*oldstr3703=NULL;
qbs*oldstr3744=NULL;
if(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT->tmp||_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT->fixed||_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT->readonly){
oldstr3703=_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT;
if (oldstr3703->cmem_descriptor){
_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT=qbs_new_cmem(oldstr3703->len,0);
oldstr3744=_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT;
if (oldstr3744->cmem_descriptor){
_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT=qbs_new_cmem(oldstr3744->len,0);
}else{
_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT=qbs_new(oldstr3703->len,0);
_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT=qbs_new(oldstr3744->len,0);
}
memcpy(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT->chr,oldstr3703->chr,oldstr3703->len);
memcpy(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT->chr,oldstr3744->chr,oldstr3744->len);
}
qbs*oldstr3704=NULL;
qbs*oldstr3745=NULL;
if(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC->tmp||_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC->fixed||_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC->readonly){
oldstr3704=_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC;
if (oldstr3704->cmem_descriptor){
_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC=qbs_new_cmem(oldstr3704->len,0);
oldstr3745=_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC;
if (oldstr3745->cmem_descriptor){
_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC=qbs_new_cmem(oldstr3745->len,0);
}else{
_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC=qbs_new(oldstr3704->len,0);
_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC=qbs_new(oldstr3745->len,0);
}
memcpy(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC->chr,oldstr3704->chr,oldstr3704->len);
memcpy(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_STRING_ACC->chr,oldstr3745->chr,oldstr3745->len);
}
int32 *_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_LONG_OFFSET=NULL;
if(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_LONG_OFFSET==NULL){
@ -38,4 +38,4 @@ if(_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_LONG_ELEMENT==NULL){
_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_LONG_ELEMENT=(int32*)mem_static_malloc(4);
*_SUB_INITIALISE_ARRAY_UDT_VARSTRINGS_LONG_ELEMENT=0;
}
int32 pass3706;
int32 pass3747;

View file

@ -1,32 +1,32 @@
qbs*oldstr3707=NULL;
qbs*oldstr3748=NULL;
if(_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N->tmp||_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N->fixed||_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N->readonly){
oldstr3707=_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N;
if (oldstr3707->cmem_descriptor){
_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N=qbs_new_cmem(oldstr3707->len,0);
oldstr3748=_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N;
if (oldstr3748->cmem_descriptor){
_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N=qbs_new_cmem(oldstr3748->len,0);
}else{
_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N=qbs_new(oldstr3707->len,0);
_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N=qbs_new(oldstr3748->len,0);
}
memcpy(_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N->chr,oldstr3707->chr,oldstr3707->len);
memcpy(_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_N->chr,oldstr3748->chr,oldstr3748->len);
}
qbs*oldstr3708=NULL;
qbs*oldstr3749=NULL;
if(_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT->tmp||_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT->fixed||_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT->readonly){
oldstr3708=_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT;
if (oldstr3708->cmem_descriptor){
_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT=qbs_new_cmem(oldstr3708->len,0);
oldstr3749=_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT;
if (oldstr3749->cmem_descriptor){
_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT=qbs_new_cmem(oldstr3749->len,0);
}else{
_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT=qbs_new(oldstr3708->len,0);
_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT=qbs_new(oldstr3749->len,0);
}
memcpy(_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT->chr,oldstr3708->chr,oldstr3708->len);
memcpy(_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_BYTESPERELEMENT->chr,oldstr3749->chr,oldstr3749->len);
}
qbs*oldstr3709=NULL;
qbs*oldstr3750=NULL;
if(_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC->tmp||_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC->fixed||_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC->readonly){
oldstr3709=_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC;
if (oldstr3709->cmem_descriptor){
_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC=qbs_new_cmem(oldstr3709->len,0);
oldstr3750=_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC;
if (oldstr3750->cmem_descriptor){
_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC=qbs_new_cmem(oldstr3750->len,0);
}else{
_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC=qbs_new(oldstr3709->len,0);
_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC=qbs_new(oldstr3750->len,0);
}
memcpy(_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC->chr,oldstr3709->chr,oldstr3709->len);
memcpy(_SUB_FREE_ARRAY_UDT_VARSTRINGS_STRING_ACC->chr,oldstr3750->chr,oldstr3750->len);
}
int32 *_SUB_FREE_ARRAY_UDT_VARSTRINGS_LONG_OFFSET=NULL;
if(_SUB_FREE_ARRAY_UDT_VARSTRINGS_LONG_OFFSET==NULL){
@ -38,4 +38,4 @@ if(_SUB_FREE_ARRAY_UDT_VARSTRINGS_LONG_ELEMENT==NULL){
_SUB_FREE_ARRAY_UDT_VARSTRINGS_LONG_ELEMENT=(int32*)mem_static_malloc(4);
*_SUB_FREE_ARRAY_UDT_VARSTRINGS_LONG_ELEMENT=0;
}
int32 pass3711;
int32 pass3752;

View file

@ -1,24 +1,24 @@
qbs*oldstr3712=NULL;
qbs*oldstr3753=NULL;
if(_SUB_COPY_FULL_UDT_STRING_DST->tmp||_SUB_COPY_FULL_UDT_STRING_DST->fixed||_SUB_COPY_FULL_UDT_STRING_DST->readonly){
oldstr3712=_SUB_COPY_FULL_UDT_STRING_DST;
if (oldstr3712->cmem_descriptor){
_SUB_COPY_FULL_UDT_STRING_DST=qbs_new_cmem(oldstr3712->len,0);
oldstr3753=_SUB_COPY_FULL_UDT_STRING_DST;
if (oldstr3753->cmem_descriptor){
_SUB_COPY_FULL_UDT_STRING_DST=qbs_new_cmem(oldstr3753->len,0);
}else{
_SUB_COPY_FULL_UDT_STRING_DST=qbs_new(oldstr3712->len,0);
_SUB_COPY_FULL_UDT_STRING_DST=qbs_new(oldstr3753->len,0);
}
memcpy(_SUB_COPY_FULL_UDT_STRING_DST->chr,oldstr3712->chr,oldstr3712->len);
memcpy(_SUB_COPY_FULL_UDT_STRING_DST->chr,oldstr3753->chr,oldstr3753->len);
}
qbs*oldstr3713=NULL;
qbs*oldstr3754=NULL;
if(_SUB_COPY_FULL_UDT_STRING_SRC->tmp||_SUB_COPY_FULL_UDT_STRING_SRC->fixed||_SUB_COPY_FULL_UDT_STRING_SRC->readonly){
oldstr3713=_SUB_COPY_FULL_UDT_STRING_SRC;
if (oldstr3713->cmem_descriptor){
_SUB_COPY_FULL_UDT_STRING_SRC=qbs_new_cmem(oldstr3713->len,0);
oldstr3754=_SUB_COPY_FULL_UDT_STRING_SRC;
if (oldstr3754->cmem_descriptor){
_SUB_COPY_FULL_UDT_STRING_SRC=qbs_new_cmem(oldstr3754->len,0);
}else{
_SUB_COPY_FULL_UDT_STRING_SRC=qbs_new(oldstr3713->len,0);
_SUB_COPY_FULL_UDT_STRING_SRC=qbs_new(oldstr3754->len,0);
}
memcpy(_SUB_COPY_FULL_UDT_STRING_SRC->chr,oldstr3713->chr,oldstr3713->len);
memcpy(_SUB_COPY_FULL_UDT_STRING_SRC->chr,oldstr3754->chr,oldstr3754->len);
}
int16 pass3714;
int16 pass3755;
int32 *_SUB_COPY_FULL_UDT_LONG_OFFSET=NULL;
if(_SUB_COPY_FULL_UDT_LONG_OFFSET==NULL){
_SUB_COPY_FULL_UDT_LONG_OFFSET=(int32*)mem_static_malloc(4);
@ -29,6 +29,6 @@ if(_SUB_COPY_FULL_UDT_LONG_ELEMENT==NULL){
_SUB_COPY_FULL_UDT_LONG_ELEMENT=(int32*)mem_static_malloc(4);
*_SUB_COPY_FULL_UDT_LONG_ELEMENT=0;
}
int16 pass3716;
int32 pass3717;
int16 pass3718;
int16 pass3757;
int32 pass3758;
int16 pass3759;

View file

@ -8,11 +8,11 @@ if(_SUB_DUMP_UDTS_LONG_I==NULL){
_SUB_DUMP_UDTS_LONG_I=(int32*)mem_static_malloc(4);
*_SUB_DUMP_UDTS_LONG_I=0;
}
int64 fornext_value3721;
int64 fornext_finalvalue3721;
int64 fornext_step3721;
uint8 fornext_step_negative3721;
int64 fornext_value3725;
int64 fornext_finalvalue3725;
int64 fornext_step3725;
uint8 fornext_step_negative3725;
int64 fornext_value3762;
int64 fornext_finalvalue3762;
int64 fornext_step3762;
uint8 fornext_step_negative3762;
int64 fornext_value3766;
int64 fornext_finalvalue3766;
int64 fornext_step3766;
uint8 fornext_step_negative3766;

View file

@ -1,22 +1,22 @@
qbs*oldstr3727=NULL;
qbs*oldstr3768=NULL;
if(_SUB_MANAGEVARIABLELIST_STRING___NAME->tmp||_SUB_MANAGEVARIABLELIST_STRING___NAME->fixed||_SUB_MANAGEVARIABLELIST_STRING___NAME->readonly){
oldstr3727=_SUB_MANAGEVARIABLELIST_STRING___NAME;
if (oldstr3727->cmem_descriptor){
_SUB_MANAGEVARIABLELIST_STRING___NAME=qbs_new_cmem(oldstr3727->len,0);
oldstr3768=_SUB_MANAGEVARIABLELIST_STRING___NAME;
if (oldstr3768->cmem_descriptor){
_SUB_MANAGEVARIABLELIST_STRING___NAME=qbs_new_cmem(oldstr3768->len,0);
}else{
_SUB_MANAGEVARIABLELIST_STRING___NAME=qbs_new(oldstr3727->len,0);
_SUB_MANAGEVARIABLELIST_STRING___NAME=qbs_new(oldstr3768->len,0);
}
memcpy(_SUB_MANAGEVARIABLELIST_STRING___NAME->chr,oldstr3727->chr,oldstr3727->len);
memcpy(_SUB_MANAGEVARIABLELIST_STRING___NAME->chr,oldstr3768->chr,oldstr3768->len);
}
qbs*oldstr3728=NULL;
qbs*oldstr3769=NULL;
if(_SUB_MANAGEVARIABLELIST_STRING___CNAME->tmp||_SUB_MANAGEVARIABLELIST_STRING___CNAME->fixed||_SUB_MANAGEVARIABLELIST_STRING___CNAME->readonly){
oldstr3728=_SUB_MANAGEVARIABLELIST_STRING___CNAME;
if (oldstr3728->cmem_descriptor){
_SUB_MANAGEVARIABLELIST_STRING___CNAME=qbs_new_cmem(oldstr3728->len,0);
oldstr3769=_SUB_MANAGEVARIABLELIST_STRING___CNAME;
if (oldstr3769->cmem_descriptor){
_SUB_MANAGEVARIABLELIST_STRING___CNAME=qbs_new_cmem(oldstr3769->len,0);
}else{
_SUB_MANAGEVARIABLELIST_STRING___CNAME=qbs_new(oldstr3728->len,0);
_SUB_MANAGEVARIABLELIST_STRING___CNAME=qbs_new(oldstr3769->len,0);
}
memcpy(_SUB_MANAGEVARIABLELIST_STRING___CNAME->chr,oldstr3728->chr,oldstr3728->len);
memcpy(_SUB_MANAGEVARIABLELIST_STRING___CNAME->chr,oldstr3769->chr,oldstr3769->len);
}
int32 *_SUB_MANAGEVARIABLELIST_LONG_FINDITEM=NULL;
if(_SUB_MANAGEVARIABLELIST_LONG_FINDITEM==NULL){
@ -39,43 +39,43 @@ qbs *_SUB_MANAGEVARIABLELIST_STRING_NAME=NULL;
if (!_SUB_MANAGEVARIABLELIST_STRING_NAME)_SUB_MANAGEVARIABLELIST_STRING_NAME=qbs_new(0,0);
qbs *_SUB_MANAGEVARIABLELIST_STRING_TEMP=NULL;
if (!_SUB_MANAGEVARIABLELIST_STRING_TEMP)_SUB_MANAGEVARIABLELIST_STRING_TEMP=qbs_new(0,0);
byte_element_struct *byte_element_3729=NULL;
if (!byte_element_3729){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3729=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3729=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_3770=NULL;
if (!byte_element_3770){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3770=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3770=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_SUB_MANAGEVARIABLELIST_LONG_FOUND=NULL;
if(_SUB_MANAGEVARIABLELIST_LONG_FOUND==NULL){
_SUB_MANAGEVARIABLELIST_LONG_FOUND=(int32*)mem_static_malloc(4);
*_SUB_MANAGEVARIABLELIST_LONG_FOUND=0;
}
int64 fornext_value3731;
int64 fornext_finalvalue3731;
int64 fornext_step3731;
uint8 fornext_step_negative3731;
int64 fornext_value3772;
int64 fornext_finalvalue3772;
int64 fornext_step3772;
uint8 fornext_step_negative3772;
qbs *_SUB_MANAGEVARIABLELIST_STRING_THISINCNAME=NULL;
if (!_SUB_MANAGEVARIABLELIST_STRING_THISINCNAME)_SUB_MANAGEVARIABLELIST_STRING_THISINCNAME=qbs_new(0,0);
byte_element_struct *byte_element_3733=NULL;
if (!byte_element_3733){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3733=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3733=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_3774=NULL;
if (!byte_element_3774){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3774=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3774=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_SUB_MANAGEVARIABLELIST_LONG_X=NULL;
if(_SUB_MANAGEVARIABLELIST_LONG_X==NULL){
_SUB_MANAGEVARIABLELIST_LONG_X=(int32*)mem_static_malloc(4);
*_SUB_MANAGEVARIABLELIST_LONG_X=0;
}
byte_element_struct *byte_element_3735=NULL;
if (!byte_element_3735){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3735=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3735=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_3776=NULL;
if (!byte_element_3776){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3776=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3776=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3736=NULL;
if (!byte_element_3736){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3736=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3736=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_3777=NULL;
if (!byte_element_3777){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3777=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3777=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3737=NULL;
if (!byte_element_3737){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3737=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3737=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_3778=NULL;
if (!byte_element_3778){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3778=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3778=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3738=NULL;
if (!byte_element_3738){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3738=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3738=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_3779=NULL;
if (!byte_element_3779){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3779=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3779=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -1,50 +1,50 @@
qbs*oldstr3739=NULL;
qbs*oldstr3780=NULL;
if(_SUB_ADDWARNING_STRING_INCFILENAME->tmp||_SUB_ADDWARNING_STRING_INCFILENAME->fixed||_SUB_ADDWARNING_STRING_INCFILENAME->readonly){
oldstr3739=_SUB_ADDWARNING_STRING_INCFILENAME;
if (oldstr3739->cmem_descriptor){
_SUB_ADDWARNING_STRING_INCFILENAME=qbs_new_cmem(oldstr3739->len,0);
oldstr3780=_SUB_ADDWARNING_STRING_INCFILENAME;
if (oldstr3780->cmem_descriptor){
_SUB_ADDWARNING_STRING_INCFILENAME=qbs_new_cmem(oldstr3780->len,0);
}else{
_SUB_ADDWARNING_STRING_INCFILENAME=qbs_new(oldstr3739->len,0);
_SUB_ADDWARNING_STRING_INCFILENAME=qbs_new(oldstr3780->len,0);
}
memcpy(_SUB_ADDWARNING_STRING_INCFILENAME->chr,oldstr3739->chr,oldstr3739->len);
memcpy(_SUB_ADDWARNING_STRING_INCFILENAME->chr,oldstr3780->chr,oldstr3780->len);
}
qbs*oldstr3740=NULL;
qbs*oldstr3781=NULL;
if(_SUB_ADDWARNING_STRING_HEADER->tmp||_SUB_ADDWARNING_STRING_HEADER->fixed||_SUB_ADDWARNING_STRING_HEADER->readonly){
oldstr3740=_SUB_ADDWARNING_STRING_HEADER;
if (oldstr3740->cmem_descriptor){
_SUB_ADDWARNING_STRING_HEADER=qbs_new_cmem(oldstr3740->len,0);
oldstr3781=_SUB_ADDWARNING_STRING_HEADER;
if (oldstr3781->cmem_descriptor){
_SUB_ADDWARNING_STRING_HEADER=qbs_new_cmem(oldstr3781->len,0);
}else{
_SUB_ADDWARNING_STRING_HEADER=qbs_new(oldstr3740->len,0);
_SUB_ADDWARNING_STRING_HEADER=qbs_new(oldstr3781->len,0);
}
memcpy(_SUB_ADDWARNING_STRING_HEADER->chr,oldstr3740->chr,oldstr3740->len);
memcpy(_SUB_ADDWARNING_STRING_HEADER->chr,oldstr3781->chr,oldstr3781->len);
}
qbs*oldstr3741=NULL;
qbs*oldstr3782=NULL;
if(_SUB_ADDWARNING_STRING_TEXT->tmp||_SUB_ADDWARNING_STRING_TEXT->fixed||_SUB_ADDWARNING_STRING_TEXT->readonly){
oldstr3741=_SUB_ADDWARNING_STRING_TEXT;
if (oldstr3741->cmem_descriptor){
_SUB_ADDWARNING_STRING_TEXT=qbs_new_cmem(oldstr3741->len,0);
oldstr3782=_SUB_ADDWARNING_STRING_TEXT;
if (oldstr3782->cmem_descriptor){
_SUB_ADDWARNING_STRING_TEXT=qbs_new_cmem(oldstr3782->len,0);
}else{
_SUB_ADDWARNING_STRING_TEXT=qbs_new(oldstr3741->len,0);
_SUB_ADDWARNING_STRING_TEXT=qbs_new(oldstr3782->len,0);
}
memcpy(_SUB_ADDWARNING_STRING_TEXT->chr,oldstr3741->chr,oldstr3741->len);
memcpy(_SUB_ADDWARNING_STRING_TEXT->chr,oldstr3782->chr,oldstr3782->len);
}
qbs *_SUB_ADDWARNING_STRING_THISSOURCE=NULL;
if (!_SUB_ADDWARNING_STRING_THISSOURCE)_SUB_ADDWARNING_STRING_THISSOURCE=qbs_new(0,0);
byte_element_struct *byte_element_3742=NULL;
if (!byte_element_3742){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3742=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3742=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_3783=NULL;
if (!byte_element_3783){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3783=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3783=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_SUB_ADDWARNING_STRING_THISINCNAME=NULL;
if (!_SUB_ADDWARNING_STRING_THISINCNAME)_SUB_ADDWARNING_STRING_THISINCNAME=qbs_new(0,0);
byte_element_struct *byte_element_3743=NULL;
if (!byte_element_3743){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3743=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3743=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_3784=NULL;
if (!byte_element_3784){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3784=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3784=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3750=NULL;
if (!byte_element_3750){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3750=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3750=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_3791=NULL;
if (!byte_element_3791){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3791=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3791=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3752=NULL;
if (!byte_element_3752){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3752=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3752=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_3793=NULL;
if (!byte_element_3793){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3793=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3793=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -1,12 +1,12 @@
qbs *_FUNC_SCASE_STRING_SCASE=NULL;
if (!_FUNC_SCASE_STRING_SCASE)_FUNC_SCASE_STRING_SCASE=qbs_new(0,0);
qbs*oldstr3753=NULL;
qbs*oldstr3794=NULL;
if(_FUNC_SCASE_STRING_T->tmp||_FUNC_SCASE_STRING_T->fixed||_FUNC_SCASE_STRING_T->readonly){
oldstr3753=_FUNC_SCASE_STRING_T;
if (oldstr3753->cmem_descriptor){
_FUNC_SCASE_STRING_T=qbs_new_cmem(oldstr3753->len,0);
oldstr3794=_FUNC_SCASE_STRING_T;
if (oldstr3794->cmem_descriptor){
_FUNC_SCASE_STRING_T=qbs_new_cmem(oldstr3794->len,0);
}else{
_FUNC_SCASE_STRING_T=qbs_new(oldstr3753->len,0);
_FUNC_SCASE_STRING_T=qbs_new(oldstr3794->len,0);
}
memcpy(_FUNC_SCASE_STRING_T->chr,oldstr3753->chr,oldstr3753->len);
memcpy(_FUNC_SCASE_STRING_T->chr,oldstr3794->chr,oldstr3794->len);
}

View file

@ -1,14 +1,14 @@
qbs *_FUNC_SCASE2_STRING_SCASE2=NULL;
if (!_FUNC_SCASE2_STRING_SCASE2)_FUNC_SCASE2_STRING_SCASE2=qbs_new(0,0);
qbs*oldstr3754=NULL;
qbs*oldstr3795=NULL;
if(_FUNC_SCASE2_STRING_T->tmp||_FUNC_SCASE2_STRING_T->fixed||_FUNC_SCASE2_STRING_T->readonly){
oldstr3754=_FUNC_SCASE2_STRING_T;
if (oldstr3754->cmem_descriptor){
_FUNC_SCASE2_STRING_T=qbs_new_cmem(oldstr3754->len,0);
oldstr3795=_FUNC_SCASE2_STRING_T;
if (oldstr3795->cmem_descriptor){
_FUNC_SCASE2_STRING_T=qbs_new_cmem(oldstr3795->len,0);
}else{
_FUNC_SCASE2_STRING_T=qbs_new(oldstr3754->len,0);
_FUNC_SCASE2_STRING_T=qbs_new(oldstr3795->len,0);
}
memcpy(_FUNC_SCASE2_STRING_T->chr,oldstr3754->chr,oldstr3754->len);
memcpy(_FUNC_SCASE2_STRING_T->chr,oldstr3795->chr,oldstr3795->len);
}
qbs *_FUNC_SCASE2_STRING_SEPARATOR=NULL;
if (!_FUNC_SCASE2_STRING_SEPARATOR)_FUNC_SCASE2_STRING_SEPARATOR=qbs_new(0,0);
@ -24,13 +24,13 @@ if(_FUNC_SCASE2_LONG_I==NULL){
_FUNC_SCASE2_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_SCASE2_LONG_I=0;
}
int64 fornext_value3756;
int64 fornext_finalvalue3756;
int64 fornext_step3756;
uint8 fornext_step_negative3756;
byte_element_struct *byte_element_3757=NULL;
if (!byte_element_3757){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3757=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3757=(byte_element_struct*)mem_static_malloc(12);
int64 fornext_value3797;
int64 fornext_finalvalue3797;
int64 fornext_step3797;
uint8 fornext_step_negative3797;
byte_element_struct *byte_element_3798=NULL;
if (!byte_element_3798){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3798=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3798=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_SCASE2_STRING_S=NULL;
if (!_FUNC_SCASE2_STRING_S)_FUNC_SCASE2_STRING_S=qbs_new(0,0);

View file

@ -3,37 +3,37 @@ if(_FUNC_COMPAREVERSIONS_LONG_COMPAREVERSIONS==NULL){
_FUNC_COMPAREVERSIONS_LONG_COMPAREVERSIONS=(int32*)mem_static_malloc(4);
*_FUNC_COMPAREVERSIONS_LONG_COMPAREVERSIONS=0;
}
qbs*oldstr3758=NULL;
qbs*oldstr3799=NULL;
if(_FUNC_COMPAREVERSIONS_STRING_V->tmp||_FUNC_COMPAREVERSIONS_STRING_V->fixed||_FUNC_COMPAREVERSIONS_STRING_V->readonly){
oldstr3758=_FUNC_COMPAREVERSIONS_STRING_V;
if (oldstr3758->cmem_descriptor){
_FUNC_COMPAREVERSIONS_STRING_V=qbs_new_cmem(oldstr3758->len,0);
oldstr3799=_FUNC_COMPAREVERSIONS_STRING_V;
if (oldstr3799->cmem_descriptor){
_FUNC_COMPAREVERSIONS_STRING_V=qbs_new_cmem(oldstr3799->len,0);
}else{
_FUNC_COMPAREVERSIONS_STRING_V=qbs_new(oldstr3758->len,0);
_FUNC_COMPAREVERSIONS_STRING_V=qbs_new(oldstr3799->len,0);
}
memcpy(_FUNC_COMPAREVERSIONS_STRING_V->chr,oldstr3758->chr,oldstr3758->len);
memcpy(_FUNC_COMPAREVERSIONS_STRING_V->chr,oldstr3799->chr,oldstr3799->len);
}
qbs*oldstr3759=NULL;
qbs*oldstr3800=NULL;
if(_FUNC_COMPAREVERSIONS_STRING_V1->tmp||_FUNC_COMPAREVERSIONS_STRING_V1->fixed||_FUNC_COMPAREVERSIONS_STRING_V1->readonly){
oldstr3759=_FUNC_COMPAREVERSIONS_STRING_V1;
if (oldstr3759->cmem_descriptor){
_FUNC_COMPAREVERSIONS_STRING_V1=qbs_new_cmem(oldstr3759->len,0);
oldstr3800=_FUNC_COMPAREVERSIONS_STRING_V1;
if (oldstr3800->cmem_descriptor){
_FUNC_COMPAREVERSIONS_STRING_V1=qbs_new_cmem(oldstr3800->len,0);
}else{
_FUNC_COMPAREVERSIONS_STRING_V1=qbs_new(oldstr3759->len,0);
_FUNC_COMPAREVERSIONS_STRING_V1=qbs_new(oldstr3800->len,0);
}
memcpy(_FUNC_COMPAREVERSIONS_STRING_V1->chr,oldstr3759->chr,oldstr3759->len);
memcpy(_FUNC_COMPAREVERSIONS_STRING_V1->chr,oldstr3800->chr,oldstr3800->len);
}
qbs *_FUNC_COMPAREVERSIONS_STRING_T=NULL;
if (!_FUNC_COMPAREVERSIONS_STRING_T)_FUNC_COMPAREVERSIONS_STRING_T=qbs_new(0,0);
qbs *_FUNC_COMPAREVERSIONS_STRING_T1=NULL;
if (!_FUNC_COMPAREVERSIONS_STRING_T1)_FUNC_COMPAREVERSIONS_STRING_T1=qbs_new(0,0);
byte_element_struct *byte_element_3760=NULL;
if (!byte_element_3760){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3760=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3760=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_3801=NULL;
if (!byte_element_3801){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3801=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3801=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3761=NULL;
if (!byte_element_3761){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3761=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3761=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_3802=NULL;
if (!byte_element_3802){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3802=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3802=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_COMPAREVERSIONS_LONG_L=NULL;
if(_FUNC_COMPAREVERSIONS_LONG_L==NULL){

View file

@ -1,24 +1,24 @@
qbs *_FUNC_STRREMOVE_STRING_STRREMOVE=NULL;
if (!_FUNC_STRREMOVE_STRING_STRREMOVE)_FUNC_STRREMOVE_STRING_STRREMOVE=qbs_new(0,0);
qbs*oldstr3763=NULL;
qbs*oldstr3804=NULL;
if(_FUNC_STRREMOVE_STRING_MYSTRING->tmp||_FUNC_STRREMOVE_STRING_MYSTRING->fixed||_FUNC_STRREMOVE_STRING_MYSTRING->readonly){
oldstr3763=_FUNC_STRREMOVE_STRING_MYSTRING;
if (oldstr3763->cmem_descriptor){
_FUNC_STRREMOVE_STRING_MYSTRING=qbs_new_cmem(oldstr3763->len,0);
oldstr3804=_FUNC_STRREMOVE_STRING_MYSTRING;
if (oldstr3804->cmem_descriptor){
_FUNC_STRREMOVE_STRING_MYSTRING=qbs_new_cmem(oldstr3804->len,0);
}else{
_FUNC_STRREMOVE_STRING_MYSTRING=qbs_new(oldstr3763->len,0);
_FUNC_STRREMOVE_STRING_MYSTRING=qbs_new(oldstr3804->len,0);
}
memcpy(_FUNC_STRREMOVE_STRING_MYSTRING->chr,oldstr3763->chr,oldstr3763->len);
memcpy(_FUNC_STRREMOVE_STRING_MYSTRING->chr,oldstr3804->chr,oldstr3804->len);
}
qbs*oldstr3764=NULL;
qbs*oldstr3805=NULL;
if(_FUNC_STRREMOVE_STRING_WHATTOREMOVE->tmp||_FUNC_STRREMOVE_STRING_WHATTOREMOVE->fixed||_FUNC_STRREMOVE_STRING_WHATTOREMOVE->readonly){
oldstr3764=_FUNC_STRREMOVE_STRING_WHATTOREMOVE;
if (oldstr3764->cmem_descriptor){
_FUNC_STRREMOVE_STRING_WHATTOREMOVE=qbs_new_cmem(oldstr3764->len,0);
oldstr3805=_FUNC_STRREMOVE_STRING_WHATTOREMOVE;
if (oldstr3805->cmem_descriptor){
_FUNC_STRREMOVE_STRING_WHATTOREMOVE=qbs_new_cmem(oldstr3805->len,0);
}else{
_FUNC_STRREMOVE_STRING_WHATTOREMOVE=qbs_new(oldstr3764->len,0);
_FUNC_STRREMOVE_STRING_WHATTOREMOVE=qbs_new(oldstr3805->len,0);
}
memcpy(_FUNC_STRREMOVE_STRING_WHATTOREMOVE->chr,oldstr3764->chr,oldstr3764->len);
memcpy(_FUNC_STRREMOVE_STRING_WHATTOREMOVE->chr,oldstr3805->chr,oldstr3805->len);
}
qbs *_FUNC_STRREMOVE_STRING_A=NULL;
if (!_FUNC_STRREMOVE_STRING_A)_FUNC_STRREMOVE_STRING_A=qbs_new(0,0);
@ -29,11 +29,11 @@ if(_FUNC_STRREMOVE_LONG_I==NULL){
_FUNC_STRREMOVE_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_STRREMOVE_LONG_I=0;
}
byte_element_struct *byte_element_3766=NULL;
if (!byte_element_3766){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3766=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3766=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_3807=NULL;
if (!byte_element_3807){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3807=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3807=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3767=NULL;
if (!byte_element_3767){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3767=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3767=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_3808=NULL;
if (!byte_element_3808){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3808=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3808=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -1,34 +1,34 @@
qbs *_FUNC_STRREPLACE_STRING_STRREPLACE=NULL;
if (!_FUNC_STRREPLACE_STRING_STRREPLACE)_FUNC_STRREPLACE_STRING_STRREPLACE=qbs_new(0,0);
qbs*oldstr3768=NULL;
qbs*oldstr3809=NULL;
if(_FUNC_STRREPLACE_STRING_MYSTRING->tmp||_FUNC_STRREPLACE_STRING_MYSTRING->fixed||_FUNC_STRREPLACE_STRING_MYSTRING->readonly){
oldstr3768=_FUNC_STRREPLACE_STRING_MYSTRING;
if (oldstr3768->cmem_descriptor){
_FUNC_STRREPLACE_STRING_MYSTRING=qbs_new_cmem(oldstr3768->len,0);
oldstr3809=_FUNC_STRREPLACE_STRING_MYSTRING;
if (oldstr3809->cmem_descriptor){
_FUNC_STRREPLACE_STRING_MYSTRING=qbs_new_cmem(oldstr3809->len,0);
}else{
_FUNC_STRREPLACE_STRING_MYSTRING=qbs_new(oldstr3768->len,0);
_FUNC_STRREPLACE_STRING_MYSTRING=qbs_new(oldstr3809->len,0);
}
memcpy(_FUNC_STRREPLACE_STRING_MYSTRING->chr,oldstr3768->chr,oldstr3768->len);
memcpy(_FUNC_STRREPLACE_STRING_MYSTRING->chr,oldstr3809->chr,oldstr3809->len);
}
qbs*oldstr3769=NULL;
qbs*oldstr3810=NULL;
if(_FUNC_STRREPLACE_STRING_FIND->tmp||_FUNC_STRREPLACE_STRING_FIND->fixed||_FUNC_STRREPLACE_STRING_FIND->readonly){
oldstr3769=_FUNC_STRREPLACE_STRING_FIND;
if (oldstr3769->cmem_descriptor){
_FUNC_STRREPLACE_STRING_FIND=qbs_new_cmem(oldstr3769->len,0);
oldstr3810=_FUNC_STRREPLACE_STRING_FIND;
if (oldstr3810->cmem_descriptor){
_FUNC_STRREPLACE_STRING_FIND=qbs_new_cmem(oldstr3810->len,0);
}else{
_FUNC_STRREPLACE_STRING_FIND=qbs_new(oldstr3769->len,0);
_FUNC_STRREPLACE_STRING_FIND=qbs_new(oldstr3810->len,0);
}
memcpy(_FUNC_STRREPLACE_STRING_FIND->chr,oldstr3769->chr,oldstr3769->len);
memcpy(_FUNC_STRREPLACE_STRING_FIND->chr,oldstr3810->chr,oldstr3810->len);
}
qbs*oldstr3770=NULL;
qbs*oldstr3811=NULL;
if(_FUNC_STRREPLACE_STRING_REPLACEWITH->tmp||_FUNC_STRREPLACE_STRING_REPLACEWITH->fixed||_FUNC_STRREPLACE_STRING_REPLACEWITH->readonly){
oldstr3770=_FUNC_STRREPLACE_STRING_REPLACEWITH;
if (oldstr3770->cmem_descriptor){
_FUNC_STRREPLACE_STRING_REPLACEWITH=qbs_new_cmem(oldstr3770->len,0);
oldstr3811=_FUNC_STRREPLACE_STRING_REPLACEWITH;
if (oldstr3811->cmem_descriptor){
_FUNC_STRREPLACE_STRING_REPLACEWITH=qbs_new_cmem(oldstr3811->len,0);
}else{
_FUNC_STRREPLACE_STRING_REPLACEWITH=qbs_new(oldstr3770->len,0);
_FUNC_STRREPLACE_STRING_REPLACEWITH=qbs_new(oldstr3811->len,0);
}
memcpy(_FUNC_STRREPLACE_STRING_REPLACEWITH->chr,oldstr3770->chr,oldstr3770->len);
memcpy(_FUNC_STRREPLACE_STRING_REPLACEWITH->chr,oldstr3811->chr,oldstr3811->len);
}
qbs *_FUNC_STRREPLACE_STRING_A=NULL;
if (!_FUNC_STRREPLACE_STRING_A)_FUNC_STRREPLACE_STRING_A=qbs_new(0,0);
@ -44,19 +44,19 @@ if(_FUNC_STRREPLACE_LONG_I==NULL){
_FUNC_STRREPLACE_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_STRREPLACE_LONG_I=0;
}
byte_element_struct *byte_element_3771=NULL;
if (!byte_element_3771){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3771=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3771=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_3812=NULL;
if (!byte_element_3812){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3812=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3812=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3773=NULL;
if (!byte_element_3773){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3773=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3773=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_3814=NULL;
if (!byte_element_3814){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3814=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3814=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3774=NULL;
if (!byte_element_3774){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3774=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3774=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_3815=NULL;
if (!byte_element_3815){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3815=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3815=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3775=NULL;
if (!byte_element_3775){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3775=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3775=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_3816=NULL;
if (!byte_element_3816){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3816=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3816=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -3,35 +3,35 @@ if(_FUNC_HASSTRINGENCLOSINGPAIR_BYTE_HASSTRINGENCLOSINGPAIR==NULL){
_FUNC_HASSTRINGENCLOSINGPAIR_BYTE_HASSTRINGENCLOSINGPAIR=(int8*)mem_static_malloc(1);
*_FUNC_HASSTRINGENCLOSINGPAIR_BYTE_HASSTRINGENCLOSINGPAIR=0;
}
qbs*oldstr3776=NULL;
qbs*oldstr3817=NULL;
if(_FUNC_HASSTRINGENCLOSINGPAIR_STRING_TEXT->tmp||_FUNC_HASSTRINGENCLOSINGPAIR_STRING_TEXT->fixed||_FUNC_HASSTRINGENCLOSINGPAIR_STRING_TEXT->readonly){
oldstr3776=_FUNC_HASSTRINGENCLOSINGPAIR_STRING_TEXT;
if (oldstr3776->cmem_descriptor){
_FUNC_HASSTRINGENCLOSINGPAIR_STRING_TEXT=qbs_new_cmem(oldstr3776->len,0);
oldstr3817=_FUNC_HASSTRINGENCLOSINGPAIR_STRING_TEXT;
if (oldstr3817->cmem_descriptor){
_FUNC_HASSTRINGENCLOSINGPAIR_STRING_TEXT=qbs_new_cmem(oldstr3817->len,0);
}else{
_FUNC_HASSTRINGENCLOSINGPAIR_STRING_TEXT=qbs_new(oldstr3776->len,0);
_FUNC_HASSTRINGENCLOSINGPAIR_STRING_TEXT=qbs_new(oldstr3817->len,0);
}
memcpy(_FUNC_HASSTRINGENCLOSINGPAIR_STRING_TEXT->chr,oldstr3776->chr,oldstr3776->len);
memcpy(_FUNC_HASSTRINGENCLOSINGPAIR_STRING_TEXT->chr,oldstr3817->chr,oldstr3817->len);
}
qbs*oldstr3777=NULL;
qbs*oldstr3818=NULL;
if(_FUNC_HASSTRINGENCLOSINGPAIR_STRING_PAIR->tmp||_FUNC_HASSTRINGENCLOSINGPAIR_STRING_PAIR->fixed||_FUNC_HASSTRINGENCLOSINGPAIR_STRING_PAIR->readonly){
oldstr3777=_FUNC_HASSTRINGENCLOSINGPAIR_STRING_PAIR;
if (oldstr3777->cmem_descriptor){
_FUNC_HASSTRINGENCLOSINGPAIR_STRING_PAIR=qbs_new_cmem(oldstr3777->len,0);
oldstr3818=_FUNC_HASSTRINGENCLOSINGPAIR_STRING_PAIR;
if (oldstr3818->cmem_descriptor){
_FUNC_HASSTRINGENCLOSINGPAIR_STRING_PAIR=qbs_new_cmem(oldstr3818->len,0);
}else{
_FUNC_HASSTRINGENCLOSINGPAIR_STRING_PAIR=qbs_new(oldstr3777->len,0);
_FUNC_HASSTRINGENCLOSINGPAIR_STRING_PAIR=qbs_new(oldstr3818->len,0);
}
memcpy(_FUNC_HASSTRINGENCLOSINGPAIR_STRING_PAIR->chr,oldstr3777->chr,oldstr3777->len);
memcpy(_FUNC_HASSTRINGENCLOSINGPAIR_STRING_PAIR->chr,oldstr3818->chr,oldstr3818->len);
}
byte_element_struct *byte_element_3778=NULL;
if (!byte_element_3778){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3778=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3778=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_3819=NULL;
if (!byte_element_3819){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3819=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3819=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3779=NULL;
if (!byte_element_3779){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3779=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3779=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_3820=NULL;
if (!byte_element_3820){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3820=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3820=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3780=NULL;
if (!byte_element_3780){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3780=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3780=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_3821=NULL;
if (!byte_element_3821){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3821=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3821=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -1,26 +1,26 @@
qbs *_FUNC_REMOVESTRINGENCLOSINGPAIR_STRING_REMOVESTRINGENCLOSINGPAIR=NULL;
if (!_FUNC_REMOVESTRINGENCLOSINGPAIR_STRING_REMOVESTRINGENCLOSINGPAIR)_FUNC_REMOVESTRINGENCLOSINGPAIR_STRING_REMOVESTRINGENCLOSINGPAIR=qbs_new(0,0);
qbs*oldstr3781=NULL;
qbs*oldstr3822=NULL;
if(_FUNC_REMOVESTRINGENCLOSINGPAIR_STRING_TEXT->tmp||_FUNC_REMOVESTRINGENCLOSINGPAIR_STRING_TEXT->fixed||_FUNC_REMOVESTRINGENCLOSINGPAIR_STRING_TEXT->readonly){
oldstr3781=_FUNC_REMOVESTRINGENCLOSINGPAIR_STRING_TEXT;
if (oldstr3781->cmem_descriptor){
_FUNC_REMOVESTRINGENCLOSINGPAIR_STRING_TEXT=qbs_new_cmem(oldstr3781->len,0);
oldstr3822=_FUNC_REMOVESTRINGENCLOSINGPAIR_STRING_TEXT;
if (oldstr3822->cmem_descriptor){
_FUNC_REMOVESTRINGENCLOSINGPAIR_STRING_TEXT=qbs_new_cmem(oldstr3822->len,0);
}else{
_FUNC_REMOVESTRINGENCLOSINGPAIR_STRING_TEXT=qbs_new(oldstr3781->len,0);
_FUNC_REMOVESTRINGENCLOSINGPAIR_STRING_TEXT=qbs_new(oldstr3822->len,0);
}
memcpy(_FUNC_REMOVESTRINGENCLOSINGPAIR_STRING_TEXT->chr,oldstr3781->chr,oldstr3781->len);
memcpy(_FUNC_REMOVESTRINGENCLOSINGPAIR_STRING_TEXT->chr,oldstr3822->chr,oldstr3822->len);
}
qbs*oldstr3782=NULL;
qbs*oldstr3823=NULL;
if(_FUNC_REMOVESTRINGENCLOSINGPAIR_STRING_PAIR->tmp||_FUNC_REMOVESTRINGENCLOSINGPAIR_STRING_PAIR->fixed||_FUNC_REMOVESTRINGENCLOSINGPAIR_STRING_PAIR->readonly){
oldstr3782=_FUNC_REMOVESTRINGENCLOSINGPAIR_STRING_PAIR;
if (oldstr3782->cmem_descriptor){
_FUNC_REMOVESTRINGENCLOSINGPAIR_STRING_PAIR=qbs_new_cmem(oldstr3782->len,0);
oldstr3823=_FUNC_REMOVESTRINGENCLOSINGPAIR_STRING_PAIR;
if (oldstr3823->cmem_descriptor){
_FUNC_REMOVESTRINGENCLOSINGPAIR_STRING_PAIR=qbs_new_cmem(oldstr3823->len,0);
}else{
_FUNC_REMOVESTRINGENCLOSINGPAIR_STRING_PAIR=qbs_new(oldstr3782->len,0);
_FUNC_REMOVESTRINGENCLOSINGPAIR_STRING_PAIR=qbs_new(oldstr3823->len,0);
}
memcpy(_FUNC_REMOVESTRINGENCLOSINGPAIR_STRING_PAIR->chr,oldstr3782->chr,oldstr3782->len);
memcpy(_FUNC_REMOVESTRINGENCLOSINGPAIR_STRING_PAIR->chr,oldstr3823->chr,oldstr3823->len);
}
byte_element_struct *byte_element_3783=NULL;
if (!byte_element_3783){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3783=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3783=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_3824=NULL;
if (!byte_element_3824){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3824=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3824=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -1,12 +1,12 @@
qbs *_FUNC_ADDQUOTES_STRING_ADDQUOTES=NULL;
if (!_FUNC_ADDQUOTES_STRING_ADDQUOTES)_FUNC_ADDQUOTES_STRING_ADDQUOTES=qbs_new(0,0);
qbs*oldstr3784=NULL;
qbs*oldstr3825=NULL;
if(_FUNC_ADDQUOTES_STRING_S->tmp||_FUNC_ADDQUOTES_STRING_S->fixed||_FUNC_ADDQUOTES_STRING_S->readonly){
oldstr3784=_FUNC_ADDQUOTES_STRING_S;
if (oldstr3784->cmem_descriptor){
_FUNC_ADDQUOTES_STRING_S=qbs_new_cmem(oldstr3784->len,0);
oldstr3825=_FUNC_ADDQUOTES_STRING_S;
if (oldstr3825->cmem_descriptor){
_FUNC_ADDQUOTES_STRING_S=qbs_new_cmem(oldstr3825->len,0);
}else{
_FUNC_ADDQUOTES_STRING_S=qbs_new(oldstr3784->len,0);
_FUNC_ADDQUOTES_STRING_S=qbs_new(oldstr3825->len,0);
}
memcpy(_FUNC_ADDQUOTES_STRING_S->chr,oldstr3784->chr,oldstr3784->len);
memcpy(_FUNC_ADDQUOTES_STRING_S->chr,oldstr3825->chr,oldstr3825->len);
}

View file

@ -3,15 +3,15 @@ if(_FUNC_TFSTRINGTOBOOL_INTEGER_TFSTRINGTOBOOL==NULL){
_FUNC_TFSTRINGTOBOOL_INTEGER_TFSTRINGTOBOOL=(int16*)mem_static_malloc(2);
*_FUNC_TFSTRINGTOBOOL_INTEGER_TFSTRINGTOBOOL=0;
}
qbs*oldstr3785=NULL;
qbs*oldstr3826=NULL;
if(_FUNC_TFSTRINGTOBOOL_STRING_S->tmp||_FUNC_TFSTRINGTOBOOL_STRING_S->fixed||_FUNC_TFSTRINGTOBOOL_STRING_S->readonly){
oldstr3785=_FUNC_TFSTRINGTOBOOL_STRING_S;
if (oldstr3785->cmem_descriptor){
_FUNC_TFSTRINGTOBOOL_STRING_S=qbs_new_cmem(oldstr3785->len,0);
oldstr3826=_FUNC_TFSTRINGTOBOOL_STRING_S;
if (oldstr3826->cmem_descriptor){
_FUNC_TFSTRINGTOBOOL_STRING_S=qbs_new_cmem(oldstr3826->len,0);
}else{
_FUNC_TFSTRINGTOBOOL_STRING_S=qbs_new(oldstr3785->len,0);
_FUNC_TFSTRINGTOBOOL_STRING_S=qbs_new(oldstr3826->len,0);
}
memcpy(_FUNC_TFSTRINGTOBOOL_STRING_S->chr,oldstr3785->chr,oldstr3785->len);
memcpy(_FUNC_TFSTRINGTOBOOL_STRING_S->chr,oldstr3826->chr,oldstr3826->len);
}
qbs *_FUNC_TFSTRINGTOBOOL_STRING_S2=NULL;
if (!_FUNC_TFSTRINGTOBOOL_STRING_S2)_FUNC_TFSTRINGTOBOOL_STRING_S2=qbs_new(0,0);

View file

@ -3,25 +3,25 @@ if(_FUNC_READWRITEBOOLEANSETTINGVALUE_INTEGER_READWRITEBOOLEANSETTINGVALUE==NULL
_FUNC_READWRITEBOOLEANSETTINGVALUE_INTEGER_READWRITEBOOLEANSETTINGVALUE=(int16*)mem_static_malloc(2);
*_FUNC_READWRITEBOOLEANSETTINGVALUE_INTEGER_READWRITEBOOLEANSETTINGVALUE=0;
}
qbs*oldstr3786=NULL;
qbs*oldstr3827=NULL;
if(_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SECTION->tmp||_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SECTION->fixed||_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SECTION->readonly){
oldstr3786=_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SECTION;
if (oldstr3786->cmem_descriptor){
_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SECTION=qbs_new_cmem(oldstr3786->len,0);
oldstr3827=_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SECTION;
if (oldstr3827->cmem_descriptor){
_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SECTION=qbs_new_cmem(oldstr3827->len,0);
}else{
_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SECTION=qbs_new(oldstr3786->len,0);
_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SECTION=qbs_new(oldstr3827->len,0);
}
memcpy(_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SECTION->chr,oldstr3786->chr,oldstr3786->len);
memcpy(_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SECTION->chr,oldstr3827->chr,oldstr3827->len);
}
qbs*oldstr3787=NULL;
qbs*oldstr3828=NULL;
if(_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SETTING->tmp||_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SETTING->fixed||_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SETTING->readonly){
oldstr3787=_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SETTING;
if (oldstr3787->cmem_descriptor){
_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SETTING=qbs_new_cmem(oldstr3787->len,0);
oldstr3828=_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SETTING;
if (oldstr3828->cmem_descriptor){
_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SETTING=qbs_new_cmem(oldstr3828->len,0);
}else{
_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SETTING=qbs_new(oldstr3787->len,0);
_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SETTING=qbs_new(oldstr3828->len,0);
}
memcpy(_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SETTING->chr,oldstr3787->chr,oldstr3787->len);
memcpy(_FUNC_READWRITEBOOLEANSETTINGVALUE_STRING_SETTING->chr,oldstr3828->chr,oldstr3828->len);
}
int16 *_FUNC_READWRITEBOOLEANSETTINGVALUE_INTEGER_CHECKRESULT=NULL;
if(_FUNC_READWRITEBOOLEANSETTINGVALUE_INTEGER_CHECKRESULT==NULL){
@ -35,4 +35,4 @@ if(_FUNC_READWRITEBOOLEANSETTINGVALUE_INTEGER_RESULT==NULL){
_FUNC_READWRITEBOOLEANSETTINGVALUE_INTEGER_RESULT=(int16*)mem_static_malloc(2);
*_FUNC_READWRITEBOOLEANSETTINGVALUE_INTEGER_RESULT=0;
}
int32 pass3788;
int32 pass3829;

View file

@ -1,34 +1,34 @@
qbs *_FUNC_READWRITESTRINGSETTINGVALUE_STRING_READWRITESTRINGSETTINGVALUE=NULL;
if (!_FUNC_READWRITESTRINGSETTINGVALUE_STRING_READWRITESTRINGSETTINGVALUE)_FUNC_READWRITESTRINGSETTINGVALUE_STRING_READWRITESTRINGSETTINGVALUE=qbs_new(0,0);
qbs*oldstr3789=NULL;
qbs*oldstr3830=NULL;
if(_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION->tmp||_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION->fixed||_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION->readonly){
oldstr3789=_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION;
if (oldstr3789->cmem_descriptor){
_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION=qbs_new_cmem(oldstr3789->len,0);
oldstr3830=_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION;
if (oldstr3830->cmem_descriptor){
_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION=qbs_new_cmem(oldstr3830->len,0);
}else{
_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION=qbs_new(oldstr3789->len,0);
_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION=qbs_new(oldstr3830->len,0);
}
memcpy(_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION->chr,oldstr3789->chr,oldstr3789->len);
memcpy(_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SECTION->chr,oldstr3830->chr,oldstr3830->len);
}
qbs*oldstr3790=NULL;
qbs*oldstr3831=NULL;
if(_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING->tmp||_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING->fixed||_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING->readonly){
oldstr3790=_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING;
if (oldstr3790->cmem_descriptor){
_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING=qbs_new_cmem(oldstr3790->len,0);
oldstr3831=_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING;
if (oldstr3831->cmem_descriptor){
_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING=qbs_new_cmem(oldstr3831->len,0);
}else{
_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING=qbs_new(oldstr3790->len,0);
_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING=qbs_new(oldstr3831->len,0);
}
memcpy(_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING->chr,oldstr3790->chr,oldstr3790->len);
memcpy(_FUNC_READWRITESTRINGSETTINGVALUE_STRING_SETTING->chr,oldstr3831->chr,oldstr3831->len);
}
qbs*oldstr3791=NULL;
qbs*oldstr3832=NULL;
if(_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT->tmp||_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT->fixed||_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT->readonly){
oldstr3791=_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT;
if (oldstr3791->cmem_descriptor){
_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT=qbs_new_cmem(oldstr3791->len,0);
oldstr3832=_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT;
if (oldstr3832->cmem_descriptor){
_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT=qbs_new_cmem(oldstr3832->len,0);
}else{
_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT=qbs_new(oldstr3791->len,0);
_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT=qbs_new(oldstr3832->len,0);
}
memcpy(_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT->chr,oldstr3791->chr,oldstr3791->len);
memcpy(_FUNC_READWRITESTRINGSETTINGVALUE_STRING_DEFAULT->chr,oldstr3832->chr,oldstr3832->len);
}
qbs *_FUNC_READWRITESTRINGSETTINGVALUE_STRING_VALUE=NULL;
if (!_FUNC_READWRITESTRINGSETTINGVALUE_STRING_VALUE)_FUNC_READWRITESTRINGSETTINGVALUE_STRING_VALUE=qbs_new(0,0);

View file

@ -3,25 +3,25 @@ if(_FUNC_READWRITELONGSETTINGVALUE_LONG_READWRITELONGSETTINGVALUE==NULL){
_FUNC_READWRITELONGSETTINGVALUE_LONG_READWRITELONGSETTINGVALUE=(int32*)mem_static_malloc(4);
*_FUNC_READWRITELONGSETTINGVALUE_LONG_READWRITELONGSETTINGVALUE=0;
}
qbs*oldstr3792=NULL;
qbs*oldstr3833=NULL;
if(_FUNC_READWRITELONGSETTINGVALUE_STRING_SECTION->tmp||_FUNC_READWRITELONGSETTINGVALUE_STRING_SECTION->fixed||_FUNC_READWRITELONGSETTINGVALUE_STRING_SECTION->readonly){
oldstr3792=_FUNC_READWRITELONGSETTINGVALUE_STRING_SECTION;
if (oldstr3792->cmem_descriptor){
_FUNC_READWRITELONGSETTINGVALUE_STRING_SECTION=qbs_new_cmem(oldstr3792->len,0);
oldstr3833=_FUNC_READWRITELONGSETTINGVALUE_STRING_SECTION;
if (oldstr3833->cmem_descriptor){
_FUNC_READWRITELONGSETTINGVALUE_STRING_SECTION=qbs_new_cmem(oldstr3833->len,0);
}else{
_FUNC_READWRITELONGSETTINGVALUE_STRING_SECTION=qbs_new(oldstr3792->len,0);
_FUNC_READWRITELONGSETTINGVALUE_STRING_SECTION=qbs_new(oldstr3833->len,0);
}
memcpy(_FUNC_READWRITELONGSETTINGVALUE_STRING_SECTION->chr,oldstr3792->chr,oldstr3792->len);
memcpy(_FUNC_READWRITELONGSETTINGVALUE_STRING_SECTION->chr,oldstr3833->chr,oldstr3833->len);
}
qbs*oldstr3793=NULL;
qbs*oldstr3834=NULL;
if(_FUNC_READWRITELONGSETTINGVALUE_STRING_SETTING->tmp||_FUNC_READWRITELONGSETTINGVALUE_STRING_SETTING->fixed||_FUNC_READWRITELONGSETTINGVALUE_STRING_SETTING->readonly){
oldstr3793=_FUNC_READWRITELONGSETTINGVALUE_STRING_SETTING;
if (oldstr3793->cmem_descriptor){
_FUNC_READWRITELONGSETTINGVALUE_STRING_SETTING=qbs_new_cmem(oldstr3793->len,0);
oldstr3834=_FUNC_READWRITELONGSETTINGVALUE_STRING_SETTING;
if (oldstr3834->cmem_descriptor){
_FUNC_READWRITELONGSETTINGVALUE_STRING_SETTING=qbs_new_cmem(oldstr3834->len,0);
}else{
_FUNC_READWRITELONGSETTINGVALUE_STRING_SETTING=qbs_new(oldstr3793->len,0);
_FUNC_READWRITELONGSETTINGVALUE_STRING_SETTING=qbs_new(oldstr3834->len,0);
}
memcpy(_FUNC_READWRITELONGSETTINGVALUE_STRING_SETTING->chr,oldstr3793->chr,oldstr3793->len);
memcpy(_FUNC_READWRITELONGSETTINGVALUE_STRING_SETTING->chr,oldstr3834->chr,oldstr3834->len);
}
qbs *_FUNC_READWRITELONGSETTINGVALUE_STRING_VALUE=NULL;
if (!_FUNC_READWRITELONGSETTINGVALUE_STRING_VALUE)_FUNC_READWRITELONGSETTINGVALUE_STRING_VALUE=qbs_new(0,0);

View file

@ -1,25 +1,25 @@
qbs*oldstr2315=NULL;
qbs*oldstr2348=NULL;
if(_SUB_VWATCHVARIABLE_STRING_THIS->tmp||_SUB_VWATCHVARIABLE_STRING_THIS->fixed||_SUB_VWATCHVARIABLE_STRING_THIS->readonly){
oldstr2315=_SUB_VWATCHVARIABLE_STRING_THIS;
if (oldstr2315->cmem_descriptor){
_SUB_VWATCHVARIABLE_STRING_THIS=qbs_new_cmem(oldstr2315->len,0);
oldstr2348=_SUB_VWATCHVARIABLE_STRING_THIS;
if (oldstr2348->cmem_descriptor){
_SUB_VWATCHVARIABLE_STRING_THIS=qbs_new_cmem(oldstr2348->len,0);
}else{
_SUB_VWATCHVARIABLE_STRING_THIS=qbs_new(oldstr2315->len,0);
_SUB_VWATCHVARIABLE_STRING_THIS=qbs_new(oldstr2348->len,0);
}
memcpy(_SUB_VWATCHVARIABLE_STRING_THIS->chr,oldstr2315->chr,oldstr2315->len);
memcpy(_SUB_VWATCHVARIABLE_STRING_THIS->chr,oldstr2348->chr,oldstr2348->len);
}
int32 pass2317;
int32 pass2318;
int8 pass2319;
int32 pass2320;
int32 pass2321;
int8 pass2322;
int16 pass2323;
int16 pass2324;
int16 pass2325;
int16 pass2326;
int16 pass2327;
int16 pass2328;
int16 pass2329;
int16 pass2330;
int16 pass2331;
int32 pass2350;
int32 pass2351;
int8 pass2352;
int32 pass2353;
int32 pass2354;
int8 pass2355;
int16 pass2356;
int16 pass2357;
int16 pass2358;
int16 pass2359;
int16 pass2360;
int16 pass2361;
int16 pass2362;
int16 pass2363;
int16 pass2364;

View file

@ -3,25 +3,25 @@ if(_FUNC_COPYFILE_LONG_COPYFILE==NULL){
_FUNC_COPYFILE_LONG_COPYFILE=(int32*)mem_static_malloc(4);
*_FUNC_COPYFILE_LONG_COPYFILE=0;
}
qbs*oldstr3794=NULL;
qbs*oldstr3835=NULL;
if(_FUNC_COPYFILE_STRING_SOURCEFILE->tmp||_FUNC_COPYFILE_STRING_SOURCEFILE->fixed||_FUNC_COPYFILE_STRING_SOURCEFILE->readonly){
oldstr3794=_FUNC_COPYFILE_STRING_SOURCEFILE;
if (oldstr3794->cmem_descriptor){
_FUNC_COPYFILE_STRING_SOURCEFILE=qbs_new_cmem(oldstr3794->len,0);
oldstr3835=_FUNC_COPYFILE_STRING_SOURCEFILE;
if (oldstr3835->cmem_descriptor){
_FUNC_COPYFILE_STRING_SOURCEFILE=qbs_new_cmem(oldstr3835->len,0);
}else{
_FUNC_COPYFILE_STRING_SOURCEFILE=qbs_new(oldstr3794->len,0);
_FUNC_COPYFILE_STRING_SOURCEFILE=qbs_new(oldstr3835->len,0);
}
memcpy(_FUNC_COPYFILE_STRING_SOURCEFILE->chr,oldstr3794->chr,oldstr3794->len);
memcpy(_FUNC_COPYFILE_STRING_SOURCEFILE->chr,oldstr3835->chr,oldstr3835->len);
}
qbs*oldstr3795=NULL;
qbs*oldstr3836=NULL;
if(_FUNC_COPYFILE_STRING_DESTFILE->tmp||_FUNC_COPYFILE_STRING_DESTFILE->fixed||_FUNC_COPYFILE_STRING_DESTFILE->readonly){
oldstr3795=_FUNC_COPYFILE_STRING_DESTFILE;
if (oldstr3795->cmem_descriptor){
_FUNC_COPYFILE_STRING_DESTFILE=qbs_new_cmem(oldstr3795->len,0);
oldstr3836=_FUNC_COPYFILE_STRING_DESTFILE;
if (oldstr3836->cmem_descriptor){
_FUNC_COPYFILE_STRING_DESTFILE=qbs_new_cmem(oldstr3836->len,0);
}else{
_FUNC_COPYFILE_STRING_DESTFILE=qbs_new(oldstr3795->len,0);
_FUNC_COPYFILE_STRING_DESTFILE=qbs_new(oldstr3836->len,0);
}
memcpy(_FUNC_COPYFILE_STRING_DESTFILE->chr,oldstr3795->chr,oldstr3795->len);
memcpy(_FUNC_COPYFILE_STRING_DESTFILE->chr,oldstr3836->chr,oldstr3836->len);
}
int32 *_FUNC_COPYFILE_LONG_SOURCEFILENO=NULL;
if(_FUNC_COPYFILE_LONG_SOURCEFILENO==NULL){
@ -40,7 +40,7 @@ _FUNC_COPYFILE_INTEGER64_FILELENGTH=(int64*)mem_static_malloc(8);
}
qbs *_FUNC_COPYFILE_STRING_BUFFER=NULL;
if (!_FUNC_COPYFILE_STRING_BUFFER)_FUNC_COPYFILE_STRING_BUFFER=qbs_new(0,0);
byte_element_struct *byte_element_3796=NULL;
if (!byte_element_3796){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3796=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3796=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_3837=NULL;
if (!byte_element_3837){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3837=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3837=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -1,27 +1,146 @@
qbs *_FUNC_GETFILEPATH_STRING_GETFILEPATH=NULL;
if (!_FUNC_GETFILEPATH_STRING_GETFILEPATH)_FUNC_GETFILEPATH_STRING_GETFILEPATH=qbs_new(0,0);
qbs*oldstr3797=NULL;
if(_FUNC_GETFILEPATH_STRING_F->tmp||_FUNC_GETFILEPATH_STRING_F->fixed||_FUNC_GETFILEPATH_STRING_F->readonly){
oldstr3797=_FUNC_GETFILEPATH_STRING_F;
if (oldstr3797->cmem_descriptor){
_FUNC_GETFILEPATH_STRING_F=qbs_new_cmem(oldstr3797->len,0);
int16 *_FUNC_CONVERTFILETOCARRAY_INTEGER_CONVERTFILETOCARRAY=NULL;
if(_FUNC_CONVERTFILETOCARRAY_INTEGER_CONVERTFILETOCARRAY==NULL){
_FUNC_CONVERTFILETOCARRAY_INTEGER_CONVERTFILETOCARRAY=(int16*)mem_static_malloc(2);
*_FUNC_CONVERTFILETOCARRAY_INTEGER_CONVERTFILETOCARRAY=0;
}
qbs*oldstr3838=NULL;
if(_FUNC_CONVERTFILETOCARRAY_STRING_FILE->tmp||_FUNC_CONVERTFILETOCARRAY_STRING_FILE->fixed||_FUNC_CONVERTFILETOCARRAY_STRING_FILE->readonly){
oldstr3838=_FUNC_CONVERTFILETOCARRAY_STRING_FILE;
if (oldstr3838->cmem_descriptor){
_FUNC_CONVERTFILETOCARRAY_STRING_FILE=qbs_new_cmem(oldstr3838->len,0);
}else{
_FUNC_GETFILEPATH_STRING_F=qbs_new(oldstr3797->len,0);
_FUNC_CONVERTFILETOCARRAY_STRING_FILE=qbs_new(oldstr3838->len,0);
}
memcpy(_FUNC_GETFILEPATH_STRING_F->chr,oldstr3797->chr,oldstr3797->len);
memcpy(_FUNC_CONVERTFILETOCARRAY_STRING_FILE->chr,oldstr3838->chr,oldstr3838->len);
}
int32 *_FUNC_GETFILEPATH_LONG_I=NULL;
if(_FUNC_GETFILEPATH_LONG_I==NULL){
_FUNC_GETFILEPATH_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_GETFILEPATH_LONG_I=0;
qbs*oldstr3839=NULL;
if(_FUNC_CONVERTFILETOCARRAY_STRING_HANDLE->tmp||_FUNC_CONVERTFILETOCARRAY_STRING_HANDLE->fixed||_FUNC_CONVERTFILETOCARRAY_STRING_HANDLE->readonly){
oldstr3839=_FUNC_CONVERTFILETOCARRAY_STRING_HANDLE;
if (oldstr3839->cmem_descriptor){
_FUNC_CONVERTFILETOCARRAY_STRING_HANDLE=qbs_new_cmem(oldstr3839->len,0);
}else{
_FUNC_CONVERTFILETOCARRAY_STRING_HANDLE=qbs_new(oldstr3839->len,0);
}
int64 fornext_value3799;
int64 fornext_finalvalue3799;
int64 fornext_step3799;
uint8 fornext_step_negative3799;
byte_element_struct *byte_element_3800=NULL;
if (!byte_element_3800){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3800=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3800=(byte_element_struct*)mem_static_malloc(12);
memcpy(_FUNC_CONVERTFILETOCARRAY_STRING_HANDLE->chr,oldstr3839->chr,oldstr3839->len);
}
int16 *_FUNC_CONVERTFILETOCARRAY_INTEGER_SFF=NULL;
if(_FUNC_CONVERTFILETOCARRAY_INTEGER_SFF==NULL){
_FUNC_CONVERTFILETOCARRAY_INTEGER_SFF=(int16*)mem_static_malloc(2);
*_FUNC_CONVERTFILETOCARRAY_INTEGER_SFF=0;
}
qbs *_FUNC_CONVERTFILETOCARRAY_STRING_FILEDATA=NULL;
if (!_FUNC_CONVERTFILETOCARRAY_STRING_FILEDATA)_FUNC_CONVERTFILETOCARRAY_STRING_FILEDATA=qbs_new(0,0);
qbs *_FUNC_CONVERTFILETOCARRAY_STRING_COMPDATA=NULL;
if (!_FUNC_CONVERTFILETOCARRAY_STRING_COMPDATA)_FUNC_CONVERTFILETOCARRAY_STRING_COMPDATA=qbs_new(0,0);
byte_element_struct *byte_element_3840=NULL;
if (!byte_element_3840){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3840=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3840=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3841=NULL;
if (!byte_element_3841){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3841=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3841=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_CONVERTFILETOCARRAY_STRING_TMPFILE=NULL;
if (!_FUNC_CONVERTFILETOCARRAY_STRING_TMPFILE)_FUNC_CONVERTFILETOCARRAY_STRING_TMPFILE=qbs_new(0,0);
byte_element_struct *byte_element_3842=NULL;
if (!byte_element_3842){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3842=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3842=(byte_element_struct*)mem_static_malloc(12);
}
int16 *_FUNC_CONVERTFILETOCARRAY_INTEGER_PACKED=NULL;
if(_FUNC_CONVERTFILETOCARRAY_INTEGER_PACKED==NULL){
_FUNC_CONVERTFILETOCARRAY_INTEGER_PACKED=(int16*)mem_static_malloc(2);
*_FUNC_CONVERTFILETOCARRAY_INTEGER_PACKED=0;
}
int32 *_FUNC_CONVERTFILETOCARRAY_LONG_FL=NULL;
if(_FUNC_CONVERTFILETOCARRAY_LONG_FL==NULL){
_FUNC_CONVERTFILETOCARRAY_LONG_FL=(int32*)mem_static_malloc(4);
*_FUNC_CONVERTFILETOCARRAY_LONG_FL=0;
}
int32 *_FUNC_CONVERTFILETOCARRAY_LONG_CNTL=NULL;
if(_FUNC_CONVERTFILETOCARRAY_LONG_CNTL==NULL){
_FUNC_CONVERTFILETOCARRAY_LONG_CNTL=(int32*)mem_static_malloc(4);
*_FUNC_CONVERTFILETOCARRAY_LONG_CNTL=0;
}
int32 *_FUNC_CONVERTFILETOCARRAY_LONG_CNTV=NULL;
if(_FUNC_CONVERTFILETOCARRAY_LONG_CNTV==NULL){
_FUNC_CONVERTFILETOCARRAY_LONG_CNTV=(int32*)mem_static_malloc(4);
*_FUNC_CONVERTFILETOCARRAY_LONG_CNTV=0;
}
int32 *_FUNC_CONVERTFILETOCARRAY_LONG_CNTB=NULL;
if(_FUNC_CONVERTFILETOCARRAY_LONG_CNTB==NULL){
_FUNC_CONVERTFILETOCARRAY_LONG_CNTB=(int32*)mem_static_malloc(4);
*_FUNC_CONVERTFILETOCARRAY_LONG_CNTB=0;
}
int16 *_FUNC_CONVERTFILETOCARRAY_INTEGER_DFF=NULL;
if(_FUNC_CONVERTFILETOCARRAY_INTEGER_DFF==NULL){
_FUNC_CONVERTFILETOCARRAY_INTEGER_DFF=(int16*)mem_static_malloc(2);
*_FUNC_CONVERTFILETOCARRAY_INTEGER_DFF=0;
}
qbs *_FUNC_CONVERTFILETOCARRAY_STRING_TMPI=NULL;
if (!_FUNC_CONVERTFILETOCARRAY_STRING_TMPI)_FUNC_CONVERTFILETOCARRAY_STRING_TMPI=qbs_new(0,0);
int32 *_FUNC_CONVERTFILETOCARRAY_LONG_VC=NULL;
if(_FUNC_CONVERTFILETOCARRAY_LONG_VC==NULL){
_FUNC_CONVERTFILETOCARRAY_LONG_VC=(int32*)mem_static_malloc(4);
*_FUNC_CONVERTFILETOCARRAY_LONG_VC=0;
}
int64 fornext_value3844;
int64 fornext_finalvalue3844;
int64 fornext_step3844;
uint8 fornext_step_negative3844;
int32 *_FUNC_CONVERTFILETOCARRAY_LONG_NUML=NULL;
if(_FUNC_CONVERTFILETOCARRAY_LONG_NUML==NULL){
_FUNC_CONVERTFILETOCARRAY_LONG_NUML=(int32*)mem_static_malloc(4);
*_FUNC_CONVERTFILETOCARRAY_LONG_NUML=0;
}
int32 *_FUNC_CONVERTFILETOCARRAY_LONG_Z=NULL;
if(_FUNC_CONVERTFILETOCARRAY_LONG_Z==NULL){
_FUNC_CONVERTFILETOCARRAY_LONG_Z=(int32*)mem_static_malloc(4);
*_FUNC_CONVERTFILETOCARRAY_LONG_Z=0;
}
int64 fornext_value3848;
int64 fornext_finalvalue3848;
int64 fornext_step3848;
uint8 fornext_step_negative3848;
int16 *_FUNC_CONVERTFILETOCARRAY_INTEGER_OFFI=NULL;
if(_FUNC_CONVERTFILETOCARRAY_INTEGER_OFFI==NULL){
_FUNC_CONVERTFILETOCARRAY_INTEGER_OFFI=(int16*)mem_static_malloc(2);
*_FUNC_CONVERTFILETOCARRAY_INTEGER_OFFI=0;
}
qbs *_FUNC_CONVERTFILETOCARRAY_STRING_TMPO=NULL;
if (!_FUNC_CONVERTFILETOCARRAY_STRING_TMPO)_FUNC_CONVERTFILETOCARRAY_STRING_TMPO=qbs_new(0,0);
int16 *_FUNC_CONVERTFILETOCARRAY_INTEGER_OFFO=NULL;
if(_FUNC_CONVERTFILETOCARRAY_INTEGER_OFFO==NULL){
_FUNC_CONVERTFILETOCARRAY_INTEGER_OFFO=(int16*)mem_static_malloc(2);
*_FUNC_CONVERTFILETOCARRAY_INTEGER_OFFO=0;
}
int32 *_FUNC_CONVERTFILETOCARRAY_LONG_TMPL=NULL;
if(_FUNC_CONVERTFILETOCARRAY_LONG_TMPL==NULL){
_FUNC_CONVERTFILETOCARRAY_LONG_TMPL=(int32*)mem_static_malloc(4);
*_FUNC_CONVERTFILETOCARRAY_LONG_TMPL=0;
}
int16 *_FUNC_CONVERTFILETOCARRAY_INTEGER_X=NULL;
if(_FUNC_CONVERTFILETOCARRAY_INTEGER_X==NULL){
_FUNC_CONVERTFILETOCARRAY_INTEGER_X=(int16*)mem_static_malloc(2);
*_FUNC_CONVERTFILETOCARRAY_INTEGER_X=0;
}
int32 fornext_value3858;
int32 fornext_finalvalue3858;
int32 fornext_step3858;
uint8 fornext_step_negative3858;
int8 *_FUNC_CONVERTFILETOCARRAY_BYTE_TMPB=NULL;
if(_FUNC_CONVERTFILETOCARRAY_BYTE_TMPB==NULL){
_FUNC_CONVERTFILETOCARRAY_BYTE_TMPB=(int8*)mem_static_malloc(1);
*_FUNC_CONVERTFILETOCARRAY_BYTE_TMPB=0;
}
byte_element_struct *byte_element_3859=NULL;
if (!byte_element_3859){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3859=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3859=(byte_element_struct*)mem_static_malloc(12);
}
int64 fornext_value3873;
int64 fornext_finalvalue3873;
int64 fornext_step3873;
uint8 fornext_step_negative3873;
byte_element_struct *byte_element_3879=NULL;
if (!byte_element_3879){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3879=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3879=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_GETFILEPATH_STRING_A=NULL;
if (!_FUNC_GETFILEPATH_STRING_A)_FUNC_GETFILEPATH_STRING_A=qbs_new(0,0);

View file

@ -1,33 +1,27 @@
int32 *_FUNC_FILEHASEXTENSION_LONG_FILEHASEXTENSION=NULL;
if(_FUNC_FILEHASEXTENSION_LONG_FILEHASEXTENSION==NULL){
_FUNC_FILEHASEXTENSION_LONG_FILEHASEXTENSION=(int32*)mem_static_malloc(4);
*_FUNC_FILEHASEXTENSION_LONG_FILEHASEXTENSION=0;
}
qbs*oldstr3801=NULL;
if(_FUNC_FILEHASEXTENSION_STRING_F->tmp||_FUNC_FILEHASEXTENSION_STRING_F->fixed||_FUNC_FILEHASEXTENSION_STRING_F->readonly){
oldstr3801=_FUNC_FILEHASEXTENSION_STRING_F;
if (oldstr3801->cmem_descriptor){
_FUNC_FILEHASEXTENSION_STRING_F=qbs_new_cmem(oldstr3801->len,0);
qbs *_FUNC_GETFILEPATH_STRING_GETFILEPATH=NULL;
if (!_FUNC_GETFILEPATH_STRING_GETFILEPATH)_FUNC_GETFILEPATH_STRING_GETFILEPATH=qbs_new(0,0);
qbs*oldstr3883=NULL;
if(_FUNC_GETFILEPATH_STRING_F->tmp||_FUNC_GETFILEPATH_STRING_F->fixed||_FUNC_GETFILEPATH_STRING_F->readonly){
oldstr3883=_FUNC_GETFILEPATH_STRING_F;
if (oldstr3883->cmem_descriptor){
_FUNC_GETFILEPATH_STRING_F=qbs_new_cmem(oldstr3883->len,0);
}else{
_FUNC_FILEHASEXTENSION_STRING_F=qbs_new(oldstr3801->len,0);
_FUNC_GETFILEPATH_STRING_F=qbs_new(oldstr3883->len,0);
}
memcpy(_FUNC_FILEHASEXTENSION_STRING_F->chr,oldstr3801->chr,oldstr3801->len);
memcpy(_FUNC_GETFILEPATH_STRING_F->chr,oldstr3883->chr,oldstr3883->len);
}
int32 *_FUNC_FILEHASEXTENSION_LONG_I=NULL;
if(_FUNC_FILEHASEXTENSION_LONG_I==NULL){
_FUNC_FILEHASEXTENSION_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_FILEHASEXTENSION_LONG_I=0;
int32 *_FUNC_GETFILEPATH_LONG_I=NULL;
if(_FUNC_GETFILEPATH_LONG_I==NULL){
_FUNC_GETFILEPATH_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_GETFILEPATH_LONG_I=0;
}
int64 fornext_value3803;
int64 fornext_finalvalue3803;
int64 fornext_step3803;
uint8 fornext_step_negative3803;
byte_element_struct *byte_element_3804=NULL;
if (!byte_element_3804){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3804=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3804=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_FILEHASEXTENSION_LONG_A=NULL;
if(_FUNC_FILEHASEXTENSION_LONG_A==NULL){
_FUNC_FILEHASEXTENSION_LONG_A=(int32*)mem_static_malloc(4);
*_FUNC_FILEHASEXTENSION_LONG_A=0;
int64 fornext_value3885;
int64 fornext_finalvalue3885;
int64 fornext_step3885;
uint8 fornext_step_negative3885;
byte_element_struct *byte_element_3886=NULL;
if (!byte_element_3886){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3886=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3886=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_GETFILEPATH_STRING_A=NULL;
if (!_FUNC_GETFILEPATH_STRING_A)_FUNC_GETFILEPATH_STRING_A=qbs_new(0,0);

View file

@ -1,30 +1,33 @@
qbs *_FUNC_REMOVEFILEEXTENSION_STRING_REMOVEFILEEXTENSION=NULL;
if (!_FUNC_REMOVEFILEEXTENSION_STRING_REMOVEFILEEXTENSION)_FUNC_REMOVEFILEEXTENSION_STRING_REMOVEFILEEXTENSION=qbs_new(0,0);
qbs*oldstr3805=NULL;
if(_FUNC_REMOVEFILEEXTENSION_STRING_F->tmp||_FUNC_REMOVEFILEEXTENSION_STRING_F->fixed||_FUNC_REMOVEFILEEXTENSION_STRING_F->readonly){
oldstr3805=_FUNC_REMOVEFILEEXTENSION_STRING_F;
if (oldstr3805->cmem_descriptor){
_FUNC_REMOVEFILEEXTENSION_STRING_F=qbs_new_cmem(oldstr3805->len,0);
int32 *_FUNC_FILEHASEXTENSION_LONG_FILEHASEXTENSION=NULL;
if(_FUNC_FILEHASEXTENSION_LONG_FILEHASEXTENSION==NULL){
_FUNC_FILEHASEXTENSION_LONG_FILEHASEXTENSION=(int32*)mem_static_malloc(4);
*_FUNC_FILEHASEXTENSION_LONG_FILEHASEXTENSION=0;
}
qbs*oldstr3887=NULL;
if(_FUNC_FILEHASEXTENSION_STRING_F->tmp||_FUNC_FILEHASEXTENSION_STRING_F->fixed||_FUNC_FILEHASEXTENSION_STRING_F->readonly){
oldstr3887=_FUNC_FILEHASEXTENSION_STRING_F;
if (oldstr3887->cmem_descriptor){
_FUNC_FILEHASEXTENSION_STRING_F=qbs_new_cmem(oldstr3887->len,0);
}else{
_FUNC_REMOVEFILEEXTENSION_STRING_F=qbs_new(oldstr3805->len,0);
_FUNC_FILEHASEXTENSION_STRING_F=qbs_new(oldstr3887->len,0);
}
memcpy(_FUNC_REMOVEFILEEXTENSION_STRING_F->chr,oldstr3805->chr,oldstr3805->len);
memcpy(_FUNC_FILEHASEXTENSION_STRING_F->chr,oldstr3887->chr,oldstr3887->len);
}
int32 *_FUNC_REMOVEFILEEXTENSION_LONG_I=NULL;
if(_FUNC_REMOVEFILEEXTENSION_LONG_I==NULL){
_FUNC_REMOVEFILEEXTENSION_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_REMOVEFILEEXTENSION_LONG_I=0;
int32 *_FUNC_FILEHASEXTENSION_LONG_I=NULL;
if(_FUNC_FILEHASEXTENSION_LONG_I==NULL){
_FUNC_FILEHASEXTENSION_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_FILEHASEXTENSION_LONG_I=0;
}
int64 fornext_value3807;
int64 fornext_finalvalue3807;
int64 fornext_step3807;
uint8 fornext_step_negative3807;
byte_element_struct *byte_element_3808=NULL;
if (!byte_element_3808){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3808=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3808=(byte_element_struct*)mem_static_malloc(12);
int64 fornext_value3889;
int64 fornext_finalvalue3889;
int64 fornext_step3889;
uint8 fornext_step_negative3889;
byte_element_struct *byte_element_3890=NULL;
if (!byte_element_3890){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3890=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3890=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_REMOVEFILEEXTENSION_LONG_A=NULL;
if(_FUNC_REMOVEFILEEXTENSION_LONG_A==NULL){
_FUNC_REMOVEFILEEXTENSION_LONG_A=(int32*)mem_static_malloc(4);
*_FUNC_REMOVEFILEEXTENSION_LONG_A=0;
int32 *_FUNC_FILEHASEXTENSION_LONG_A=NULL;
if(_FUNC_FILEHASEXTENSION_LONG_A==NULL){
_FUNC_FILEHASEXTENSION_LONG_A=(int32*)mem_static_malloc(4);
*_FUNC_FILEHASEXTENSION_LONG_A=0;
}

View file

@ -1,30 +1,30 @@
qbs *_FUNC_GETFILEEXTENSION_STRING_GETFILEEXTENSION=NULL;
if (!_FUNC_GETFILEEXTENSION_STRING_GETFILEEXTENSION)_FUNC_GETFILEEXTENSION_STRING_GETFILEEXTENSION=qbs_new(0,0);
qbs*oldstr3809=NULL;
if(_FUNC_GETFILEEXTENSION_STRING_F->tmp||_FUNC_GETFILEEXTENSION_STRING_F->fixed||_FUNC_GETFILEEXTENSION_STRING_F->readonly){
oldstr3809=_FUNC_GETFILEEXTENSION_STRING_F;
if (oldstr3809->cmem_descriptor){
_FUNC_GETFILEEXTENSION_STRING_F=qbs_new_cmem(oldstr3809->len,0);
qbs *_FUNC_REMOVEFILEEXTENSION_STRING_REMOVEFILEEXTENSION=NULL;
if (!_FUNC_REMOVEFILEEXTENSION_STRING_REMOVEFILEEXTENSION)_FUNC_REMOVEFILEEXTENSION_STRING_REMOVEFILEEXTENSION=qbs_new(0,0);
qbs*oldstr3891=NULL;
if(_FUNC_REMOVEFILEEXTENSION_STRING_F->tmp||_FUNC_REMOVEFILEEXTENSION_STRING_F->fixed||_FUNC_REMOVEFILEEXTENSION_STRING_F->readonly){
oldstr3891=_FUNC_REMOVEFILEEXTENSION_STRING_F;
if (oldstr3891->cmem_descriptor){
_FUNC_REMOVEFILEEXTENSION_STRING_F=qbs_new_cmem(oldstr3891->len,0);
}else{
_FUNC_GETFILEEXTENSION_STRING_F=qbs_new(oldstr3809->len,0);
_FUNC_REMOVEFILEEXTENSION_STRING_F=qbs_new(oldstr3891->len,0);
}
memcpy(_FUNC_GETFILEEXTENSION_STRING_F->chr,oldstr3809->chr,oldstr3809->len);
memcpy(_FUNC_REMOVEFILEEXTENSION_STRING_F->chr,oldstr3891->chr,oldstr3891->len);
}
int32 *_FUNC_GETFILEEXTENSION_LONG_I=NULL;
if(_FUNC_GETFILEEXTENSION_LONG_I==NULL){
_FUNC_GETFILEEXTENSION_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_GETFILEEXTENSION_LONG_I=0;
int32 *_FUNC_REMOVEFILEEXTENSION_LONG_I=NULL;
if(_FUNC_REMOVEFILEEXTENSION_LONG_I==NULL){
_FUNC_REMOVEFILEEXTENSION_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_REMOVEFILEEXTENSION_LONG_I=0;
}
int64 fornext_value3811;
int64 fornext_finalvalue3811;
int64 fornext_step3811;
uint8 fornext_step_negative3811;
byte_element_struct *byte_element_3812=NULL;
if (!byte_element_3812){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3812=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3812=(byte_element_struct*)mem_static_malloc(12);
int64 fornext_value3893;
int64 fornext_finalvalue3893;
int64 fornext_step3893;
uint8 fornext_step_negative3893;
byte_element_struct *byte_element_3894=NULL;
if (!byte_element_3894){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3894=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3894=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_GETFILEEXTENSION_LONG_A=NULL;
if(_FUNC_GETFILEEXTENSION_LONG_A==NULL){
_FUNC_GETFILEEXTENSION_LONG_A=(int32*)mem_static_malloc(4);
*_FUNC_GETFILEEXTENSION_LONG_A=0;
int32 *_FUNC_REMOVEFILEEXTENSION_LONG_A=NULL;
if(_FUNC_REMOVEFILEEXTENSION_LONG_A==NULL){
_FUNC_REMOVEFILEEXTENSION_LONG_A=(int32*)mem_static_malloc(4);
*_FUNC_REMOVEFILEEXTENSION_LONG_A=0;
}

View file

@ -1,31 +1,30 @@
qbs*oldstr3813=NULL;
if(_SUB_PATH_SLASH_CORRECT_STRING_A->tmp||_SUB_PATH_SLASH_CORRECT_STRING_A->fixed||_SUB_PATH_SLASH_CORRECT_STRING_A->readonly){
oldstr3813=_SUB_PATH_SLASH_CORRECT_STRING_A;
if (oldstr3813->cmem_descriptor){
_SUB_PATH_SLASH_CORRECT_STRING_A=qbs_new_cmem(oldstr3813->len,0);
qbs *_FUNC_GETFILEEXTENSION_STRING_GETFILEEXTENSION=NULL;
if (!_FUNC_GETFILEEXTENSION_STRING_GETFILEEXTENSION)_FUNC_GETFILEEXTENSION_STRING_GETFILEEXTENSION=qbs_new(0,0);
qbs*oldstr3895=NULL;
if(_FUNC_GETFILEEXTENSION_STRING_F->tmp||_FUNC_GETFILEEXTENSION_STRING_F->fixed||_FUNC_GETFILEEXTENSION_STRING_F->readonly){
oldstr3895=_FUNC_GETFILEEXTENSION_STRING_F;
if (oldstr3895->cmem_descriptor){
_FUNC_GETFILEEXTENSION_STRING_F=qbs_new_cmem(oldstr3895->len,0);
}else{
_SUB_PATH_SLASH_CORRECT_STRING_A=qbs_new(oldstr3813->len,0);
_FUNC_GETFILEEXTENSION_STRING_F=qbs_new(oldstr3895->len,0);
}
memcpy(_SUB_PATH_SLASH_CORRECT_STRING_A->chr,oldstr3813->chr,oldstr3813->len);
memcpy(_FUNC_GETFILEEXTENSION_STRING_F->chr,oldstr3895->chr,oldstr3895->len);
}
int32 *_SUB_PATH_SLASH_CORRECT_LONG_X=NULL;
if(_SUB_PATH_SLASH_CORRECT_LONG_X==NULL){
_SUB_PATH_SLASH_CORRECT_LONG_X=(int32*)mem_static_malloc(4);
*_SUB_PATH_SLASH_CORRECT_LONG_X=0;
int32 *_FUNC_GETFILEEXTENSION_LONG_I=NULL;
if(_FUNC_GETFILEEXTENSION_LONG_I==NULL){
_FUNC_GETFILEEXTENSION_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_GETFILEEXTENSION_LONG_I=0;
}
int64 fornext_value3815;
int64 fornext_finalvalue3815;
int64 fornext_step3815;
uint8 fornext_step_negative3815;
byte_element_struct *byte_element_3816=NULL;
if (!byte_element_3816){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3816=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3816=(byte_element_struct*)mem_static_malloc(12);
int64 fornext_value3897;
int64 fornext_finalvalue3897;
int64 fornext_step3897;
uint8 fornext_step_negative3897;
byte_element_struct *byte_element_3898=NULL;
if (!byte_element_3898){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3898=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3898=(byte_element_struct*)mem_static_malloc(12);
}
int64 fornext_value3818;
int64 fornext_finalvalue3818;
int64 fornext_step3818;
uint8 fornext_step_negative3818;
byte_element_struct *byte_element_3819=NULL;
if (!byte_element_3819){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3819=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3819=(byte_element_struct*)mem_static_malloc(12);
int32 *_FUNC_GETFILEEXTENSION_LONG_A=NULL;
if(_FUNC_GETFILEEXTENSION_LONG_A==NULL){
_FUNC_GETFILEEXTENSION_LONG_A=(int32*)mem_static_malloc(4);
*_FUNC_GETFILEEXTENSION_LONG_A=0;
}

View file

@ -1,32 +1,31 @@
qbs *_FUNC_GETESCAPEDPATH_STRING_GETESCAPEDPATH=NULL;
if (!_FUNC_GETESCAPEDPATH_STRING_GETESCAPEDPATH)_FUNC_GETESCAPEDPATH_STRING_GETESCAPEDPATH=qbs_new(0,0);
qbs*oldstr3820=NULL;
if(_FUNC_GETESCAPEDPATH_STRING_PATH_NAME->tmp||_FUNC_GETESCAPEDPATH_STRING_PATH_NAME->fixed||_FUNC_GETESCAPEDPATH_STRING_PATH_NAME->readonly){
oldstr3820=_FUNC_GETESCAPEDPATH_STRING_PATH_NAME;
if (oldstr3820->cmem_descriptor){
_FUNC_GETESCAPEDPATH_STRING_PATH_NAME=qbs_new_cmem(oldstr3820->len,0);
qbs*oldstr3899=NULL;
if(_SUB_PATH_SLASH_CORRECT_STRING_A->tmp||_SUB_PATH_SLASH_CORRECT_STRING_A->fixed||_SUB_PATH_SLASH_CORRECT_STRING_A->readonly){
oldstr3899=_SUB_PATH_SLASH_CORRECT_STRING_A;
if (oldstr3899->cmem_descriptor){
_SUB_PATH_SLASH_CORRECT_STRING_A=qbs_new_cmem(oldstr3899->len,0);
}else{
_FUNC_GETESCAPEDPATH_STRING_PATH_NAME=qbs_new(oldstr3820->len,0);
_SUB_PATH_SLASH_CORRECT_STRING_A=qbs_new(oldstr3899->len,0);
}
memcpy(_FUNC_GETESCAPEDPATH_STRING_PATH_NAME->chr,oldstr3820->chr,oldstr3820->len);
memcpy(_SUB_PATH_SLASH_CORRECT_STRING_A->chr,oldstr3899->chr,oldstr3899->len);
}
qbs *_FUNC_GETESCAPEDPATH_STRING_BUF=NULL;
if (!_FUNC_GETESCAPEDPATH_STRING_BUF)_FUNC_GETESCAPEDPATH_STRING_BUF=qbs_new(0,0);
uint32 *_FUNC_GETESCAPEDPATH_ULONG_Z=NULL;
if(_FUNC_GETESCAPEDPATH_ULONG_Z==NULL){
_FUNC_GETESCAPEDPATH_ULONG_Z=(uint32*)mem_static_malloc(4);
*_FUNC_GETESCAPEDPATH_ULONG_Z=0;
int32 *_SUB_PATH_SLASH_CORRECT_LONG_X=NULL;
if(_SUB_PATH_SLASH_CORRECT_LONG_X==NULL){
_SUB_PATH_SLASH_CORRECT_LONG_X=(int32*)mem_static_malloc(4);
*_SUB_PATH_SLASH_CORRECT_LONG_X=0;
}
uint8 *_FUNC_GETESCAPEDPATH_UBYTE_A=NULL;
if(_FUNC_GETESCAPEDPATH_UBYTE_A==NULL){
_FUNC_GETESCAPEDPATH_UBYTE_A=(uint8*)mem_static_malloc(1);
*_FUNC_GETESCAPEDPATH_UBYTE_A=0;
int64 fornext_value3901;
int64 fornext_finalvalue3901;
int64 fornext_step3901;
uint8 fornext_step_negative3901;
byte_element_struct *byte_element_3902=NULL;
if (!byte_element_3902){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3902=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3902=(byte_element_struct*)mem_static_malloc(12);
}
int64 fornext_value3822;
int64 fornext_finalvalue3822;
int64 fornext_step3822;
uint8 fornext_step_negative3822;
byte_element_struct *byte_element_3823=NULL;
if (!byte_element_3823){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3823=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3823=(byte_element_struct*)mem_static_malloc(12);
int64 fornext_value3904;
int64 fornext_finalvalue3904;
int64 fornext_step3904;
uint8 fornext_step_negative3904;
byte_element_struct *byte_element_3905=NULL;
if (!byte_element_3905){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3905=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3905=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -1,16 +1,32 @@
qbs *_FUNC_FIXDIRECTORYNAME_STRING_FIXDIRECTORYNAME=NULL;
if (!_FUNC_FIXDIRECTORYNAME_STRING_FIXDIRECTORYNAME)_FUNC_FIXDIRECTORYNAME_STRING_FIXDIRECTORYNAME=qbs_new(0,0);
qbs*oldstr3824=NULL;
if(_FUNC_FIXDIRECTORYNAME_STRING_DIR_NAME->tmp||_FUNC_FIXDIRECTORYNAME_STRING_DIR_NAME->fixed||_FUNC_FIXDIRECTORYNAME_STRING_DIR_NAME->readonly){
oldstr3824=_FUNC_FIXDIRECTORYNAME_STRING_DIR_NAME;
if (oldstr3824->cmem_descriptor){
_FUNC_FIXDIRECTORYNAME_STRING_DIR_NAME=qbs_new_cmem(oldstr3824->len,0);
qbs *_FUNC_GETESCAPEDPATH_STRING_GETESCAPEDPATH=NULL;
if (!_FUNC_GETESCAPEDPATH_STRING_GETESCAPEDPATH)_FUNC_GETESCAPEDPATH_STRING_GETESCAPEDPATH=qbs_new(0,0);
qbs*oldstr3906=NULL;
if(_FUNC_GETESCAPEDPATH_STRING_PATH_NAME->tmp||_FUNC_GETESCAPEDPATH_STRING_PATH_NAME->fixed||_FUNC_GETESCAPEDPATH_STRING_PATH_NAME->readonly){
oldstr3906=_FUNC_GETESCAPEDPATH_STRING_PATH_NAME;
if (oldstr3906->cmem_descriptor){
_FUNC_GETESCAPEDPATH_STRING_PATH_NAME=qbs_new_cmem(oldstr3906->len,0);
}else{
_FUNC_FIXDIRECTORYNAME_STRING_DIR_NAME=qbs_new(oldstr3824->len,0);
_FUNC_GETESCAPEDPATH_STRING_PATH_NAME=qbs_new(oldstr3906->len,0);
}
memcpy(_FUNC_FIXDIRECTORYNAME_STRING_DIR_NAME->chr,oldstr3824->chr,oldstr3824->len);
memcpy(_FUNC_GETESCAPEDPATH_STRING_PATH_NAME->chr,oldstr3906->chr,oldstr3906->len);
}
byte_element_struct *byte_element_3825=NULL;
if (!byte_element_3825){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3825=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3825=(byte_element_struct*)mem_static_malloc(12);
qbs *_FUNC_GETESCAPEDPATH_STRING_BUF=NULL;
if (!_FUNC_GETESCAPEDPATH_STRING_BUF)_FUNC_GETESCAPEDPATH_STRING_BUF=qbs_new(0,0);
uint32 *_FUNC_GETESCAPEDPATH_ULONG_Z=NULL;
if(_FUNC_GETESCAPEDPATH_ULONG_Z==NULL){
_FUNC_GETESCAPEDPATH_ULONG_Z=(uint32*)mem_static_malloc(4);
*_FUNC_GETESCAPEDPATH_ULONG_Z=0;
}
uint8 *_FUNC_GETESCAPEDPATH_UBYTE_A=NULL;
if(_FUNC_GETESCAPEDPATH_UBYTE_A==NULL){
_FUNC_GETESCAPEDPATH_UBYTE_A=(uint8*)mem_static_malloc(1);
*_FUNC_GETESCAPEDPATH_UBYTE_A=0;
}
int64 fornext_value3908;
int64 fornext_finalvalue3908;
int64 fornext_step3908;
uint8 fornext_step_negative3908;
byte_element_struct *byte_element_3909=NULL;
if (!byte_element_3909){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3909=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3909=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -1,12 +1,16 @@
qbs*oldstr3826=NULL;
if(_SUB_PURGETEMPORARYBUILDFILES_STRING_OS->tmp||_SUB_PURGETEMPORARYBUILDFILES_STRING_OS->fixed||_SUB_PURGETEMPORARYBUILDFILES_STRING_OS->readonly){
oldstr3826=_SUB_PURGETEMPORARYBUILDFILES_STRING_OS;
if (oldstr3826->cmem_descriptor){
_SUB_PURGETEMPORARYBUILDFILES_STRING_OS=qbs_new_cmem(oldstr3826->len,0);
qbs *_FUNC_FIXDIRECTORYNAME_STRING_FIXDIRECTORYNAME=NULL;
if (!_FUNC_FIXDIRECTORYNAME_STRING_FIXDIRECTORYNAME)_FUNC_FIXDIRECTORYNAME_STRING_FIXDIRECTORYNAME=qbs_new(0,0);
qbs*oldstr3910=NULL;
if(_FUNC_FIXDIRECTORYNAME_STRING_DIR_NAME->tmp||_FUNC_FIXDIRECTORYNAME_STRING_DIR_NAME->fixed||_FUNC_FIXDIRECTORYNAME_STRING_DIR_NAME->readonly){
oldstr3910=_FUNC_FIXDIRECTORYNAME_STRING_DIR_NAME;
if (oldstr3910->cmem_descriptor){
_FUNC_FIXDIRECTORYNAME_STRING_DIR_NAME=qbs_new_cmem(oldstr3910->len,0);
}else{
_SUB_PURGETEMPORARYBUILDFILES_STRING_OS=qbs_new(oldstr3826->len,0);
_FUNC_FIXDIRECTORYNAME_STRING_DIR_NAME=qbs_new(oldstr3910->len,0);
}
memcpy(_SUB_PURGETEMPORARYBUILDFILES_STRING_OS->chr,oldstr3826->chr,oldstr3826->len);
memcpy(_FUNC_FIXDIRECTORYNAME_STRING_DIR_NAME->chr,oldstr3910->chr,oldstr3910->len);
}
byte_element_struct *byte_element_3911=NULL;
if (!byte_element_3911){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3911=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3911=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_SUB_PURGETEMPORARYBUILDFILES_STRING_MAKE=NULL;
if (!_SUB_PURGETEMPORARYBUILDFILES_STRING_MAKE)_SUB_PURGETEMPORARYBUILDFILES_STRING_MAKE=qbs_new(0,0);

View file

@ -1,2 +1,12 @@
qbs *_FUNC_GETMAKEEXECUTABLE_STRING_GETMAKEEXECUTABLE=NULL;
if (!_FUNC_GETMAKEEXECUTABLE_STRING_GETMAKEEXECUTABLE)_FUNC_GETMAKEEXECUTABLE_STRING_GETMAKEEXECUTABLE=qbs_new(0,0);
qbs*oldstr3912=NULL;
if(_SUB_PURGETEMPORARYBUILDFILES_STRING_OS->tmp||_SUB_PURGETEMPORARYBUILDFILES_STRING_OS->fixed||_SUB_PURGETEMPORARYBUILDFILES_STRING_OS->readonly){
oldstr3912=_SUB_PURGETEMPORARYBUILDFILES_STRING_OS;
if (oldstr3912->cmem_descriptor){
_SUB_PURGETEMPORARYBUILDFILES_STRING_OS=qbs_new_cmem(oldstr3912->len,0);
}else{
_SUB_PURGETEMPORARYBUILDFILES_STRING_OS=qbs_new(oldstr3912->len,0);
}
memcpy(_SUB_PURGETEMPORARYBUILDFILES_STRING_OS->chr,oldstr3912->chr,oldstr3912->len);
}
qbs *_SUB_PURGETEMPORARYBUILDFILES_STRING_MAKE=NULL;
if (!_SUB_PURGETEMPORARYBUILDFILES_STRING_MAKE)_SUB_PURGETEMPORARYBUILDFILES_STRING_MAKE=qbs_new(0,0);

View file

@ -1,7 +1,7 @@
byte_element_struct *byte_element_2333=NULL;
if (!byte_element_2333){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2333=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2333=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_2366=NULL;
if (!byte_element_2366){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2366=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2366=(byte_element_struct*)mem_static_malloc(12);
}
int16 pass2334;
int16 pass2335;
int16 pass2336;
int16 pass2367;
int16 pass2368;
int16 pass2369;

View file

@ -1,14 +1,2 @@
qbs *_FUNC_MAKENMOUTPUTFILENAME_STRING_MAKENMOUTPUTFILENAME=NULL;
if (!_FUNC_MAKENMOUTPUTFILENAME_STRING_MAKENMOUTPUTFILENAME)_FUNC_MAKENMOUTPUTFILENAME_STRING_MAKENMOUTPUTFILENAME=qbs_new(0,0);
qbs*oldstr3827=NULL;
if(_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE->tmp||_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE->fixed||_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE->readonly){
oldstr3827=_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE;
if (oldstr3827->cmem_descriptor){
_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE=qbs_new_cmem(oldstr3827->len,0);
}else{
_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE=qbs_new(oldstr3827->len,0);
}
memcpy(_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE->chr,oldstr3827->chr,oldstr3827->len);
}
qbs *_FUNC_MAKENMOUTPUTFILENAME_STRING_DYN=NULL;
if (!_FUNC_MAKENMOUTPUTFILENAME_STRING_DYN)_FUNC_MAKENMOUTPUTFILENAME_STRING_DYN=qbs_new(0,0);
qbs *_FUNC_GETMAKEEXECUTABLE_STRING_GETMAKEEXECUTABLE=NULL;
if (!_FUNC_GETMAKEEXECUTABLE_STRING_GETMAKEEXECUTABLE)_FUNC_GETMAKEEXECUTABLE_STRING_GETMAKEEXECUTABLE=qbs_new(0,0);

View file

@ -1,31 +1,14 @@
qbs *_FUNC_GETELEMENT_STRING_GETELEMENT=NULL;
if (!_FUNC_GETELEMENT_STRING_GETELEMENT)_FUNC_GETELEMENT_STRING_GETELEMENT=qbs_new(0,0);
qbs*oldstr3828=NULL;
if(_FUNC_GETELEMENT_STRING_A->tmp||_FUNC_GETELEMENT_STRING_A->fixed||_FUNC_GETELEMENT_STRING_A->readonly){
oldstr3828=_FUNC_GETELEMENT_STRING_A;
if (oldstr3828->cmem_descriptor){
_FUNC_GETELEMENT_STRING_A=qbs_new_cmem(oldstr3828->len,0);
qbs *_FUNC_MAKENMOUTPUTFILENAME_STRING_MAKENMOUTPUTFILENAME=NULL;
if (!_FUNC_MAKENMOUTPUTFILENAME_STRING_MAKENMOUTPUTFILENAME)_FUNC_MAKENMOUTPUTFILENAME_STRING_MAKENMOUTPUTFILENAME=qbs_new(0,0);
qbs*oldstr3913=NULL;
if(_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE->tmp||_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE->fixed||_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE->readonly){
oldstr3913=_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE;
if (oldstr3913->cmem_descriptor){
_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE=qbs_new_cmem(oldstr3913->len,0);
}else{
_FUNC_GETELEMENT_STRING_A=qbs_new(oldstr3828->len,0);
_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE=qbs_new(oldstr3913->len,0);
}
memcpy(_FUNC_GETELEMENT_STRING_A->chr,oldstr3828->chr,oldstr3828->len);
}
int32 *_FUNC_GETELEMENT_LONG_P=NULL;
if(_FUNC_GETELEMENT_LONG_P==NULL){
_FUNC_GETELEMENT_LONG_P=(int32*)mem_static_malloc(4);
*_FUNC_GETELEMENT_LONG_P=0;
}
int32 *_FUNC_GETELEMENT_LONG_N=NULL;
if(_FUNC_GETELEMENT_LONG_N==NULL){
_FUNC_GETELEMENT_LONG_N=(int32*)mem_static_malloc(4);
*_FUNC_GETELEMENT_LONG_N=0;
}
int32 *_FUNC_GETELEMENT_LONG_I=NULL;
if(_FUNC_GETELEMENT_LONG_I==NULL){
_FUNC_GETELEMENT_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_GETELEMENT_LONG_I=0;
}
byte_element_struct *byte_element_3829=NULL;
if (!byte_element_3829){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3829=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3829=(byte_element_struct*)mem_static_malloc(12);
memcpy(_FUNC_MAKENMOUTPUTFILENAME_STRING_LIBFILE->chr,oldstr3913->chr,oldstr3913->len);
}
qbs *_FUNC_MAKENMOUTPUTFILENAME_STRING_DYN=NULL;
if (!_FUNC_MAKENMOUTPUTFILENAME_STRING_DYN)_FUNC_MAKENMOUTPUTFILENAME_STRING_DYN=qbs_new(0,0);

View file

@ -1,36 +1,31 @@
qbs *_FUNC_GETELEMENTS_STRING_GETELEMENTS=NULL;
if (!_FUNC_GETELEMENTS_STRING_GETELEMENTS)_FUNC_GETELEMENTS_STRING_GETELEMENTS=qbs_new(0,0);
qbs*oldstr3830=NULL;
if(_FUNC_GETELEMENTS_STRING_A->tmp||_FUNC_GETELEMENTS_STRING_A->fixed||_FUNC_GETELEMENTS_STRING_A->readonly){
oldstr3830=_FUNC_GETELEMENTS_STRING_A;
if (oldstr3830->cmem_descriptor){
_FUNC_GETELEMENTS_STRING_A=qbs_new_cmem(oldstr3830->len,0);
qbs *_FUNC_GETELEMENT_STRING_GETELEMENT=NULL;
if (!_FUNC_GETELEMENT_STRING_GETELEMENT)_FUNC_GETELEMENT_STRING_GETELEMENT=qbs_new(0,0);
qbs*oldstr3914=NULL;
if(_FUNC_GETELEMENT_STRING_A->tmp||_FUNC_GETELEMENT_STRING_A->fixed||_FUNC_GETELEMENT_STRING_A->readonly){
oldstr3914=_FUNC_GETELEMENT_STRING_A;
if (oldstr3914->cmem_descriptor){
_FUNC_GETELEMENT_STRING_A=qbs_new_cmem(oldstr3914->len,0);
}else{
_FUNC_GETELEMENTS_STRING_A=qbs_new(oldstr3830->len,0);
_FUNC_GETELEMENT_STRING_A=qbs_new(oldstr3914->len,0);
}
memcpy(_FUNC_GETELEMENTS_STRING_A->chr,oldstr3830->chr,oldstr3830->len);
memcpy(_FUNC_GETELEMENT_STRING_A->chr,oldstr3914->chr,oldstr3914->len);
}
int32 *_FUNC_GETELEMENTS_LONG_P=NULL;
if(_FUNC_GETELEMENTS_LONG_P==NULL){
_FUNC_GETELEMENTS_LONG_P=(int32*)mem_static_malloc(4);
*_FUNC_GETELEMENTS_LONG_P=0;
int32 *_FUNC_GETELEMENT_LONG_P=NULL;
if(_FUNC_GETELEMENT_LONG_P==NULL){
_FUNC_GETELEMENT_LONG_P=(int32*)mem_static_malloc(4);
*_FUNC_GETELEMENT_LONG_P=0;
}
int32 *_FUNC_GETELEMENTS_LONG_N=NULL;
if(_FUNC_GETELEMENTS_LONG_N==NULL){
_FUNC_GETELEMENTS_LONG_N=(int32*)mem_static_malloc(4);
*_FUNC_GETELEMENTS_LONG_N=0;
int32 *_FUNC_GETELEMENT_LONG_N=NULL;
if(_FUNC_GETELEMENT_LONG_N==NULL){
_FUNC_GETELEMENT_LONG_N=(int32*)mem_static_malloc(4);
*_FUNC_GETELEMENT_LONG_N=0;
}
int32 *_FUNC_GETELEMENTS_LONG_I=NULL;
if(_FUNC_GETELEMENTS_LONG_I==NULL){
_FUNC_GETELEMENTS_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_GETELEMENTS_LONG_I=0;
int32 *_FUNC_GETELEMENT_LONG_I=NULL;
if(_FUNC_GETELEMENT_LONG_I==NULL){
_FUNC_GETELEMENT_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_GETELEMENT_LONG_I=0;
}
int32 *_FUNC_GETELEMENTS_LONG_I1POS=NULL;
if(_FUNC_GETELEMENTS_LONG_I1POS==NULL){
_FUNC_GETELEMENTS_LONG_I1POS=(int32*)mem_static_malloc(4);
*_FUNC_GETELEMENTS_LONG_I1POS=0;
}
byte_element_struct *byte_element_3831=NULL;
if (!byte_element_3831){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3831=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3831=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_3915=NULL;
if (!byte_element_3915){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3915=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3915=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -1,36 +1,36 @@
qbs*oldstr3832=NULL;
if(_SUB_INSERTELEMENTS_STRING_A->tmp||_SUB_INSERTELEMENTS_STRING_A->fixed||_SUB_INSERTELEMENTS_STRING_A->readonly){
oldstr3832=_SUB_INSERTELEMENTS_STRING_A;
if (oldstr3832->cmem_descriptor){
_SUB_INSERTELEMENTS_STRING_A=qbs_new_cmem(oldstr3832->len,0);
qbs *_FUNC_GETELEMENTS_STRING_GETELEMENTS=NULL;
if (!_FUNC_GETELEMENTS_STRING_GETELEMENTS)_FUNC_GETELEMENTS_STRING_GETELEMENTS=qbs_new(0,0);
qbs*oldstr3916=NULL;
if(_FUNC_GETELEMENTS_STRING_A->tmp||_FUNC_GETELEMENTS_STRING_A->fixed||_FUNC_GETELEMENTS_STRING_A->readonly){
oldstr3916=_FUNC_GETELEMENTS_STRING_A;
if (oldstr3916->cmem_descriptor){
_FUNC_GETELEMENTS_STRING_A=qbs_new_cmem(oldstr3916->len,0);
}else{
_SUB_INSERTELEMENTS_STRING_A=qbs_new(oldstr3832->len,0);
_FUNC_GETELEMENTS_STRING_A=qbs_new(oldstr3916->len,0);
}
memcpy(_SUB_INSERTELEMENTS_STRING_A->chr,oldstr3832->chr,oldstr3832->len);
memcpy(_FUNC_GETELEMENTS_STRING_A->chr,oldstr3916->chr,oldstr3916->len);
}
qbs*oldstr3833=NULL;
if(_SUB_INSERTELEMENTS_STRING_ELEMENTS->tmp||_SUB_INSERTELEMENTS_STRING_ELEMENTS->fixed||_SUB_INSERTELEMENTS_STRING_ELEMENTS->readonly){
oldstr3833=_SUB_INSERTELEMENTS_STRING_ELEMENTS;
if (oldstr3833->cmem_descriptor){
_SUB_INSERTELEMENTS_STRING_ELEMENTS=qbs_new_cmem(oldstr3833->len,0);
}else{
_SUB_INSERTELEMENTS_STRING_ELEMENTS=qbs_new(oldstr3833->len,0);
int32 *_FUNC_GETELEMENTS_LONG_P=NULL;
if(_FUNC_GETELEMENTS_LONG_P==NULL){
_FUNC_GETELEMENTS_LONG_P=(int32*)mem_static_malloc(4);
*_FUNC_GETELEMENTS_LONG_P=0;
}
memcpy(_SUB_INSERTELEMENTS_STRING_ELEMENTS->chr,oldstr3833->chr,oldstr3833->len);
int32 *_FUNC_GETELEMENTS_LONG_N=NULL;
if(_FUNC_GETELEMENTS_LONG_N==NULL){
_FUNC_GETELEMENTS_LONG_N=(int32*)mem_static_malloc(4);
*_FUNC_GETELEMENTS_LONG_N=0;
}
qbs *_SUB_INSERTELEMENTS_STRING_A2=NULL;
if (!_SUB_INSERTELEMENTS_STRING_A2)_SUB_INSERTELEMENTS_STRING_A2=qbs_new(0,0);
int32 *_SUB_INSERTELEMENTS_LONG_N=NULL;
if(_SUB_INSERTELEMENTS_LONG_N==NULL){
_SUB_INSERTELEMENTS_LONG_N=(int32*)mem_static_malloc(4);
*_SUB_INSERTELEMENTS_LONG_N=0;
int32 *_FUNC_GETELEMENTS_LONG_I=NULL;
if(_FUNC_GETELEMENTS_LONG_I==NULL){
_FUNC_GETELEMENTS_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_GETELEMENTS_LONG_I=0;
}
int32 *_SUB_INSERTELEMENTS_LONG_I2=NULL;
if(_SUB_INSERTELEMENTS_LONG_I2==NULL){
_SUB_INSERTELEMENTS_LONG_I2=(int32*)mem_static_malloc(4);
*_SUB_INSERTELEMENTS_LONG_I2=0;
int32 *_FUNC_GETELEMENTS_LONG_I1POS=NULL;
if(_FUNC_GETELEMENTS_LONG_I1POS==NULL){
_FUNC_GETELEMENTS_LONG_I1POS=(int32*)mem_static_malloc(4);
*_FUNC_GETELEMENTS_LONG_I1POS=0;
}
byte_element_struct *byte_element_3917=NULL;
if (!byte_element_3917){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3917=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3917=(byte_element_struct*)mem_static_malloc(12);
}
int64 fornext_value3835;
int64 fornext_finalvalue3835;
int64 fornext_step3835;
uint8 fornext_step_negative3835;

View file

@ -1,30 +1,36 @@
int32 *_FUNC_NUMELEMENTS_LONG_NUMELEMENTS=NULL;
if(_FUNC_NUMELEMENTS_LONG_NUMELEMENTS==NULL){
_FUNC_NUMELEMENTS_LONG_NUMELEMENTS=(int32*)mem_static_malloc(4);
*_FUNC_NUMELEMENTS_LONG_NUMELEMENTS=0;
}
qbs*oldstr3836=NULL;
if(_FUNC_NUMELEMENTS_STRING_A->tmp||_FUNC_NUMELEMENTS_STRING_A->fixed||_FUNC_NUMELEMENTS_STRING_A->readonly){
oldstr3836=_FUNC_NUMELEMENTS_STRING_A;
if (oldstr3836->cmem_descriptor){
_FUNC_NUMELEMENTS_STRING_A=qbs_new_cmem(oldstr3836->len,0);
qbs*oldstr3918=NULL;
if(_SUB_INSERTELEMENTS_STRING_A->tmp||_SUB_INSERTELEMENTS_STRING_A->fixed||_SUB_INSERTELEMENTS_STRING_A->readonly){
oldstr3918=_SUB_INSERTELEMENTS_STRING_A;
if (oldstr3918->cmem_descriptor){
_SUB_INSERTELEMENTS_STRING_A=qbs_new_cmem(oldstr3918->len,0);
}else{
_FUNC_NUMELEMENTS_STRING_A=qbs_new(oldstr3836->len,0);
_SUB_INSERTELEMENTS_STRING_A=qbs_new(oldstr3918->len,0);
}
memcpy(_FUNC_NUMELEMENTS_STRING_A->chr,oldstr3836->chr,oldstr3836->len);
memcpy(_SUB_INSERTELEMENTS_STRING_A->chr,oldstr3918->chr,oldstr3918->len);
}
int32 *_FUNC_NUMELEMENTS_LONG_P=NULL;
if(_FUNC_NUMELEMENTS_LONG_P==NULL){
_FUNC_NUMELEMENTS_LONG_P=(int32*)mem_static_malloc(4);
*_FUNC_NUMELEMENTS_LONG_P=0;
qbs*oldstr3919=NULL;
if(_SUB_INSERTELEMENTS_STRING_ELEMENTS->tmp||_SUB_INSERTELEMENTS_STRING_ELEMENTS->fixed||_SUB_INSERTELEMENTS_STRING_ELEMENTS->readonly){
oldstr3919=_SUB_INSERTELEMENTS_STRING_ELEMENTS;
if (oldstr3919->cmem_descriptor){
_SUB_INSERTELEMENTS_STRING_ELEMENTS=qbs_new_cmem(oldstr3919->len,0);
}else{
_SUB_INSERTELEMENTS_STRING_ELEMENTS=qbs_new(oldstr3919->len,0);
}
int32 *_FUNC_NUMELEMENTS_LONG_N=NULL;
if(_FUNC_NUMELEMENTS_LONG_N==NULL){
_FUNC_NUMELEMENTS_LONG_N=(int32*)mem_static_malloc(4);
*_FUNC_NUMELEMENTS_LONG_N=0;
memcpy(_SUB_INSERTELEMENTS_STRING_ELEMENTS->chr,oldstr3919->chr,oldstr3919->len);
}
int32 *_FUNC_NUMELEMENTS_LONG_I=NULL;
if(_FUNC_NUMELEMENTS_LONG_I==NULL){
_FUNC_NUMELEMENTS_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_NUMELEMENTS_LONG_I=0;
qbs *_SUB_INSERTELEMENTS_STRING_A2=NULL;
if (!_SUB_INSERTELEMENTS_STRING_A2)_SUB_INSERTELEMENTS_STRING_A2=qbs_new(0,0);
int32 *_SUB_INSERTELEMENTS_LONG_N=NULL;
if(_SUB_INSERTELEMENTS_LONG_N==NULL){
_SUB_INSERTELEMENTS_LONG_N=(int32*)mem_static_malloc(4);
*_SUB_INSERTELEMENTS_LONG_N=0;
}
int32 *_SUB_INSERTELEMENTS_LONG_I2=NULL;
if(_SUB_INSERTELEMENTS_LONG_I2==NULL){
_SUB_INSERTELEMENTS_LONG_I2=(int32*)mem_static_malloc(4);
*_SUB_INSERTELEMENTS_LONG_I2=0;
}
int64 fornext_value3921;
int64 fornext_finalvalue3921;
int64 fornext_step3921;
uint8 fornext_step_negative3921;

View file

@ -1,30 +1,30 @@
qbs*oldstr3837=NULL;
if(_SUB_REMOVEELEMENTS_STRING_A->tmp||_SUB_REMOVEELEMENTS_STRING_A->fixed||_SUB_REMOVEELEMENTS_STRING_A->readonly){
oldstr3837=_SUB_REMOVEELEMENTS_STRING_A;
if (oldstr3837->cmem_descriptor){
_SUB_REMOVEELEMENTS_STRING_A=qbs_new_cmem(oldstr3837->len,0);
int32 *_FUNC_NUMELEMENTS_LONG_NUMELEMENTS=NULL;
if(_FUNC_NUMELEMENTS_LONG_NUMELEMENTS==NULL){
_FUNC_NUMELEMENTS_LONG_NUMELEMENTS=(int32*)mem_static_malloc(4);
*_FUNC_NUMELEMENTS_LONG_NUMELEMENTS=0;
}
qbs*oldstr3922=NULL;
if(_FUNC_NUMELEMENTS_STRING_A->tmp||_FUNC_NUMELEMENTS_STRING_A->fixed||_FUNC_NUMELEMENTS_STRING_A->readonly){
oldstr3922=_FUNC_NUMELEMENTS_STRING_A;
if (oldstr3922->cmem_descriptor){
_FUNC_NUMELEMENTS_STRING_A=qbs_new_cmem(oldstr3922->len,0);
}else{
_SUB_REMOVEELEMENTS_STRING_A=qbs_new(oldstr3837->len,0);
_FUNC_NUMELEMENTS_STRING_A=qbs_new(oldstr3922->len,0);
}
memcpy(_SUB_REMOVEELEMENTS_STRING_A->chr,oldstr3837->chr,oldstr3837->len);
memcpy(_FUNC_NUMELEMENTS_STRING_A->chr,oldstr3922->chr,oldstr3922->len);
}
int32 *_SUB_REMOVEELEMENTS_LONG_N=NULL;
if(_SUB_REMOVEELEMENTS_LONG_N==NULL){
_SUB_REMOVEELEMENTS_LONG_N=(int32*)mem_static_malloc(4);
*_SUB_REMOVEELEMENTS_LONG_N=0;
int32 *_FUNC_NUMELEMENTS_LONG_P=NULL;
if(_FUNC_NUMELEMENTS_LONG_P==NULL){
_FUNC_NUMELEMENTS_LONG_P=(int32*)mem_static_malloc(4);
*_FUNC_NUMELEMENTS_LONG_P=0;
}
int32 *_SUB_REMOVEELEMENTS_LONG_I=NULL;
if(_SUB_REMOVEELEMENTS_LONG_I==NULL){
_SUB_REMOVEELEMENTS_LONG_I=(int32*)mem_static_malloc(4);
*_SUB_REMOVEELEMENTS_LONG_I=0;
int32 *_FUNC_NUMELEMENTS_LONG_N=NULL;
if(_FUNC_NUMELEMENTS_LONG_N==NULL){
_FUNC_NUMELEMENTS_LONG_N=(int32*)mem_static_malloc(4);
*_FUNC_NUMELEMENTS_LONG_N=0;
}
qbs *_SUB_REMOVEELEMENTS_STRING_A2=NULL;
if (!_SUB_REMOVEELEMENTS_STRING_A2)_SUB_REMOVEELEMENTS_STRING_A2=qbs_new(0,0);
int64 fornext_value3839;
int64 fornext_finalvalue3839;
int64 fornext_step3839;
uint8 fornext_step_negative3839;
byte_element_struct *byte_element_3840=NULL;
if (!byte_element_3840){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3840=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3840=(byte_element_struct*)mem_static_malloc(12);
int32 *_FUNC_NUMELEMENTS_LONG_I=NULL;
if(_FUNC_NUMELEMENTS_LONG_I==NULL){
_FUNC_NUMELEMENTS_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_NUMELEMENTS_LONG_I=0;
}

View file

@ -1,40 +1,30 @@
int32 *_FUNC_COUNTFUNCTIONELEMENTS_LONG_COUNTFUNCTIONELEMENTS=NULL;
if(_FUNC_COUNTFUNCTIONELEMENTS_LONG_COUNTFUNCTIONELEMENTS==NULL){
_FUNC_COUNTFUNCTIONELEMENTS_LONG_COUNTFUNCTIONELEMENTS=(int32*)mem_static_malloc(4);
*_FUNC_COUNTFUNCTIONELEMENTS_LONG_COUNTFUNCTIONELEMENTS=0;
}
qbs*oldstr3841=NULL;
if(_FUNC_COUNTFUNCTIONELEMENTS_STRING_A->tmp||_FUNC_COUNTFUNCTIONELEMENTS_STRING_A->fixed||_FUNC_COUNTFUNCTIONELEMENTS_STRING_A->readonly){
oldstr3841=_FUNC_COUNTFUNCTIONELEMENTS_STRING_A;
if (oldstr3841->cmem_descriptor){
_FUNC_COUNTFUNCTIONELEMENTS_STRING_A=qbs_new_cmem(oldstr3841->len,0);
qbs*oldstr3923=NULL;
if(_SUB_REMOVEELEMENTS_STRING_A->tmp||_SUB_REMOVEELEMENTS_STRING_A->fixed||_SUB_REMOVEELEMENTS_STRING_A->readonly){
oldstr3923=_SUB_REMOVEELEMENTS_STRING_A;
if (oldstr3923->cmem_descriptor){
_SUB_REMOVEELEMENTS_STRING_A=qbs_new_cmem(oldstr3923->len,0);
}else{
_FUNC_COUNTFUNCTIONELEMENTS_STRING_A=qbs_new(oldstr3841->len,0);
_SUB_REMOVEELEMENTS_STRING_A=qbs_new(oldstr3923->len,0);
}
memcpy(_FUNC_COUNTFUNCTIONELEMENTS_STRING_A->chr,oldstr3841->chr,oldstr3841->len);
memcpy(_SUB_REMOVEELEMENTS_STRING_A->chr,oldstr3923->chr,oldstr3923->len);
}
int32 *_FUNC_COUNTFUNCTIONELEMENTS_LONG_COUNT=NULL;
if(_FUNC_COUNTFUNCTIONELEMENTS_LONG_COUNT==NULL){
_FUNC_COUNTFUNCTIONELEMENTS_LONG_COUNT=(int32*)mem_static_malloc(4);
*_FUNC_COUNTFUNCTIONELEMENTS_LONG_COUNT=0;
int32 *_SUB_REMOVEELEMENTS_LONG_N=NULL;
if(_SUB_REMOVEELEMENTS_LONG_N==NULL){
_SUB_REMOVEELEMENTS_LONG_N=(int32*)mem_static_malloc(4);
*_SUB_REMOVEELEMENTS_LONG_N=0;
}
int32 *_FUNC_COUNTFUNCTIONELEMENTS_LONG_P=NULL;
if(_FUNC_COUNTFUNCTIONELEMENTS_LONG_P==NULL){
_FUNC_COUNTFUNCTIONELEMENTS_LONG_P=(int32*)mem_static_malloc(4);
*_FUNC_COUNTFUNCTIONELEMENTS_LONG_P=0;
int32 *_SUB_REMOVEELEMENTS_LONG_I=NULL;
if(_SUB_REMOVEELEMENTS_LONG_I==NULL){
_SUB_REMOVEELEMENTS_LONG_I=(int32*)mem_static_malloc(4);
*_SUB_REMOVEELEMENTS_LONG_I=0;
}
int32 *_FUNC_COUNTFUNCTIONELEMENTS_LONG_LVL=NULL;
if(_FUNC_COUNTFUNCTIONELEMENTS_LONG_LVL==NULL){
_FUNC_COUNTFUNCTIONELEMENTS_LONG_LVL=(int32*)mem_static_malloc(4);
*_FUNC_COUNTFUNCTIONELEMENTS_LONG_LVL=0;
qbs *_SUB_REMOVEELEMENTS_STRING_A2=NULL;
if (!_SUB_REMOVEELEMENTS_STRING_A2)_SUB_REMOVEELEMENTS_STRING_A2=qbs_new(0,0);
int64 fornext_value3925;
int64 fornext_finalvalue3925;
int64 fornext_step3925;
uint8 fornext_step_negative3925;
byte_element_struct *byte_element_3926=NULL;
if (!byte_element_3926){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3926=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3926=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_COUNTFUNCTIONELEMENTS_LONG_I=NULL;
if(_FUNC_COUNTFUNCTIONELEMENTS_LONG_I==NULL){
_FUNC_COUNTFUNCTIONELEMENTS_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_COUNTFUNCTIONELEMENTS_LONG_I=0;
}
byte_element_struct *byte_element_3842=NULL;
if (!byte_element_3842){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3842=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3842=(byte_element_struct*)mem_static_malloc(12);
}
static int32 sc_3844;

View file

@ -1,53 +1,40 @@
int32 *_FUNC_HASFUNCTIONELEMENT_LONG_HASFUNCTIONELEMENT=NULL;
if(_FUNC_HASFUNCTIONELEMENT_LONG_HASFUNCTIONELEMENT==NULL){
_FUNC_HASFUNCTIONELEMENT_LONG_HASFUNCTIONELEMENT=(int32*)mem_static_malloc(4);
*_FUNC_HASFUNCTIONELEMENT_LONG_HASFUNCTIONELEMENT=0;
int32 *_FUNC_COUNTFUNCTIONELEMENTS_LONG_COUNTFUNCTIONELEMENTS=NULL;
if(_FUNC_COUNTFUNCTIONELEMENTS_LONG_COUNTFUNCTIONELEMENTS==NULL){
_FUNC_COUNTFUNCTIONELEMENTS_LONG_COUNTFUNCTIONELEMENTS=(int32*)mem_static_malloc(4);
*_FUNC_COUNTFUNCTIONELEMENTS_LONG_COUNTFUNCTIONELEMENTS=0;
}
qbs*oldstr3845=NULL;
if(_FUNC_HASFUNCTIONELEMENT_STRING_A->tmp||_FUNC_HASFUNCTIONELEMENT_STRING_A->fixed||_FUNC_HASFUNCTIONELEMENT_STRING_A->readonly){
oldstr3845=_FUNC_HASFUNCTIONELEMENT_STRING_A;
if (oldstr3845->cmem_descriptor){
_FUNC_HASFUNCTIONELEMENT_STRING_A=qbs_new_cmem(oldstr3845->len,0);
qbs*oldstr3927=NULL;
if(_FUNC_COUNTFUNCTIONELEMENTS_STRING_A->tmp||_FUNC_COUNTFUNCTIONELEMENTS_STRING_A->fixed||_FUNC_COUNTFUNCTIONELEMENTS_STRING_A->readonly){
oldstr3927=_FUNC_COUNTFUNCTIONELEMENTS_STRING_A;
if (oldstr3927->cmem_descriptor){
_FUNC_COUNTFUNCTIONELEMENTS_STRING_A=qbs_new_cmem(oldstr3927->len,0);
}else{
_FUNC_HASFUNCTIONELEMENT_STRING_A=qbs_new(oldstr3845->len,0);
_FUNC_COUNTFUNCTIONELEMENTS_STRING_A=qbs_new(oldstr3927->len,0);
}
memcpy(_FUNC_HASFUNCTIONELEMENT_STRING_A->chr,oldstr3845->chr,oldstr3845->len);
memcpy(_FUNC_COUNTFUNCTIONELEMENTS_STRING_A->chr,oldstr3927->chr,oldstr3927->len);
}
int32 *_FUNC_HASFUNCTIONELEMENT_LONG_COUNT=NULL;
if(_FUNC_HASFUNCTIONELEMENT_LONG_COUNT==NULL){
_FUNC_HASFUNCTIONELEMENT_LONG_COUNT=(int32*)mem_static_malloc(4);
*_FUNC_HASFUNCTIONELEMENT_LONG_COUNT=0;
int32 *_FUNC_COUNTFUNCTIONELEMENTS_LONG_COUNT=NULL;
if(_FUNC_COUNTFUNCTIONELEMENTS_LONG_COUNT==NULL){
_FUNC_COUNTFUNCTIONELEMENTS_LONG_COUNT=(int32*)mem_static_malloc(4);
*_FUNC_COUNTFUNCTIONELEMENTS_LONG_COUNT=0;
}
int32 *_FUNC_HASFUNCTIONELEMENT_LONG_P=NULL;
if(_FUNC_HASFUNCTIONELEMENT_LONG_P==NULL){
_FUNC_HASFUNCTIONELEMENT_LONG_P=(int32*)mem_static_malloc(4);
*_FUNC_HASFUNCTIONELEMENT_LONG_P=0;
int32 *_FUNC_COUNTFUNCTIONELEMENTS_LONG_P=NULL;
if(_FUNC_COUNTFUNCTIONELEMENTS_LONG_P==NULL){
_FUNC_COUNTFUNCTIONELEMENTS_LONG_P=(int32*)mem_static_malloc(4);
*_FUNC_COUNTFUNCTIONELEMENTS_LONG_P=0;
}
int32 *_FUNC_HASFUNCTIONELEMENT_LONG_LVL=NULL;
if(_FUNC_HASFUNCTIONELEMENT_LONG_LVL==NULL){
_FUNC_HASFUNCTIONELEMENT_LONG_LVL=(int32*)mem_static_malloc(4);
*_FUNC_HASFUNCTIONELEMENT_LONG_LVL=0;
int32 *_FUNC_COUNTFUNCTIONELEMENTS_LONG_LVL=NULL;
if(_FUNC_COUNTFUNCTIONELEMENTS_LONG_LVL==NULL){
_FUNC_COUNTFUNCTIONELEMENTS_LONG_LVL=(int32*)mem_static_malloc(4);
*_FUNC_COUNTFUNCTIONELEMENTS_LONG_LVL=0;
}
int32 *_FUNC_HASFUNCTIONELEMENT_LONG_I=NULL;
if(_FUNC_HASFUNCTIONELEMENT_LONG_I==NULL){
_FUNC_HASFUNCTIONELEMENT_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_HASFUNCTIONELEMENT_LONG_I=0;
int32 *_FUNC_COUNTFUNCTIONELEMENTS_LONG_I=NULL;
if(_FUNC_COUNTFUNCTIONELEMENTS_LONG_I==NULL){
_FUNC_COUNTFUNCTIONELEMENTS_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_COUNTFUNCTIONELEMENTS_LONG_I=0;
}
int32 *_FUNC_HASFUNCTIONELEMENT_LONG_START=NULL;
if(_FUNC_HASFUNCTIONELEMENT_LONG_START==NULL){
_FUNC_HASFUNCTIONELEMENT_LONG_START=(int32*)mem_static_malloc(4);
*_FUNC_HASFUNCTIONELEMENT_LONG_START=0;
byte_element_struct *byte_element_3928=NULL;
if (!byte_element_3928){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3928=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3928=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3846=NULL;
if (!byte_element_3846){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3846=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3846=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3847=NULL;
if (!byte_element_3847){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3847=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3847=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3849=NULL;
if (!byte_element_3849){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3849=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3849=(byte_element_struct*)mem_static_malloc(12);
}
static int32 sc_3850;
static int32 sc_3930;

View file

@ -1,71 +1,53 @@
int32 *_FUNC_ISVALIDARGSET_LONG_ISVALIDARGSET=NULL;
if(_FUNC_ISVALIDARGSET_LONG_ISVALIDARGSET==NULL){
_FUNC_ISVALIDARGSET_LONG_ISVALIDARGSET=(int32*)mem_static_malloc(4);
*_FUNC_ISVALIDARGSET_LONG_ISVALIDARGSET=0;
int32 *_FUNC_HASFUNCTIONELEMENT_LONG_HASFUNCTIONELEMENT=NULL;
if(_FUNC_HASFUNCTIONELEMENT_LONG_HASFUNCTIONELEMENT==NULL){
_FUNC_HASFUNCTIONELEMENT_LONG_HASFUNCTIONELEMENT=(int32*)mem_static_malloc(4);
*_FUNC_HASFUNCTIONELEMENT_LONG_HASFUNCTIONELEMENT=0;
}
qbs*oldstr3851=NULL;
if(_FUNC_ISVALIDARGSET_STRING_FORMAT->tmp||_FUNC_ISVALIDARGSET_STRING_FORMAT->fixed||_FUNC_ISVALIDARGSET_STRING_FORMAT->readonly){
oldstr3851=_FUNC_ISVALIDARGSET_STRING_FORMAT;
if (oldstr3851->cmem_descriptor){
_FUNC_ISVALIDARGSET_STRING_FORMAT=qbs_new_cmem(oldstr3851->len,0);
qbs*oldstr3931=NULL;
if(_FUNC_HASFUNCTIONELEMENT_STRING_A->tmp||_FUNC_HASFUNCTIONELEMENT_STRING_A->fixed||_FUNC_HASFUNCTIONELEMENT_STRING_A->readonly){
oldstr3931=_FUNC_HASFUNCTIONELEMENT_STRING_A;
if (oldstr3931->cmem_descriptor){
_FUNC_HASFUNCTIONELEMENT_STRING_A=qbs_new_cmem(oldstr3931->len,0);
}else{
_FUNC_ISVALIDARGSET_STRING_FORMAT=qbs_new(oldstr3851->len,0);
_FUNC_HASFUNCTIONELEMENT_STRING_A=qbs_new(oldstr3931->len,0);
}
memcpy(_FUNC_ISVALIDARGSET_STRING_FORMAT->chr,oldstr3851->chr,oldstr3851->len);
memcpy(_FUNC_HASFUNCTIONELEMENT_STRING_A->chr,oldstr3931->chr,oldstr3931->len);
}
int32 *_FUNC_ISVALIDARGSET_LONG_MAXARGUMENT=NULL;
if(_FUNC_ISVALIDARGSET_LONG_MAXARGUMENT==NULL){
_FUNC_ISVALIDARGSET_LONG_MAXARGUMENT=(int32*)mem_static_malloc(4);
*_FUNC_ISVALIDARGSET_LONG_MAXARGUMENT=0;
int32 *_FUNC_HASFUNCTIONELEMENT_LONG_COUNT=NULL;
if(_FUNC_HASFUNCTIONELEMENT_LONG_COUNT==NULL){
_FUNC_HASFUNCTIONELEMENT_LONG_COUNT=(int32*)mem_static_malloc(4);
*_FUNC_HASFUNCTIONELEMENT_LONG_COUNT=0;
}
int32 *_FUNC_ISVALIDARGSET_LONG_I=NULL;
if(_FUNC_ISVALIDARGSET_LONG_I==NULL){
_FUNC_ISVALIDARGSET_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_ISVALIDARGSET_LONG_I=0;
int32 *_FUNC_HASFUNCTIONELEMENT_LONG_P=NULL;
if(_FUNC_HASFUNCTIONELEMENT_LONG_P==NULL){
_FUNC_HASFUNCTIONELEMENT_LONG_P=(int32*)mem_static_malloc(4);
*_FUNC_HASFUNCTIONELEMENT_LONG_P=0;
}
int32 *_FUNC_ISVALIDARGSET_LONG_CURRENTARG=NULL;
if(_FUNC_ISVALIDARGSET_LONG_CURRENTARG==NULL){
_FUNC_ISVALIDARGSET_LONG_CURRENTARG=(int32*)mem_static_malloc(4);
*_FUNC_ISVALIDARGSET_LONG_CURRENTARG=0;
int32 *_FUNC_HASFUNCTIONELEMENT_LONG_LVL=NULL;
if(_FUNC_HASFUNCTIONELEMENT_LONG_LVL==NULL){
_FUNC_HASFUNCTIONELEMENT_LONG_LVL=(int32*)mem_static_malloc(4);
*_FUNC_HASFUNCTIONELEMENT_LONG_LVL=0;
}
int32 *_FUNC_ISVALIDARGSET_LONG_OPTIONLVL=NULL;
if(_FUNC_ISVALIDARGSET_LONG_OPTIONLVL==NULL){
_FUNC_ISVALIDARGSET_LONG_OPTIONLVL=(int32*)mem_static_malloc(4);
*_FUNC_ISVALIDARGSET_LONG_OPTIONLVL=0;
int32 *_FUNC_HASFUNCTIONELEMENT_LONG_I=NULL;
if(_FUNC_HASFUNCTIONELEMENT_LONG_I==NULL){
_FUNC_HASFUNCTIONELEMENT_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_HASFUNCTIONELEMENT_LONG_I=0;
}
ptrszint *_FUNC_ISVALIDARGSET_ARRAY_LONG_WASPROVIDED=NULL;
if (!_FUNC_ISVALIDARGSET_ARRAY_LONG_WASPROVIDED){
_FUNC_ISVALIDARGSET_ARRAY_LONG_WASPROVIDED=(ptrszint*)mem_static_malloc(9*ptrsz);
new_mem_lock();
mem_lock_tmp->type=4;
((ptrszint*)_FUNC_ISVALIDARGSET_ARRAY_LONG_WASPROVIDED)[8]=(ptrszint)mem_lock_tmp;
_FUNC_ISVALIDARGSET_ARRAY_LONG_WASPROVIDED[2]=0;
_FUNC_ISVALIDARGSET_ARRAY_LONG_WASPROVIDED[4]=2147483647;
_FUNC_ISVALIDARGSET_ARRAY_LONG_WASPROVIDED[5]=0;
_FUNC_ISVALIDARGSET_ARRAY_LONG_WASPROVIDED[6]=0;
_FUNC_ISVALIDARGSET_ARRAY_LONG_WASPROVIDED[0]=(ptrszint)nothingvalue;
int32 *_FUNC_HASFUNCTIONELEMENT_LONG_START=NULL;
if(_FUNC_HASFUNCTIONELEMENT_LONG_START==NULL){
_FUNC_HASFUNCTIONELEMENT_LONG_START=(int32*)mem_static_malloc(4);
*_FUNC_HASFUNCTIONELEMENT_LONG_START=0;
}
int32 *_FUNC_ISVALIDARGSET_LONG_ARGPROVIDED=NULL;
if(_FUNC_ISVALIDARGSET_LONG_ARGPROVIDED==NULL){
_FUNC_ISVALIDARGSET_LONG_ARGPROVIDED=(int32*)mem_static_malloc(4);
*_FUNC_ISVALIDARGSET_LONG_ARGPROVIDED=0;
byte_element_struct *byte_element_3932=NULL;
if (!byte_element_3932){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3932=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3932=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_ISVALIDARGSET_LONG_ARGNOTPROVIDED=NULL;
if(_FUNC_ISVALIDARGSET_LONG_ARGNOTPROVIDED==NULL){
_FUNC_ISVALIDARGSET_LONG_ARGNOTPROVIDED=(int32*)mem_static_malloc(4);
*_FUNC_ISVALIDARGSET_LONG_ARGNOTPROVIDED=0;
byte_element_struct *byte_element_3933=NULL;
if (!byte_element_3933){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3933=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3933=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_ISVALIDARGSET_LONG_ARGIGNORED=NULL;
if(_FUNC_ISVALIDARGSET_LONG_ARGIGNORED==NULL){
_FUNC_ISVALIDARGSET_LONG_ARGIGNORED=(int32*)mem_static_malloc(4);
*_FUNC_ISVALIDARGSET_LONG_ARGIGNORED=0;
byte_element_struct *byte_element_3935=NULL;
if (!byte_element_3935){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3935=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3935=(byte_element_struct*)mem_static_malloc(12);
}
int64 fornext_value3853;
int64 fornext_finalvalue3853;
int64 fornext_step3853;
uint8 fornext_step_negative3853;
byte_element_struct *byte_element_3854=NULL;
if (!byte_element_3854){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3854=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3854=(byte_element_struct*)mem_static_malloc(12);
}
static int32 sc_3855;
static int32 sc_3936;

View file

@ -1,34 +1,71 @@
qbs *_FUNC_GL2QB_TYPE_CONVERT_STRING_GL2QB_TYPE_CONVERT=NULL;
if (!_FUNC_GL2QB_TYPE_CONVERT_STRING_GL2QB_TYPE_CONVERT)_FUNC_GL2QB_TYPE_CONVERT_STRING_GL2QB_TYPE_CONVERT=qbs_new(0,0);
qbs*oldstr3856=NULL;
if(_FUNC_GL2QB_TYPE_CONVERT_STRING_A->tmp||_FUNC_GL2QB_TYPE_CONVERT_STRING_A->fixed||_FUNC_GL2QB_TYPE_CONVERT_STRING_A->readonly){
oldstr3856=_FUNC_GL2QB_TYPE_CONVERT_STRING_A;
if (oldstr3856->cmem_descriptor){
_FUNC_GL2QB_TYPE_CONVERT_STRING_A=qbs_new_cmem(oldstr3856->len,0);
int32 *_FUNC_ISVALIDARGSET_LONG_ISVALIDARGSET=NULL;
if(_FUNC_ISVALIDARGSET_LONG_ISVALIDARGSET==NULL){
_FUNC_ISVALIDARGSET_LONG_ISVALIDARGSET=(int32*)mem_static_malloc(4);
*_FUNC_ISVALIDARGSET_LONG_ISVALIDARGSET=0;
}
qbs*oldstr3937=NULL;
if(_FUNC_ISVALIDARGSET_STRING_FORMAT->tmp||_FUNC_ISVALIDARGSET_STRING_FORMAT->fixed||_FUNC_ISVALIDARGSET_STRING_FORMAT->readonly){
oldstr3937=_FUNC_ISVALIDARGSET_STRING_FORMAT;
if (oldstr3937->cmem_descriptor){
_FUNC_ISVALIDARGSET_STRING_FORMAT=qbs_new_cmem(oldstr3937->len,0);
}else{
_FUNC_GL2QB_TYPE_CONVERT_STRING_A=qbs_new(oldstr3856->len,0);
_FUNC_ISVALIDARGSET_STRING_FORMAT=qbs_new(oldstr3937->len,0);
}
memcpy(_FUNC_GL2QB_TYPE_CONVERT_STRING_A->chr,oldstr3856->chr,oldstr3856->len);
memcpy(_FUNC_ISVALIDARGSET_STRING_FORMAT->chr,oldstr3937->chr,oldstr3937->len);
}
qbs*oldstr3857=NULL;
if(_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL->tmp||_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL->fixed||_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL->readonly){
oldstr3857=_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL;
if (oldstr3857->cmem_descriptor){
_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL=qbs_new_cmem(oldstr3857->len,0);
}else{
_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL=qbs_new(oldstr3857->len,0);
int32 *_FUNC_ISVALIDARGSET_LONG_MAXARGUMENT=NULL;
if(_FUNC_ISVALIDARGSET_LONG_MAXARGUMENT==NULL){
_FUNC_ISVALIDARGSET_LONG_MAXARGUMENT=(int32*)mem_static_malloc(4);
*_FUNC_ISVALIDARGSET_LONG_MAXARGUMENT=0;
}
memcpy(_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL->chr,oldstr3857->chr,oldstr3857->len);
int32 *_FUNC_ISVALIDARGSET_LONG_I=NULL;
if(_FUNC_ISVALIDARGSET_LONG_I==NULL){
_FUNC_ISVALIDARGSET_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_ISVALIDARGSET_LONG_I=0;
}
qbs*oldstr3858=NULL;
if(_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP->tmp||_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP->fixed||_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP->readonly){
oldstr3858=_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP;
if (oldstr3858->cmem_descriptor){
_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP=qbs_new_cmem(oldstr3858->len,0);
}else{
_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP=qbs_new(oldstr3858->len,0);
int32 *_FUNC_ISVALIDARGSET_LONG_CURRENTARG=NULL;
if(_FUNC_ISVALIDARGSET_LONG_CURRENTARG==NULL){
_FUNC_ISVALIDARGSET_LONG_CURRENTARG=(int32*)mem_static_malloc(4);
*_FUNC_ISVALIDARGSET_LONG_CURRENTARG=0;
}
memcpy(_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP->chr,oldstr3858->chr,oldstr3858->len);
int32 *_FUNC_ISVALIDARGSET_LONG_OPTIONLVL=NULL;
if(_FUNC_ISVALIDARGSET_LONG_OPTIONLVL==NULL){
_FUNC_ISVALIDARGSET_LONG_OPTIONLVL=(int32*)mem_static_malloc(4);
*_FUNC_ISVALIDARGSET_LONG_OPTIONLVL=0;
}
qbs *_FUNC_GL2QB_TYPE_CONVERT_STRING_B=NULL;
if (!_FUNC_GL2QB_TYPE_CONVERT_STRING_B)_FUNC_GL2QB_TYPE_CONVERT_STRING_B=qbs_new(0,0);
ptrszint *_FUNC_ISVALIDARGSET_ARRAY_LONG_WASPROVIDED=NULL;
if (!_FUNC_ISVALIDARGSET_ARRAY_LONG_WASPROVIDED){
_FUNC_ISVALIDARGSET_ARRAY_LONG_WASPROVIDED=(ptrszint*)mem_static_malloc(9*ptrsz);
new_mem_lock();
mem_lock_tmp->type=4;
((ptrszint*)_FUNC_ISVALIDARGSET_ARRAY_LONG_WASPROVIDED)[8]=(ptrszint)mem_lock_tmp;
_FUNC_ISVALIDARGSET_ARRAY_LONG_WASPROVIDED[2]=0;
_FUNC_ISVALIDARGSET_ARRAY_LONG_WASPROVIDED[4]=2147483647;
_FUNC_ISVALIDARGSET_ARRAY_LONG_WASPROVIDED[5]=0;
_FUNC_ISVALIDARGSET_ARRAY_LONG_WASPROVIDED[6]=0;
_FUNC_ISVALIDARGSET_ARRAY_LONG_WASPROVIDED[0]=(ptrszint)nothingvalue;
}
int32 *_FUNC_ISVALIDARGSET_LONG_ARGPROVIDED=NULL;
if(_FUNC_ISVALIDARGSET_LONG_ARGPROVIDED==NULL){
_FUNC_ISVALIDARGSET_LONG_ARGPROVIDED=(int32*)mem_static_malloc(4);
*_FUNC_ISVALIDARGSET_LONG_ARGPROVIDED=0;
}
int32 *_FUNC_ISVALIDARGSET_LONG_ARGNOTPROVIDED=NULL;
if(_FUNC_ISVALIDARGSET_LONG_ARGNOTPROVIDED==NULL){
_FUNC_ISVALIDARGSET_LONG_ARGNOTPROVIDED=(int32*)mem_static_malloc(4);
*_FUNC_ISVALIDARGSET_LONG_ARGNOTPROVIDED=0;
}
int32 *_FUNC_ISVALIDARGSET_LONG_ARGIGNORED=NULL;
if(_FUNC_ISVALIDARGSET_LONG_ARGIGNORED==NULL){
_FUNC_ISVALIDARGSET_LONG_ARGIGNORED=(int32*)mem_static_malloc(4);
*_FUNC_ISVALIDARGSET_LONG_ARGIGNORED=0;
}
int64 fornext_value3939;
int64 fornext_finalvalue3939;
int64 fornext_step3939;
uint8 fornext_step_negative3939;
byte_element_struct *byte_element_3940=NULL;
if (!byte_element_3940){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3940=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3940=(byte_element_struct*)mem_static_malloc(12);
}
static int32 sc_3941;

View file

@ -1,33 +1,33 @@
int16 pass2337;
int16 pass2338;
int16 pass2339;
int16 pass2370;
int16 pass2371;
int16 pass2372;
int32 *_SUB_CLOSEMAIN_LONG_I=NULL;
if(_SUB_CLOSEMAIN_LONG_I==NULL){
_SUB_CLOSEMAIN_LONG_I=(int32*)mem_static_malloc(4);
*_SUB_CLOSEMAIN_LONG_I=0;
}
int64 fornext_value2341;
int64 fornext_finalvalue2341;
int64 fornext_step2341;
uint8 fornext_step_negative2341;
int16 pass2342;
int16 pass2343;
int16 pass2344;
int16 pass2345;
int16 pass2346;
int16 pass2347;
int16 pass2348;
int16 pass2349;
int16 pass2350;
int64 fornext_value2352;
int64 fornext_finalvalue2352;
int64 fornext_step2352;
uint8 fornext_step_negative2352;
int16 pass2353;
int16 pass2354;
int16 pass2355;
int16 pass2356;
int16 pass2357;
int16 pass2358;
int16 pass2359;
int16 pass2360;
int64 fornext_value2374;
int64 fornext_finalvalue2374;
int64 fornext_step2374;
uint8 fornext_step_negative2374;
int16 pass2375;
int16 pass2376;
int16 pass2377;
int16 pass2378;
int16 pass2379;
int16 pass2380;
int16 pass2381;
int16 pass2382;
int16 pass2383;
int64 fornext_value2385;
int64 fornext_finalvalue2385;
int64 fornext_step2385;
uint8 fornext_step_negative2385;
int16 pass2386;
int16 pass2387;
int16 pass2388;
int16 pass2389;
int16 pass2390;
int16 pass2391;
int16 pass2392;
int16 pass2393;

View file

@ -1,44 +1,34 @@
qbs *_FUNC_READCHUNK_STRING_READCHUNK=NULL;
if (!_FUNC_READCHUNK_STRING_READCHUNK)_FUNC_READCHUNK_STRING_READCHUNK=qbs_new(0,0);
qbs*oldstr3860=NULL;
if(_FUNC_READCHUNK_STRING_A->tmp||_FUNC_READCHUNK_STRING_A->fixed||_FUNC_READCHUNK_STRING_A->readonly){
oldstr3860=_FUNC_READCHUNK_STRING_A;
if (oldstr3860->cmem_descriptor){
_FUNC_READCHUNK_STRING_A=qbs_new_cmem(oldstr3860->len,0);
qbs *_FUNC_GL2QB_TYPE_CONVERT_STRING_GL2QB_TYPE_CONVERT=NULL;
if (!_FUNC_GL2QB_TYPE_CONVERT_STRING_GL2QB_TYPE_CONVERT)_FUNC_GL2QB_TYPE_CONVERT_STRING_GL2QB_TYPE_CONVERT=qbs_new(0,0);
qbs*oldstr3942=NULL;
if(_FUNC_GL2QB_TYPE_CONVERT_STRING_A->tmp||_FUNC_GL2QB_TYPE_CONVERT_STRING_A->fixed||_FUNC_GL2QB_TYPE_CONVERT_STRING_A->readonly){
oldstr3942=_FUNC_GL2QB_TYPE_CONVERT_STRING_A;
if (oldstr3942->cmem_descriptor){
_FUNC_GL2QB_TYPE_CONVERT_STRING_A=qbs_new_cmem(oldstr3942->len,0);
}else{
_FUNC_READCHUNK_STRING_A=qbs_new(oldstr3860->len,0);
_FUNC_GL2QB_TYPE_CONVERT_STRING_A=qbs_new(oldstr3942->len,0);
}
memcpy(_FUNC_READCHUNK_STRING_A->chr,oldstr3860->chr,oldstr3860->len);
memcpy(_FUNC_GL2QB_TYPE_CONVERT_STRING_A->chr,oldstr3942->chr,oldstr3942->len);
}
qbs*oldstr3861=NULL;
if(_FUNC_READCHUNK_STRING_LAST_CHARACTER->tmp||_FUNC_READCHUNK_STRING_LAST_CHARACTER->fixed||_FUNC_READCHUNK_STRING_LAST_CHARACTER->readonly){
oldstr3861=_FUNC_READCHUNK_STRING_LAST_CHARACTER;
if (oldstr3861->cmem_descriptor){
_FUNC_READCHUNK_STRING_LAST_CHARACTER=qbs_new_cmem(oldstr3861->len,0);
qbs*oldstr3943=NULL;
if(_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL->tmp||_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL->fixed||_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL->readonly){
oldstr3943=_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL;
if (oldstr3943->cmem_descriptor){
_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL=qbs_new_cmem(oldstr3943->len,0);
}else{
_FUNC_READCHUNK_STRING_LAST_CHARACTER=qbs_new(oldstr3861->len,0);
_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL=qbs_new(oldstr3943->len,0);
}
memcpy(_FUNC_READCHUNK_STRING_LAST_CHARACTER->chr,oldstr3861->chr,oldstr3861->len);
memcpy(_FUNC_GL2QB_TYPE_CONVERT_STRING_SYMBOL->chr,oldstr3943->chr,oldstr3943->len);
}
int32 *_FUNC_READCHUNK_LONG_X=NULL;
if(_FUNC_READCHUNK_LONG_X==NULL){
_FUNC_READCHUNK_LONG_X=(int32*)mem_static_malloc(4);
*_FUNC_READCHUNK_LONG_X=0;
qbs*oldstr3944=NULL;
if(_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP->tmp||_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP->fixed||_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP->readonly){
oldstr3944=_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP;
if (oldstr3944->cmem_descriptor){
_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP=qbs_new_cmem(oldstr3944->len,0);
}else{
_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP=qbs_new(oldstr3944->len,0);
}
int64 fornext_value3863;
int64 fornext_finalvalue3863;
int64 fornext_step3863;
uint8 fornext_step_negative3863;
byte_element_struct *byte_element_3864=NULL;
if (!byte_element_3864){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3864=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3864=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_READCHUNK_LONG_C=NULL;
if(_FUNC_READCHUNK_LONG_C==NULL){
_FUNC_READCHUNK_LONG_C=(int32*)mem_static_malloc(4);
*_FUNC_READCHUNK_LONG_C=0;
}
byte_element_struct *byte_element_3865=NULL;
if (!byte_element_3865){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3865=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3865=(byte_element_struct*)mem_static_malloc(12);
memcpy(_FUNC_GL2QB_TYPE_CONVERT_STRING_CTYP->chr,oldstr3944->chr,oldstr3944->len);
}
qbs *_FUNC_GL2QB_TYPE_CONVERT_STRING_B=NULL;
if (!_FUNC_GL2QB_TYPE_CONVERT_STRING_B)_FUNC_GL2QB_TYPE_CONVERT_STRING_B=qbs_new(0,0);

View file

@ -1,162 +1,44 @@
int32 *_SUB_GL_SCAN_HEADER_LONG_HK=NULL;
if(_SUB_GL_SCAN_HEADER_LONG_HK==NULL){
_SUB_GL_SCAN_HEADER_LONG_HK=(int32*)mem_static_malloc(4);
*_SUB_GL_SCAN_HEADER_LONG_HK=0;
qbs *_FUNC_READCHUNK_STRING_READCHUNK=NULL;
if (!_FUNC_READCHUNK_STRING_READCHUNK)_FUNC_READCHUNK_STRING_READCHUNK=qbs_new(0,0);
qbs*oldstr3946=NULL;
if(_FUNC_READCHUNK_STRING_A->tmp||_FUNC_READCHUNK_STRING_A->fixed||_FUNC_READCHUNK_STRING_A->readonly){
oldstr3946=_FUNC_READCHUNK_STRING_A;
if (oldstr3946->cmem_descriptor){
_FUNC_READCHUNK_STRING_A=qbs_new_cmem(oldstr3946->len,0);
}else{
_FUNC_READCHUNK_STRING_A=qbs_new(oldstr3946->len,0);
}
int32 *_SUB_GL_SCAN_HEADER_LONG_D=NULL;
if(_SUB_GL_SCAN_HEADER_LONG_D==NULL){
_SUB_GL_SCAN_HEADER_LONG_D=(int32*)mem_static_malloc(4);
*_SUB_GL_SCAN_HEADER_LONG_D=0;
memcpy(_FUNC_READCHUNK_STRING_A->chr,oldstr3946->chr,oldstr3946->len);
}
qbs *_SUB_GL_SCAN_HEADER_STRING_A2=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_A2)_SUB_GL_SCAN_HEADER_STRING_A2=qbs_new(0,0);
int32 *_SUB_GL_SCAN_HEADER_LONG_H=NULL;
if(_SUB_GL_SCAN_HEADER_LONG_H==NULL){
_SUB_GL_SCAN_HEADER_LONG_H=(int32*)mem_static_malloc(4);
*_SUB_GL_SCAN_HEADER_LONG_H=0;
qbs*oldstr3947=NULL;
if(_FUNC_READCHUNK_STRING_LAST_CHARACTER->tmp||_FUNC_READCHUNK_STRING_LAST_CHARACTER->fixed||_FUNC_READCHUNK_STRING_LAST_CHARACTER->readonly){
oldstr3947=_FUNC_READCHUNK_STRING_LAST_CHARACTER;
if (oldstr3947->cmem_descriptor){
_FUNC_READCHUNK_STRING_LAST_CHARACTER=qbs_new_cmem(oldstr3947->len,0);
}else{
_FUNC_READCHUNK_STRING_LAST_CHARACTER=qbs_new(oldstr3947->len,0);
}
qbs *_SUB_GL_SCAN_HEADER_STRING_A=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_A)_SUB_GL_SCAN_HEADER_STRING_A=qbs_new(0,0);
byte_element_struct *byte_element_3869=NULL;
if (!byte_element_3869){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3869=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3869=(byte_element_struct*)mem_static_malloc(12);
memcpy(_FUNC_READCHUNK_STRING_LAST_CHARACTER->chr,oldstr3947->chr,oldstr3947->len);
}
int32 *_SUB_GL_SCAN_HEADER_LONG_X=NULL;
if(_SUB_GL_SCAN_HEADER_LONG_X==NULL){
_SUB_GL_SCAN_HEADER_LONG_X=(int32*)mem_static_malloc(4);
*_SUB_GL_SCAN_HEADER_LONG_X=0;
int32 *_FUNC_READCHUNK_LONG_X=NULL;
if(_FUNC_READCHUNK_LONG_X==NULL){
_FUNC_READCHUNK_LONG_X=(int32*)mem_static_malloc(4);
*_FUNC_READCHUNK_LONG_X=0;
}
int64 fornext_value3871;
int64 fornext_finalvalue3871;
int64 fornext_step3871;
uint8 fornext_step_negative3871;
byte_element_struct *byte_element_3872=NULL;
if (!byte_element_3872){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3872=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3872=(byte_element_struct*)mem_static_malloc(12);
int64 fornext_value3949;
int64 fornext_finalvalue3949;
int64 fornext_step3949;
uint8 fornext_step_negative3949;
byte_element_struct *byte_element_3950=NULL;
if (!byte_element_3950){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3950=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3950=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_SUB_GL_SCAN_HEADER_LONG_C=NULL;
if(_SUB_GL_SCAN_HEADER_LONG_C==NULL){
_SUB_GL_SCAN_HEADER_LONG_C=(int32*)mem_static_malloc(4);
*_SUB_GL_SCAN_HEADER_LONG_C=0;
int32 *_FUNC_READCHUNK_LONG_C=NULL;
if(_FUNC_READCHUNK_LONG_C==NULL){
_FUNC_READCHUNK_LONG_C=(int32*)mem_static_malloc(4);
*_FUNC_READCHUNK_LONG_C=0;
}
int32 *_SUB_GL_SCAN_HEADER_LONG_X2=NULL;
if(_SUB_GL_SCAN_HEADER_LONG_X2==NULL){
_SUB_GL_SCAN_HEADER_LONG_X2=(int32*)mem_static_malloc(4);
*_SUB_GL_SCAN_HEADER_LONG_X2=0;
}
int64 fornext_value3874;
int64 fornext_finalvalue3874;
int64 fornext_step3874;
uint8 fornext_step_negative3874;
byte_element_struct *byte_element_3875=NULL;
if (!byte_element_3875){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3875=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3875=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_SUB_GL_SCAN_HEADER_LONG_C2=NULL;
if(_SUB_GL_SCAN_HEADER_LONG_C2==NULL){
_SUB_GL_SCAN_HEADER_LONG_C2=(int32*)mem_static_malloc(4);
*_SUB_GL_SCAN_HEADER_LONG_C2=0;
}
qbs *_SUB_GL_SCAN_HEADER_STRING_VALUE=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_VALUE)_SUB_GL_SCAN_HEADER_STRING_VALUE=qbs_new(0,0);
byte_element_struct *byte_element_3876=NULL;
if (!byte_element_3876){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3876=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3876=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3877=NULL;
if (!byte_element_3877){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3877=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3877=(byte_element_struct*)mem_static_malloc(12);
}
int64 *_SUB_GL_SCAN_HEADER_INTEGER64_VALUE=NULL;
if(_SUB_GL_SCAN_HEADER_INTEGER64_VALUE==NULL){
_SUB_GL_SCAN_HEADER_INTEGER64_VALUE=(int64*)mem_static_malloc(8);
*_SUB_GL_SCAN_HEADER_INTEGER64_VALUE=0;
}
byte_element_struct *byte_element_3878=NULL;
if (!byte_element_3878){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3878=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3878=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_SUB_GL_SCAN_HEADER_LONG_I=NULL;
if(_SUB_GL_SCAN_HEADER_LONG_I==NULL){
_SUB_GL_SCAN_HEADER_LONG_I=(int32*)mem_static_malloc(4);
*_SUB_GL_SCAN_HEADER_LONG_I=0;
}
int64 fornext_value3880;
int64 fornext_finalvalue3880;
int64 fornext_step3880;
uint8 fornext_step_negative3880;
qbs *_SUB_GL_SCAN_HEADER_STRING_L=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_L)_SUB_GL_SCAN_HEADER_STRING_L=qbs_new(0,0);
qbs *_SUB_GL_SCAN_HEADER_STRING_RET_TYPE=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_RET_TYPE)_SUB_GL_SCAN_HEADER_STRING_RET_TYPE=qbs_new(0,0);
int32 *_SUB_GL_SCAN_HEADER_LONG_IS_FUNC=NULL;
if(_SUB_GL_SCAN_HEADER_LONG_IS_FUNC==NULL){
_SUB_GL_SCAN_HEADER_LONG_IS_FUNC=(int32*)mem_static_malloc(4);
*_SUB_GL_SCAN_HEADER_LONG_IS_FUNC=0;
}
qbs *_SUB_GL_SCAN_HEADER_STRING_HC=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_HC)_SUB_GL_SCAN_HEADER_STRING_HC=qbs_new(0,0);
qbs *_SUB_GL_SCAN_HEADER_STRING_HD=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_HD)_SUB_GL_SCAN_HEADER_STRING_HD=qbs_new(0,0);
int32 *_SUB_GL_SCAN_HEADER_LONG_NEED_HELPER_FUNCTION=NULL;
if(_SUB_GL_SCAN_HEADER_LONG_NEED_HELPER_FUNCTION==NULL){
_SUB_GL_SCAN_HEADER_LONG_NEED_HELPER_FUNCTION=(int32*)mem_static_malloc(4);
*_SUB_GL_SCAN_HEADER_LONG_NEED_HELPER_FUNCTION=0;
}
qbs *_SUB_GL_SCAN_HEADER_STRING_PROC_NAME=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_PROC_NAME)_SUB_GL_SCAN_HEADER_STRING_PROC_NAME=qbs_new(0,0);
int32 *_SUB_GL_SCAN_HEADER_LONG_POINTER=NULL;
if(_SUB_GL_SCAN_HEADER_LONG_POINTER==NULL){
_SUB_GL_SCAN_HEADER_LONG_POINTER=(int32*)mem_static_malloc(4);
*_SUB_GL_SCAN_HEADER_LONG_POINTER=0;
}
qbs *_SUB_GL_SCAN_HEADER_STRING_T=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_T)_SUB_GL_SCAN_HEADER_STRING_T=qbs_new(0,0);
qbs *_SUB_GL_SCAN_HEADER_STRING_S=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_S)_SUB_GL_SCAN_HEADER_STRING_S=qbs_new(0,0);
int32 *_SUB_GL_SCAN_HEADER_LONG_TYP=NULL;
if(_SUB_GL_SCAN_HEADER_LONG_TYP==NULL){
_SUB_GL_SCAN_HEADER_LONG_TYP=(int32*)mem_static_malloc(4);
*_SUB_GL_SCAN_HEADER_LONG_TYP=0;
}
qbs *_SUB_GL_SCAN_HEADER_STRING_CTYP=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_CTYP)_SUB_GL_SCAN_HEADER_STRING_CTYP=qbs_new(0,0);
qbs *_SUB_GL_SCAN_HEADER_STRING_VAR_TYPE=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_VAR_TYPE)_SUB_GL_SCAN_HEADER_STRING_VAR_TYPE=qbs_new(0,0);
qbs *_SUB_GL_SCAN_HEADER_STRING_VAR_NAME=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_VAR_NAME)_SUB_GL_SCAN_HEADER_STRING_VAR_NAME=qbs_new(0,0);
byte_element_struct *byte_element_3887=NULL;
if (!byte_element_3887){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3887=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3887=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3888=NULL;
if (!byte_element_3888){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3888=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3888=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_SUB_GL_SCAN_HEADER_STRING_VAR_TYPE_BACKUP=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_VAR_TYPE_BACKUP)_SUB_GL_SCAN_HEADER_STRING_VAR_TYPE_BACKUP=qbs_new(0,0);
byte_element_struct *byte_element_3889=NULL;
if (!byte_element_3889){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3889=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3889=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3890=NULL;
if (!byte_element_3890){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3890=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3890=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_SUB_GL_SCAN_HEADER_STRING_QB_TYPE=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_QB_TYPE)_SUB_GL_SCAN_HEADER_STRING_QB_TYPE=qbs_new(0,0);
qbs *_SUB_GL_SCAN_HEADER_STRING_ARG=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_ARG)_SUB_GL_SCAN_HEADER_STRING_ARG=qbs_new(0,0);
qbs *_SUB_GL_SCAN_HEADER_STRING_LETTER=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_LETTER)_SUB_GL_SCAN_HEADER_STRING_LETTER=qbs_new(0,0);
qbs *_SUB_GL_SCAN_HEADER_STRING_H=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_H)_SUB_GL_SCAN_HEADER_STRING_H=qbs_new(0,0);
int64 fornext_value3897;
int64 fornext_finalvalue3897;
int64 fornext_step3897;
uint8 fornext_step_negative3897;
int32 *_SUB_GL_SCAN_HEADER_LONG_FH=NULL;
if(_SUB_GL_SCAN_HEADER_LONG_FH==NULL){
_SUB_GL_SCAN_HEADER_LONG_FH=(int32*)mem_static_malloc(4);
*_SUB_GL_SCAN_HEADER_LONG_FH=0;
byte_element_struct *byte_element_3951=NULL;
if (!byte_element_3951){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3951=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3951=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -1,34 +1,162 @@
int32 *_SUB_GL_INCLUDE_CONTENT_LONG_D=NULL;
if(_SUB_GL_INCLUDE_CONTENT_LONG_D==NULL){
_SUB_GL_INCLUDE_CONTENT_LONG_D=(int32*)mem_static_malloc(4);
*_SUB_GL_INCLUDE_CONTENT_LONG_D=0;
int32 *_SUB_GL_SCAN_HEADER_LONG_HK=NULL;
if(_SUB_GL_SCAN_HEADER_LONG_HK==NULL){
_SUB_GL_SCAN_HEADER_LONG_HK=(int32*)mem_static_malloc(4);
*_SUB_GL_SCAN_HEADER_LONG_HK=0;
}
int64 fornext_value3901;
int64 fornext_finalvalue3901;
int64 fornext_step3901;
uint8 fornext_step_negative3901;
int32 *_SUB_GL_INCLUDE_CONTENT_LONG_I=NULL;
if(_SUB_GL_INCLUDE_CONTENT_LONG_I==NULL){
_SUB_GL_INCLUDE_CONTENT_LONG_I=(int32*)mem_static_malloc(4);
*_SUB_GL_INCLUDE_CONTENT_LONG_I=0;
int32 *_SUB_GL_SCAN_HEADER_LONG_D=NULL;
if(_SUB_GL_SCAN_HEADER_LONG_D==NULL){
_SUB_GL_SCAN_HEADER_LONG_D=(int32*)mem_static_malloc(4);
*_SUB_GL_SCAN_HEADER_LONG_D=0;
}
int32 pass3902;
int32 *_SUB_GL_INCLUDE_CONTENT_LONG_C=NULL;
if(_SUB_GL_INCLUDE_CONTENT_LONG_C==NULL){
_SUB_GL_INCLUDE_CONTENT_LONG_C=(int32*)mem_static_malloc(4);
*_SUB_GL_INCLUDE_CONTENT_LONG_C=0;
qbs *_SUB_GL_SCAN_HEADER_STRING_A2=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_A2)_SUB_GL_SCAN_HEADER_STRING_A2=qbs_new(0,0);
int32 *_SUB_GL_SCAN_HEADER_LONG_H=NULL;
if(_SUB_GL_SCAN_HEADER_LONG_H==NULL){
_SUB_GL_SCAN_HEADER_LONG_H=(int32*)mem_static_malloc(4);
*_SUB_GL_SCAN_HEADER_LONG_H=0;
}
int64 fornext_value3904;
int64 fornext_finalvalue3904;
int64 fornext_step3904;
uint8 fornext_step_negative3904;
void *_SUB_GL_INCLUDE_CONTENT_UDT_G=NULL;
if(_SUB_GL_INCLUDE_CONTENT_UDT_G==NULL){
_SUB_GL_INCLUDE_CONTENT_UDT_G=(void*)mem_static_malloc(216);
memset(_SUB_GL_INCLUDE_CONTENT_UDT_G,0,216);
qbs *_SUB_GL_SCAN_HEADER_STRING_A=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_A)_SUB_GL_SCAN_HEADER_STRING_A=qbs_new(0,0);
byte_element_struct *byte_element_3955=NULL;
if (!byte_element_3955){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3955=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3955=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_SUB_GL_INCLUDE_CONTENT_LONG_S=NULL;
if(_SUB_GL_INCLUDE_CONTENT_LONG_S==NULL){
_SUB_GL_INCLUDE_CONTENT_LONG_S=(int32*)mem_static_malloc(4);
*_SUB_GL_INCLUDE_CONTENT_LONG_S=0;
int32 *_SUB_GL_SCAN_HEADER_LONG_X=NULL;
if(_SUB_GL_SCAN_HEADER_LONG_X==NULL){
_SUB_GL_SCAN_HEADER_LONG_X=(int32*)mem_static_malloc(4);
*_SUB_GL_SCAN_HEADER_LONG_X=0;
}
int64 fornext_value3957;
int64 fornext_finalvalue3957;
int64 fornext_step3957;
uint8 fornext_step_negative3957;
byte_element_struct *byte_element_3958=NULL;
if (!byte_element_3958){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3958=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3958=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_SUB_GL_SCAN_HEADER_LONG_C=NULL;
if(_SUB_GL_SCAN_HEADER_LONG_C==NULL){
_SUB_GL_SCAN_HEADER_LONG_C=(int32*)mem_static_malloc(4);
*_SUB_GL_SCAN_HEADER_LONG_C=0;
}
int32 *_SUB_GL_SCAN_HEADER_LONG_X2=NULL;
if(_SUB_GL_SCAN_HEADER_LONG_X2==NULL){
_SUB_GL_SCAN_HEADER_LONG_X2=(int32*)mem_static_malloc(4);
*_SUB_GL_SCAN_HEADER_LONG_X2=0;
}
int64 fornext_value3960;
int64 fornext_finalvalue3960;
int64 fornext_step3960;
uint8 fornext_step_negative3960;
byte_element_struct *byte_element_3961=NULL;
if (!byte_element_3961){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3961=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3961=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_SUB_GL_SCAN_HEADER_LONG_C2=NULL;
if(_SUB_GL_SCAN_HEADER_LONG_C2==NULL){
_SUB_GL_SCAN_HEADER_LONG_C2=(int32*)mem_static_malloc(4);
*_SUB_GL_SCAN_HEADER_LONG_C2=0;
}
qbs *_SUB_GL_SCAN_HEADER_STRING_VALUE=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_VALUE)_SUB_GL_SCAN_HEADER_STRING_VALUE=qbs_new(0,0);
byte_element_struct *byte_element_3962=NULL;
if (!byte_element_3962){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3962=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3962=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3963=NULL;
if (!byte_element_3963){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3963=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3963=(byte_element_struct*)mem_static_malloc(12);
}
int64 *_SUB_GL_SCAN_HEADER_INTEGER64_VALUE=NULL;
if(_SUB_GL_SCAN_HEADER_INTEGER64_VALUE==NULL){
_SUB_GL_SCAN_HEADER_INTEGER64_VALUE=(int64*)mem_static_malloc(8);
*_SUB_GL_SCAN_HEADER_INTEGER64_VALUE=0;
}
byte_element_struct *byte_element_3964=NULL;
if (!byte_element_3964){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3964=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3964=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_SUB_GL_SCAN_HEADER_LONG_I=NULL;
if(_SUB_GL_SCAN_HEADER_LONG_I==NULL){
_SUB_GL_SCAN_HEADER_LONG_I=(int32*)mem_static_malloc(4);
*_SUB_GL_SCAN_HEADER_LONG_I=0;
}
int64 fornext_value3966;
int64 fornext_finalvalue3966;
int64 fornext_step3966;
uint8 fornext_step_negative3966;
qbs *_SUB_GL_SCAN_HEADER_STRING_L=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_L)_SUB_GL_SCAN_HEADER_STRING_L=qbs_new(0,0);
qbs *_SUB_GL_SCAN_HEADER_STRING_RET_TYPE=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_RET_TYPE)_SUB_GL_SCAN_HEADER_STRING_RET_TYPE=qbs_new(0,0);
int32 *_SUB_GL_SCAN_HEADER_LONG_IS_FUNC=NULL;
if(_SUB_GL_SCAN_HEADER_LONG_IS_FUNC==NULL){
_SUB_GL_SCAN_HEADER_LONG_IS_FUNC=(int32*)mem_static_malloc(4);
*_SUB_GL_SCAN_HEADER_LONG_IS_FUNC=0;
}
qbs *_SUB_GL_SCAN_HEADER_STRING_HC=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_HC)_SUB_GL_SCAN_HEADER_STRING_HC=qbs_new(0,0);
qbs *_SUB_GL_SCAN_HEADER_STRING_HD=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_HD)_SUB_GL_SCAN_HEADER_STRING_HD=qbs_new(0,0);
int32 *_SUB_GL_SCAN_HEADER_LONG_NEED_HELPER_FUNCTION=NULL;
if(_SUB_GL_SCAN_HEADER_LONG_NEED_HELPER_FUNCTION==NULL){
_SUB_GL_SCAN_HEADER_LONG_NEED_HELPER_FUNCTION=(int32*)mem_static_malloc(4);
*_SUB_GL_SCAN_HEADER_LONG_NEED_HELPER_FUNCTION=0;
}
qbs *_SUB_GL_SCAN_HEADER_STRING_PROC_NAME=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_PROC_NAME)_SUB_GL_SCAN_HEADER_STRING_PROC_NAME=qbs_new(0,0);
int32 *_SUB_GL_SCAN_HEADER_LONG_POINTER=NULL;
if(_SUB_GL_SCAN_HEADER_LONG_POINTER==NULL){
_SUB_GL_SCAN_HEADER_LONG_POINTER=(int32*)mem_static_malloc(4);
*_SUB_GL_SCAN_HEADER_LONG_POINTER=0;
}
qbs *_SUB_GL_SCAN_HEADER_STRING_T=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_T)_SUB_GL_SCAN_HEADER_STRING_T=qbs_new(0,0);
qbs *_SUB_GL_SCAN_HEADER_STRING_S=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_S)_SUB_GL_SCAN_HEADER_STRING_S=qbs_new(0,0);
int32 *_SUB_GL_SCAN_HEADER_LONG_TYP=NULL;
if(_SUB_GL_SCAN_HEADER_LONG_TYP==NULL){
_SUB_GL_SCAN_HEADER_LONG_TYP=(int32*)mem_static_malloc(4);
*_SUB_GL_SCAN_HEADER_LONG_TYP=0;
}
qbs *_SUB_GL_SCAN_HEADER_STRING_CTYP=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_CTYP)_SUB_GL_SCAN_HEADER_STRING_CTYP=qbs_new(0,0);
qbs *_SUB_GL_SCAN_HEADER_STRING_VAR_TYPE=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_VAR_TYPE)_SUB_GL_SCAN_HEADER_STRING_VAR_TYPE=qbs_new(0,0);
qbs *_SUB_GL_SCAN_HEADER_STRING_VAR_NAME=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_VAR_NAME)_SUB_GL_SCAN_HEADER_STRING_VAR_NAME=qbs_new(0,0);
byte_element_struct *byte_element_3973=NULL;
if (!byte_element_3973){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3973=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3973=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3974=NULL;
if (!byte_element_3974){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3974=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3974=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_SUB_GL_SCAN_HEADER_STRING_VAR_TYPE_BACKUP=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_VAR_TYPE_BACKUP)_SUB_GL_SCAN_HEADER_STRING_VAR_TYPE_BACKUP=qbs_new(0,0);
byte_element_struct *byte_element_3975=NULL;
if (!byte_element_3975){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3975=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3975=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3976=NULL;
if (!byte_element_3976){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3976=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3976=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_SUB_GL_SCAN_HEADER_STRING_QB_TYPE=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_QB_TYPE)_SUB_GL_SCAN_HEADER_STRING_QB_TYPE=qbs_new(0,0);
qbs *_SUB_GL_SCAN_HEADER_STRING_ARG=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_ARG)_SUB_GL_SCAN_HEADER_STRING_ARG=qbs_new(0,0);
qbs *_SUB_GL_SCAN_HEADER_STRING_LETTER=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_LETTER)_SUB_GL_SCAN_HEADER_STRING_LETTER=qbs_new(0,0);
qbs *_SUB_GL_SCAN_HEADER_STRING_H=NULL;
if (!_SUB_GL_SCAN_HEADER_STRING_H)_SUB_GL_SCAN_HEADER_STRING_H=qbs_new(0,0);
int64 fornext_value3983;
int64 fornext_finalvalue3983;
int64 fornext_step3983;
uint8 fornext_step_negative3983;
int32 *_SUB_GL_SCAN_HEADER_LONG_FH=NULL;
if(_SUB_GL_SCAN_HEADER_LONG_FH==NULL){
_SUB_GL_SCAN_HEADER_LONG_FH=(int32*)mem_static_malloc(4);
*_SUB_GL_SCAN_HEADER_LONG_FH=0;
}

View file

@ -1,17 +1,34 @@
byte_element_struct *byte_element_3905=NULL;
if (!byte_element_3905){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3905=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3905=(byte_element_struct*)mem_static_malloc(12);
int32 *_SUB_GL_INCLUDE_CONTENT_LONG_D=NULL;
if(_SUB_GL_INCLUDE_CONTENT_LONG_D==NULL){
_SUB_GL_INCLUDE_CONTENT_LONG_D=(int32*)mem_static_malloc(4);
*_SUB_GL_INCLUDE_CONTENT_LONG_D=0;
}
int16 *_SUB_INICOMMIT_INTEGER_FILENUM=NULL;
if(_SUB_INICOMMIT_INTEGER_FILENUM==NULL){
_SUB_INICOMMIT_INTEGER_FILENUM=(int16*)mem_static_malloc(2);
*_SUB_INICOMMIT_INTEGER_FILENUM=0;
int64 fornext_value3987;
int64 fornext_finalvalue3987;
int64 fornext_step3987;
uint8 fornext_step_negative3987;
int32 *_SUB_GL_INCLUDE_CONTENT_LONG_I=NULL;
if(_SUB_GL_INCLUDE_CONTENT_LONG_I==NULL){
_SUB_GL_INCLUDE_CONTENT_LONG_I=(int32*)mem_static_malloc(4);
*_SUB_GL_INCLUDE_CONTENT_LONG_I=0;
}
byte_element_struct *byte_element_3906=NULL;
if (!byte_element_3906){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3906=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3906=(byte_element_struct*)mem_static_malloc(12);
int32 pass3988;
int32 *_SUB_GL_INCLUDE_CONTENT_LONG_C=NULL;
if(_SUB_GL_INCLUDE_CONTENT_LONG_C==NULL){
_SUB_GL_INCLUDE_CONTENT_LONG_C=(int32*)mem_static_malloc(4);
*_SUB_GL_INCLUDE_CONTENT_LONG_C=0;
}
byte_element_struct *byte_element_3907=NULL;
if (!byte_element_3907){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3907=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3907=(byte_element_struct*)mem_static_malloc(12);
int64 fornext_value3990;
int64 fornext_finalvalue3990;
int64 fornext_step3990;
uint8 fornext_step_negative3990;
void *_SUB_GL_INCLUDE_CONTENT_UDT_G=NULL;
if(_SUB_GL_INCLUDE_CONTENT_UDT_G==NULL){
_SUB_GL_INCLUDE_CONTENT_UDT_G=(void*)mem_static_malloc(216);
memset(_SUB_GL_INCLUDE_CONTENT_UDT_G,0,216);
}
int32 *_SUB_GL_INCLUDE_CONTENT_LONG_S=NULL;
if(_SUB_GL_INCLUDE_CONTENT_LONG_S==NULL){
_SUB_GL_INCLUDE_CONTENT_LONG_S=(int32*)mem_static_malloc(4);
*_SUB_GL_INCLUDE_CONTENT_LONG_S=0;
}

View file

@ -1,64 +1,17 @@
qbs *_FUNC_INIGETSECTION_STRING_INIGETSECTION=NULL;
if (!_FUNC_INIGETSECTION_STRING_INIGETSECTION)_FUNC_INIGETSECTION_STRING_INIGETSECTION=qbs_new(0,0);
qbs*oldstr3908=NULL;
if(_FUNC_INIGETSECTION_STRING___SECTION->tmp||_FUNC_INIGETSECTION_STRING___SECTION->fixed||_FUNC_INIGETSECTION_STRING___SECTION->readonly){
oldstr3908=_FUNC_INIGETSECTION_STRING___SECTION;
if (oldstr3908->cmem_descriptor){
_FUNC_INIGETSECTION_STRING___SECTION=qbs_new_cmem(oldstr3908->len,0);
}else{
_FUNC_INIGETSECTION_STRING___SECTION=qbs_new(oldstr3908->len,0);
byte_element_struct *byte_element_3991=NULL;
if (!byte_element_3991){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3991=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3991=(byte_element_struct*)mem_static_malloc(12);
}
memcpy(_FUNC_INIGETSECTION_STRING___SECTION->chr,oldstr3908->chr,oldstr3908->len);
int16 *_SUB_INICOMMIT_INTEGER_FILENUM=NULL;
if(_SUB_INICOMMIT_INTEGER_FILENUM==NULL){
_SUB_INICOMMIT_INTEGER_FILENUM=(int16*)mem_static_malloc(2);
*_SUB_INICOMMIT_INTEGER_FILENUM=0;
}
qbs *_FUNC_INIGETSECTION_STRING_SECTION=NULL;
if (!_FUNC_INIGETSECTION_STRING_SECTION)_FUNC_INIGETSECTION_STRING_SECTION=qbs_new(0,0);
uint32 *_FUNC_INIGETSECTION_ULONG_FOUNDSECTION=NULL;
if(_FUNC_INIGETSECTION_ULONG_FOUNDSECTION==NULL){
_FUNC_INIGETSECTION_ULONG_FOUNDSECTION=(uint32*)mem_static_malloc(4);
*_FUNC_INIGETSECTION_ULONG_FOUNDSECTION=0;
byte_element_struct *byte_element_3992=NULL;
if (!byte_element_3992){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3992=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3992=(byte_element_struct*)mem_static_malloc(12);
}
uint32 *_FUNC_INIGETSECTION_ULONG_ENDSECTION=NULL;
if(_FUNC_INIGETSECTION_ULONG_ENDSECTION==NULL){
_FUNC_INIGETSECTION_ULONG_ENDSECTION=(uint32*)mem_static_malloc(4);
*_FUNC_INIGETSECTION_ULONG_ENDSECTION=0;
}
uint32 *_FUNC_INIGETSECTION_ULONG_I=NULL;
if(_FUNC_INIGETSECTION_ULONG_I==NULL){
_FUNC_INIGETSECTION_ULONG_I=(uint32*)mem_static_malloc(4);
*_FUNC_INIGETSECTION_ULONG_I=0;
}
uint32 *_FUNC_INIGETSECTION_ULONG_BRACKET1=NULL;
if(_FUNC_INIGETSECTION_ULONG_BRACKET1==NULL){
_FUNC_INIGETSECTION_ULONG_BRACKET1=(uint32*)mem_static_malloc(4);
*_FUNC_INIGETSECTION_ULONG_BRACKET1=0;
}
uint32 *_FUNC_INIGETSECTION_ULONG_SECTIONSTART=NULL;
if(_FUNC_INIGETSECTION_ULONG_SECTIONSTART==NULL){
_FUNC_INIGETSECTION_ULONG_SECTIONSTART=(uint32*)mem_static_malloc(4);
*_FUNC_INIGETSECTION_ULONG_SECTIONSTART=0;
}
int8 *_FUNC_INIGETSECTION_BYTE_INQUOTE=NULL;
if(_FUNC_INIGETSECTION_BYTE_INQUOTE==NULL){
_FUNC_INIGETSECTION_BYTE_INQUOTE=(int8*)mem_static_malloc(1);
*_FUNC_INIGETSECTION_BYTE_INQUOTE=0;
}
int64 fornext_value3910;
int64 fornext_finalvalue3910;
int64 fornext_step3910;
uint8 fornext_step_negative3910;
int64 fornext_value3913;
int64 fornext_finalvalue3913;
int64 fornext_step3913;
uint8 fornext_step_negative3913;
int64 fornext_value3915;
int64 fornext_finalvalue3915;
int64 fornext_step3915;
uint8 fornext_step_negative3915;
int64 fornext_value3917;
int64 fornext_finalvalue3917;
int64 fornext_step3917;
uint8 fornext_step_negative3917;
byte_element_struct *byte_element_3918=NULL;
if (!byte_element_3918){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3918=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3918=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_3993=NULL;
if (!byte_element_3993){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3993=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3993=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -1,22 +1,64 @@
qbs *_FUNC_INIFORMATSECTION_STRING_INIFORMATSECTION=NULL;
if (!_FUNC_INIFORMATSECTION_STRING_INIFORMATSECTION)_FUNC_INIFORMATSECTION_STRING_INIFORMATSECTION=qbs_new(0,0);
qbs*oldstr3919=NULL;
if(_FUNC_INIFORMATSECTION_STRING___SECTION->tmp||_FUNC_INIFORMATSECTION_STRING___SECTION->fixed||_FUNC_INIFORMATSECTION_STRING___SECTION->readonly){
oldstr3919=_FUNC_INIFORMATSECTION_STRING___SECTION;
if (oldstr3919->cmem_descriptor){
_FUNC_INIFORMATSECTION_STRING___SECTION=qbs_new_cmem(oldstr3919->len,0);
qbs *_FUNC_INIGETSECTION_STRING_INIGETSECTION=NULL;
if (!_FUNC_INIGETSECTION_STRING_INIGETSECTION)_FUNC_INIGETSECTION_STRING_INIGETSECTION=qbs_new(0,0);
qbs*oldstr3994=NULL;
if(_FUNC_INIGETSECTION_STRING___SECTION->tmp||_FUNC_INIGETSECTION_STRING___SECTION->fixed||_FUNC_INIGETSECTION_STRING___SECTION->readonly){
oldstr3994=_FUNC_INIGETSECTION_STRING___SECTION;
if (oldstr3994->cmem_descriptor){
_FUNC_INIGETSECTION_STRING___SECTION=qbs_new_cmem(oldstr3994->len,0);
}else{
_FUNC_INIFORMATSECTION_STRING___SECTION=qbs_new(oldstr3919->len,0);
_FUNC_INIGETSECTION_STRING___SECTION=qbs_new(oldstr3994->len,0);
}
memcpy(_FUNC_INIFORMATSECTION_STRING___SECTION->chr,oldstr3919->chr,oldstr3919->len);
memcpy(_FUNC_INIGETSECTION_STRING___SECTION->chr,oldstr3994->chr,oldstr3994->len);
}
qbs *_FUNC_INIFORMATSECTION_STRING_SECTION=NULL;
if (!_FUNC_INIFORMATSECTION_STRING_SECTION)_FUNC_INIFORMATSECTION_STRING_SECTION=qbs_new(0,0);
byte_element_struct *byte_element_3920=NULL;
if (!byte_element_3920){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3920=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3920=(byte_element_struct*)mem_static_malloc(12);
qbs *_FUNC_INIGETSECTION_STRING_SECTION=NULL;
if (!_FUNC_INIGETSECTION_STRING_SECTION)_FUNC_INIGETSECTION_STRING_SECTION=qbs_new(0,0);
uint32 *_FUNC_INIGETSECTION_ULONG_FOUNDSECTION=NULL;
if(_FUNC_INIGETSECTION_ULONG_FOUNDSECTION==NULL){
_FUNC_INIGETSECTION_ULONG_FOUNDSECTION=(uint32*)mem_static_malloc(4);
*_FUNC_INIGETSECTION_ULONG_FOUNDSECTION=0;
}
byte_element_struct *byte_element_3921=NULL;
if (!byte_element_3921){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3921=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3921=(byte_element_struct*)mem_static_malloc(12);
uint32 *_FUNC_INIGETSECTION_ULONG_ENDSECTION=NULL;
if(_FUNC_INIGETSECTION_ULONG_ENDSECTION==NULL){
_FUNC_INIGETSECTION_ULONG_ENDSECTION=(uint32*)mem_static_malloc(4);
*_FUNC_INIGETSECTION_ULONG_ENDSECTION=0;
}
uint32 *_FUNC_INIGETSECTION_ULONG_I=NULL;
if(_FUNC_INIGETSECTION_ULONG_I==NULL){
_FUNC_INIGETSECTION_ULONG_I=(uint32*)mem_static_malloc(4);
*_FUNC_INIGETSECTION_ULONG_I=0;
}
uint32 *_FUNC_INIGETSECTION_ULONG_BRACKET1=NULL;
if(_FUNC_INIGETSECTION_ULONG_BRACKET1==NULL){
_FUNC_INIGETSECTION_ULONG_BRACKET1=(uint32*)mem_static_malloc(4);
*_FUNC_INIGETSECTION_ULONG_BRACKET1=0;
}
uint32 *_FUNC_INIGETSECTION_ULONG_SECTIONSTART=NULL;
if(_FUNC_INIGETSECTION_ULONG_SECTIONSTART==NULL){
_FUNC_INIGETSECTION_ULONG_SECTIONSTART=(uint32*)mem_static_malloc(4);
*_FUNC_INIGETSECTION_ULONG_SECTIONSTART=0;
}
int8 *_FUNC_INIGETSECTION_BYTE_INQUOTE=NULL;
if(_FUNC_INIGETSECTION_BYTE_INQUOTE==NULL){
_FUNC_INIGETSECTION_BYTE_INQUOTE=(int8*)mem_static_malloc(1);
*_FUNC_INIGETSECTION_BYTE_INQUOTE=0;
}
int64 fornext_value3996;
int64 fornext_finalvalue3996;
int64 fornext_step3996;
uint8 fornext_step_negative3996;
int64 fornext_value3999;
int64 fornext_finalvalue3999;
int64 fornext_step3999;
uint8 fornext_step_negative3999;
int64 fornext_value4001;
int64 fornext_finalvalue4001;
int64 fornext_step4001;
uint8 fornext_step_negative4001;
int64 fornext_value4003;
int64 fornext_finalvalue4003;
int64 fornext_step4003;
uint8 fornext_step_negative4003;
byte_element_struct *byte_element_4004=NULL;
if (!byte_element_4004){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4004=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4004=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -1,91 +1,22 @@
qbs *_FUNC_READSETTING_STRING_READSETTING=NULL;
if (!_FUNC_READSETTING_STRING_READSETTING)_FUNC_READSETTING_STRING_READSETTING=qbs_new(0,0);
qbs*oldstr3922=NULL;
if(_FUNC_READSETTING_STRING_FILE->tmp||_FUNC_READSETTING_STRING_FILE->fixed||_FUNC_READSETTING_STRING_FILE->readonly){
oldstr3922=_FUNC_READSETTING_STRING_FILE;
if (oldstr3922->cmem_descriptor){
_FUNC_READSETTING_STRING_FILE=qbs_new_cmem(oldstr3922->len,0);
qbs *_FUNC_INIFORMATSECTION_STRING_INIFORMATSECTION=NULL;
if (!_FUNC_INIFORMATSECTION_STRING_INIFORMATSECTION)_FUNC_INIFORMATSECTION_STRING_INIFORMATSECTION=qbs_new(0,0);
qbs*oldstr4005=NULL;
if(_FUNC_INIFORMATSECTION_STRING___SECTION->tmp||_FUNC_INIFORMATSECTION_STRING___SECTION->fixed||_FUNC_INIFORMATSECTION_STRING___SECTION->readonly){
oldstr4005=_FUNC_INIFORMATSECTION_STRING___SECTION;
if (oldstr4005->cmem_descriptor){
_FUNC_INIFORMATSECTION_STRING___SECTION=qbs_new_cmem(oldstr4005->len,0);
}else{
_FUNC_READSETTING_STRING_FILE=qbs_new(oldstr3922->len,0);
_FUNC_INIFORMATSECTION_STRING___SECTION=qbs_new(oldstr4005->len,0);
}
memcpy(_FUNC_READSETTING_STRING_FILE->chr,oldstr3922->chr,oldstr3922->len);
memcpy(_FUNC_INIFORMATSECTION_STRING___SECTION->chr,oldstr4005->chr,oldstr4005->len);
}
qbs*oldstr3923=NULL;
if(_FUNC_READSETTING_STRING___SECTION->tmp||_FUNC_READSETTING_STRING___SECTION->fixed||_FUNC_READSETTING_STRING___SECTION->readonly){
oldstr3923=_FUNC_READSETTING_STRING___SECTION;
if (oldstr3923->cmem_descriptor){
_FUNC_READSETTING_STRING___SECTION=qbs_new_cmem(oldstr3923->len,0);
}else{
_FUNC_READSETTING_STRING___SECTION=qbs_new(oldstr3923->len,0);
qbs *_FUNC_INIFORMATSECTION_STRING_SECTION=NULL;
if (!_FUNC_INIFORMATSECTION_STRING_SECTION)_FUNC_INIFORMATSECTION_STRING_SECTION=qbs_new(0,0);
byte_element_struct *byte_element_4006=NULL;
if (!byte_element_4006){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4006=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4006=(byte_element_struct*)mem_static_malloc(12);
}
memcpy(_FUNC_READSETTING_STRING___SECTION->chr,oldstr3923->chr,oldstr3923->len);
}
qbs*oldstr3924=NULL;
if(_FUNC_READSETTING_STRING___KEY->tmp||_FUNC_READSETTING_STRING___KEY->fixed||_FUNC_READSETTING_STRING___KEY->readonly){
oldstr3924=_FUNC_READSETTING_STRING___KEY;
if (oldstr3924->cmem_descriptor){
_FUNC_READSETTING_STRING___KEY=qbs_new_cmem(oldstr3924->len,0);
}else{
_FUNC_READSETTING_STRING___KEY=qbs_new(oldstr3924->len,0);
}
memcpy(_FUNC_READSETTING_STRING___KEY->chr,oldstr3924->chr,oldstr3924->len);
}
uint32 *_FUNC_READSETTING_ULONG_EQUAL=NULL;
if(_FUNC_READSETTING_ULONG_EQUAL==NULL){
_FUNC_READSETTING_ULONG_EQUAL=(uint32*)mem_static_malloc(4);
*_FUNC_READSETTING_ULONG_EQUAL=0;
}
qbs *_FUNC_READSETTING_STRING_TEMPVALUE=NULL;
if (!_FUNC_READSETTING_STRING_TEMPVALUE)_FUNC_READSETTING_STRING_TEMPVALUE=qbs_new(0,0);
qbs *_FUNC_READSETTING_STRING_KEY=NULL;
if (!_FUNC_READSETTING_STRING_KEY)_FUNC_READSETTING_STRING_KEY=qbs_new(0,0);
qbs *_FUNC_READSETTING_STRING_SECTION=NULL;
if (!_FUNC_READSETTING_STRING_SECTION)_FUNC_READSETTING_STRING_SECTION=qbs_new(0,0);
uint32 *_FUNC_READSETTING_ULONG_QUOTE=NULL;
if(_FUNC_READSETTING_ULONG_QUOTE==NULL){
_FUNC_READSETTING_ULONG_QUOTE=(uint32*)mem_static_malloc(4);
*_FUNC_READSETTING_ULONG_QUOTE=0;
}
uint32 *_FUNC_READSETTING_ULONG_COMMENT=NULL;
if(_FUNC_READSETTING_ULONG_COMMENT==NULL){
_FUNC_READSETTING_ULONG_COMMENT=(uint32*)mem_static_malloc(4);
*_FUNC_READSETTING_ULONG_COMMENT=0;
}
int32 *_FUNC_READSETTING_LONG_I=NULL;
if(_FUNC_READSETTING_LONG_I==NULL){
_FUNC_READSETTING_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_READSETTING_LONG_I=0;
}
uint32 *_FUNC_READSETTING_ULONG_FOUNDLF=NULL;
if(_FUNC_READSETTING_ULONG_FOUNDLF==NULL){
_FUNC_READSETTING_ULONG_FOUNDLF=(uint32*)mem_static_malloc(4);
*_FUNC_READSETTING_ULONG_FOUNDLF=0;
}
byte_element_struct *byte_element_3925=NULL;
if (!byte_element_3925){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3925=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3925=(byte_element_struct*)mem_static_malloc(12);
}
int64 fornext_value3927;
int64 fornext_finalvalue3927;
int64 fornext_step3927;
uint8 fornext_step_negative3927;
int64 fornext_value3929;
int64 fornext_finalvalue3929;
int64 fornext_step3929;
uint8 fornext_step_negative3929;
byte_element_struct *byte_element_3930=NULL;
if (!byte_element_3930){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3930=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3930=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3931=NULL;
if (!byte_element_3931){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3931=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3931=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3932=NULL;
if (!byte_element_3932){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3932=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3932=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3933=NULL;
if (!byte_element_3933){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3933=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3933=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_4007=NULL;
if (!byte_element_4007){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4007=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4007=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -1,25 +1,91 @@
qbs *_FUNC_INICURRENTSECTION_STRING_INICURRENTSECTION=NULL;
if (!_FUNC_INICURRENTSECTION_STRING_INICURRENTSECTION)_FUNC_INICURRENTSECTION_STRING_INICURRENTSECTION=qbs_new(0,0);
uint32 *_FUNC_INICURRENTSECTION_ULONG_GLOBALPOSITION=NULL;
if(_FUNC_INICURRENTSECTION_ULONG_GLOBALPOSITION==NULL){
_FUNC_INICURRENTSECTION_ULONG_GLOBALPOSITION=(uint32*)mem_static_malloc(4);
*_FUNC_INICURRENTSECTION_ULONG_GLOBALPOSITION=0;
qbs *_FUNC_READSETTING_STRING_READSETTING=NULL;
if (!_FUNC_READSETTING_STRING_READSETTING)_FUNC_READSETTING_STRING_READSETTING=qbs_new(0,0);
qbs*oldstr4008=NULL;
if(_FUNC_READSETTING_STRING_FILE->tmp||_FUNC_READSETTING_STRING_FILE->fixed||_FUNC_READSETTING_STRING_FILE->readonly){
oldstr4008=_FUNC_READSETTING_STRING_FILE;
if (oldstr4008->cmem_descriptor){
_FUNC_READSETTING_STRING_FILE=qbs_new_cmem(oldstr4008->len,0);
}else{
_FUNC_READSETTING_STRING_FILE=qbs_new(oldstr4008->len,0);
}
uint32 *_FUNC_INICURRENTSECTION_ULONG_I=NULL;
if(_FUNC_INICURRENTSECTION_ULONG_I==NULL){
_FUNC_INICURRENTSECTION_ULONG_I=(uint32*)mem_static_malloc(4);
*_FUNC_INICURRENTSECTION_ULONG_I=0;
memcpy(_FUNC_READSETTING_STRING_FILE->chr,oldstr4008->chr,oldstr4008->len);
}
uint32 *_FUNC_INICURRENTSECTION_ULONG_CLOSINGBRACKET=NULL;
if(_FUNC_INICURRENTSECTION_ULONG_CLOSINGBRACKET==NULL){
_FUNC_INICURRENTSECTION_ULONG_CLOSINGBRACKET=(uint32*)mem_static_malloc(4);
*_FUNC_INICURRENTSECTION_ULONG_CLOSINGBRACKET=0;
qbs*oldstr4009=NULL;
if(_FUNC_READSETTING_STRING___SECTION->tmp||_FUNC_READSETTING_STRING___SECTION->fixed||_FUNC_READSETTING_STRING___SECTION->readonly){
oldstr4009=_FUNC_READSETTING_STRING___SECTION;
if (oldstr4009->cmem_descriptor){
_FUNC_READSETTING_STRING___SECTION=qbs_new_cmem(oldstr4009->len,0);
}else{
_FUNC_READSETTING_STRING___SECTION=qbs_new(oldstr4009->len,0);
}
memcpy(_FUNC_READSETTING_STRING___SECTION->chr,oldstr4009->chr,oldstr4009->len);
}
qbs*oldstr4010=NULL;
if(_FUNC_READSETTING_STRING___KEY->tmp||_FUNC_READSETTING_STRING___KEY->fixed||_FUNC_READSETTING_STRING___KEY->readonly){
oldstr4010=_FUNC_READSETTING_STRING___KEY;
if (oldstr4010->cmem_descriptor){
_FUNC_READSETTING_STRING___KEY=qbs_new_cmem(oldstr4010->len,0);
}else{
_FUNC_READSETTING_STRING___KEY=qbs_new(oldstr4010->len,0);
}
memcpy(_FUNC_READSETTING_STRING___KEY->chr,oldstr4010->chr,oldstr4010->len);
}
uint32 *_FUNC_READSETTING_ULONG_EQUAL=NULL;
if(_FUNC_READSETTING_ULONG_EQUAL==NULL){
_FUNC_READSETTING_ULONG_EQUAL=(uint32*)mem_static_malloc(4);
*_FUNC_READSETTING_ULONG_EQUAL=0;
}
qbs *_FUNC_READSETTING_STRING_TEMPVALUE=NULL;
if (!_FUNC_READSETTING_STRING_TEMPVALUE)_FUNC_READSETTING_STRING_TEMPVALUE=qbs_new(0,0);
qbs *_FUNC_READSETTING_STRING_KEY=NULL;
if (!_FUNC_READSETTING_STRING_KEY)_FUNC_READSETTING_STRING_KEY=qbs_new(0,0);
qbs *_FUNC_READSETTING_STRING_SECTION=NULL;
if (!_FUNC_READSETTING_STRING_SECTION)_FUNC_READSETTING_STRING_SECTION=qbs_new(0,0);
uint32 *_FUNC_READSETTING_ULONG_QUOTE=NULL;
if(_FUNC_READSETTING_ULONG_QUOTE==NULL){
_FUNC_READSETTING_ULONG_QUOTE=(uint32*)mem_static_malloc(4);
*_FUNC_READSETTING_ULONG_QUOTE=0;
}
uint32 *_FUNC_READSETTING_ULONG_COMMENT=NULL;
if(_FUNC_READSETTING_ULONG_COMMENT==NULL){
_FUNC_READSETTING_ULONG_COMMENT=(uint32*)mem_static_malloc(4);
*_FUNC_READSETTING_ULONG_COMMENT=0;
}
int32 *_FUNC_READSETTING_LONG_I=NULL;
if(_FUNC_READSETTING_LONG_I==NULL){
_FUNC_READSETTING_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_READSETTING_LONG_I=0;
}
uint32 *_FUNC_READSETTING_ULONG_FOUNDLF=NULL;
if(_FUNC_READSETTING_ULONG_FOUNDLF==NULL){
_FUNC_READSETTING_ULONG_FOUNDLF=(uint32*)mem_static_malloc(4);
*_FUNC_READSETTING_ULONG_FOUNDLF=0;
}
byte_element_struct *byte_element_4011=NULL;
if (!byte_element_4011){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4011=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4011=(byte_element_struct*)mem_static_malloc(12);
}
int64 fornext_value4013;
int64 fornext_finalvalue4013;
int64 fornext_step4013;
uint8 fornext_step_negative4013;
int64 fornext_value4015;
int64 fornext_finalvalue4015;
int64 fornext_step4015;
uint8 fornext_step_negative4015;
byte_element_struct *byte_element_4016=NULL;
if (!byte_element_4016){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4016=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4016=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4017=NULL;
if (!byte_element_4017){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4017=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4017=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4018=NULL;
if (!byte_element_4018){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4018=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4018=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4019=NULL;
if (!byte_element_4019){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4019=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4019=(byte_element_struct*)mem_static_malloc(12);
}
int64 fornext_value3935;
int64 fornext_finalvalue3935;
int64 fornext_step3935;
uint8 fornext_step_negative3935;
int64 fornext_value3937;
int64 fornext_finalvalue3937;
int64 fornext_step3937;
uint8 fornext_step_negative3937;

View file

@ -1,101 +1,25 @@
qbs*oldstr3938=NULL;
if(_SUB_WRITESETTING_STRING_FILE->tmp||_SUB_WRITESETTING_STRING_FILE->fixed||_SUB_WRITESETTING_STRING_FILE->readonly){
oldstr3938=_SUB_WRITESETTING_STRING_FILE;
if (oldstr3938->cmem_descriptor){
_SUB_WRITESETTING_STRING_FILE=qbs_new_cmem(oldstr3938->len,0);
}else{
_SUB_WRITESETTING_STRING_FILE=qbs_new(oldstr3938->len,0);
qbs *_FUNC_INICURRENTSECTION_STRING_INICURRENTSECTION=NULL;
if (!_FUNC_INICURRENTSECTION_STRING_INICURRENTSECTION)_FUNC_INICURRENTSECTION_STRING_INICURRENTSECTION=qbs_new(0,0);
uint32 *_FUNC_INICURRENTSECTION_ULONG_GLOBALPOSITION=NULL;
if(_FUNC_INICURRENTSECTION_ULONG_GLOBALPOSITION==NULL){
_FUNC_INICURRENTSECTION_ULONG_GLOBALPOSITION=(uint32*)mem_static_malloc(4);
*_FUNC_INICURRENTSECTION_ULONG_GLOBALPOSITION=0;
}
memcpy(_SUB_WRITESETTING_STRING_FILE->chr,oldstr3938->chr,oldstr3938->len);
uint32 *_FUNC_INICURRENTSECTION_ULONG_I=NULL;
if(_FUNC_INICURRENTSECTION_ULONG_I==NULL){
_FUNC_INICURRENTSECTION_ULONG_I=(uint32*)mem_static_malloc(4);
*_FUNC_INICURRENTSECTION_ULONG_I=0;
}
qbs*oldstr3939=NULL;
if(_SUB_WRITESETTING_STRING___SECTION->tmp||_SUB_WRITESETTING_STRING___SECTION->fixed||_SUB_WRITESETTING_STRING___SECTION->readonly){
oldstr3939=_SUB_WRITESETTING_STRING___SECTION;
if (oldstr3939->cmem_descriptor){
_SUB_WRITESETTING_STRING___SECTION=qbs_new_cmem(oldstr3939->len,0);
}else{
_SUB_WRITESETTING_STRING___SECTION=qbs_new(oldstr3939->len,0);
}
memcpy(_SUB_WRITESETTING_STRING___SECTION->chr,oldstr3939->chr,oldstr3939->len);
}
qbs*oldstr3940=NULL;
if(_SUB_WRITESETTING_STRING___KEY->tmp||_SUB_WRITESETTING_STRING___KEY->fixed||_SUB_WRITESETTING_STRING___KEY->readonly){
oldstr3940=_SUB_WRITESETTING_STRING___KEY;
if (oldstr3940->cmem_descriptor){
_SUB_WRITESETTING_STRING___KEY=qbs_new_cmem(oldstr3940->len,0);
}else{
_SUB_WRITESETTING_STRING___KEY=qbs_new(oldstr3940->len,0);
}
memcpy(_SUB_WRITESETTING_STRING___KEY->chr,oldstr3940->chr,oldstr3940->len);
}
qbs*oldstr3941=NULL;
if(_SUB_WRITESETTING_STRING___VALUE->tmp||_SUB_WRITESETTING_STRING___VALUE->fixed||_SUB_WRITESETTING_STRING___VALUE->readonly){
oldstr3941=_SUB_WRITESETTING_STRING___VALUE;
if (oldstr3941->cmem_descriptor){
_SUB_WRITESETTING_STRING___VALUE=qbs_new_cmem(oldstr3941->len,0);
}else{
_SUB_WRITESETTING_STRING___VALUE=qbs_new(oldstr3941->len,0);
}
memcpy(_SUB_WRITESETTING_STRING___VALUE->chr,oldstr3941->chr,oldstr3941->len);
}
qbs *_SUB_WRITESETTING_STRING_TEMPVALUE=NULL;
if (!_SUB_WRITESETTING_STRING_TEMPVALUE)_SUB_WRITESETTING_STRING_TEMPVALUE=qbs_new(0,0);
qbs *_SUB_WRITESETTING_STRING_SECTION=NULL;
if (!_SUB_WRITESETTING_STRING_SECTION)_SUB_WRITESETTING_STRING_SECTION=qbs_new(0,0);
qbs *_SUB_WRITESETTING_STRING_KEY=NULL;
if (!_SUB_WRITESETTING_STRING_KEY)_SUB_WRITESETTING_STRING_KEY=qbs_new(0,0);
qbs *_SUB_WRITESETTING_STRING_VALUE=NULL;
if (!_SUB_WRITESETTING_STRING_VALUE)_SUB_WRITESETTING_STRING_VALUE=qbs_new(0,0);
uint32 *_SUB_WRITESETTING_ULONG_NEXTLINE=NULL;
if(_SUB_WRITESETTING_ULONG_NEXTLINE==NULL){
_SUB_WRITESETTING_ULONG_NEXTLINE=(uint32*)mem_static_malloc(4);
*_SUB_WRITESETTING_ULONG_NEXTLINE=0;
}
uint32 *_SUB_WRITESETTING_ULONG_BRACKET1=NULL;
if(_SUB_WRITESETTING_ULONG_BRACKET1==NULL){
_SUB_WRITESETTING_ULONG_BRACKET1=(uint32*)mem_static_malloc(4);
*_SUB_WRITESETTING_ULONG_BRACKET1=0;
}
uint32 *_SUB_WRITESETTING_ULONG_BEGINSECTION=NULL;
if(_SUB_WRITESETTING_ULONG_BEGINSECTION==NULL){
_SUB_WRITESETTING_ULONG_BEGINSECTION=(uint32*)mem_static_malloc(4);
*_SUB_WRITESETTING_ULONG_BEGINSECTION=0;
}
uint32 *_SUB_WRITESETTING_ULONG_ENDSECTION=NULL;
if(_SUB_WRITESETTING_ULONG_ENDSECTION==NULL){
_SUB_WRITESETTING_ULONG_ENDSECTION=(uint32*)mem_static_malloc(4);
*_SUB_WRITESETTING_ULONG_ENDSECTION=0;
}
uint32 *_SUB_WRITESETTING_ULONG_I=NULL;
if(_SUB_WRITESETTING_ULONG_I==NULL){
_SUB_WRITESETTING_ULONG_I=(uint32*)mem_static_malloc(4);
*_SUB_WRITESETTING_ULONG_I=0;
}
int64 fornext_value3943;
int64 fornext_finalvalue3943;
int64 fornext_step3943;
uint8 fornext_step_negative3943;
int64 fornext_value3945;
int64 fornext_finalvalue3945;
int64 fornext_step3945;
uint8 fornext_step_negative3945;
byte_element_struct *byte_element_3946=NULL;
if (!byte_element_3946){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3946=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3946=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3947=NULL;
if (!byte_element_3947){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3947=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3947=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3948=NULL;
if (!byte_element_3948){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3948=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3948=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3949=NULL;
if (!byte_element_3949){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3949=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3949=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3950=NULL;
if (!byte_element_3950){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3950=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3950=(byte_element_struct*)mem_static_malloc(12);
uint32 *_FUNC_INICURRENTSECTION_ULONG_CLOSINGBRACKET=NULL;
if(_FUNC_INICURRENTSECTION_ULONG_CLOSINGBRACKET==NULL){
_FUNC_INICURRENTSECTION_ULONG_CLOSINGBRACKET=(uint32*)mem_static_malloc(4);
*_FUNC_INICURRENTSECTION_ULONG_CLOSINGBRACKET=0;
}
int64 fornext_value4021;
int64 fornext_finalvalue4021;
int64 fornext_step4021;
uint8 fornext_step_negative4021;
int64 fornext_value4023;
int64 fornext_finalvalue4023;
int64 fornext_step4023;
uint8 fornext_step_negative4023;

View file

@ -0,0 +1,101 @@
qbs*oldstr4024=NULL;
if(_SUB_WRITESETTING_STRING_FILE->tmp||_SUB_WRITESETTING_STRING_FILE->fixed||_SUB_WRITESETTING_STRING_FILE->readonly){
oldstr4024=_SUB_WRITESETTING_STRING_FILE;
if (oldstr4024->cmem_descriptor){
_SUB_WRITESETTING_STRING_FILE=qbs_new_cmem(oldstr4024->len,0);
}else{
_SUB_WRITESETTING_STRING_FILE=qbs_new(oldstr4024->len,0);
}
memcpy(_SUB_WRITESETTING_STRING_FILE->chr,oldstr4024->chr,oldstr4024->len);
}
qbs*oldstr4025=NULL;
if(_SUB_WRITESETTING_STRING___SECTION->tmp||_SUB_WRITESETTING_STRING___SECTION->fixed||_SUB_WRITESETTING_STRING___SECTION->readonly){
oldstr4025=_SUB_WRITESETTING_STRING___SECTION;
if (oldstr4025->cmem_descriptor){
_SUB_WRITESETTING_STRING___SECTION=qbs_new_cmem(oldstr4025->len,0);
}else{
_SUB_WRITESETTING_STRING___SECTION=qbs_new(oldstr4025->len,0);
}
memcpy(_SUB_WRITESETTING_STRING___SECTION->chr,oldstr4025->chr,oldstr4025->len);
}
qbs*oldstr4026=NULL;
if(_SUB_WRITESETTING_STRING___KEY->tmp||_SUB_WRITESETTING_STRING___KEY->fixed||_SUB_WRITESETTING_STRING___KEY->readonly){
oldstr4026=_SUB_WRITESETTING_STRING___KEY;
if (oldstr4026->cmem_descriptor){
_SUB_WRITESETTING_STRING___KEY=qbs_new_cmem(oldstr4026->len,0);
}else{
_SUB_WRITESETTING_STRING___KEY=qbs_new(oldstr4026->len,0);
}
memcpy(_SUB_WRITESETTING_STRING___KEY->chr,oldstr4026->chr,oldstr4026->len);
}
qbs*oldstr4027=NULL;
if(_SUB_WRITESETTING_STRING___VALUE->tmp||_SUB_WRITESETTING_STRING___VALUE->fixed||_SUB_WRITESETTING_STRING___VALUE->readonly){
oldstr4027=_SUB_WRITESETTING_STRING___VALUE;
if (oldstr4027->cmem_descriptor){
_SUB_WRITESETTING_STRING___VALUE=qbs_new_cmem(oldstr4027->len,0);
}else{
_SUB_WRITESETTING_STRING___VALUE=qbs_new(oldstr4027->len,0);
}
memcpy(_SUB_WRITESETTING_STRING___VALUE->chr,oldstr4027->chr,oldstr4027->len);
}
qbs *_SUB_WRITESETTING_STRING_TEMPVALUE=NULL;
if (!_SUB_WRITESETTING_STRING_TEMPVALUE)_SUB_WRITESETTING_STRING_TEMPVALUE=qbs_new(0,0);
qbs *_SUB_WRITESETTING_STRING_SECTION=NULL;
if (!_SUB_WRITESETTING_STRING_SECTION)_SUB_WRITESETTING_STRING_SECTION=qbs_new(0,0);
qbs *_SUB_WRITESETTING_STRING_KEY=NULL;
if (!_SUB_WRITESETTING_STRING_KEY)_SUB_WRITESETTING_STRING_KEY=qbs_new(0,0);
qbs *_SUB_WRITESETTING_STRING_VALUE=NULL;
if (!_SUB_WRITESETTING_STRING_VALUE)_SUB_WRITESETTING_STRING_VALUE=qbs_new(0,0);
uint32 *_SUB_WRITESETTING_ULONG_NEXTLINE=NULL;
if(_SUB_WRITESETTING_ULONG_NEXTLINE==NULL){
_SUB_WRITESETTING_ULONG_NEXTLINE=(uint32*)mem_static_malloc(4);
*_SUB_WRITESETTING_ULONG_NEXTLINE=0;
}
uint32 *_SUB_WRITESETTING_ULONG_BRACKET1=NULL;
if(_SUB_WRITESETTING_ULONG_BRACKET1==NULL){
_SUB_WRITESETTING_ULONG_BRACKET1=(uint32*)mem_static_malloc(4);
*_SUB_WRITESETTING_ULONG_BRACKET1=0;
}
uint32 *_SUB_WRITESETTING_ULONG_BEGINSECTION=NULL;
if(_SUB_WRITESETTING_ULONG_BEGINSECTION==NULL){
_SUB_WRITESETTING_ULONG_BEGINSECTION=(uint32*)mem_static_malloc(4);
*_SUB_WRITESETTING_ULONG_BEGINSECTION=0;
}
uint32 *_SUB_WRITESETTING_ULONG_ENDSECTION=NULL;
if(_SUB_WRITESETTING_ULONG_ENDSECTION==NULL){
_SUB_WRITESETTING_ULONG_ENDSECTION=(uint32*)mem_static_malloc(4);
*_SUB_WRITESETTING_ULONG_ENDSECTION=0;
}
uint32 *_SUB_WRITESETTING_ULONG_I=NULL;
if(_SUB_WRITESETTING_ULONG_I==NULL){
_SUB_WRITESETTING_ULONG_I=(uint32*)mem_static_malloc(4);
*_SUB_WRITESETTING_ULONG_I=0;
}
int64 fornext_value4029;
int64 fornext_finalvalue4029;
int64 fornext_step4029;
uint8 fornext_step_negative4029;
int64 fornext_value4031;
int64 fornext_finalvalue4031;
int64 fornext_step4031;
uint8 fornext_step_negative4031;
byte_element_struct *byte_element_4032=NULL;
if (!byte_element_4032){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4032=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4032=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4033=NULL;
if (!byte_element_4033){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4033=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4033=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4034=NULL;
if (!byte_element_4034){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4034=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4034=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4035=NULL;
if (!byte_element_4035){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4035=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4035=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4036=NULL;
if (!byte_element_4036){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4036=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4036=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -3,15 +3,15 @@ if(_FUNC_COUNTELEMENTS_LONG_COUNTELEMENTS==NULL){
_FUNC_COUNTELEMENTS_LONG_COUNTELEMENTS=(int32*)mem_static_malloc(4);
*_FUNC_COUNTELEMENTS_LONG_COUNTELEMENTS=0;
}
qbs*oldstr2361=NULL;
qbs*oldstr2394=NULL;
if(_FUNC_COUNTELEMENTS_STRING_A->tmp||_FUNC_COUNTELEMENTS_STRING_A->fixed||_FUNC_COUNTELEMENTS_STRING_A->readonly){
oldstr2361=_FUNC_COUNTELEMENTS_STRING_A;
if (oldstr2361->cmem_descriptor){
_FUNC_COUNTELEMENTS_STRING_A=qbs_new_cmem(oldstr2361->len,0);
oldstr2394=_FUNC_COUNTELEMENTS_STRING_A;
if (oldstr2394->cmem_descriptor){
_FUNC_COUNTELEMENTS_STRING_A=qbs_new_cmem(oldstr2394->len,0);
}else{
_FUNC_COUNTELEMENTS_STRING_A=qbs_new(oldstr2361->len,0);
_FUNC_COUNTELEMENTS_STRING_A=qbs_new(oldstr2394->len,0);
}
memcpy(_FUNC_COUNTELEMENTS_STRING_A->chr,oldstr2361->chr,oldstr2361->len);
memcpy(_FUNC_COUNTELEMENTS_STRING_A->chr,oldstr2394->chr,oldstr2394->len);
}
int32 *_FUNC_COUNTELEMENTS_LONG_N=NULL;
if(_FUNC_COUNTELEMENTS_LONG_N==NULL){
@ -28,10 +28,10 @@ if(_FUNC_COUNTELEMENTS_LONG_I==NULL){
_FUNC_COUNTELEMENTS_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_COUNTELEMENTS_LONG_I=0;
}
int64 fornext_value2363;
int64 fornext_finalvalue2363;
int64 fornext_step2363;
uint8 fornext_step_negative2363;
int64 fornext_value2396;
int64 fornext_finalvalue2396;
int64 fornext_step2396;
uint8 fornext_step_negative2396;
qbs *_FUNC_COUNTELEMENTS_STRING_E=NULL;
if (!_FUNC_COUNTELEMENTS_STRING_E)_FUNC_COUNTELEMENTS_STRING_E=qbs_new(0,0);
int32 *_FUNC_COUNTELEMENTS_LONG_B=NULL;

View file

@ -1,19 +0,0 @@
qbs*oldstr3951=NULL;
if(_SUB_INILOAD_STRING_FILE->tmp||_SUB_INILOAD_STRING_FILE->fixed||_SUB_INILOAD_STRING_FILE->readonly){
oldstr3951=_SUB_INILOAD_STRING_FILE;
if (oldstr3951->cmem_descriptor){
_SUB_INILOAD_STRING_FILE=qbs_new_cmem(oldstr3951->len,0);
}else{
_SUB_INILOAD_STRING_FILE=qbs_new(oldstr3951->len,0);
}
memcpy(_SUB_INILOAD_STRING_FILE->chr,oldstr3951->chr,oldstr3951->len);
}
int16 *_SUB_INILOAD_INTEGER_FILENUM=NULL;
if(_SUB_INILOAD_INTEGER_FILENUM==NULL){
_SUB_INILOAD_INTEGER_FILENUM=(int16*)mem_static_malloc(2);
*_SUB_INILOAD_INTEGER_FILENUM=0;
}
byte_element_struct *byte_element_3952=NULL;
if (!byte_element_3952){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3952=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3952=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -1,15 +1,19 @@
int16 *_FUNC_CREATEBUF_INTEGER_CREATEBUF=NULL;
if(_FUNC_CREATEBUF_INTEGER_CREATEBUF==NULL){
_FUNC_CREATEBUF_INTEGER_CREATEBUF=(int16*)mem_static_malloc(2);
*_FUNC_CREATEBUF_INTEGER_CREATEBUF=0;
qbs*oldstr4037=NULL;
if(_SUB_INILOAD_STRING_FILE->tmp||_SUB_INILOAD_STRING_FILE->fixed||_SUB_INILOAD_STRING_FILE->readonly){
oldstr4037=_SUB_INILOAD_STRING_FILE;
if (oldstr4037->cmem_descriptor){
_SUB_INILOAD_STRING_FILE=qbs_new_cmem(oldstr4037->len,0);
}else{
_SUB_INILOAD_STRING_FILE=qbs_new(oldstr4037->len,0);
}
int32 *_FUNC_CREATEBUF_LONG_AUB=NULL;
if(_FUNC_CREATEBUF_LONG_AUB==NULL){
_FUNC_CREATEBUF_LONG_AUB=(int32*)mem_static_malloc(4);
*_FUNC_CREATEBUF_LONG_AUB=0;
memcpy(_SUB_INILOAD_STRING_FILE->chr,oldstr4037->chr,oldstr4037->len);
}
int32 *_FUNC_CREATEBUF_LONG_BUF=NULL;
if(_FUNC_CREATEBUF_LONG_BUF==NULL){
_FUNC_CREATEBUF_LONG_BUF=(int32*)mem_static_malloc(4);
*_FUNC_CREATEBUF_LONG_BUF=0;
int16 *_SUB_INILOAD_INTEGER_FILENUM=NULL;
if(_SUB_INILOAD_INTEGER_FILENUM==NULL){
_SUB_INILOAD_INTEGER_FILENUM=(int16*)mem_static_malloc(2);
*_SUB_INILOAD_INTEGER_FILENUM=0;
}
byte_element_struct *byte_element_4038=NULL;
if (!byte_element_4038){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4038=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4038=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -1,5 +1,15 @@
int32 *_SUB_DISPOSEBUF_LONG_BUF=NULL;
if(_SUB_DISPOSEBUF_LONG_BUF==NULL){
_SUB_DISPOSEBUF_LONG_BUF=(int32*)mem_static_malloc(4);
*_SUB_DISPOSEBUF_LONG_BUF=0;
int16 *_FUNC_CREATEBUF_INTEGER_CREATEBUF=NULL;
if(_FUNC_CREATEBUF_INTEGER_CREATEBUF==NULL){
_FUNC_CREATEBUF_INTEGER_CREATEBUF=(int16*)mem_static_malloc(2);
*_FUNC_CREATEBUF_INTEGER_CREATEBUF=0;
}
int32 *_FUNC_CREATEBUF_LONG_AUB=NULL;
if(_FUNC_CREATEBUF_LONG_AUB==NULL){
_FUNC_CREATEBUF_LONG_AUB=(int32*)mem_static_malloc(4);
*_FUNC_CREATEBUF_LONG_AUB=0;
}
int32 *_FUNC_CREATEBUF_LONG_BUF=NULL;
if(_FUNC_CREATEBUF_LONG_BUF==NULL){
_FUNC_CREATEBUF_LONG_BUF=(int32*)mem_static_malloc(4);
*_FUNC_CREATEBUF_LONG_BUF=0;
}

View file

@ -1,40 +1,5 @@
int16 *_FUNC_FILETOBUF_INTEGER_FILETOBUF=NULL;
if(_FUNC_FILETOBUF_INTEGER_FILETOBUF==NULL){
_FUNC_FILETOBUF_INTEGER_FILETOBUF=(int16*)mem_static_malloc(2);
*_FUNC_FILETOBUF_INTEGER_FILETOBUF=0;
}
qbs*oldstr3954=NULL;
if(_FUNC_FILETOBUF_STRING_FILESPEC->tmp||_FUNC_FILETOBUF_STRING_FILESPEC->fixed||_FUNC_FILETOBUF_STRING_FILESPEC->readonly){
oldstr3954=_FUNC_FILETOBUF_STRING_FILESPEC;
if (oldstr3954->cmem_descriptor){
_FUNC_FILETOBUF_STRING_FILESPEC=qbs_new_cmem(oldstr3954->len,0);
}else{
_FUNC_FILETOBUF_STRING_FILESPEC=qbs_new(oldstr3954->len,0);
}
memcpy(_FUNC_FILETOBUF_STRING_FILESPEC->chr,oldstr3954->chr,oldstr3954->len);
}
int16 *_FUNC_FILETOBUF_INTEGER_HAN=NULL;
if(_FUNC_FILETOBUF_INTEGER_HAN==NULL){
_FUNC_FILETOBUF_INTEGER_HAN=(int16*)mem_static_malloc(2);
*_FUNC_FILETOBUF_INTEGER_HAN=0;
}
int32 *_FUNC_FILETOBUF_LONG_BUF=NULL;
if(_FUNC_FILETOBUF_LONG_BUF==NULL){
_FUNC_FILETOBUF_LONG_BUF=(int32*)mem_static_malloc(4);
*_FUNC_FILETOBUF_LONG_BUF=0;
}
int16 *_FUNC_FILETOBUF_INTEGER_FF=NULL;
if(_FUNC_FILETOBUF_INTEGER_FF==NULL){
_FUNC_FILETOBUF_INTEGER_FF=(int16*)mem_static_malloc(2);
*_FUNC_FILETOBUF_INTEGER_FF=0;
}
int64 *_FUNC_FILETOBUF_INTEGER64_FL=NULL;
if(_FUNC_FILETOBUF_INTEGER64_FL==NULL){
_FUNC_FILETOBUF_INTEGER64_FL=(int64*)mem_static_malloc(8);
*_FUNC_FILETOBUF_INTEGER64_FL=0;
}
int32 *_FUNC_FILETOBUF_LONG_EXT=NULL;
if(_FUNC_FILETOBUF_LONG_EXT==NULL){
_FUNC_FILETOBUF_LONG_EXT=(int32*)mem_static_malloc(4);
*_FUNC_FILETOBUF_LONG_EXT=0;
int32 *_SUB_DISPOSEBUF_LONG_BUF=NULL;
if(_SUB_DISPOSEBUF_LONG_BUF==NULL){
_SUB_DISPOSEBUF_LONG_BUF=(int32*)mem_static_malloc(4);
*_SUB_DISPOSEBUF_LONG_BUF=0;
}

View file

@ -1,26 +1,40 @@
qbs*oldstr3955=NULL;
if(_SUB_BUFTOFILE_STRING_FILESPEC->tmp||_SUB_BUFTOFILE_STRING_FILESPEC->fixed||_SUB_BUFTOFILE_STRING_FILESPEC->readonly){
oldstr3955=_SUB_BUFTOFILE_STRING_FILESPEC;
if (oldstr3955->cmem_descriptor){
_SUB_BUFTOFILE_STRING_FILESPEC=qbs_new_cmem(oldstr3955->len,0);
int16 *_FUNC_FILETOBUF_INTEGER_FILETOBUF=NULL;
if(_FUNC_FILETOBUF_INTEGER_FILETOBUF==NULL){
_FUNC_FILETOBUF_INTEGER_FILETOBUF=(int16*)mem_static_malloc(2);
*_FUNC_FILETOBUF_INTEGER_FILETOBUF=0;
}
qbs*oldstr4040=NULL;
if(_FUNC_FILETOBUF_STRING_FILESPEC->tmp||_FUNC_FILETOBUF_STRING_FILESPEC->fixed||_FUNC_FILETOBUF_STRING_FILESPEC->readonly){
oldstr4040=_FUNC_FILETOBUF_STRING_FILESPEC;
if (oldstr4040->cmem_descriptor){
_FUNC_FILETOBUF_STRING_FILESPEC=qbs_new_cmem(oldstr4040->len,0);
}else{
_SUB_BUFTOFILE_STRING_FILESPEC=qbs_new(oldstr3955->len,0);
_FUNC_FILETOBUF_STRING_FILESPEC=qbs_new(oldstr4040->len,0);
}
memcpy(_SUB_BUFTOFILE_STRING_FILESPEC->chr,oldstr3955->chr,oldstr3955->len);
memcpy(_FUNC_FILETOBUF_STRING_FILESPEC->chr,oldstr4040->chr,oldstr4040->len);
}
int32 *_SUB_BUFTOFILE_LONG_BUF=NULL;
if(_SUB_BUFTOFILE_LONG_BUF==NULL){
_SUB_BUFTOFILE_LONG_BUF=(int32*)mem_static_malloc(4);
*_SUB_BUFTOFILE_LONG_BUF=0;
int16 *_FUNC_FILETOBUF_INTEGER_HAN=NULL;
if(_FUNC_FILETOBUF_INTEGER_HAN==NULL){
_FUNC_FILETOBUF_INTEGER_HAN=(int16*)mem_static_malloc(2);
*_FUNC_FILETOBUF_INTEGER_HAN=0;
}
int16 *_SUB_BUFTOFILE_INTEGER_FF=NULL;
if(_SUB_BUFTOFILE_INTEGER_FF==NULL){
_SUB_BUFTOFILE_INTEGER_FF=(int16*)mem_static_malloc(2);
*_SUB_BUFTOFILE_INTEGER_FF=0;
int32 *_FUNC_FILETOBUF_LONG_BUF=NULL;
if(_FUNC_FILETOBUF_LONG_BUF==NULL){
_FUNC_FILETOBUF_LONG_BUF=(int32*)mem_static_malloc(4);
*_FUNC_FILETOBUF_LONG_BUF=0;
}
qbs *_SUB_BUFTOFILE_STRING_DAT=NULL;
if (!_SUB_BUFTOFILE_STRING_DAT)_SUB_BUFTOFILE_STRING_DAT=qbs_new(0,0);
byte_element_struct *byte_element_3956=NULL;
if (!byte_element_3956){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3956=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3956=(byte_element_struct*)mem_static_malloc(12);
int16 *_FUNC_FILETOBUF_INTEGER_FF=NULL;
if(_FUNC_FILETOBUF_INTEGER_FF==NULL){
_FUNC_FILETOBUF_INTEGER_FF=(int16*)mem_static_malloc(2);
*_FUNC_FILETOBUF_INTEGER_FF=0;
}
int64 *_FUNC_FILETOBUF_INTEGER64_FL=NULL;
if(_FUNC_FILETOBUF_INTEGER64_FL==NULL){
_FUNC_FILETOBUF_INTEGER64_FL=(int64*)mem_static_malloc(8);
*_FUNC_FILETOBUF_INTEGER64_FL=0;
}
int32 *_FUNC_FILETOBUF_LONG_EXT=NULL;
if(_FUNC_FILETOBUF_LONG_EXT==NULL){
_FUNC_FILETOBUF_LONG_EXT=(int32*)mem_static_malloc(4);
*_FUNC_FILETOBUF_LONG_EXT=0;
}

View file

@ -1,33 +1,26 @@
qbs *_FUNC_READBUFLINE_STRING_READBUFLINE=NULL;
if (!_FUNC_READBUFLINE_STRING_READBUFLINE)_FUNC_READBUFLINE_STRING_READBUFLINE=qbs_new(0,0);
int32 *_FUNC_READBUFLINE_LONG_BUF=NULL;
if(_FUNC_READBUFLINE_LONG_BUF==NULL){
_FUNC_READBUFLINE_LONG_BUF=(int32*)mem_static_malloc(4);
*_FUNC_READBUFLINE_LONG_BUF=0;
qbs*oldstr4041=NULL;
if(_SUB_BUFTOFILE_STRING_FILESPEC->tmp||_SUB_BUFTOFILE_STRING_FILESPEC->fixed||_SUB_BUFTOFILE_STRING_FILESPEC->readonly){
oldstr4041=_SUB_BUFTOFILE_STRING_FILESPEC;
if (oldstr4041->cmem_descriptor){
_SUB_BUFTOFILE_STRING_FILESPEC=qbs_new_cmem(oldstr4041->len,0);
}else{
_SUB_BUFTOFILE_STRING_FILESPEC=qbs_new(oldstr4041->len,0);
}
int32 *_FUNC_READBUFLINE_LONG_CUR=NULL;
if(_FUNC_READBUFLINE_LONG_CUR==NULL){
_FUNC_READBUFLINE_LONG_CUR=(int32*)mem_static_malloc(4);
*_FUNC_READBUFLINE_LONG_CUR=0;
memcpy(_SUB_BUFTOFILE_STRING_FILESPEC->chr,oldstr4041->chr,oldstr4041->len);
}
int64 *_FUNC_READBUFLINE_INTEGER64_CBL=NULL;
if(_FUNC_READBUFLINE_INTEGER64_CBL==NULL){
_FUNC_READBUFLINE_INTEGER64_CBL=(int64*)mem_static_malloc(8);
*_FUNC_READBUFLINE_INTEGER64_CBL=0;
int32 *_SUB_BUFTOFILE_LONG_BUF=NULL;
if(_SUB_BUFTOFILE_LONG_BUF==NULL){
_SUB_BUFTOFILE_LONG_BUF=(int32*)mem_static_malloc(4);
*_SUB_BUFTOFILE_LONG_BUF=0;
}
qbs *_FUNC_READBUFLINE_STRING_BRC=NULL;
if (!_FUNC_READBUFLINE_STRING_BRC)_FUNC_READBUFLINE_STRING_BRC=qbs_new(0,0);
int16 *_FUNC_READBUFLINE_INTEGER_BRL=NULL;
if(_FUNC_READBUFLINE_INTEGER_BRL==NULL){
_FUNC_READBUFLINE_INTEGER_BRL=(int16*)mem_static_malloc(2);
*_FUNC_READBUFLINE_INTEGER_BRL=0;
int16 *_SUB_BUFTOFILE_INTEGER_FF=NULL;
if(_SUB_BUFTOFILE_INTEGER_FF==NULL){
_SUB_BUFTOFILE_INTEGER_FF=(int16*)mem_static_malloc(2);
*_SUB_BUFTOFILE_INTEGER_FF=0;
}
int32 *_FUNC_READBUFLINE_LONG_EOL=NULL;
if(_FUNC_READBUFLINE_LONG_EOL==NULL){
_FUNC_READBUFLINE_LONG_EOL=(int32*)mem_static_malloc(4);
*_FUNC_READBUFLINE_LONG_EOL=0;
}
byte_element_struct *byte_element_3957=NULL;
if (!byte_element_3957){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3957=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3957=(byte_element_struct*)mem_static_malloc(12);
qbs *_SUB_BUFTOFILE_STRING_DAT=NULL;
if (!_SUB_BUFTOFILE_STRING_DAT)_SUB_BUFTOFILE_STRING_DAT=qbs_new(0,0);
byte_element_struct *byte_element_4042=NULL;
if (!byte_element_4042){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4042=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4042=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -1,64 +1,33 @@
qbs*oldstr3958=NULL;
if(_SUB_WRITEBUFLINE_STRING_TEXT->tmp||_SUB_WRITEBUFLINE_STRING_TEXT->fixed||_SUB_WRITEBUFLINE_STRING_TEXT->readonly){
oldstr3958=_SUB_WRITEBUFLINE_STRING_TEXT;
if (oldstr3958->cmem_descriptor){
_SUB_WRITEBUFLINE_STRING_TEXT=qbs_new_cmem(oldstr3958->len,0);
}else{
_SUB_WRITEBUFLINE_STRING_TEXT=qbs_new(oldstr3958->len,0);
qbs *_FUNC_READBUFLINE_STRING_READBUFLINE=NULL;
if (!_FUNC_READBUFLINE_STRING_READBUFLINE)_FUNC_READBUFLINE_STRING_READBUFLINE=qbs_new(0,0);
int32 *_FUNC_READBUFLINE_LONG_BUF=NULL;
if(_FUNC_READBUFLINE_LONG_BUF==NULL){
_FUNC_READBUFLINE_LONG_BUF=(int32*)mem_static_malloc(4);
*_FUNC_READBUFLINE_LONG_BUF=0;
}
memcpy(_SUB_WRITEBUFLINE_STRING_TEXT->chr,oldstr3958->chr,oldstr3958->len);
int32 *_FUNC_READBUFLINE_LONG_CUR=NULL;
if(_FUNC_READBUFLINE_LONG_CUR==NULL){
_FUNC_READBUFLINE_LONG_CUR=(int32*)mem_static_malloc(4);
*_FUNC_READBUFLINE_LONG_CUR=0;
}
int32 *_SUB_WRITEBUFLINE_LONG_BUF=NULL;
if(_SUB_WRITEBUFLINE_LONG_BUF==NULL){
_SUB_WRITEBUFLINE_LONG_BUF=(int32*)mem_static_malloc(4);
*_SUB_WRITEBUFLINE_LONG_BUF=0;
int64 *_FUNC_READBUFLINE_INTEGER64_CBL=NULL;
if(_FUNC_READBUFLINE_INTEGER64_CBL==NULL){
_FUNC_READBUFLINE_INTEGER64_CBL=(int64*)mem_static_malloc(8);
*_FUNC_READBUFLINE_INTEGER64_CBL=0;
}
int32 *_SUB_WRITEBUFLINE_LONG_CUR=NULL;
if(_SUB_WRITEBUFLINE_LONG_CUR==NULL){
_SUB_WRITEBUFLINE_LONG_CUR=(int32*)mem_static_malloc(4);
*_SUB_WRITEBUFLINE_LONG_CUR=0;
qbs *_FUNC_READBUFLINE_STRING_BRC=NULL;
if (!_FUNC_READBUFLINE_STRING_BRC)_FUNC_READBUFLINE_STRING_BRC=qbs_new(0,0);
int16 *_FUNC_READBUFLINE_INTEGER_BRL=NULL;
if(_FUNC_READBUFLINE_INTEGER_BRL==NULL){
_FUNC_READBUFLINE_INTEGER_BRL=(int16*)mem_static_malloc(2);
*_FUNC_READBUFLINE_INTEGER_BRL=0;
}
int32 *_SUB_WRITEBUFLINE_LONG_TXL=NULL;
if(_SUB_WRITEBUFLINE_LONG_TXL==NULL){
_SUB_WRITEBUFLINE_LONG_TXL=(int32*)mem_static_malloc(4);
*_SUB_WRITEBUFLINE_LONG_TXL=0;
int32 *_FUNC_READBUFLINE_LONG_EOL=NULL;
if(_FUNC_READBUFLINE_LONG_EOL==NULL){
_FUNC_READBUFLINE_LONG_EOL=(int32*)mem_static_malloc(4);
*_FUNC_READBUFLINE_LONG_EOL=0;
}
qbs *_SUB_WRITEBUFLINE_STRING_BRC=NULL;
if (!_SUB_WRITEBUFLINE_STRING_BRC)_SUB_WRITEBUFLINE_STRING_BRC=qbs_new(0,0);
int16 *_SUB_WRITEBUFLINE_INTEGER_BRL=NULL;
if(_SUB_WRITEBUFLINE_INTEGER_BRL==NULL){
_SUB_WRITEBUFLINE_INTEGER_BRL=(int16*)mem_static_malloc(2);
*_SUB_WRITEBUFLINE_INTEGER_BRL=0;
}
int64 *_SUB_WRITEBUFLINE_INTEGER64_CBL=NULL;
if(_SUB_WRITEBUFLINE_INTEGER64_CBL==NULL){
_SUB_WRITEBUFLINE_INTEGER64_CBL=(int64*)mem_static_malloc(8);
*_SUB_WRITEBUFLINE_INTEGER64_CBL=0;
}
int32 *_SUB_WRITEBUFLINE_LONG_CHG=NULL;
if(_SUB_WRITEBUFLINE_LONG_CHG==NULL){
_SUB_WRITEBUFLINE_LONG_CHG=(int32*)mem_static_malloc(4);
*_SUB_WRITEBUFLINE_LONG_CHG=0;
}
int32 *_SUB_WRITEBUFLINE_LONG_BSZ=NULL;
if(_SUB_WRITEBUFLINE_LONG_BSZ==NULL){
_SUB_WRITEBUFLINE_LONG_BSZ=(int32*)mem_static_malloc(4);
*_SUB_WRITEBUFLINE_LONG_BSZ=0;
}
int32 *_SUB_WRITEBUFLINE_LONG_EXT=NULL;
if(_SUB_WRITEBUFLINE_LONG_EXT==NULL){
_SUB_WRITEBUFLINE_LONG_EXT=(int32*)mem_static_malloc(4);
*_SUB_WRITEBUFLINE_LONG_EXT=0;
}
byte_element_struct *byte_element_3959=NULL;
if (!byte_element_3959){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3959=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3959=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3960=NULL;
if (!byte_element_3960){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3960=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3960=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3961=NULL;
if (!byte_element_3961){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3961=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3961=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_4043=NULL;
if (!byte_element_4043){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4043=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4043=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -3,35 +3,35 @@ if(_FUNC_DIM2_LONG_DIM2==NULL){
_FUNC_DIM2_LONG_DIM2=(int32*)mem_static_malloc(4);
*_FUNC_DIM2_LONG_DIM2=0;
}
qbs*oldstr2364=NULL;
qbs*oldstr2397=NULL;
if(_FUNC_DIM2_STRING_VARNAME->tmp||_FUNC_DIM2_STRING_VARNAME->fixed||_FUNC_DIM2_STRING_VARNAME->readonly){
oldstr2364=_FUNC_DIM2_STRING_VARNAME;
if (oldstr2364->cmem_descriptor){
_FUNC_DIM2_STRING_VARNAME=qbs_new_cmem(oldstr2364->len,0);
oldstr2397=_FUNC_DIM2_STRING_VARNAME;
if (oldstr2397->cmem_descriptor){
_FUNC_DIM2_STRING_VARNAME=qbs_new_cmem(oldstr2397->len,0);
}else{
_FUNC_DIM2_STRING_VARNAME=qbs_new(oldstr2364->len,0);
_FUNC_DIM2_STRING_VARNAME=qbs_new(oldstr2397->len,0);
}
memcpy(_FUNC_DIM2_STRING_VARNAME->chr,oldstr2364->chr,oldstr2364->len);
memcpy(_FUNC_DIM2_STRING_VARNAME->chr,oldstr2397->chr,oldstr2397->len);
}
qbs*oldstr2365=NULL;
qbs*oldstr2398=NULL;
if(_FUNC_DIM2_STRING_TYP2->tmp||_FUNC_DIM2_STRING_TYP2->fixed||_FUNC_DIM2_STRING_TYP2->readonly){
oldstr2365=_FUNC_DIM2_STRING_TYP2;
if (oldstr2365->cmem_descriptor){
_FUNC_DIM2_STRING_TYP2=qbs_new_cmem(oldstr2365->len,0);
oldstr2398=_FUNC_DIM2_STRING_TYP2;
if (oldstr2398->cmem_descriptor){
_FUNC_DIM2_STRING_TYP2=qbs_new_cmem(oldstr2398->len,0);
}else{
_FUNC_DIM2_STRING_TYP2=qbs_new(oldstr2365->len,0);
_FUNC_DIM2_STRING_TYP2=qbs_new(oldstr2398->len,0);
}
memcpy(_FUNC_DIM2_STRING_TYP2->chr,oldstr2365->chr,oldstr2365->len);
memcpy(_FUNC_DIM2_STRING_TYP2->chr,oldstr2398->chr,oldstr2398->len);
}
qbs*oldstr2366=NULL;
qbs*oldstr2399=NULL;
if(_FUNC_DIM2_STRING_ELEMENTS->tmp||_FUNC_DIM2_STRING_ELEMENTS->fixed||_FUNC_DIM2_STRING_ELEMENTS->readonly){
oldstr2366=_FUNC_DIM2_STRING_ELEMENTS;
if (oldstr2366->cmem_descriptor){
_FUNC_DIM2_STRING_ELEMENTS=qbs_new_cmem(oldstr2366->len,0);
oldstr2399=_FUNC_DIM2_STRING_ELEMENTS;
if (oldstr2399->cmem_descriptor){
_FUNC_DIM2_STRING_ELEMENTS=qbs_new_cmem(oldstr2399->len,0);
}else{
_FUNC_DIM2_STRING_ELEMENTS=qbs_new(oldstr2366->len,0);
_FUNC_DIM2_STRING_ELEMENTS=qbs_new(oldstr2399->len,0);
}
memcpy(_FUNC_DIM2_STRING_ELEMENTS->chr,oldstr2366->chr,oldstr2366->len);
memcpy(_FUNC_DIM2_STRING_ELEMENTS->chr,oldstr2399->chr,oldstr2399->len);
}
qbs *_FUNC_DIM2_STRING_TYP=NULL;
if (!_FUNC_DIM2_STRING_TYP)_FUNC_DIM2_STRING_TYP=qbs_new(0,0);
@ -46,19 +46,19 @@ _FUNC_DIM2_LONG_F=(int32*)mem_static_malloc(4);
}
qbs *_FUNC_DIM2_STRING_SCOPE2=NULL;
if (!_FUNC_DIM2_STRING_SCOPE2)_FUNC_DIM2_STRING_SCOPE2=qbs_new(0,0);
byte_element_struct *byte_element_2368=NULL;
if (!byte_element_2368){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2368=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2368=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_2401=NULL;
if (!byte_element_2401){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2401=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2401=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_DIM2_LONG_I=NULL;
if(_FUNC_DIM2_LONG_I==NULL){
_FUNC_DIM2_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_DIM2_LONG_I=0;
}
int64 fornext_value2370;
int64 fornext_finalvalue2370;
int64 fornext_step2370;
uint8 fornext_step_negative2370;
int64 fornext_value2403;
int64 fornext_finalvalue2403;
int64 fornext_step2403;
uint8 fornext_step_negative2403;
qbs *_FUNC_DIM2_STRING_N=NULL;
if (!_FUNC_DIM2_STRING_N)_FUNC_DIM2_STRING_N=qbs_new(0,0);
int32 *_FUNC_DIM2_LONG_TRY=NULL;
@ -71,53 +71,53 @@ if(_FUNC_DIM2_LONG_BITS==NULL){
_FUNC_DIM2_LONG_BITS=(int32*)mem_static_malloc(4);
*_FUNC_DIM2_LONG_BITS=0;
}
byte_element_struct *byte_element_2372=NULL;
if (!byte_element_2372){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2372=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2372=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_2405=NULL;
if (!byte_element_2405){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2405=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2405=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_DIM2_LONG_NUME=NULL;
if(_FUNC_DIM2_LONG_NUME==NULL){
_FUNC_DIM2_LONG_NUME=(int32*)mem_static_malloc(4);
*_FUNC_DIM2_LONG_NUME=0;
}
int32 pass2373;
int8 pass2374;
int32 pass2406;
int8 pass2407;
int32 *_FUNC_DIM2_LONG_BYTES=NULL;
if(_FUNC_DIM2_LONG_BYTES==NULL){
_FUNC_DIM2_LONG_BYTES=(int32*)mem_static_malloc(4);
*_FUNC_DIM2_LONG_BYTES=0;
}
int16 pass2375;
int16 pass2376;
int16 pass2377;
int16 pass2378;
int16 pass2379;
int16 pass2380;
int16 pass2381;
int16 pass2382;
int16 pass2383;
int32 pass2384;
int32 pass2385;
int16 pass2386;
int8 pass2387;
int16 pass2408;
int16 pass2409;
int16 pass2410;
int16 pass2411;
int16 pass2412;
int16 pass2413;
int16 pass2414;
int16 pass2415;
int16 pass2416;
int32 pass2417;
int32 pass2418;
int16 pass2419;
int8 pass2420;
int32 *_FUNC_DIM2_LONG_UNSGN=NULL;
if(_FUNC_DIM2_LONG_UNSGN==NULL){
_FUNC_DIM2_LONG_UNSGN=(int32*)mem_static_malloc(4);
*_FUNC_DIM2_LONG_UNSGN=0;
}
byte_element_struct *byte_element_2388=NULL;
if (!byte_element_2388){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2388=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2388=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_2421=NULL;
if (!byte_element_2421){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2421=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2421=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_2389=NULL;
if (!byte_element_2389){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2389=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2389=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_2422=NULL;
if (!byte_element_2422){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2422=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2422=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_DIM2_STRING_C=NULL;
if (!_FUNC_DIM2_STRING_C)_FUNC_DIM2_STRING_C=qbs_new(0,0);
byte_element_struct *byte_element_2390=NULL;
if (!byte_element_2390){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2390=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2390=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_2423=NULL;
if (!byte_element_2423){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2423=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2423=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_DIM2_LONG_HASHFOUND=NULL;
if(_FUNC_DIM2_LONG_HASHFOUND==NULL){
@ -171,182 +171,182 @@ if(_FUNC_DIM2_UINTEGER64_V==NULL){
_FUNC_DIM2_UINTEGER64_V=(uint64*)mem_static_malloc(8);
*_FUNC_DIM2_UINTEGER64_V=0;
}
byte_element_struct *byte_element_2392=NULL;
if (!byte_element_2392){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2392=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2392=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_2425=NULL;
if (!byte_element_2425){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2425=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2425=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_2394=NULL;
if (!byte_element_2394){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2394=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2394=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_2427=NULL;
if (!byte_element_2427){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2427=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2427=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass2395;
int8 pass2396;
int16 pass2397;
int16 pass2398;
int16 pass2399;
int16 pass2400;
int16 pass2401;
int16 pass2402;
int16 pass2403;
int16 pass2404;
int32 pass2428;
int8 pass2429;
int16 pass2430;
int16 pass2431;
int16 pass2432;
int16 pass2433;
int16 pass2434;
int16 pass2435;
int16 pass2436;
int16 pass2437;
qbs *_FUNC_DIM2_STRING_O=NULL;
if (!_FUNC_DIM2_STRING_O)_FUNC_DIM2_STRING_O=qbs_new(0,0);
int16 pass2405;
int16 pass2406;
int16 pass2407;
int8 pass2408;
byte_element_struct *byte_element_2410=NULL;
if (!byte_element_2410){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2410=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2410=(byte_element_struct*)mem_static_malloc(12);
int16 pass2438;
int16 pass2439;
int16 pass2440;
int8 pass2441;
byte_element_struct *byte_element_2443=NULL;
if (!byte_element_2443){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2443=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2443=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass2411;
int32 pass2412;
int8 pass2413;
int16 pass2414;
int16 pass2415;
int16 pass2416;
int8 pass2417;
byte_element_struct *byte_element_2418=NULL;
if (!byte_element_2418){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2418=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2418=(byte_element_struct*)mem_static_malloc(12);
int32 pass2444;
int32 pass2445;
int8 pass2446;
int16 pass2447;
int16 pass2448;
int16 pass2449;
int8 pass2450;
byte_element_struct *byte_element_2451=NULL;
if (!byte_element_2451){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2451=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2451=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_2419=NULL;
if (!byte_element_2419){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2419=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2419=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_2452=NULL;
if (!byte_element_2452){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2452=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2452=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_2420=NULL;
if (!byte_element_2420){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2420=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2420=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_2453=NULL;
if (!byte_element_2453){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2453=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2453=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_DIM2_STRING_CT=NULL;
if (!_FUNC_DIM2_STRING_CT)_FUNC_DIM2_STRING_CT=qbs_new(0,0);
qbs *_FUNC_DIM2_STRING_CMPS=NULL;
if (!_FUNC_DIM2_STRING_CMPS)_FUNC_DIM2_STRING_CMPS=qbs_new(0,0);
byte_element_struct *byte_element_2422=NULL;
if (!byte_element_2422){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2422=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2422=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_2455=NULL;
if (!byte_element_2455){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2455=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2455=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass2423;
int32 pass2424;
int8 pass2425;
int16 pass2426;
int16 pass2427;
int16 pass2428;
int16 pass2429;
int16 pass2430;
int16 pass2431;
int8 pass2432;
byte_element_struct *byte_element_2434=NULL;
if (!byte_element_2434){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2434=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2434=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass2435;
int32 pass2436;
int16 pass2437;
int16 pass2438;
int16 pass2439;
int16 pass2440;
int16 pass2441;
int16 pass2442;
int16 pass2443;
int8 pass2444;
byte_element_struct *byte_element_2446=NULL;
if (!byte_element_2446){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2446=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2446=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass2447;
int32 pass2448;
int16 pass2449;
int16 pass2450;
int16 pass2451;
int16 pass2452;
int16 pass2453;
int16 pass2454;
int16 pass2455;
int8 pass2456;
byte_element_struct *byte_element_2458=NULL;
if (!byte_element_2458){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2458=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2458=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass2459;
int32 pass2460;
int32 pass2456;
int32 pass2457;
int8 pass2458;
int16 pass2459;
int16 pass2460;
int16 pass2461;
int16 pass2462;
int32 pass2463;
int16 pass2463;
int16 pass2464;
int16 pass2465;
int16 pass2466;
int32 pass2467;
int16 pass2468;
int16 pass2469;
int8 pass2470;
byte_element_struct *byte_element_2472=NULL;
if (!byte_element_2472){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2472=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2472=(byte_element_struct*)mem_static_malloc(12);
int8 pass2465;
byte_element_struct *byte_element_2467=NULL;
if (!byte_element_2467){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2467=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2467=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass2473;
int32 pass2474;
int32 pass2468;
int32 pass2469;
int16 pass2470;
int16 pass2471;
int16 pass2472;
int16 pass2473;
int16 pass2474;
int16 pass2475;
int16 pass2476;
int16 pass2477;
int16 pass2478;
int16 pass2479;
int16 pass2480;
int16 pass2481;
int8 pass2482;
byte_element_struct *byte_element_2484=NULL;
if (!byte_element_2484){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2484=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2484=(byte_element_struct*)mem_static_malloc(12);
int8 pass2477;
byte_element_struct *byte_element_2479=NULL;
if (!byte_element_2479){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2479=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2479=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass2485;
int32 pass2486;
int32 pass2480;
int32 pass2481;
int16 pass2482;
int16 pass2483;
int16 pass2484;
int16 pass2485;
int16 pass2486;
int16 pass2487;
int16 pass2488;
int16 pass2489;
int16 pass2490;
int16 pass2491;
int16 pass2492;
int16 pass2493;
int8 pass2494;
byte_element_struct *byte_element_2496=NULL;
if (!byte_element_2496){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2496=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2496=(byte_element_struct*)mem_static_malloc(12);
int8 pass2489;
byte_element_struct *byte_element_2491=NULL;
if (!byte_element_2491){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2491=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2491=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass2497;
int32 pass2498;
int32 pass2492;
int32 pass2493;
int16 pass2494;
int16 pass2495;
int32 pass2496;
int16 pass2497;
int16 pass2498;
int16 pass2499;
int16 pass2500;
int32 pass2500;
int16 pass2501;
int16 pass2502;
int16 pass2503;
int16 pass2504;
int16 pass2505;
int8 pass2506;
byte_element_struct *byte_element_2508=NULL;
if (!byte_element_2508){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2508=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2508=(byte_element_struct*)mem_static_malloc(12);
int8 pass2503;
byte_element_struct *byte_element_2505=NULL;
if (!byte_element_2505){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2505=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2505=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass2509;
int32 pass2510;
int32 pass2506;
int32 pass2507;
int16 pass2508;
int16 pass2509;
int16 pass2510;
int16 pass2511;
int16 pass2512;
int16 pass2513;
int16 pass2514;
int16 pass2515;
int16 pass2516;
int16 pass2517;
int8 pass2518;
byte_element_struct *byte_element_2520=NULL;
if (!byte_element_2520){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2520=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2520=(byte_element_struct*)mem_static_malloc(12);
int8 pass2515;
byte_element_struct *byte_element_2517=NULL;
if (!byte_element_2517){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2517=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2517=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass2521;
int32 pass2522;
int32 pass2518;
int32 pass2519;
int16 pass2520;
int16 pass2521;
int16 pass2522;
int16 pass2523;
int16 pass2524;
int16 pass2525;
int16 pass2526;
int16 pass2527;
int16 pass2528;
int16 pass2529;
int8 pass2530;
int8 pass2527;
byte_element_struct *byte_element_2529=NULL;
if (!byte_element_2529){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2529=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2529=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass2530;
int32 pass2531;
int16 pass2532;
int16 pass2533;
int16 pass2534;
int16 pass2535;
int16 pass2536;
int16 pass2537;
int16 pass2538;
int8 pass2539;
byte_element_struct *byte_element_2541=NULL;
if (!byte_element_2541){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2541=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2541=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass2542;
int32 pass2543;
int16 pass2544;
int16 pass2545;
int16 pass2546;
int16 pass2547;
int16 pass2548;
int16 pass2549;
int16 pass2550;
int8 pass2551;
byte_element_struct *byte_element_2553=NULL;
if (!byte_element_2553){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2553=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2553=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass2554;
int32 pass2555;
int16 pass2556;
int16 pass2557;
int16 pass2558;
int16 pass2559;
int16 pass2560;
int16 pass2561;
int16 pass2562;
int8 pass2563;

View file

@ -1,17 +1,64 @@
qbs *_FUNC_READBUFRAWDATA_STRING_READBUFRAWDATA=NULL;
if (!_FUNC_READBUFRAWDATA_STRING_READBUFRAWDATA)_FUNC_READBUFRAWDATA_STRING_READBUFRAWDATA=qbs_new(0,0);
int32 *_FUNC_READBUFRAWDATA_LONG_BUF=NULL;
if(_FUNC_READBUFRAWDATA_LONG_BUF==NULL){
_FUNC_READBUFRAWDATA_LONG_BUF=(int32*)mem_static_malloc(4);
*_FUNC_READBUFRAWDATA_LONG_BUF=0;
qbs*oldstr4044=NULL;
if(_SUB_WRITEBUFLINE_STRING_TEXT->tmp||_SUB_WRITEBUFLINE_STRING_TEXT->fixed||_SUB_WRITEBUFLINE_STRING_TEXT->readonly){
oldstr4044=_SUB_WRITEBUFLINE_STRING_TEXT;
if (oldstr4044->cmem_descriptor){
_SUB_WRITEBUFLINE_STRING_TEXT=qbs_new_cmem(oldstr4044->len,0);
}else{
_SUB_WRITEBUFLINE_STRING_TEXT=qbs_new(oldstr4044->len,0);
}
int32 *_FUNC_READBUFRAWDATA_LONG_CUR=NULL;
if(_FUNC_READBUFRAWDATA_LONG_CUR==NULL){
_FUNC_READBUFRAWDATA_LONG_CUR=(int32*)mem_static_malloc(4);
*_FUNC_READBUFRAWDATA_LONG_CUR=0;
memcpy(_SUB_WRITEBUFLINE_STRING_TEXT->chr,oldstr4044->chr,oldstr4044->len);
}
int32 *_FUNC_READBUFRAWDATA_LONG_EOB=NULL;
if(_FUNC_READBUFRAWDATA_LONG_EOB==NULL){
_FUNC_READBUFRAWDATA_LONG_EOB=(int32*)mem_static_malloc(4);
*_FUNC_READBUFRAWDATA_LONG_EOB=0;
int32 *_SUB_WRITEBUFLINE_LONG_BUF=NULL;
if(_SUB_WRITEBUFLINE_LONG_BUF==NULL){
_SUB_WRITEBUFLINE_LONG_BUF=(int32*)mem_static_malloc(4);
*_SUB_WRITEBUFLINE_LONG_BUF=0;
}
int32 *_SUB_WRITEBUFLINE_LONG_CUR=NULL;
if(_SUB_WRITEBUFLINE_LONG_CUR==NULL){
_SUB_WRITEBUFLINE_LONG_CUR=(int32*)mem_static_malloc(4);
*_SUB_WRITEBUFLINE_LONG_CUR=0;
}
int32 *_SUB_WRITEBUFLINE_LONG_TXL=NULL;
if(_SUB_WRITEBUFLINE_LONG_TXL==NULL){
_SUB_WRITEBUFLINE_LONG_TXL=(int32*)mem_static_malloc(4);
*_SUB_WRITEBUFLINE_LONG_TXL=0;
}
qbs *_SUB_WRITEBUFLINE_STRING_BRC=NULL;
if (!_SUB_WRITEBUFLINE_STRING_BRC)_SUB_WRITEBUFLINE_STRING_BRC=qbs_new(0,0);
int16 *_SUB_WRITEBUFLINE_INTEGER_BRL=NULL;
if(_SUB_WRITEBUFLINE_INTEGER_BRL==NULL){
_SUB_WRITEBUFLINE_INTEGER_BRL=(int16*)mem_static_malloc(2);
*_SUB_WRITEBUFLINE_INTEGER_BRL=0;
}
int64 *_SUB_WRITEBUFLINE_INTEGER64_CBL=NULL;
if(_SUB_WRITEBUFLINE_INTEGER64_CBL==NULL){
_SUB_WRITEBUFLINE_INTEGER64_CBL=(int64*)mem_static_malloc(8);
*_SUB_WRITEBUFLINE_INTEGER64_CBL=0;
}
int32 *_SUB_WRITEBUFLINE_LONG_CHG=NULL;
if(_SUB_WRITEBUFLINE_LONG_CHG==NULL){
_SUB_WRITEBUFLINE_LONG_CHG=(int32*)mem_static_malloc(4);
*_SUB_WRITEBUFLINE_LONG_CHG=0;
}
int32 *_SUB_WRITEBUFLINE_LONG_BSZ=NULL;
if(_SUB_WRITEBUFLINE_LONG_BSZ==NULL){
_SUB_WRITEBUFLINE_LONG_BSZ=(int32*)mem_static_malloc(4);
*_SUB_WRITEBUFLINE_LONG_BSZ=0;
}
int32 *_SUB_WRITEBUFLINE_LONG_EXT=NULL;
if(_SUB_WRITEBUFLINE_LONG_EXT==NULL){
_SUB_WRITEBUFLINE_LONG_EXT=(int32*)mem_static_malloc(4);
*_SUB_WRITEBUFLINE_LONG_EXT=0;
}
byte_element_struct *byte_element_4045=NULL;
if (!byte_element_4045){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4045=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4045=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4046=NULL;
if (!byte_element_4046){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4046=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4046=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4047=NULL;
if (!byte_element_4047){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4047=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4047=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -1,48 +1,17 @@
qbs*oldstr3963=NULL;
if(_SUB_WRITEBUFRAWDATA_STRING_RAWDATA->tmp||_SUB_WRITEBUFRAWDATA_STRING_RAWDATA->fixed||_SUB_WRITEBUFRAWDATA_STRING_RAWDATA->readonly){
oldstr3963=_SUB_WRITEBUFRAWDATA_STRING_RAWDATA;
if (oldstr3963->cmem_descriptor){
_SUB_WRITEBUFRAWDATA_STRING_RAWDATA=qbs_new_cmem(oldstr3963->len,0);
}else{
_SUB_WRITEBUFRAWDATA_STRING_RAWDATA=qbs_new(oldstr3963->len,0);
qbs *_FUNC_READBUFRAWDATA_STRING_READBUFRAWDATA=NULL;
if (!_FUNC_READBUFRAWDATA_STRING_READBUFRAWDATA)_FUNC_READBUFRAWDATA_STRING_READBUFRAWDATA=qbs_new(0,0);
int32 *_FUNC_READBUFRAWDATA_LONG_BUF=NULL;
if(_FUNC_READBUFRAWDATA_LONG_BUF==NULL){
_FUNC_READBUFRAWDATA_LONG_BUF=(int32*)mem_static_malloc(4);
*_FUNC_READBUFRAWDATA_LONG_BUF=0;
}
memcpy(_SUB_WRITEBUFRAWDATA_STRING_RAWDATA->chr,oldstr3963->chr,oldstr3963->len);
int32 *_FUNC_READBUFRAWDATA_LONG_CUR=NULL;
if(_FUNC_READBUFRAWDATA_LONG_CUR==NULL){
_FUNC_READBUFRAWDATA_LONG_CUR=(int32*)mem_static_malloc(4);
*_FUNC_READBUFRAWDATA_LONG_CUR=0;
}
int32 *_SUB_WRITEBUFRAWDATA_LONG_BUF=NULL;
if(_SUB_WRITEBUFRAWDATA_LONG_BUF==NULL){
_SUB_WRITEBUFRAWDATA_LONG_BUF=(int32*)mem_static_malloc(4);
*_SUB_WRITEBUFRAWDATA_LONG_BUF=0;
}
int32 *_SUB_WRITEBUFRAWDATA_LONG_CUR=NULL;
if(_SUB_WRITEBUFRAWDATA_LONG_CUR==NULL){
_SUB_WRITEBUFRAWDATA_LONG_CUR=(int32*)mem_static_malloc(4);
*_SUB_WRITEBUFRAWDATA_LONG_CUR=0;
}
int32 *_SUB_WRITEBUFRAWDATA_LONG_RDL=NULL;
if(_SUB_WRITEBUFRAWDATA_LONG_RDL==NULL){
_SUB_WRITEBUFRAWDATA_LONG_RDL=(int32*)mem_static_malloc(4);
*_SUB_WRITEBUFRAWDATA_LONG_RDL=0;
}
int64 *_SUB_WRITEBUFRAWDATA_INTEGER64_CBL=NULL;
if(_SUB_WRITEBUFRAWDATA_INTEGER64_CBL==NULL){
_SUB_WRITEBUFRAWDATA_INTEGER64_CBL=(int64*)mem_static_malloc(8);
*_SUB_WRITEBUFRAWDATA_INTEGER64_CBL=0;
}
int32 *_SUB_WRITEBUFRAWDATA_LONG_BSZ=NULL;
if(_SUB_WRITEBUFRAWDATA_LONG_BSZ==NULL){
_SUB_WRITEBUFRAWDATA_LONG_BSZ=(int32*)mem_static_malloc(4);
*_SUB_WRITEBUFRAWDATA_LONG_BSZ=0;
}
int32 *_SUB_WRITEBUFRAWDATA_LONG_EXT=NULL;
if(_SUB_WRITEBUFRAWDATA_LONG_EXT==NULL){
_SUB_WRITEBUFRAWDATA_LONG_EXT=(int32*)mem_static_malloc(4);
*_SUB_WRITEBUFRAWDATA_LONG_EXT=0;
}
byte_element_struct *byte_element_3964=NULL;
if (!byte_element_3964){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3964=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3964=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_3965=NULL;
if (!byte_element_3965){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3965=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3965=(byte_element_struct*)mem_static_malloc(12);
int32 *_FUNC_READBUFRAWDATA_LONG_EOB=NULL;
if(_FUNC_READBUFRAWDATA_LONG_EOB==NULL){
_FUNC_READBUFRAWDATA_LONG_EOB=(int32*)mem_static_malloc(4);
*_FUNC_READBUFRAWDATA_LONG_EOB=0;
}

View file

@ -1,41 +1,48 @@
int32 *_FUNC_SEEKBUF_LONG_SEEKBUF=NULL;
if(_FUNC_SEEKBUF_LONG_SEEKBUF==NULL){
_FUNC_SEEKBUF_LONG_SEEKBUF=(int32*)mem_static_malloc(4);
*_FUNC_SEEKBUF_LONG_SEEKBUF=0;
qbs*oldstr4049=NULL;
if(_SUB_WRITEBUFRAWDATA_STRING_RAWDATA->tmp||_SUB_WRITEBUFRAWDATA_STRING_RAWDATA->fixed||_SUB_WRITEBUFRAWDATA_STRING_RAWDATA->readonly){
oldstr4049=_SUB_WRITEBUFRAWDATA_STRING_RAWDATA;
if (oldstr4049->cmem_descriptor){
_SUB_WRITEBUFRAWDATA_STRING_RAWDATA=qbs_new_cmem(oldstr4049->len,0);
}else{
_SUB_WRITEBUFRAWDATA_STRING_RAWDATA=qbs_new(oldstr4049->len,0);
}
int32 *_FUNC_SEEKBUF_LONG_BUF=NULL;
if(_FUNC_SEEKBUF_LONG_BUF==NULL){
_FUNC_SEEKBUF_LONG_BUF=(int32*)mem_static_malloc(4);
*_FUNC_SEEKBUF_LONG_BUF=0;
memcpy(_SUB_WRITEBUFRAWDATA_STRING_RAWDATA->chr,oldstr4049->chr,oldstr4049->len);
}
int32 *_FUNC_SEEKBUF_LONG_CUR=NULL;
if(_FUNC_SEEKBUF_LONG_CUR==NULL){
_FUNC_SEEKBUF_LONG_CUR=(int32*)mem_static_malloc(4);
*_FUNC_SEEKBUF_LONG_CUR=0;
int32 *_SUB_WRITEBUFRAWDATA_LONG_BUF=NULL;
if(_SUB_WRITEBUFRAWDATA_LONG_BUF==NULL){
_SUB_WRITEBUFRAWDATA_LONG_BUF=(int32*)mem_static_malloc(4);
*_SUB_WRITEBUFRAWDATA_LONG_BUF=0;
}
int32 *_FUNC_SEEKBUF_LONG_EOB=NULL;
if(_FUNC_SEEKBUF_LONG_EOB==NULL){
_FUNC_SEEKBUF_LONG_EOB=(int32*)mem_static_malloc(4);
*_FUNC_SEEKBUF_LONG_EOB=0;
int32 *_SUB_WRITEBUFRAWDATA_LONG_CUR=NULL;
if(_SUB_WRITEBUFRAWDATA_LONG_CUR==NULL){
_SUB_WRITEBUFRAWDATA_LONG_CUR=(int32*)mem_static_malloc(4);
*_SUB_WRITEBUFRAWDATA_LONG_CUR=0;
}
qbs *_FUNC_SEEKBUF_STRING_BRC=NULL;
if (!_FUNC_SEEKBUF_STRING_BRC)_FUNC_SEEKBUF_STRING_BRC=qbs_new(0,0);
int16 *_FUNC_SEEKBUF_INTEGER_BRL=NULL;
if(_FUNC_SEEKBUF_INTEGER_BRL==NULL){
_FUNC_SEEKBUF_INTEGER_BRL=(int16*)mem_static_malloc(2);
*_FUNC_SEEKBUF_INTEGER_BRL=0;
int32 *_SUB_WRITEBUFRAWDATA_LONG_RDL=NULL;
if(_SUB_WRITEBUFRAWDATA_LONG_RDL==NULL){
_SUB_WRITEBUFRAWDATA_LONG_RDL=(int32*)mem_static_malloc(4);
*_SUB_WRITEBUFRAWDATA_LONG_RDL=0;
}
int32 *_FUNC_SEEKBUF_LONG_ORIGIN=NULL;
if(_FUNC_SEEKBUF_LONG_ORIGIN==NULL){
_FUNC_SEEKBUF_LONG_ORIGIN=(int32*)mem_static_malloc(4);
*_FUNC_SEEKBUF_LONG_ORIGIN=0;
int64 *_SUB_WRITEBUFRAWDATA_INTEGER64_CBL=NULL;
if(_SUB_WRITEBUFRAWDATA_INTEGER64_CBL==NULL){
_SUB_WRITEBUFRAWDATA_INTEGER64_CBL=(int64*)mem_static_malloc(8);
*_SUB_WRITEBUFRAWDATA_INTEGER64_CBL=0;
}
int32 *_FUNC_SEEKBUF_LONG_NEWPOS=NULL;
if(_FUNC_SEEKBUF_LONG_NEWPOS==NULL){
_FUNC_SEEKBUF_LONG_NEWPOS=(int32*)mem_static_malloc(4);
*_FUNC_SEEKBUF_LONG_NEWPOS=0;
int32 *_SUB_WRITEBUFRAWDATA_LONG_BSZ=NULL;
if(_SUB_WRITEBUFRAWDATA_LONG_BSZ==NULL){
_SUB_WRITEBUFRAWDATA_LONG_BSZ=(int32*)mem_static_malloc(4);
*_SUB_WRITEBUFRAWDATA_LONG_BSZ=0;
}
byte_element_struct *byte_element_3967=NULL;
if (!byte_element_3967){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3967=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3967=(byte_element_struct*)mem_static_malloc(12);
int32 *_SUB_WRITEBUFRAWDATA_LONG_EXT=NULL;
if(_SUB_WRITEBUFRAWDATA_LONG_EXT==NULL){
_SUB_WRITEBUFRAWDATA_LONG_EXT=(int32*)mem_static_malloc(4);
*_SUB_WRITEBUFRAWDATA_LONG_EXT=0;
}
byte_element_struct *byte_element_4050=NULL;
if (!byte_element_4050){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4050=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4050=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4051=NULL;
if (!byte_element_4051){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4051=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4051=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -1,10 +1,41 @@
int32 *_FUNC_GETBUFPOS_LONG_GETBUFPOS=NULL;
if(_FUNC_GETBUFPOS_LONG_GETBUFPOS==NULL){
_FUNC_GETBUFPOS_LONG_GETBUFPOS=(int32*)mem_static_malloc(4);
*_FUNC_GETBUFPOS_LONG_GETBUFPOS=0;
int32 *_FUNC_SEEKBUF_LONG_SEEKBUF=NULL;
if(_FUNC_SEEKBUF_LONG_SEEKBUF==NULL){
_FUNC_SEEKBUF_LONG_SEEKBUF=(int32*)mem_static_malloc(4);
*_FUNC_SEEKBUF_LONG_SEEKBUF=0;
}
int32 *_FUNC_GETBUFPOS_LONG_BUF=NULL;
if(_FUNC_GETBUFPOS_LONG_BUF==NULL){
_FUNC_GETBUFPOS_LONG_BUF=(int32*)mem_static_malloc(4);
*_FUNC_GETBUFPOS_LONG_BUF=0;
int32 *_FUNC_SEEKBUF_LONG_BUF=NULL;
if(_FUNC_SEEKBUF_LONG_BUF==NULL){
_FUNC_SEEKBUF_LONG_BUF=(int32*)mem_static_malloc(4);
*_FUNC_SEEKBUF_LONG_BUF=0;
}
int32 *_FUNC_SEEKBUF_LONG_CUR=NULL;
if(_FUNC_SEEKBUF_LONG_CUR==NULL){
_FUNC_SEEKBUF_LONG_CUR=(int32*)mem_static_malloc(4);
*_FUNC_SEEKBUF_LONG_CUR=0;
}
int32 *_FUNC_SEEKBUF_LONG_EOB=NULL;
if(_FUNC_SEEKBUF_LONG_EOB==NULL){
_FUNC_SEEKBUF_LONG_EOB=(int32*)mem_static_malloc(4);
*_FUNC_SEEKBUF_LONG_EOB=0;
}
qbs *_FUNC_SEEKBUF_STRING_BRC=NULL;
if (!_FUNC_SEEKBUF_STRING_BRC)_FUNC_SEEKBUF_STRING_BRC=qbs_new(0,0);
int16 *_FUNC_SEEKBUF_INTEGER_BRL=NULL;
if(_FUNC_SEEKBUF_INTEGER_BRL==NULL){
_FUNC_SEEKBUF_INTEGER_BRL=(int16*)mem_static_malloc(2);
*_FUNC_SEEKBUF_INTEGER_BRL=0;
}
int32 *_FUNC_SEEKBUF_LONG_ORIGIN=NULL;
if(_FUNC_SEEKBUF_LONG_ORIGIN==NULL){
_FUNC_SEEKBUF_LONG_ORIGIN=(int32*)mem_static_malloc(4);
*_FUNC_SEEKBUF_LONG_ORIGIN=0;
}
int32 *_FUNC_SEEKBUF_LONG_NEWPOS=NULL;
if(_FUNC_SEEKBUF_LONG_NEWPOS==NULL){
_FUNC_SEEKBUF_LONG_NEWPOS=(int32*)mem_static_malloc(4);
*_FUNC_SEEKBUF_LONG_NEWPOS=0;
}
byte_element_struct *byte_element_4053=NULL;
if (!byte_element_4053){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4053=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4053=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -1,10 +1,10 @@
int32 *_FUNC_GETBUFLEN_LONG_GETBUFLEN=NULL;
if(_FUNC_GETBUFLEN_LONG_GETBUFLEN==NULL){
_FUNC_GETBUFLEN_LONG_GETBUFLEN=(int32*)mem_static_malloc(4);
*_FUNC_GETBUFLEN_LONG_GETBUFLEN=0;
int32 *_FUNC_GETBUFPOS_LONG_GETBUFPOS=NULL;
if(_FUNC_GETBUFPOS_LONG_GETBUFPOS==NULL){
_FUNC_GETBUFPOS_LONG_GETBUFPOS=(int32*)mem_static_malloc(4);
*_FUNC_GETBUFPOS_LONG_GETBUFPOS=0;
}
int32 *_FUNC_GETBUFLEN_LONG_BUF=NULL;
if(_FUNC_GETBUFLEN_LONG_BUF==NULL){
_FUNC_GETBUFLEN_LONG_BUF=(int32*)mem_static_malloc(4);
*_FUNC_GETBUFLEN_LONG_BUF=0;
int32 *_FUNC_GETBUFPOS_LONG_BUF=NULL;
if(_FUNC_GETBUFPOS_LONG_BUF==NULL){
_FUNC_GETBUFPOS_LONG_BUF=(int32*)mem_static_malloc(4);
*_FUNC_GETBUFPOS_LONG_BUF=0;
}

View file

@ -1,5 +1,10 @@
int16 *_FUNC_ENDOFBUF_INTEGER_ENDOFBUF=NULL;
if(_FUNC_ENDOFBUF_INTEGER_ENDOFBUF==NULL){
_FUNC_ENDOFBUF_INTEGER_ENDOFBUF=(int16*)mem_static_malloc(2);
*_FUNC_ENDOFBUF_INTEGER_ENDOFBUF=0;
int32 *_FUNC_GETBUFLEN_LONG_GETBUFLEN=NULL;
if(_FUNC_GETBUFLEN_LONG_GETBUFLEN==NULL){
_FUNC_GETBUFLEN_LONG_GETBUFLEN=(int32*)mem_static_malloc(4);
*_FUNC_GETBUFLEN_LONG_GETBUFLEN=0;
}
int32 *_FUNC_GETBUFLEN_LONG_BUF=NULL;
if(_FUNC_GETBUFLEN_LONG_BUF==NULL){
_FUNC_GETBUFLEN_LONG_BUF=(int32*)mem_static_malloc(4);
*_FUNC_GETBUFLEN_LONG_BUF=0;
}

View file

@ -1,10 +1,5 @@
int16 *_FUNC_ISBUFCHANGED_INTEGER_ISBUFCHANGED=NULL;
if(_FUNC_ISBUFCHANGED_INTEGER_ISBUFCHANGED==NULL){
_FUNC_ISBUFCHANGED_INTEGER_ISBUFCHANGED=(int16*)mem_static_malloc(2);
*_FUNC_ISBUFCHANGED_INTEGER_ISBUFCHANGED=0;
}
int32 *_FUNC_ISBUFCHANGED_LONG_BUF=NULL;
if(_FUNC_ISBUFCHANGED_LONG_BUF==NULL){
_FUNC_ISBUFCHANGED_LONG_BUF=(int32*)mem_static_malloc(4);
*_FUNC_ISBUFCHANGED_LONG_BUF=0;
int16 *_FUNC_ENDOFBUF_INTEGER_ENDOFBUF=NULL;
if(_FUNC_ENDOFBUF_INTEGER_ENDOFBUF==NULL){
_FUNC_ENDOFBUF_INTEGER_ENDOFBUF=(int16*)mem_static_malloc(2);
*_FUNC_ENDOFBUF_INTEGER_ENDOFBUF=0;
}

View file

@ -1,8 +1,10 @@
qbs *_FUNC_BUFEOLSEQ_STRING_BUFEOLSEQ=NULL;
if (!_FUNC_BUFEOLSEQ_STRING_BUFEOLSEQ)_FUNC_BUFEOLSEQ_STRING_BUFEOLSEQ=qbs_new(0,0);
int32 *_FUNC_BUFEOLSEQ_LONG_BUF=NULL;
if(_FUNC_BUFEOLSEQ_LONG_BUF==NULL){
_FUNC_BUFEOLSEQ_LONG_BUF=(int32*)mem_static_malloc(4);
*_FUNC_BUFEOLSEQ_LONG_BUF=0;
int16 *_FUNC_ISBUFCHANGED_INTEGER_ISBUFCHANGED=NULL;
if(_FUNC_ISBUFCHANGED_INTEGER_ISBUFCHANGED==NULL){
_FUNC_ISBUFCHANGED_INTEGER_ISBUFCHANGED=(int16*)mem_static_malloc(2);
*_FUNC_ISBUFCHANGED_INTEGER_ISBUFCHANGED=0;
}
int32 *_FUNC_ISBUFCHANGED_LONG_BUF=NULL;
if(_FUNC_ISBUFCHANGED_LONG_BUF==NULL){
_FUNC_ISBUFCHANGED_LONG_BUF=(int32*)mem_static_malloc(4);
*_FUNC_ISBUFCHANGED_LONG_BUF=0;
}
static qbs *sc_3969=qbs_new(0,0);

View file

@ -1,46 +1,8 @@
int16 *_FUNC_OPENBUFFER_INTEGER_OPENBUFFER=NULL;
if(_FUNC_OPENBUFFER_INTEGER_OPENBUFFER==NULL){
_FUNC_OPENBUFFER_INTEGER_OPENBUFFER=(int16*)mem_static_malloc(2);
*_FUNC_OPENBUFFER_INTEGER_OPENBUFFER=0;
qbs *_FUNC_BUFEOLSEQ_STRING_BUFEOLSEQ=NULL;
if (!_FUNC_BUFEOLSEQ_STRING_BUFEOLSEQ)_FUNC_BUFEOLSEQ_STRING_BUFEOLSEQ=qbs_new(0,0);
int32 *_FUNC_BUFEOLSEQ_LONG_BUF=NULL;
if(_FUNC_BUFEOLSEQ_LONG_BUF==NULL){
_FUNC_BUFEOLSEQ_LONG_BUF=(int32*)mem_static_malloc(4);
*_FUNC_BUFEOLSEQ_LONG_BUF=0;
}
qbs*oldstr3970=NULL;
if(_FUNC_OPENBUFFER_STRING_SBMODE->tmp||_FUNC_OPENBUFFER_STRING_SBMODE->fixed||_FUNC_OPENBUFFER_STRING_SBMODE->readonly){
oldstr3970=_FUNC_OPENBUFFER_STRING_SBMODE;
if (oldstr3970->cmem_descriptor){
_FUNC_OPENBUFFER_STRING_SBMODE=qbs_new_cmem(oldstr3970->len,0);
}else{
_FUNC_OPENBUFFER_STRING_SBMODE=qbs_new(oldstr3970->len,0);
}
memcpy(_FUNC_OPENBUFFER_STRING_SBMODE->chr,oldstr3970->chr,oldstr3970->len);
}
qbs*oldstr3971=NULL;
if(_FUNC_OPENBUFFER_STRING_SBNAME->tmp||_FUNC_OPENBUFFER_STRING_SBNAME->fixed||_FUNC_OPENBUFFER_STRING_SBNAME->readonly){
oldstr3971=_FUNC_OPENBUFFER_STRING_SBNAME;
if (oldstr3971->cmem_descriptor){
_FUNC_OPENBUFFER_STRING_SBNAME=qbs_new_cmem(oldstr3971->len,0);
}else{
_FUNC_OPENBUFFER_STRING_SBNAME=qbs_new(oldstr3971->len,0);
}
memcpy(_FUNC_OPENBUFFER_STRING_SBNAME->chr,oldstr3971->chr,oldstr3971->len);
}
int16 *_FUNC_OPENBUFFER_INTEGER_BUF=NULL;
if(_FUNC_OPENBUFFER_INTEGER_BUF==NULL){
_FUNC_OPENBUFFER_INTEGER_BUF=(int16*)mem_static_malloc(2);
*_FUNC_OPENBUFFER_INTEGER_BUF=0;
}
int32 *_FUNC_OPENBUFFER_LONG_NUL=NULL;
if(_FUNC_OPENBUFFER_LONG_NUL==NULL){
_FUNC_OPENBUFFER_LONG_NUL=(int32*)mem_static_malloc(4);
*_FUNC_OPENBUFFER_LONG_NUL=0;
}
int32 fornext_value3973;
int32 fornext_finalvalue3973;
int32 fornext_step3973;
uint8 fornext_step_negative3973;
static qbs *sc_3974=qbs_new(0,0);
int32 pass3975;
int16 pass3976;
int32 pass3977;
int16 pass3978;
int32 pass3979;
int16 pass3980;
static qbs *sc_4055=qbs_new(0,0);

View file

@ -1,23 +1,46 @@
qbs*oldstr3981=NULL;
if(_SUB_CLEARBUFFERS_STRING_SBNAME->tmp||_SUB_CLEARBUFFERS_STRING_SBNAME->fixed||_SUB_CLEARBUFFERS_STRING_SBNAME->readonly){
oldstr3981=_SUB_CLEARBUFFERS_STRING_SBNAME;
if (oldstr3981->cmem_descriptor){
_SUB_CLEARBUFFERS_STRING_SBNAME=qbs_new_cmem(oldstr3981->len,0);
int16 *_FUNC_OPENBUFFER_INTEGER_OPENBUFFER=NULL;
if(_FUNC_OPENBUFFER_INTEGER_OPENBUFFER==NULL){
_FUNC_OPENBUFFER_INTEGER_OPENBUFFER=(int16*)mem_static_malloc(2);
*_FUNC_OPENBUFFER_INTEGER_OPENBUFFER=0;
}
qbs*oldstr4056=NULL;
if(_FUNC_OPENBUFFER_STRING_SBMODE->tmp||_FUNC_OPENBUFFER_STRING_SBMODE->fixed||_FUNC_OPENBUFFER_STRING_SBMODE->readonly){
oldstr4056=_FUNC_OPENBUFFER_STRING_SBMODE;
if (oldstr4056->cmem_descriptor){
_FUNC_OPENBUFFER_STRING_SBMODE=qbs_new_cmem(oldstr4056->len,0);
}else{
_SUB_CLEARBUFFERS_STRING_SBNAME=qbs_new(oldstr3981->len,0);
_FUNC_OPENBUFFER_STRING_SBMODE=qbs_new(oldstr4056->len,0);
}
memcpy(_SUB_CLEARBUFFERS_STRING_SBNAME->chr,oldstr3981->chr,oldstr3981->len);
memcpy(_FUNC_OPENBUFFER_STRING_SBMODE->chr,oldstr4056->chr,oldstr4056->len);
}
int16 *_SUB_CLEARBUFFERS_INTEGER_BUF=NULL;
if(_SUB_CLEARBUFFERS_INTEGER_BUF==NULL){
_SUB_CLEARBUFFERS_INTEGER_BUF=(int16*)mem_static_malloc(2);
*_SUB_CLEARBUFFERS_INTEGER_BUF=0;
qbs*oldstr4057=NULL;
if(_FUNC_OPENBUFFER_STRING_SBNAME->tmp||_FUNC_OPENBUFFER_STRING_SBNAME->fixed||_FUNC_OPENBUFFER_STRING_SBNAME->readonly){
oldstr4057=_FUNC_OPENBUFFER_STRING_SBNAME;
if (oldstr4057->cmem_descriptor){
_FUNC_OPENBUFFER_STRING_SBNAME=qbs_new_cmem(oldstr4057->len,0);
}else{
_FUNC_OPENBUFFER_STRING_SBNAME=qbs_new(oldstr4057->len,0);
}
int32 fornext_value3983;
int32 fornext_finalvalue3983;
int32 fornext_step3983;
uint8 fornext_step_negative3983;
int32 fornext_value3985;
int32 fornext_finalvalue3985;
int32 fornext_step3985;
uint8 fornext_step_negative3985;
memcpy(_FUNC_OPENBUFFER_STRING_SBNAME->chr,oldstr4057->chr,oldstr4057->len);
}
int16 *_FUNC_OPENBUFFER_INTEGER_BUF=NULL;
if(_FUNC_OPENBUFFER_INTEGER_BUF==NULL){
_FUNC_OPENBUFFER_INTEGER_BUF=(int16*)mem_static_malloc(2);
*_FUNC_OPENBUFFER_INTEGER_BUF=0;
}
int32 *_FUNC_OPENBUFFER_LONG_NUL=NULL;
if(_FUNC_OPENBUFFER_LONG_NUL==NULL){
_FUNC_OPENBUFFER_LONG_NUL=(int32*)mem_static_malloc(4);
*_FUNC_OPENBUFFER_LONG_NUL=0;
}
int32 fornext_value4059;
int32 fornext_finalvalue4059;
int32 fornext_step4059;
uint8 fornext_step_negative4059;
static qbs *sc_4060=qbs_new(0,0);
int32 pass4061;
int16 pass4062;
int32 pass4063;
int16 pass4064;
int32 pass4065;
int16 pass4066;

View file

@ -1,24 +1,24 @@
qbs *_FUNC_UDTREFERENCE_STRING_UDTREFERENCE=NULL;
if (!_FUNC_UDTREFERENCE_STRING_UDTREFERENCE)_FUNC_UDTREFERENCE_STRING_UDTREFERENCE=qbs_new(0,0);
qbs*oldstr2531=NULL;
qbs*oldstr2564=NULL;
if(_FUNC_UDTREFERENCE_STRING_O->tmp||_FUNC_UDTREFERENCE_STRING_O->fixed||_FUNC_UDTREFERENCE_STRING_O->readonly){
oldstr2531=_FUNC_UDTREFERENCE_STRING_O;
if (oldstr2531->cmem_descriptor){
_FUNC_UDTREFERENCE_STRING_O=qbs_new_cmem(oldstr2531->len,0);
oldstr2564=_FUNC_UDTREFERENCE_STRING_O;
if (oldstr2564->cmem_descriptor){
_FUNC_UDTREFERENCE_STRING_O=qbs_new_cmem(oldstr2564->len,0);
}else{
_FUNC_UDTREFERENCE_STRING_O=qbs_new(oldstr2531->len,0);
_FUNC_UDTREFERENCE_STRING_O=qbs_new(oldstr2564->len,0);
}
memcpy(_FUNC_UDTREFERENCE_STRING_O->chr,oldstr2531->chr,oldstr2531->len);
memcpy(_FUNC_UDTREFERENCE_STRING_O->chr,oldstr2564->chr,oldstr2564->len);
}
qbs*oldstr2532=NULL;
qbs*oldstr2565=NULL;
if(_FUNC_UDTREFERENCE_STRING_A->tmp||_FUNC_UDTREFERENCE_STRING_A->fixed||_FUNC_UDTREFERENCE_STRING_A->readonly){
oldstr2532=_FUNC_UDTREFERENCE_STRING_A;
if (oldstr2532->cmem_descriptor){
_FUNC_UDTREFERENCE_STRING_A=qbs_new_cmem(oldstr2532->len,0);
oldstr2565=_FUNC_UDTREFERENCE_STRING_A;
if (oldstr2565->cmem_descriptor){
_FUNC_UDTREFERENCE_STRING_A=qbs_new_cmem(oldstr2565->len,0);
}else{
_FUNC_UDTREFERENCE_STRING_A=qbs_new(oldstr2532->len,0);
_FUNC_UDTREFERENCE_STRING_A=qbs_new(oldstr2565->len,0);
}
memcpy(_FUNC_UDTREFERENCE_STRING_A->chr,oldstr2532->chr,oldstr2532->len);
memcpy(_FUNC_UDTREFERENCE_STRING_A->chr,oldstr2565->chr,oldstr2565->len);
}
qbs *_FUNC_UDTREFERENCE_STRING_OBAK=NULL;
if (!_FUNC_UDTREFERENCE_STRING_OBAK)_FUNC_UDTREFERENCE_STRING_OBAK=qbs_new(0,0);
@ -53,9 +53,9 @@ qbs *_FUNC_UDTREFERENCE_STRING_N=NULL;
if (!_FUNC_UDTREFERENCE_STRING_N)_FUNC_UDTREFERENCE_STRING_N=qbs_new(0,0);
qbs *_FUNC_UDTREFERENCE_STRING_NSYM=NULL;
if (!_FUNC_UDTREFERENCE_STRING_NSYM)_FUNC_UDTREFERENCE_STRING_NSYM=qbs_new(0,0);
byte_element_struct *byte_element_2533=NULL;
if (!byte_element_2533){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2533=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2533=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_2566=NULL;
if (!byte_element_2566){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2566=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2566=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_UDTREFERENCE_LONG_NTYP=NULL;
if(_FUNC_UDTREFERENCE_LONG_NTYP==NULL){
@ -69,7 +69,7 @@ _FUNC_UDTREFERENCE_LONG_NTYPSIZE=(int32*)mem_static_malloc(4);
}
qbs *_FUNC_UDTREFERENCE_STRING_N2=NULL;
if (!_FUNC_UDTREFERENCE_STRING_N2)_FUNC_UDTREFERENCE_STRING_N2=qbs_new(0,0);
byte_element_struct *byte_element_2534=NULL;
if (!byte_element_2534){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2534=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2534=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_2567=NULL;
if (!byte_element_2567){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2567=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2567=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -1,23 +1,23 @@
qbs*oldstr3986=NULL;
if(_SUB_WRITEBUFFERS_STRING_SBNAME->tmp||_SUB_WRITEBUFFERS_STRING_SBNAME->fixed||_SUB_WRITEBUFFERS_STRING_SBNAME->readonly){
oldstr3986=_SUB_WRITEBUFFERS_STRING_SBNAME;
if (oldstr3986->cmem_descriptor){
_SUB_WRITEBUFFERS_STRING_SBNAME=qbs_new_cmem(oldstr3986->len,0);
qbs*oldstr4067=NULL;
if(_SUB_CLEARBUFFERS_STRING_SBNAME->tmp||_SUB_CLEARBUFFERS_STRING_SBNAME->fixed||_SUB_CLEARBUFFERS_STRING_SBNAME->readonly){
oldstr4067=_SUB_CLEARBUFFERS_STRING_SBNAME;
if (oldstr4067->cmem_descriptor){
_SUB_CLEARBUFFERS_STRING_SBNAME=qbs_new_cmem(oldstr4067->len,0);
}else{
_SUB_WRITEBUFFERS_STRING_SBNAME=qbs_new(oldstr3986->len,0);
_SUB_CLEARBUFFERS_STRING_SBNAME=qbs_new(oldstr4067->len,0);
}
memcpy(_SUB_WRITEBUFFERS_STRING_SBNAME->chr,oldstr3986->chr,oldstr3986->len);
memcpy(_SUB_CLEARBUFFERS_STRING_SBNAME->chr,oldstr4067->chr,oldstr4067->len);
}
int16 *_SUB_WRITEBUFFERS_INTEGER_BUF=NULL;
if(_SUB_WRITEBUFFERS_INTEGER_BUF==NULL){
_SUB_WRITEBUFFERS_INTEGER_BUF=(int16*)mem_static_malloc(2);
*_SUB_WRITEBUFFERS_INTEGER_BUF=0;
int16 *_SUB_CLEARBUFFERS_INTEGER_BUF=NULL;
if(_SUB_CLEARBUFFERS_INTEGER_BUF==NULL){
_SUB_CLEARBUFFERS_INTEGER_BUF=(int16*)mem_static_malloc(2);
*_SUB_CLEARBUFFERS_INTEGER_BUF=0;
}
int32 fornext_value3988;
int32 fornext_finalvalue3988;
int32 fornext_step3988;
uint8 fornext_step_negative3988;
int32 fornext_value3990;
int32 fornext_finalvalue3990;
int32 fornext_step3990;
uint8 fornext_step_negative3990;
int32 fornext_value4069;
int32 fornext_finalvalue4069;
int32 fornext_step4069;
uint8 fornext_step_negative4069;
int32 fornext_value4071;
int32 fornext_finalvalue4071;
int32 fornext_step4071;
uint8 fornext_step_negative4071;

View file

@ -1,101 +1,23 @@
int32 *_FUNC_IDE_LONG_IDE=NULL;
if(_FUNC_IDE_LONG_IDE==NULL){
_FUNC_IDE_LONG_IDE=(int32*)mem_static_malloc(4);
*_FUNC_IDE_LONG_IDE=0;
qbs*oldstr4072=NULL;
if(_SUB_WRITEBUFFERS_STRING_SBNAME->tmp||_SUB_WRITEBUFFERS_STRING_SBNAME->fixed||_SUB_WRITEBUFFERS_STRING_SBNAME->readonly){
oldstr4072=_SUB_WRITEBUFFERS_STRING_SBNAME;
if (oldstr4072->cmem_descriptor){
_SUB_WRITEBUFFERS_STRING_SBNAME=qbs_new_cmem(oldstr4072->len,0);
}else{
_SUB_WRITEBUFFERS_STRING_SBNAME=qbs_new(oldstr4072->len,0);
}
int32 *_FUNC_IDE_LONG_CMD=NULL;
if(_FUNC_IDE_LONG_CMD==NULL){
_FUNC_IDE_LONG_CMD=(int32*)mem_static_malloc(4);
*_FUNC_IDE_LONG_CMD=0;
memcpy(_SUB_WRITEBUFFERS_STRING_SBNAME->chr,oldstr4072->chr,oldstr4072->len);
}
byte_element_struct *byte_element_3991=NULL;
if (!byte_element_3991){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3991=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3991=(byte_element_struct*)mem_static_malloc(12);
int16 *_SUB_WRITEBUFFERS_INTEGER_BUF=NULL;
if(_SUB_WRITEBUFFERS_INTEGER_BUF==NULL){
_SUB_WRITEBUFFERS_INTEGER_BUF=(int16*)mem_static_malloc(2);
*_SUB_WRITEBUFFERS_INTEGER_BUF=0;
}
int32 *_FUNC_IDE_LONG_L=NULL;
if(_FUNC_IDE_LONG_L==NULL){
_FUNC_IDE_LONG_L=(int32*)mem_static_malloc(4);
*_FUNC_IDE_LONG_L=0;
}
byte_element_struct *byte_element_3992=NULL;
if (!byte_element_3992){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3992=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3992=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDE_LONG_I=NULL;
if(_FUNC_IDE_LONG_I==NULL){
_FUNC_IDE_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_IDE_LONG_I=0;
}
int64 fornext_value3994;
int64 fornext_finalvalue3994;
int64 fornext_step3994;
uint8 fornext_step_negative3994;
int32 *_FUNC_IDE_LONG_INDENT=NULL;
if(_FUNC_IDE_LONG_INDENT==NULL){
_FUNC_IDE_LONG_INDENT=(int32*)mem_static_malloc(4);
*_FUNC_IDE_LONG_INDENT=0;
}
byte_element_struct *byte_element_3995=NULL;
if (!byte_element_3995){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3995=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3995=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_IDE_STRING_LAYOUT2=NULL;
if (!_FUNC_IDE_STRING_LAYOUT2)_FUNC_IDE_STRING_LAYOUT2=qbs_new(0,0);
int32 *_FUNC_IDE_LONG_I2=NULL;
if(_FUNC_IDE_LONG_I2==NULL){
_FUNC_IDE_LONG_I2=(int32*)mem_static_malloc(4);
*_FUNC_IDE_LONG_I2=0;
}
int32 *_FUNC_IDE_LONG_IGNORESP=NULL;
if(_FUNC_IDE_LONG_IGNORESP==NULL){
_FUNC_IDE_LONG_IGNORESP=(int32*)mem_static_malloc(4);
*_FUNC_IDE_LONG_IGNORESP=0;
}
int64 fornext_value3997;
int64 fornext_finalvalue3997;
int64 fornext_step3997;
uint8 fornext_step_negative3997;
byte_element_struct *byte_element_3998=NULL;
if (!byte_element_3998){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3998=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3998=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDE_LONG_A=NULL;
if(_FUNC_IDE_LONG_A==NULL){
_FUNC_IDE_LONG_A=(int32*)mem_static_malloc(4);
*_FUNC_IDE_LONG_A=0;
}
byte_element_struct *byte_element_3999=NULL;
if (!byte_element_3999){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_3999=(byte_element_struct*)(mem_static_pointer-12); else byte_element_3999=(byte_element_struct*)mem_static_malloc(12);
}
int64 fornext_value4001;
int64 fornext_finalvalue4001;
int64 fornext_step4001;
uint8 fornext_step_negative4001;
qbs *_FUNC_IDE_STRING_INDENT=NULL;
if (!_FUNC_IDE_STRING_INDENT)_FUNC_IDE_STRING_INDENT=qbs_new(0,0);
byte_element_struct *byte_element_4002=NULL;
if (!byte_element_4002){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4002=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4002=(byte_element_struct*)mem_static_malloc(12);
}
int64 fornext_value4004;
int64 fornext_finalvalue4004;
int64 fornext_step4004;
uint8 fornext_step_negative4004;
byte_element_struct *byte_element_4005=NULL;
if (!byte_element_4005){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4005=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4005=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_IDE_STRING_STATUS__ASCII_CHR_046__PROGRESS=NULL;
if (!_FUNC_IDE_STRING_STATUS__ASCII_CHR_046__PROGRESS)_FUNC_IDE_STRING_STATUS__ASCII_CHR_046__PROGRESS=qbs_new(0,0);
int32 pass4006;
byte_element_struct *byte_element_4007=NULL;
if (!byte_element_4007){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4007=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4007=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass4008;
byte_element_struct *byte_element_4009=NULL;
if (!byte_element_4009){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4009=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4009=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass4010;
int32 fornext_value4074;
int32 fornext_finalvalue4074;
int32 fornext_step4074;
uint8 fornext_step_negative4074;
int32 fornext_value4076;
int32 fornext_finalvalue4076;
int32 fornext_step4076;
uint8 fornext_step_negative4076;

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,778 +1,20 @@
int32 *_SUB_DEBUGMODE_LONG_TIMEOUT=NULL;
if(_SUB_DEBUGMODE_LONG_TIMEOUT==NULL){
_SUB_DEBUGMODE_LONG_TIMEOUT=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_TIMEOUT=0;
}
byte_element_struct *byte_element_4678=NULL;
if (!byte_element_4678){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4678=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4678=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_SUB_DEBUGMODE_STRING_M=NULL;
if (!_SUB_DEBUGMODE_STRING_M)_SUB_DEBUGMODE_STRING_M=qbs_new(0,0);
byte_element_struct *byte_element_4679=NULL;
if (!byte_element_4679){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4679=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4679=(byte_element_struct*)mem_static_malloc(12);
}
ptrszint *_SUB_DEBUGMODE_ARRAY_UDT_BUTTON=NULL;
if (!_SUB_DEBUGMODE_ARRAY_UDT_BUTTON){
_SUB_DEBUGMODE_ARRAY_UDT_BUTTON=(ptrszint*)mem_static_malloc(9*ptrsz);
new_mem_lock();
mem_lock_tmp->type=4;
((ptrszint*)_SUB_DEBUGMODE_ARRAY_UDT_BUTTON)[8]=(ptrszint)mem_lock_tmp;
_SUB_DEBUGMODE_ARRAY_UDT_BUTTON[2]=0;
_SUB_DEBUGMODE_ARRAY_UDT_BUTTON[4]=2147483647;
_SUB_DEBUGMODE_ARRAY_UDT_BUTTON[5]=0;
_SUB_DEBUGMODE_ARRAY_UDT_BUTTON[6]=0;
_SUB_DEBUGMODE_ARRAY_UDT_BUTTON[0]=(ptrszint)nothingvalue;
}
int32 *_SUB_DEBUGMODE_LONG_I=NULL;
if(_SUB_DEBUGMODE_LONG_I==NULL){
_SUB_DEBUGMODE_LONG_I=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_I=0;
}
int32 *_SUB_DEBUGMODE_LONG_Y=NULL;
if(_SUB_DEBUGMODE_LONG_Y==NULL){
_SUB_DEBUGMODE_LONG_Y=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_Y=0;
}
int32 *_SUB_DEBUGMODE_LONG_X=NULL;
if(_SUB_DEBUGMODE_LONG_X==NULL){
_SUB_DEBUGMODE_LONG_X=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_X=0;
}
int64 fornext_value4681;
int64 fornext_finalvalue4681;
int64 fornext_step4681;
uint8 fornext_step_negative4681;
int32 sc_4682_var;
int32 *_SUB_DEBUGMODE_LONG_DEBUGGEEPID=NULL;
if(_SUB_DEBUGMODE_LONG_DEBUGGEEPID==NULL){
_SUB_DEBUGMODE_LONG_DEBUGGEEPID=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_DEBUGGEEPID=0;
}
int8 pass4683;
byte_element_struct *byte_element_4684=NULL;
if (!byte_element_4684){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4684=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4684=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_SUB_DEBUGMODE_LONG_TOTALVISIBLEVARIABLES=NULL;
if(_SUB_DEBUGMODE_LONG_TOTALVISIBLEVARIABLES==NULL){
_SUB_DEBUGMODE_LONG_TOTALVISIBLEVARIABLES=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_TOTALVISIBLEVARIABLES=0;
}
qbs *_SUB_DEBUGMODE_STRING_RESULT=NULL;
if (!_SUB_DEBUGMODE_STRING_RESULT)_SUB_DEBUGMODE_STRING_RESULT=qbs_new(0,0);
int32 pass4685;
int32 pass4686;
int32 pass4687;
int32 pass4688;
int32 pass4689;
int32 *_SUB_DEBUGMODE_LONG_RESULT=NULL;
if(_SUB_DEBUGMODE_LONG_RESULT==NULL){
_SUB_DEBUGMODE_LONG_RESULT=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_RESULT=0;
}
int32 *_SUB_DEBUGMODE_LONG_DUMMY=NULL;
if(_SUB_DEBUGMODE_LONG_DUMMY==NULL){
_SUB_DEBUGMODE_LONG_DUMMY=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_DUMMY=0;
}
int8 pass4690;
int32 pass4691;
int32 pass4692;
int32 pass4693;
int8 pass4694;
int32 pass4695;
int32 pass4696;
int32 pass4697;
int32 pass4698;
int32 pass4699;
float *_SUB_DEBUGMODE_SINGLE_START=NULL;
if(_SUB_DEBUGMODE_SINGLE_START==NULL){
_SUB_DEBUGMODE_SINGLE_START=(float*)mem_static_malloc(4);
*_SUB_DEBUGMODE_SINGLE_START=0;
}
int32 *_SUB_DEBUGMODE_LONG_K=NULL;
if(_SUB_DEBUGMODE_LONG_K==NULL){
_SUB_DEBUGMODE_LONG_K=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_K=0;
}
int8 pass4702;
int32 pass4703;
int32 pass4704;
qbs *_SUB_DEBUGMODE_STRING_TEMP=NULL;
if (!_SUB_DEBUGMODE_STRING_TEMP)_SUB_DEBUGMODE_STRING_TEMP=qbs_new(0,0);
int32 pass4705;
int32 pass4706;
int32 pass4707;
int32 pass4709;
int32 pass4710;
int32 pass4711;
int8 pass4713;
int32 pass4714;
int32 pass4715;
int32 pass4716;
int32 pass4717;
int32 pass4718;
qbs *_SUB_DEBUGMODE_STRING_CMD=NULL;
if (!_SUB_DEBUGMODE_STRING_CMD)_SUB_DEBUGMODE_STRING_CMD=qbs_new(0,0);
qbs *_SUB_DEBUGMODE_STRING_PROGRAM=NULL;
if (!_SUB_DEBUGMODE_STRING_PROGRAM)_SUB_DEBUGMODE_STRING_PROGRAM=qbs_new(0,0);
qbs *_SUB_DEBUGMODE_STRING_VALUE=NULL;
if (!_SUB_DEBUGMODE_STRING_VALUE)_SUB_DEBUGMODE_STRING_VALUE=qbs_new(0,0);
qbs *_SUB_DEBUGMODE_STRING_EXPECTED=NULL;
if (!_SUB_DEBUGMODE_STRING_EXPECTED)_SUB_DEBUGMODE_STRING_EXPECTED=qbs_new(0,0);
qbs *_SUB_DEBUGMODE_STRING_P=NULL;
if (!_SUB_DEBUGMODE_STRING_P)_SUB_DEBUGMODE_STRING_P=qbs_new(0,0);
int8 pass4721;
int32 pass4722;
int32 pass4723;
int32 pass4724;
int32 pass4725;
int32 pass4726;
int32 pass4727;
int32 pass4728;
int32 *_SUB_DEBUGMODE_LONG_BREAKPOINTCOUNT=NULL;
if(_SUB_DEBUGMODE_LONG_BREAKPOINTCOUNT==NULL){
_SUB_DEBUGMODE_LONG_BREAKPOINTCOUNT=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_BREAKPOINTCOUNT=0;
}
qbs *_SUB_DEBUGMODE_STRING_BREAKPOINTLIST=NULL;
if (!_SUB_DEBUGMODE_STRING_BREAKPOINTLIST)_SUB_DEBUGMODE_STRING_BREAKPOINTLIST=qbs_new(0,0);
int64 fornext_value4731;
int64 fornext_finalvalue4731;
int64 fornext_step4731;
uint8 fornext_step_negative4731;
int32 *_SUB_DEBUGMODE_LONG_SKIPCOUNT=NULL;
if(_SUB_DEBUGMODE_LONG_SKIPCOUNT==NULL){
_SUB_DEBUGMODE_LONG_SKIPCOUNT=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_SKIPCOUNT=0;
}
qbs *_SUB_DEBUGMODE_STRING_SKIPLIST=NULL;
if (!_SUB_DEBUGMODE_STRING_SKIPLIST)_SUB_DEBUGMODE_STRING_SKIPLIST=qbs_new(0,0);
int64 fornext_value4733;
int64 fornext_finalvalue4733;
int64 fornext_step4733;
uint8 fornext_step_negative4733;
int32 pass4734;
int32 pass4735;
int32 pass4736;
int32 pass4737;
int32 pass4738;
int32 pass4739;
int32 pass4740;
int32 pass4741;
int32 *_SUB_DEBUGMODE_LONG_BKPIDECY=NULL;
if(_SUB_DEBUGMODE_LONG_BKPIDECY==NULL){
_SUB_DEBUGMODE_LONG_BKPIDECY=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_BKPIDECY=0;
}
int32 *_SUB_DEBUGMODE_LONG_BKPPANELFIRSTVISIBLE=NULL;
if(_SUB_DEBUGMODE_LONG_BKPPANELFIRSTVISIBLE==NULL){
_SUB_DEBUGMODE_LONG_BKPPANELFIRSTVISIBLE=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_BKPPANELFIRSTVISIBLE=0;
}
byte_element_struct *byte_element_4744=NULL;
if (!byte_element_4744){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4744=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4744=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4745=NULL;
if (!byte_element_4745){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4745=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4745=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_SUB_DEBUGMODE_LONG_MOUSEDOWN2=NULL;
if(_SUB_DEBUGMODE_LONG_MOUSEDOWN2==NULL){
_SUB_DEBUGMODE_LONG_MOUSEDOWN2=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_MOUSEDOWN2=0;
}
int32 *_SUB_DEBUGMODE_LONG_MOUSEDOWNONX2=NULL;
if(_SUB_DEBUGMODE_LONG_MOUSEDOWNONX2==NULL){
_SUB_DEBUGMODE_LONG_MOUSEDOWNONX2=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_MOUSEDOWNONX2=0;
}
int32 *_SUB_DEBUGMODE_LONG_MOUSEDOWNONY2=NULL;
if(_SUB_DEBUGMODE_LONG_MOUSEDOWNONY2==NULL){
_SUB_DEBUGMODE_LONG_MOUSEDOWNONY2=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_MOUSEDOWNONY2=0;
}
byte_element_struct *byte_element_4746=NULL;
if (!byte_element_4746){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4746=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4746=(byte_element_struct*)mem_static_malloc(12);
}
int8 pass4747;
int32 *_SUB_DEBUGMODE_LONG_MOUSEDOWN=NULL;
if(_SUB_DEBUGMODE_LONG_MOUSEDOWN==NULL){
_SUB_DEBUGMODE_LONG_MOUSEDOWN=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_MOUSEDOWN=0;
}
int32 *_SUB_DEBUGMODE_LONG_MOUSEDOWNONX=NULL;
if(_SUB_DEBUGMODE_LONG_MOUSEDOWNONX==NULL){
_SUB_DEBUGMODE_LONG_MOUSEDOWNONX=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_MOUSEDOWNONX=0;
}
int32 *_SUB_DEBUGMODE_LONG_MOUSEDOWNONY=NULL;
if(_SUB_DEBUGMODE_LONG_MOUSEDOWNONY==NULL){
_SUB_DEBUGMODE_LONG_MOUSEDOWNONY=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_MOUSEDOWNONY=0;
}
byte_element_struct *byte_element_4748=NULL;
if (!byte_element_4748){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4748=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4748=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4749=NULL;
if (!byte_element_4749){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4749=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4749=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4750=NULL;
if (!byte_element_4750){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4750=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4750=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4751=NULL;
if (!byte_element_4751){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4751=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4751=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4752=NULL;
if (!byte_element_4752){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4752=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4752=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4753=NULL;
if (!byte_element_4753){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4753=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4753=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4754=NULL;
if (!byte_element_4754){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4754=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4754=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4755=NULL;
if (!byte_element_4755){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4755=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4755=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4756=NULL;
if (!byte_element_4756){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4756=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4756=(byte_element_struct*)mem_static_malloc(12);
}
float *_SUB_DEBUGMODE_SINGLE_LASTPANELCLICK=NULL;
if(_SUB_DEBUGMODE_SINGLE_LASTPANELCLICK==NULL){
_SUB_DEBUGMODE_SINGLE_LASTPANELCLICK=(float*)mem_static_malloc(4);
*_SUB_DEBUGMODE_SINGLE_LASTPANELCLICK=0;
}
int32 pass4757;
int32 pass4758;
int32 *_SUB_DEBUGMODE_LONG_DRAGGINGVTHUMB=NULL;
if(_SUB_DEBUGMODE_LONG_DRAGGINGVTHUMB==NULL){
_SUB_DEBUGMODE_LONG_DRAGGINGVTHUMB=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_DRAGGINGVTHUMB=0;
}
int32 pass4759;
int32 pass4760;
int32 pass4761;
int32 pass4762;
int32 *_SUB_DEBUGMODE_LONG_DRAGGINGHTHUMB=NULL;
if(_SUB_DEBUGMODE_LONG_DRAGGINGHTHUMB==NULL){
_SUB_DEBUGMODE_LONG_DRAGGINGHTHUMB=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_DRAGGINGHTHUMB=0;
}
int32 *_SUB_DEBUGMODE_LONG_MOUSEDOWNONBUTTON=NULL;
if(_SUB_DEBUGMODE_LONG_MOUSEDOWNONBUTTON==NULL){
_SUB_DEBUGMODE_LONG_MOUSEDOWNONBUTTON=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_MOUSEDOWNONBUTTON=0;
}
int64 fornext_value4764;
int64 fornext_finalvalue4764;
int64 fornext_step4764;
uint8 fornext_step_negative4764;
float *_SUB_DEBUGMODE_SINGLE_P=NULL;
if(_SUB_DEBUGMODE_SINGLE_P==NULL){
_SUB_DEBUGMODE_SINGLE_P=(float*)mem_static_malloc(4);
*_SUB_DEBUGMODE_SINGLE_P=0;
}
int32 *_SUB_DEBUGMODE_LONG_VWATCHPANELLIMIT=NULL;
if(_SUB_DEBUGMODE_LONG_VWATCHPANELLIMIT==NULL){
_SUB_DEBUGMODE_LONG_VWATCHPANELLIMIT=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_VWATCHPANELLIMIT=0;
}
float pass4765;
float pass4766;
float pass4767;
float pass4768;
float pass4769;
float pass4770;
float pass4771;
float pass4772;
float pass4773;
float pass4774;
int32 pass4775;
int32 pass4776;
int32 pass4777;
int32 pass4778;
int64 fornext_value4780;
int64 fornext_finalvalue4780;
int64 fornext_step4780;
uint8 fornext_step_negative4780;
int32 *_SUB_DEBUGMODE_LONG_IDECYTEMP=NULL;
if(_SUB_DEBUGMODE_LONG_IDECYTEMP==NULL){
_SUB_DEBUGMODE_LONG_IDECYTEMP=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_IDECYTEMP=0;
}
int32 pass4783;
int32 pass4784;
int32 pass4785;
int32 pass4786;
int32 pass4787;
int32 pass4788;
int32 *_SUB_DEBUGMODE_LONG_BKPIDESY=NULL;
if(_SUB_DEBUGMODE_LONG_BKPIDESY==NULL){
_SUB_DEBUGMODE_LONG_BKPIDESY=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_BKPIDESY=0;
}
int8 pass4790;
int32 pass4791;
int32 pass4792;
int32 pass4793;
qbs *_SUB_DEBUGMODE_STRING_R=NULL;
if (!_SUB_DEBUGMODE_STRING_R)_SUB_DEBUGMODE_STRING_R=qbs_new(0,0);
qbs *_SUB_DEBUGMODE_STRING_A=NULL;
if (!_SUB_DEBUGMODE_STRING_A)_SUB_DEBUGMODE_STRING_A=qbs_new(0,0);
int8 pass4796;
int32 *_SUB_DEBUGMODE_LONG_ESTABILISHINGSCOPE=NULL;
if(_SUB_DEBUGMODE_LONG_ESTABILISHINGSCOPE==NULL){
_SUB_DEBUGMODE_LONG_ESTABILISHINGSCOPE=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_ESTABILISHINGSCOPE=0;
}
int32 *_SUB_DEBUGMODE_LONG_HIDEPANEL=NULL;
if(_SUB_DEBUGMODE_LONG_HIDEPANEL==NULL){
_SUB_DEBUGMODE_LONG_HIDEPANEL=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_HIDEPANEL=0;
}
int32 *_SUB_DEBUGMODE_LONG_SELECTVAR=NULL;
if(_SUB_DEBUGMODE_LONG_SELECTVAR==NULL){
_SUB_DEBUGMODE_LONG_SELECTVAR=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_SELECTVAR=0;
}
qbs *_SUB_DEBUGMODE_STRING_FILTER=NULL;
if (!_SUB_DEBUGMODE_STRING_FILTER)_SUB_DEBUGMODE_STRING_FILTER=qbs_new(0,0);
int32 *_SUB_DEBUGMODE_LONG_RETURNACTION=NULL;
if(_SUB_DEBUGMODE_LONG_RETURNACTION==NULL){
_SUB_DEBUGMODE_LONG_RETURNACTION=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_RETURNACTION=0;
}
int32 pass4799;
int32 *_SUB_DEBUGMODE_LONG_TEMPINDEX=NULL;
if(_SUB_DEBUGMODE_LONG_TEMPINDEX==NULL){
_SUB_DEBUGMODE_LONG_TEMPINDEX=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_TEMPINDEX=0;
}
int32 pass4800;
int32 *_SUB_DEBUGMODE_LONG_TEMPISARRAY=NULL;
if(_SUB_DEBUGMODE_LONG_TEMPISARRAY==NULL){
_SUB_DEBUGMODE_LONG_TEMPISARRAY=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_TEMPISARRAY=0;
}
int32 pass4801;
int32 pass4802;
int32 *_SUB_DEBUGMODE_LONG_TEMPLOCALINDEX=NULL;
if(_SUB_DEBUGMODE_LONG_TEMPLOCALINDEX==NULL){
_SUB_DEBUGMODE_LONG_TEMPLOCALINDEX=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_TEMPLOCALINDEX=0;
}
int32 pass4803;
int32 *_SUB_DEBUGMODE_LONG_TEMPARRAYINDEX=NULL;
if(_SUB_DEBUGMODE_LONG_TEMPARRAYINDEX==NULL){
_SUB_DEBUGMODE_LONG_TEMPARRAYINDEX=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_TEMPARRAYINDEX=0;
}
int32 pass4804;
qbs *_SUB_DEBUGMODE_STRING_TEMPARRAYINDEXES=NULL;
if (!_SUB_DEBUGMODE_STRING_TEMPARRAYINDEXES)_SUB_DEBUGMODE_STRING_TEMPARRAYINDEXES=qbs_new(0,0);
int32 *_SUB_DEBUGMODE_LONG_TEMPARRAYELEMENTSIZE=NULL;
if(_SUB_DEBUGMODE_LONG_TEMPARRAYELEMENTSIZE==NULL){
_SUB_DEBUGMODE_LONG_TEMPARRAYELEMENTSIZE=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_TEMPARRAYELEMENTSIZE=0;
}
int32 pass4805;
int32 *_SUB_DEBUGMODE_LONG_TEMPISUDT=NULL;
if(_SUB_DEBUGMODE_LONG_TEMPISUDT==NULL){
_SUB_DEBUGMODE_LONG_TEMPISUDT=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_TEMPISUDT=0;
}
int32 pass4806;
int32 pass4807;
int32 *_SUB_DEBUGMODE_LONG_TEMPELEMENTOFFSET=NULL;
if(_SUB_DEBUGMODE_LONG_TEMPELEMENTOFFSET==NULL){
_SUB_DEBUGMODE_LONG_TEMPELEMENTOFFSET=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_TEMPELEMENTOFFSET=0;
}
int32 pass4808;
int32 pass4809;
int32 *_SUB_DEBUGMODE_LONG_TEMPSTORAGE=NULL;
if(_SUB_DEBUGMODE_LONG_TEMPSTORAGE==NULL){
_SUB_DEBUGMODE_LONG_TEMPSTORAGE=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_TEMPSTORAGE=0;
}
int32 pass4810;
int32 pass4811;
qbs *_SUB_DEBUGMODE_STRING_TEMPSCOPE=NULL;
if (!_SUB_DEBUGMODE_STRING_TEMPSCOPE)_SUB_DEBUGMODE_STRING_TEMPSCOPE=qbs_new(0,0);
int32 pass4812;
qbs *_SUB_DEBUGMODE_STRING_VARTYPE=NULL;
if (!_SUB_DEBUGMODE_STRING_VARTYPE)_SUB_DEBUGMODE_STRING_VARTYPE=qbs_new(0,0);
int32 pass4813;
qbs *_SUB_DEBUGMODE_STRING_TEMPVARTYPE=NULL;
if (!_SUB_DEBUGMODE_STRING_TEMPVARTYPE)_SUB_DEBUGMODE_STRING_TEMPVARTYPE=qbs_new(0,0);
int32 *_SUB_DEBUGMODE_LONG_FIXEDVARSIZE=NULL;
if(_SUB_DEBUGMODE_LONG_FIXEDVARSIZE==NULL){
_SUB_DEBUGMODE_LONG_FIXEDVARSIZE=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_FIXEDVARSIZE=0;
}
int32 *_SUB_DEBUGMODE_LONG_VARSIZE=NULL;
if(_SUB_DEBUGMODE_LONG_VARSIZE==NULL){
_SUB_DEBUGMODE_LONG_VARSIZE=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_VARSIZE=0;
}
byte_element_struct *byte_element_4815=NULL;
if (!byte_element_4815){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4815=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4815=(byte_element_struct*)mem_static_malloc(12);
}
int8 *_SUB_DEBUGMODE_BYTE_DUMMY=NULL;
if(_SUB_DEBUGMODE_BYTE_DUMMY==NULL){
_SUB_DEBUGMODE_BYTE_DUMMY=(int8*)mem_static_malloc(1);
*_SUB_DEBUGMODE_BYTE_DUMMY=0;
}
byte_element_struct *byte_element_4816=NULL;
if (!byte_element_4816){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4816=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4816=(byte_element_struct*)mem_static_malloc(12);
}
int16 *_SUB_DEBUGMODE_INTEGER_DUMMY=NULL;
if(_SUB_DEBUGMODE_INTEGER_DUMMY==NULL){
_SUB_DEBUGMODE_INTEGER_DUMMY=(int16*)mem_static_malloc(2);
*_SUB_DEBUGMODE_INTEGER_DUMMY=0;
}
byte_element_struct *byte_element_4817=NULL;
if (!byte_element_4817){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4817=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4817=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4818=NULL;
if (!byte_element_4818){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4818=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4818=(byte_element_struct*)mem_static_malloc(12);
}
int64 *_SUB_DEBUGMODE_INTEGER64_DUMMY=NULL;
if(_SUB_DEBUGMODE_INTEGER64_DUMMY==NULL){
_SUB_DEBUGMODE_INTEGER64_DUMMY=(int64*)mem_static_malloc(8);
*_SUB_DEBUGMODE_INTEGER64_DUMMY=0;
}
byte_element_struct *byte_element_4819=NULL;
if (!byte_element_4819){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4819=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4819=(byte_element_struct*)mem_static_malloc(12);
}
float *_SUB_DEBUGMODE_SINGLE_DUMMY=NULL;
if(_SUB_DEBUGMODE_SINGLE_DUMMY==NULL){
_SUB_DEBUGMODE_SINGLE_DUMMY=(float*)mem_static_malloc(4);
*_SUB_DEBUGMODE_SINGLE_DUMMY=0;
}
byte_element_struct *byte_element_4820=NULL;
if (!byte_element_4820){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4820=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4820=(byte_element_struct*)mem_static_malloc(12);
}
double *_SUB_DEBUGMODE_DOUBLE_DUMMY=NULL;
if(_SUB_DEBUGMODE_DOUBLE_DUMMY==NULL){
_SUB_DEBUGMODE_DOUBLE_DUMMY=(double*)mem_static_malloc(8);
*_SUB_DEBUGMODE_DOUBLE_DUMMY=0;
}
byte_element_struct *byte_element_4821=NULL;
if (!byte_element_4821){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4821=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4821=(byte_element_struct*)mem_static_malloc(12);
}
long double *_SUB_DEBUGMODE_FLOAT_DUMMY=NULL;
if(_SUB_DEBUGMODE_FLOAT_DUMMY==NULL){
_SUB_DEBUGMODE_FLOAT_DUMMY=(long double*)mem_static_malloc(32);
*_SUB_DEBUGMODE_FLOAT_DUMMY=0;
}
byte_element_struct *byte_element_4822=NULL;
if (!byte_element_4822){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4822=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4822=(byte_element_struct*)mem_static_malloc(12);
}
ptrszint *_SUB_DEBUGMODE_OFFSET_DUMMY=NULL;
if(_SUB_DEBUGMODE_OFFSET_DUMMY==NULL){
_SUB_DEBUGMODE_OFFSET_DUMMY=(ptrszint*)mem_static_malloc(8);
*_SUB_DEBUGMODE_OFFSET_DUMMY=0;
}
byte_element_struct *byte_element_4823=NULL;
if (!byte_element_4823){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4823=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4823=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4824=NULL;
if (!byte_element_4824){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4824=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4824=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4825=NULL;
if (!byte_element_4825){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4825=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4825=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4826=NULL;
if (!byte_element_4826){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4826=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4826=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4827=NULL;
if (!byte_element_4827){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4827=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4827=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass4829;
int32 pass4830;
int32 pass4831;
int32 pass4832;
int32 pass4833;
int32 pass4834;
int32 pass4835;
int32 *_SUB_DEBUGMODE_LONG_TEMPELEMENT=NULL;
if(_SUB_DEBUGMODE_LONG_TEMPELEMENT==NULL){
_SUB_DEBUGMODE_LONG_TEMPELEMENT=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_TEMPELEMENT=0;
}
int32 pass4836;
int32 pass4837;
int32 pass4838;
int32 pass4839;
int32 pass4840;
int32 pass4841;
int32 pass4842;
byte_element_struct *byte_element_4843=NULL;
if (!byte_element_4843){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4843=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4843=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4844=NULL;
if (!byte_element_4844){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4844=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4844=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4845=NULL;
if (!byte_element_4845){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4845=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4845=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4846=NULL;
if (!byte_element_4846){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4846=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4846=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4847=NULL;
if (!byte_element_4847){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4847=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4847=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4851=NULL;
if (!byte_element_4851){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4851=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4851=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass4852;
int32 pass4853;
int32 pass4854;
int8 pass4855;
byte_element_struct *byte_element_4856=NULL;
if (!byte_element_4856){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4856=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4856=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass4857;
int32 pass4858;
int32 pass4859;
int8 pass4860;
int32 pass4861;
int32 pass4862;
int32 pass4863;
int32 pass4864;
int32 pass4865;
int32 pass4866;
int32 pass4867;
int32 pass4868;
int32 pass4869;
int32 pass4870;
int32 pass4871;
int8 pass4872;
int32 pass4873;
int32 pass4874;
int32 pass4875;
int32 *_SUB_DEBUGMODE_LONG_BYPASSREQUESTCALLSTACK=NULL;
if(_SUB_DEBUGMODE_LONG_BYPASSREQUESTCALLSTACK==NULL){
_SUB_DEBUGMODE_LONG_BYPASSREQUESTCALLSTACK=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_BYPASSREQUESTCALLSTACK=0;
}
int8 pass4876;
int32 pass4877;
int32 pass4878;
int32 pass4879;
int32 pass4881;
int32 pass4882;
int32 pass4883;
int32 *_SUB_DEBUGMODE_LONG_RETVAL=NULL;
if(_SUB_DEBUGMODE_LONG_RETVAL==NULL){
_SUB_DEBUGMODE_LONG_RETVAL=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_RETVAL=0;
}
int32 pass4885;
int32 pass4886;
int32 pass4887;
int32 pass4888;
int32 pass4889;
int32 pass4890;
int32 pass4892;
int32 pass4893;
int32 pass4894;
int8 pass4895;
int32 pass4899;
int32 pass4900;
int32 pass4901;
int32 pass4902;
qbs *_SUB_DEBUGMODE_STRING_TEMPELEMENTOFFSET=NULL;
if (!_SUB_DEBUGMODE_STRING_TEMPELEMENTOFFSET)_SUB_DEBUGMODE_STRING_TEMPELEMENTOFFSET=qbs_new(0,0);
int32 pass4903;
int32 pass4904;
byte_element_struct *byte_element_4906=NULL;
if (!byte_element_4906){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4906=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4906=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_SUB_DEBUGMODE_LONG_J=NULL;
if(_SUB_DEBUGMODE_LONG_J==NULL){
_SUB_DEBUGMODE_LONG_J=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_J=0;
}
int32 *_SUB_DEBUGMODE_LONG_L=NULL;
if(_SUB_DEBUGMODE_LONG_L==NULL){
_SUB_DEBUGMODE_LONG_L=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_L=0;
}
int32 pass4908;
int32 pass4909;
int32 pass4910;
int32 pass4911;
int32 pass4912;
int32 pass4913;
int32 pass4914;
byte_element_struct *byte_element_4915=NULL;
if (!byte_element_4915){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4915=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4915=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass4916;
qbs *_SUB_DEBUGMODE_STRING_TEMP2=NULL;
if (!_SUB_DEBUGMODE_STRING_TEMP2)_SUB_DEBUGMODE_STRING_TEMP2=qbs_new(0,0);
int32 pass4918;
int32 pass4919;
int32 pass4920;
int32 pass4921;
int32 pass4922;
int32 pass4923;
byte_element_struct *byte_element_4924=NULL;
if (!byte_element_4924){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4924=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4924=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_SUB_DEBUGMODE_STRING_RECVDATA=NULL;
if (!_SUB_DEBUGMODE_STRING_RECVDATA)_SUB_DEBUGMODE_STRING_RECVDATA=qbs_new(0,0);
int8 pass4926;
int32 pass4927;
int32 pass4928;
int32 pass4929;
byte_element_struct *byte_element_4930=NULL;
if (!byte_element_4930){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4930=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4930=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass4931;
int32 pass4932;
int32 pass4934;
int32 pass4935;
int32 pass4936;
int8 pass4937;
int32 pass4938;
int32 pass4939;
int32 pass4940;
int32 pass4941;
int32 pass4942;
int32 pass4943;
int8 pass4944;
int32 pass4945;
int32 pass4946;
int32 pass4949;
int32 pass4950;
int32 pass4951;
int32 pass4952;
int32 pass4953;
byte_element_struct *byte_element_4955=NULL;
if (!byte_element_4955){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4955=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4955=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_SUB_DEBUGMODE_LONG_CMDSIZE=NULL;
if(_SUB_DEBUGMODE_LONG_CMDSIZE==NULL){
_SUB_DEBUGMODE_LONG_CMDSIZE=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_CMDSIZE=0;
}
byte_element_struct *byte_element_4956=NULL;
if (!byte_element_4956){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4956=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4956=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4957=NULL;
if (!byte_element_4957){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4957=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4957=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4958=NULL;
if (!byte_element_4958){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4958=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4958=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass4959;
int32 pass4960;
int32 pass4961;
int32 pass4962;
int32 pass4963;
byte_element_struct *byte_element_4965=NULL;
if (!byte_element_4965){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4965=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4965=(byte_element_struct*)mem_static_malloc(12);
}
int8 pass4966;
int64 fornext_value4968;
int64 fornext_finalvalue4968;
int64 fornext_step4968;
uint8 fornext_step_negative4968;
byte_element_struct *byte_element_4970=NULL;
if (!byte_element_4970){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4970=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4970=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4971=NULL;
if (!byte_element_4971){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4971=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4971=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4972=NULL;
if (!byte_element_4972){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4972=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4972=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4973=NULL;
if (!byte_element_4973){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4973=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4973=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4974=NULL;
if (!byte_element_4974){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4974=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4974=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4975=NULL;
if (!byte_element_4975){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4975=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4975=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4976=NULL;
if (!byte_element_4976){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4976=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4976=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4977=NULL;
if (!byte_element_4977){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4977=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4977=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4978=NULL;
if (!byte_element_4978){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4978=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4978=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4979=NULL;
if (!byte_element_4979){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4979=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4979=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4980=NULL;
if (!byte_element_4980){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4980=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4980=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4981=NULL;
if (!byte_element_4981){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4981=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4981=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4982=NULL;
if (!byte_element_4982){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4982=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4982=(byte_element_struct*)mem_static_malloc(12);
qbs *_SUB_UPDATETITLEOFMAINWINDOW_STRING_SFNAME=NULL;
if (!_SUB_UPDATETITLEOFMAINWINDOW_STRING_SFNAME)_SUB_UPDATETITLEOFMAINWINDOW_STRING_SFNAME=qbs_new(0,0);
byte_element_struct *byte_element_4760=NULL;
if (!byte_element_4760){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4760=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4760=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_SUB_UPDATETITLEOFMAINWINDOW_STRING_A=NULL;
if (!_SUB_UPDATETITLEOFMAINWINDOW_STRING_A)_SUB_UPDATETITLEOFMAINWINDOW_STRING_A=qbs_new(0,0);
byte_element_struct *byte_element_4761=NULL;
if (!byte_element_4761){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4761=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4761=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4762=NULL;
if (!byte_element_4762){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4762=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4762=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4763=NULL;
if (!byte_element_4763){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4763=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4763=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -1,5 +1,778 @@
float *_FUNC_MAP_SINGLE_MAP=NULL;
if(_FUNC_MAP_SINGLE_MAP==NULL){
_FUNC_MAP_SINGLE_MAP=(float*)mem_static_malloc(4);
*_FUNC_MAP_SINGLE_MAP=0;
int32 *_SUB_DEBUGMODE_LONG_TIMEOUT=NULL;
if(_SUB_DEBUGMODE_LONG_TIMEOUT==NULL){
_SUB_DEBUGMODE_LONG_TIMEOUT=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_TIMEOUT=0;
}
byte_element_struct *byte_element_4764=NULL;
if (!byte_element_4764){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4764=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4764=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_SUB_DEBUGMODE_STRING_M=NULL;
if (!_SUB_DEBUGMODE_STRING_M)_SUB_DEBUGMODE_STRING_M=qbs_new(0,0);
byte_element_struct *byte_element_4765=NULL;
if (!byte_element_4765){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4765=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4765=(byte_element_struct*)mem_static_malloc(12);
}
ptrszint *_SUB_DEBUGMODE_ARRAY_UDT_BUTTON=NULL;
if (!_SUB_DEBUGMODE_ARRAY_UDT_BUTTON){
_SUB_DEBUGMODE_ARRAY_UDT_BUTTON=(ptrszint*)mem_static_malloc(9*ptrsz);
new_mem_lock();
mem_lock_tmp->type=4;
((ptrszint*)_SUB_DEBUGMODE_ARRAY_UDT_BUTTON)[8]=(ptrszint)mem_lock_tmp;
_SUB_DEBUGMODE_ARRAY_UDT_BUTTON[2]=0;
_SUB_DEBUGMODE_ARRAY_UDT_BUTTON[4]=2147483647;
_SUB_DEBUGMODE_ARRAY_UDT_BUTTON[5]=0;
_SUB_DEBUGMODE_ARRAY_UDT_BUTTON[6]=0;
_SUB_DEBUGMODE_ARRAY_UDT_BUTTON[0]=(ptrszint)nothingvalue;
}
int32 *_SUB_DEBUGMODE_LONG_I=NULL;
if(_SUB_DEBUGMODE_LONG_I==NULL){
_SUB_DEBUGMODE_LONG_I=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_I=0;
}
int32 *_SUB_DEBUGMODE_LONG_Y=NULL;
if(_SUB_DEBUGMODE_LONG_Y==NULL){
_SUB_DEBUGMODE_LONG_Y=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_Y=0;
}
int32 *_SUB_DEBUGMODE_LONG_X=NULL;
if(_SUB_DEBUGMODE_LONG_X==NULL){
_SUB_DEBUGMODE_LONG_X=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_X=0;
}
int64 fornext_value4767;
int64 fornext_finalvalue4767;
int64 fornext_step4767;
uint8 fornext_step_negative4767;
int32 sc_4768_var;
int32 *_SUB_DEBUGMODE_LONG_DEBUGGEEPID=NULL;
if(_SUB_DEBUGMODE_LONG_DEBUGGEEPID==NULL){
_SUB_DEBUGMODE_LONG_DEBUGGEEPID=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_DEBUGGEEPID=0;
}
int8 pass4769;
byte_element_struct *byte_element_4770=NULL;
if (!byte_element_4770){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4770=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4770=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_SUB_DEBUGMODE_LONG_TOTALVISIBLEVARIABLES=NULL;
if(_SUB_DEBUGMODE_LONG_TOTALVISIBLEVARIABLES==NULL){
_SUB_DEBUGMODE_LONG_TOTALVISIBLEVARIABLES=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_TOTALVISIBLEVARIABLES=0;
}
qbs *_SUB_DEBUGMODE_STRING_RESULT=NULL;
if (!_SUB_DEBUGMODE_STRING_RESULT)_SUB_DEBUGMODE_STRING_RESULT=qbs_new(0,0);
int32 pass4771;
int32 pass4772;
int32 pass4773;
int32 pass4774;
int32 pass4775;
int32 *_SUB_DEBUGMODE_LONG_RESULT=NULL;
if(_SUB_DEBUGMODE_LONG_RESULT==NULL){
_SUB_DEBUGMODE_LONG_RESULT=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_RESULT=0;
}
int32 *_SUB_DEBUGMODE_LONG_DUMMY=NULL;
if(_SUB_DEBUGMODE_LONG_DUMMY==NULL){
_SUB_DEBUGMODE_LONG_DUMMY=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_DUMMY=0;
}
int8 pass4776;
int32 pass4777;
int32 pass4778;
int32 pass4779;
int8 pass4780;
int32 pass4781;
int32 pass4782;
int32 pass4783;
int32 pass4784;
int32 pass4785;
float *_SUB_DEBUGMODE_SINGLE_START=NULL;
if(_SUB_DEBUGMODE_SINGLE_START==NULL){
_SUB_DEBUGMODE_SINGLE_START=(float*)mem_static_malloc(4);
*_SUB_DEBUGMODE_SINGLE_START=0;
}
int32 *_SUB_DEBUGMODE_LONG_K=NULL;
if(_SUB_DEBUGMODE_LONG_K==NULL){
_SUB_DEBUGMODE_LONG_K=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_K=0;
}
int8 pass4788;
int32 pass4789;
int32 pass4790;
qbs *_SUB_DEBUGMODE_STRING_TEMP=NULL;
if (!_SUB_DEBUGMODE_STRING_TEMP)_SUB_DEBUGMODE_STRING_TEMP=qbs_new(0,0);
int32 pass4791;
int32 pass4792;
int32 pass4793;
int32 pass4795;
int32 pass4796;
int32 pass4797;
int8 pass4799;
int32 pass4800;
int32 pass4801;
int32 pass4802;
int32 pass4803;
int32 pass4804;
qbs *_SUB_DEBUGMODE_STRING_CMD=NULL;
if (!_SUB_DEBUGMODE_STRING_CMD)_SUB_DEBUGMODE_STRING_CMD=qbs_new(0,0);
qbs *_SUB_DEBUGMODE_STRING_PROGRAM=NULL;
if (!_SUB_DEBUGMODE_STRING_PROGRAM)_SUB_DEBUGMODE_STRING_PROGRAM=qbs_new(0,0);
qbs *_SUB_DEBUGMODE_STRING_VALUE=NULL;
if (!_SUB_DEBUGMODE_STRING_VALUE)_SUB_DEBUGMODE_STRING_VALUE=qbs_new(0,0);
qbs *_SUB_DEBUGMODE_STRING_EXPECTED=NULL;
if (!_SUB_DEBUGMODE_STRING_EXPECTED)_SUB_DEBUGMODE_STRING_EXPECTED=qbs_new(0,0);
qbs *_SUB_DEBUGMODE_STRING_P=NULL;
if (!_SUB_DEBUGMODE_STRING_P)_SUB_DEBUGMODE_STRING_P=qbs_new(0,0);
int8 pass4807;
int32 pass4808;
int32 pass4809;
int32 pass4810;
int32 pass4811;
int32 pass4812;
int32 pass4813;
int32 pass4814;
int32 *_SUB_DEBUGMODE_LONG_BREAKPOINTCOUNT=NULL;
if(_SUB_DEBUGMODE_LONG_BREAKPOINTCOUNT==NULL){
_SUB_DEBUGMODE_LONG_BREAKPOINTCOUNT=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_BREAKPOINTCOUNT=0;
}
qbs *_SUB_DEBUGMODE_STRING_BREAKPOINTLIST=NULL;
if (!_SUB_DEBUGMODE_STRING_BREAKPOINTLIST)_SUB_DEBUGMODE_STRING_BREAKPOINTLIST=qbs_new(0,0);
int64 fornext_value4817;
int64 fornext_finalvalue4817;
int64 fornext_step4817;
uint8 fornext_step_negative4817;
int32 *_SUB_DEBUGMODE_LONG_SKIPCOUNT=NULL;
if(_SUB_DEBUGMODE_LONG_SKIPCOUNT==NULL){
_SUB_DEBUGMODE_LONG_SKIPCOUNT=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_SKIPCOUNT=0;
}
qbs *_SUB_DEBUGMODE_STRING_SKIPLIST=NULL;
if (!_SUB_DEBUGMODE_STRING_SKIPLIST)_SUB_DEBUGMODE_STRING_SKIPLIST=qbs_new(0,0);
int64 fornext_value4819;
int64 fornext_finalvalue4819;
int64 fornext_step4819;
uint8 fornext_step_negative4819;
int32 pass4820;
int32 pass4821;
int32 pass4822;
int32 pass4823;
int32 pass4824;
int32 pass4825;
int32 pass4826;
int32 pass4827;
int32 *_SUB_DEBUGMODE_LONG_BKPIDECY=NULL;
if(_SUB_DEBUGMODE_LONG_BKPIDECY==NULL){
_SUB_DEBUGMODE_LONG_BKPIDECY=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_BKPIDECY=0;
}
int32 *_SUB_DEBUGMODE_LONG_BKPPANELFIRSTVISIBLE=NULL;
if(_SUB_DEBUGMODE_LONG_BKPPANELFIRSTVISIBLE==NULL){
_SUB_DEBUGMODE_LONG_BKPPANELFIRSTVISIBLE=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_BKPPANELFIRSTVISIBLE=0;
}
byte_element_struct *byte_element_4830=NULL;
if (!byte_element_4830){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4830=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4830=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4831=NULL;
if (!byte_element_4831){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4831=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4831=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_SUB_DEBUGMODE_LONG_MOUSEDOWN2=NULL;
if(_SUB_DEBUGMODE_LONG_MOUSEDOWN2==NULL){
_SUB_DEBUGMODE_LONG_MOUSEDOWN2=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_MOUSEDOWN2=0;
}
int32 *_SUB_DEBUGMODE_LONG_MOUSEDOWNONX2=NULL;
if(_SUB_DEBUGMODE_LONG_MOUSEDOWNONX2==NULL){
_SUB_DEBUGMODE_LONG_MOUSEDOWNONX2=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_MOUSEDOWNONX2=0;
}
int32 *_SUB_DEBUGMODE_LONG_MOUSEDOWNONY2=NULL;
if(_SUB_DEBUGMODE_LONG_MOUSEDOWNONY2==NULL){
_SUB_DEBUGMODE_LONG_MOUSEDOWNONY2=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_MOUSEDOWNONY2=0;
}
byte_element_struct *byte_element_4832=NULL;
if (!byte_element_4832){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4832=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4832=(byte_element_struct*)mem_static_malloc(12);
}
int8 pass4833;
int32 *_SUB_DEBUGMODE_LONG_MOUSEDOWN=NULL;
if(_SUB_DEBUGMODE_LONG_MOUSEDOWN==NULL){
_SUB_DEBUGMODE_LONG_MOUSEDOWN=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_MOUSEDOWN=0;
}
int32 *_SUB_DEBUGMODE_LONG_MOUSEDOWNONX=NULL;
if(_SUB_DEBUGMODE_LONG_MOUSEDOWNONX==NULL){
_SUB_DEBUGMODE_LONG_MOUSEDOWNONX=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_MOUSEDOWNONX=0;
}
int32 *_SUB_DEBUGMODE_LONG_MOUSEDOWNONY=NULL;
if(_SUB_DEBUGMODE_LONG_MOUSEDOWNONY==NULL){
_SUB_DEBUGMODE_LONG_MOUSEDOWNONY=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_MOUSEDOWNONY=0;
}
byte_element_struct *byte_element_4834=NULL;
if (!byte_element_4834){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4834=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4834=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4835=NULL;
if (!byte_element_4835){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4835=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4835=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4836=NULL;
if (!byte_element_4836){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4836=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4836=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4837=NULL;
if (!byte_element_4837){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4837=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4837=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4838=NULL;
if (!byte_element_4838){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4838=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4838=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4839=NULL;
if (!byte_element_4839){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4839=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4839=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4840=NULL;
if (!byte_element_4840){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4840=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4840=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4841=NULL;
if (!byte_element_4841){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4841=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4841=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4842=NULL;
if (!byte_element_4842){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4842=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4842=(byte_element_struct*)mem_static_malloc(12);
}
float *_SUB_DEBUGMODE_SINGLE_LASTPANELCLICK=NULL;
if(_SUB_DEBUGMODE_SINGLE_LASTPANELCLICK==NULL){
_SUB_DEBUGMODE_SINGLE_LASTPANELCLICK=(float*)mem_static_malloc(4);
*_SUB_DEBUGMODE_SINGLE_LASTPANELCLICK=0;
}
int32 pass4843;
int32 pass4844;
int32 *_SUB_DEBUGMODE_LONG_DRAGGINGVTHUMB=NULL;
if(_SUB_DEBUGMODE_LONG_DRAGGINGVTHUMB==NULL){
_SUB_DEBUGMODE_LONG_DRAGGINGVTHUMB=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_DRAGGINGVTHUMB=0;
}
int32 pass4845;
int32 pass4846;
int32 pass4847;
int32 pass4848;
int32 *_SUB_DEBUGMODE_LONG_DRAGGINGHTHUMB=NULL;
if(_SUB_DEBUGMODE_LONG_DRAGGINGHTHUMB==NULL){
_SUB_DEBUGMODE_LONG_DRAGGINGHTHUMB=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_DRAGGINGHTHUMB=0;
}
int32 *_SUB_DEBUGMODE_LONG_MOUSEDOWNONBUTTON=NULL;
if(_SUB_DEBUGMODE_LONG_MOUSEDOWNONBUTTON==NULL){
_SUB_DEBUGMODE_LONG_MOUSEDOWNONBUTTON=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_MOUSEDOWNONBUTTON=0;
}
int64 fornext_value4850;
int64 fornext_finalvalue4850;
int64 fornext_step4850;
uint8 fornext_step_negative4850;
float *_SUB_DEBUGMODE_SINGLE_P=NULL;
if(_SUB_DEBUGMODE_SINGLE_P==NULL){
_SUB_DEBUGMODE_SINGLE_P=(float*)mem_static_malloc(4);
*_SUB_DEBUGMODE_SINGLE_P=0;
}
int32 *_SUB_DEBUGMODE_LONG_VWATCHPANELLIMIT=NULL;
if(_SUB_DEBUGMODE_LONG_VWATCHPANELLIMIT==NULL){
_SUB_DEBUGMODE_LONG_VWATCHPANELLIMIT=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_VWATCHPANELLIMIT=0;
}
float pass4851;
float pass4852;
float pass4853;
float pass4854;
float pass4855;
float pass4856;
float pass4857;
float pass4858;
float pass4859;
float pass4860;
int32 pass4861;
int32 pass4862;
int32 pass4863;
int32 pass4864;
int64 fornext_value4866;
int64 fornext_finalvalue4866;
int64 fornext_step4866;
uint8 fornext_step_negative4866;
int32 *_SUB_DEBUGMODE_LONG_IDECYTEMP=NULL;
if(_SUB_DEBUGMODE_LONG_IDECYTEMP==NULL){
_SUB_DEBUGMODE_LONG_IDECYTEMP=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_IDECYTEMP=0;
}
int32 pass4869;
int32 pass4870;
int32 pass4871;
int32 pass4872;
int32 pass4873;
int32 pass4874;
int32 *_SUB_DEBUGMODE_LONG_BKPIDESY=NULL;
if(_SUB_DEBUGMODE_LONG_BKPIDESY==NULL){
_SUB_DEBUGMODE_LONG_BKPIDESY=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_BKPIDESY=0;
}
int8 pass4876;
int32 pass4877;
int32 pass4878;
int32 pass4879;
qbs *_SUB_DEBUGMODE_STRING_R=NULL;
if (!_SUB_DEBUGMODE_STRING_R)_SUB_DEBUGMODE_STRING_R=qbs_new(0,0);
qbs *_SUB_DEBUGMODE_STRING_A=NULL;
if (!_SUB_DEBUGMODE_STRING_A)_SUB_DEBUGMODE_STRING_A=qbs_new(0,0);
int8 pass4882;
int32 *_SUB_DEBUGMODE_LONG_ESTABILISHINGSCOPE=NULL;
if(_SUB_DEBUGMODE_LONG_ESTABILISHINGSCOPE==NULL){
_SUB_DEBUGMODE_LONG_ESTABILISHINGSCOPE=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_ESTABILISHINGSCOPE=0;
}
int32 *_SUB_DEBUGMODE_LONG_HIDEPANEL=NULL;
if(_SUB_DEBUGMODE_LONG_HIDEPANEL==NULL){
_SUB_DEBUGMODE_LONG_HIDEPANEL=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_HIDEPANEL=0;
}
int32 *_SUB_DEBUGMODE_LONG_SELECTVAR=NULL;
if(_SUB_DEBUGMODE_LONG_SELECTVAR==NULL){
_SUB_DEBUGMODE_LONG_SELECTVAR=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_SELECTVAR=0;
}
qbs *_SUB_DEBUGMODE_STRING_FILTER=NULL;
if (!_SUB_DEBUGMODE_STRING_FILTER)_SUB_DEBUGMODE_STRING_FILTER=qbs_new(0,0);
int32 *_SUB_DEBUGMODE_LONG_RETURNACTION=NULL;
if(_SUB_DEBUGMODE_LONG_RETURNACTION==NULL){
_SUB_DEBUGMODE_LONG_RETURNACTION=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_RETURNACTION=0;
}
int32 pass4885;
int32 *_SUB_DEBUGMODE_LONG_TEMPINDEX=NULL;
if(_SUB_DEBUGMODE_LONG_TEMPINDEX==NULL){
_SUB_DEBUGMODE_LONG_TEMPINDEX=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_TEMPINDEX=0;
}
int32 pass4886;
int32 *_SUB_DEBUGMODE_LONG_TEMPISARRAY=NULL;
if(_SUB_DEBUGMODE_LONG_TEMPISARRAY==NULL){
_SUB_DEBUGMODE_LONG_TEMPISARRAY=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_TEMPISARRAY=0;
}
int32 pass4887;
int32 pass4888;
int32 *_SUB_DEBUGMODE_LONG_TEMPLOCALINDEX=NULL;
if(_SUB_DEBUGMODE_LONG_TEMPLOCALINDEX==NULL){
_SUB_DEBUGMODE_LONG_TEMPLOCALINDEX=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_TEMPLOCALINDEX=0;
}
int32 pass4889;
int32 *_SUB_DEBUGMODE_LONG_TEMPARRAYINDEX=NULL;
if(_SUB_DEBUGMODE_LONG_TEMPARRAYINDEX==NULL){
_SUB_DEBUGMODE_LONG_TEMPARRAYINDEX=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_TEMPARRAYINDEX=0;
}
int32 pass4890;
qbs *_SUB_DEBUGMODE_STRING_TEMPARRAYINDEXES=NULL;
if (!_SUB_DEBUGMODE_STRING_TEMPARRAYINDEXES)_SUB_DEBUGMODE_STRING_TEMPARRAYINDEXES=qbs_new(0,0);
int32 *_SUB_DEBUGMODE_LONG_TEMPARRAYELEMENTSIZE=NULL;
if(_SUB_DEBUGMODE_LONG_TEMPARRAYELEMENTSIZE==NULL){
_SUB_DEBUGMODE_LONG_TEMPARRAYELEMENTSIZE=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_TEMPARRAYELEMENTSIZE=0;
}
int32 pass4891;
int32 *_SUB_DEBUGMODE_LONG_TEMPISUDT=NULL;
if(_SUB_DEBUGMODE_LONG_TEMPISUDT==NULL){
_SUB_DEBUGMODE_LONG_TEMPISUDT=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_TEMPISUDT=0;
}
int32 pass4892;
int32 pass4893;
int32 *_SUB_DEBUGMODE_LONG_TEMPELEMENTOFFSET=NULL;
if(_SUB_DEBUGMODE_LONG_TEMPELEMENTOFFSET==NULL){
_SUB_DEBUGMODE_LONG_TEMPELEMENTOFFSET=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_TEMPELEMENTOFFSET=0;
}
int32 pass4894;
int32 pass4895;
int32 *_SUB_DEBUGMODE_LONG_TEMPSTORAGE=NULL;
if(_SUB_DEBUGMODE_LONG_TEMPSTORAGE==NULL){
_SUB_DEBUGMODE_LONG_TEMPSTORAGE=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_TEMPSTORAGE=0;
}
int32 pass4896;
int32 pass4897;
qbs *_SUB_DEBUGMODE_STRING_TEMPSCOPE=NULL;
if (!_SUB_DEBUGMODE_STRING_TEMPSCOPE)_SUB_DEBUGMODE_STRING_TEMPSCOPE=qbs_new(0,0);
int32 pass4898;
qbs *_SUB_DEBUGMODE_STRING_VARTYPE=NULL;
if (!_SUB_DEBUGMODE_STRING_VARTYPE)_SUB_DEBUGMODE_STRING_VARTYPE=qbs_new(0,0);
int32 pass4899;
qbs *_SUB_DEBUGMODE_STRING_TEMPVARTYPE=NULL;
if (!_SUB_DEBUGMODE_STRING_TEMPVARTYPE)_SUB_DEBUGMODE_STRING_TEMPVARTYPE=qbs_new(0,0);
int32 *_SUB_DEBUGMODE_LONG_FIXEDVARSIZE=NULL;
if(_SUB_DEBUGMODE_LONG_FIXEDVARSIZE==NULL){
_SUB_DEBUGMODE_LONG_FIXEDVARSIZE=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_FIXEDVARSIZE=0;
}
int32 *_SUB_DEBUGMODE_LONG_VARSIZE=NULL;
if(_SUB_DEBUGMODE_LONG_VARSIZE==NULL){
_SUB_DEBUGMODE_LONG_VARSIZE=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_VARSIZE=0;
}
byte_element_struct *byte_element_4901=NULL;
if (!byte_element_4901){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4901=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4901=(byte_element_struct*)mem_static_malloc(12);
}
int8 *_SUB_DEBUGMODE_BYTE_DUMMY=NULL;
if(_SUB_DEBUGMODE_BYTE_DUMMY==NULL){
_SUB_DEBUGMODE_BYTE_DUMMY=(int8*)mem_static_malloc(1);
*_SUB_DEBUGMODE_BYTE_DUMMY=0;
}
byte_element_struct *byte_element_4902=NULL;
if (!byte_element_4902){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4902=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4902=(byte_element_struct*)mem_static_malloc(12);
}
int16 *_SUB_DEBUGMODE_INTEGER_DUMMY=NULL;
if(_SUB_DEBUGMODE_INTEGER_DUMMY==NULL){
_SUB_DEBUGMODE_INTEGER_DUMMY=(int16*)mem_static_malloc(2);
*_SUB_DEBUGMODE_INTEGER_DUMMY=0;
}
byte_element_struct *byte_element_4903=NULL;
if (!byte_element_4903){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4903=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4903=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4904=NULL;
if (!byte_element_4904){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4904=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4904=(byte_element_struct*)mem_static_malloc(12);
}
int64 *_SUB_DEBUGMODE_INTEGER64_DUMMY=NULL;
if(_SUB_DEBUGMODE_INTEGER64_DUMMY==NULL){
_SUB_DEBUGMODE_INTEGER64_DUMMY=(int64*)mem_static_malloc(8);
*_SUB_DEBUGMODE_INTEGER64_DUMMY=0;
}
byte_element_struct *byte_element_4905=NULL;
if (!byte_element_4905){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4905=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4905=(byte_element_struct*)mem_static_malloc(12);
}
float *_SUB_DEBUGMODE_SINGLE_DUMMY=NULL;
if(_SUB_DEBUGMODE_SINGLE_DUMMY==NULL){
_SUB_DEBUGMODE_SINGLE_DUMMY=(float*)mem_static_malloc(4);
*_SUB_DEBUGMODE_SINGLE_DUMMY=0;
}
byte_element_struct *byte_element_4906=NULL;
if (!byte_element_4906){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4906=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4906=(byte_element_struct*)mem_static_malloc(12);
}
double *_SUB_DEBUGMODE_DOUBLE_DUMMY=NULL;
if(_SUB_DEBUGMODE_DOUBLE_DUMMY==NULL){
_SUB_DEBUGMODE_DOUBLE_DUMMY=(double*)mem_static_malloc(8);
*_SUB_DEBUGMODE_DOUBLE_DUMMY=0;
}
byte_element_struct *byte_element_4907=NULL;
if (!byte_element_4907){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4907=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4907=(byte_element_struct*)mem_static_malloc(12);
}
long double *_SUB_DEBUGMODE_FLOAT_DUMMY=NULL;
if(_SUB_DEBUGMODE_FLOAT_DUMMY==NULL){
_SUB_DEBUGMODE_FLOAT_DUMMY=(long double*)mem_static_malloc(32);
*_SUB_DEBUGMODE_FLOAT_DUMMY=0;
}
byte_element_struct *byte_element_4908=NULL;
if (!byte_element_4908){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4908=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4908=(byte_element_struct*)mem_static_malloc(12);
}
ptrszint *_SUB_DEBUGMODE_OFFSET_DUMMY=NULL;
if(_SUB_DEBUGMODE_OFFSET_DUMMY==NULL){
_SUB_DEBUGMODE_OFFSET_DUMMY=(ptrszint*)mem_static_malloc(8);
*_SUB_DEBUGMODE_OFFSET_DUMMY=0;
}
byte_element_struct *byte_element_4909=NULL;
if (!byte_element_4909){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4909=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4909=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4910=NULL;
if (!byte_element_4910){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4910=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4910=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4911=NULL;
if (!byte_element_4911){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4911=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4911=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4912=NULL;
if (!byte_element_4912){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4912=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4912=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4913=NULL;
if (!byte_element_4913){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4913=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4913=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass4915;
int32 pass4916;
int32 pass4917;
int32 pass4918;
int32 pass4919;
int32 pass4920;
int32 pass4921;
int32 *_SUB_DEBUGMODE_LONG_TEMPELEMENT=NULL;
if(_SUB_DEBUGMODE_LONG_TEMPELEMENT==NULL){
_SUB_DEBUGMODE_LONG_TEMPELEMENT=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_TEMPELEMENT=0;
}
int32 pass4922;
int32 pass4923;
int32 pass4924;
int32 pass4925;
int32 pass4926;
int32 pass4927;
int32 pass4928;
byte_element_struct *byte_element_4929=NULL;
if (!byte_element_4929){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4929=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4929=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4930=NULL;
if (!byte_element_4930){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4930=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4930=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4931=NULL;
if (!byte_element_4931){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4931=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4931=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4932=NULL;
if (!byte_element_4932){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4932=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4932=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4933=NULL;
if (!byte_element_4933){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4933=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4933=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4937=NULL;
if (!byte_element_4937){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4937=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4937=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass4938;
int32 pass4939;
int32 pass4940;
int8 pass4941;
byte_element_struct *byte_element_4942=NULL;
if (!byte_element_4942){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4942=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4942=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass4943;
int32 pass4944;
int32 pass4945;
int8 pass4946;
int32 pass4947;
int32 pass4948;
int32 pass4949;
int32 pass4950;
int32 pass4951;
int32 pass4952;
int32 pass4953;
int32 pass4954;
int32 pass4955;
int32 pass4956;
int32 pass4957;
int8 pass4958;
int32 pass4959;
int32 pass4960;
int32 pass4961;
int32 *_SUB_DEBUGMODE_LONG_BYPASSREQUESTCALLSTACK=NULL;
if(_SUB_DEBUGMODE_LONG_BYPASSREQUESTCALLSTACK==NULL){
_SUB_DEBUGMODE_LONG_BYPASSREQUESTCALLSTACK=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_BYPASSREQUESTCALLSTACK=0;
}
int8 pass4962;
int32 pass4963;
int32 pass4964;
int32 pass4965;
int32 pass4967;
int32 pass4968;
int32 pass4969;
int32 *_SUB_DEBUGMODE_LONG_RETVAL=NULL;
if(_SUB_DEBUGMODE_LONG_RETVAL==NULL){
_SUB_DEBUGMODE_LONG_RETVAL=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_RETVAL=0;
}
int32 pass4971;
int32 pass4972;
int32 pass4973;
int32 pass4974;
int32 pass4975;
int32 pass4976;
int32 pass4978;
int32 pass4979;
int32 pass4980;
int8 pass4981;
int32 pass4985;
int32 pass4986;
int32 pass4987;
int32 pass4988;
qbs *_SUB_DEBUGMODE_STRING_TEMPELEMENTOFFSET=NULL;
if (!_SUB_DEBUGMODE_STRING_TEMPELEMENTOFFSET)_SUB_DEBUGMODE_STRING_TEMPELEMENTOFFSET=qbs_new(0,0);
int32 pass4989;
int32 pass4990;
byte_element_struct *byte_element_4992=NULL;
if (!byte_element_4992){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4992=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4992=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_SUB_DEBUGMODE_LONG_J=NULL;
if(_SUB_DEBUGMODE_LONG_J==NULL){
_SUB_DEBUGMODE_LONG_J=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_J=0;
}
int32 *_SUB_DEBUGMODE_LONG_L=NULL;
if(_SUB_DEBUGMODE_LONG_L==NULL){
_SUB_DEBUGMODE_LONG_L=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_L=0;
}
int32 pass4994;
int32 pass4995;
int32 pass4996;
int32 pass4997;
int32 pass4998;
int32 pass4999;
int32 pass5000;
byte_element_struct *byte_element_5001=NULL;
if (!byte_element_5001){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5001=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5001=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass5002;
qbs *_SUB_DEBUGMODE_STRING_TEMP2=NULL;
if (!_SUB_DEBUGMODE_STRING_TEMP2)_SUB_DEBUGMODE_STRING_TEMP2=qbs_new(0,0);
int32 pass5004;
int32 pass5005;
int32 pass5006;
int32 pass5007;
int32 pass5008;
int32 pass5009;
byte_element_struct *byte_element_5010=NULL;
if (!byte_element_5010){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5010=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5010=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_SUB_DEBUGMODE_STRING_RECVDATA=NULL;
if (!_SUB_DEBUGMODE_STRING_RECVDATA)_SUB_DEBUGMODE_STRING_RECVDATA=qbs_new(0,0);
int8 pass5012;
int32 pass5013;
int32 pass5014;
int32 pass5015;
byte_element_struct *byte_element_5016=NULL;
if (!byte_element_5016){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5016=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5016=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass5017;
int32 pass5018;
int32 pass5020;
int32 pass5021;
int32 pass5022;
int8 pass5023;
int32 pass5024;
int32 pass5025;
int32 pass5026;
int32 pass5027;
int32 pass5028;
int32 pass5029;
int8 pass5030;
int32 pass5031;
int32 pass5032;
int32 pass5035;
int32 pass5036;
int32 pass5037;
int32 pass5038;
int32 pass5039;
byte_element_struct *byte_element_5041=NULL;
if (!byte_element_5041){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5041=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5041=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_SUB_DEBUGMODE_LONG_CMDSIZE=NULL;
if(_SUB_DEBUGMODE_LONG_CMDSIZE==NULL){
_SUB_DEBUGMODE_LONG_CMDSIZE=(int32*)mem_static_malloc(4);
*_SUB_DEBUGMODE_LONG_CMDSIZE=0;
}
byte_element_struct *byte_element_5042=NULL;
if (!byte_element_5042){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5042=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5042=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5043=NULL;
if (!byte_element_5043){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5043=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5043=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5044=NULL;
if (!byte_element_5044){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5044=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5044=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass5045;
int32 pass5046;
int32 pass5047;
int32 pass5048;
int32 pass5049;
byte_element_struct *byte_element_5051=NULL;
if (!byte_element_5051){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5051=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5051=(byte_element_struct*)mem_static_malloc(12);
}
int8 pass5052;
int64 fornext_value5054;
int64 fornext_finalvalue5054;
int64 fornext_step5054;
uint8 fornext_step_negative5054;
byte_element_struct *byte_element_5056=NULL;
if (!byte_element_5056){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5056=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5056=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5057=NULL;
if (!byte_element_5057){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5057=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5057=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5058=NULL;
if (!byte_element_5058){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5058=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5058=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5059=NULL;
if (!byte_element_5059){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5059=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5059=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5060=NULL;
if (!byte_element_5060){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5060=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5060=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5061=NULL;
if (!byte_element_5061){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5061=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5061=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5062=NULL;
if (!byte_element_5062){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5062=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5062=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5063=NULL;
if (!byte_element_5063){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5063=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5063=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5064=NULL;
if (!byte_element_5064){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5064=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5064=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5065=NULL;
if (!byte_element_5065){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5065=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5065=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5066=NULL;
if (!byte_element_5066){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5066=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5066=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5067=NULL;
if (!byte_element_5067){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5067=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5067=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5068=NULL;
if (!byte_element_5068){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5068=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5068=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -1,234 +1,5 @@
qbs*oldstr4983=NULL;
if(_SUB_SHOWVWATCHPANEL_STRING_CURRENTSCOPE->tmp||_SUB_SHOWVWATCHPANEL_STRING_CURRENTSCOPE->fixed||_SUB_SHOWVWATCHPANEL_STRING_CURRENTSCOPE->readonly){
oldstr4983=_SUB_SHOWVWATCHPANEL_STRING_CURRENTSCOPE;
if (oldstr4983->cmem_descriptor){
_SUB_SHOWVWATCHPANEL_STRING_CURRENTSCOPE=qbs_new_cmem(oldstr4983->len,0);
}else{
_SUB_SHOWVWATCHPANEL_STRING_CURRENTSCOPE=qbs_new(oldstr4983->len,0);
float *_FUNC_MAP_SINGLE_MAP=NULL;
if(_FUNC_MAP_SINGLE_MAP==NULL){
_FUNC_MAP_SINGLE_MAP=(float*)mem_static_malloc(4);
*_FUNC_MAP_SINGLE_MAP=0;
}
memcpy(_SUB_SHOWVWATCHPANEL_STRING_CURRENTSCOPE->chr,oldstr4983->chr,oldstr4983->len);
}
int32 *_SUB_SHOWVWATCHPANEL_LONG_FG=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_FG==NULL){
_SUB_SHOWVWATCHPANEL_LONG_FG=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_FG=0;
}
int32 *_SUB_SHOWVWATCHPANEL_LONG_BG=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_BG==NULL){
_SUB_SHOWVWATCHPANEL_LONG_BG=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_BG=0;
}
qbs *_SUB_SHOWVWATCHPANEL_STRING_TITLE=NULL;
if (!_SUB_SHOWVWATCHPANEL_STRING_TITLE)_SUB_SHOWVWATCHPANEL_STRING_TITLE=qbs_new(0,0);
byte_element_struct *byte_element_4984=NULL;
if (!byte_element_4984){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4984=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4984=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4985=NULL;
if (!byte_element_4985){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4985=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4985=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_4986=NULL;
if (!byte_element_4986){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4986=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4986=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_SUB_SHOWVWATCHPANEL_LONG_VWATCHPANELLIMIT=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_VWATCHPANELLIMIT==NULL){
_SUB_SHOWVWATCHPANEL_LONG_VWATCHPANELLIMIT=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_VWATCHPANELLIMIT=0;
}
int32 pass4987;
int32 pass4988;
int32 pass4989;
int32 pass4990;
int32 *_SUB_SHOWVWATCHPANEL_LONG_X=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_X==NULL){
_SUB_SHOWVWATCHPANEL_LONG_X=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_X=0;
}
byte_element_struct *byte_element_4991=NULL;
if (!byte_element_4991){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_4991=(byte_element_struct*)(mem_static_pointer-12); else byte_element_4991=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_SUB_SHOWVWATCHPANEL_LONG_Y=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_Y==NULL){
_SUB_SHOWVWATCHPANEL_LONG_Y=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_Y=0;
}
int32 *_SUB_SHOWVWATCHPANEL_LONG_I=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_I==NULL){
_SUB_SHOWVWATCHPANEL_LONG_I=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_I=0;
}
int32 *_SUB_SHOWVWATCHPANEL_LONG_SHADOWX=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_SHADOWX==NULL){
_SUB_SHOWVWATCHPANEL_LONG_SHADOWX=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_SHADOWX=0;
}
int32 *_SUB_SHOWVWATCHPANEL_LONG_SHADOWY=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_SHADOWY==NULL){
_SUB_SHOWVWATCHPANEL_LONG_SHADOWY=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_SHADOWY=0;
}
int32 *_SUB_SHOWVWATCHPANEL_LONG_SHADOWLENGTH=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_SHADOWLENGTH==NULL){
_SUB_SHOWVWATCHPANEL_LONG_SHADOWLENGTH=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_SHADOWLENGTH=0;
}
qbs *_SUB_SHOWVWATCHPANEL_STRING_TEMP=NULL;
if (!_SUB_SHOWVWATCHPANEL_STRING_TEMP)_SUB_SHOWVWATCHPANEL_STRING_TEMP=qbs_new(0,0);
int32 pass4992;
int32 *_SUB_SHOWVWATCHPANEL_LONG_ACTUALLONGESTVARNAME=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_ACTUALLONGESTVARNAME==NULL){
_SUB_SHOWVWATCHPANEL_LONG_ACTUALLONGESTVARNAME=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_ACTUALLONGESTVARNAME=0;
}
int32 *_SUB_SHOWVWATCHPANEL_LONG_DISPLAYFORMATBUTTON=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_DISPLAYFORMATBUTTON==NULL){
_SUB_SHOWVWATCHPANEL_LONG_DISPLAYFORMATBUTTON=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_DISPLAYFORMATBUTTON=0;
}
qbs *_SUB_SHOWVWATCHPANEL_STRING_TEMP2=NULL;
if (!_SUB_SHOWVWATCHPANEL_STRING_TEMP2)_SUB_SHOWVWATCHPANEL_STRING_TEMP2=qbs_new(0,0);
int32 pass4994;
int32 *_SUB_SHOWVWATCHPANEL_LONG_TEMPINDEX=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_TEMPINDEX==NULL){
_SUB_SHOWVWATCHPANEL_LONG_TEMPINDEX=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_TEMPINDEX=0;
}
int32 pass4995;
int32 *_SUB_SHOWVWATCHPANEL_LONG_TEMPTOTALARRAYINDEXES=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_TEMPTOTALARRAYINDEXES==NULL){
_SUB_SHOWVWATCHPANEL_LONG_TEMPTOTALARRAYINDEXES=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_TEMPTOTALARRAYINDEXES=0;
}
int32 pass4996;
qbs *_SUB_SHOWVWATCHPANEL_STRING_TEMPARRAYINDEXES=NULL;
if (!_SUB_SHOWVWATCHPANEL_STRING_TEMPARRAYINDEXES)_SUB_SHOWVWATCHPANEL_STRING_TEMPARRAYINDEXES=qbs_new(0,0);
int32 *_SUB_SHOWVWATCHPANEL_LONG_TEMPELEMENT=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_TEMPELEMENT==NULL){
_SUB_SHOWVWATCHPANEL_LONG_TEMPELEMENT=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_TEMPELEMENT=0;
}
int32 pass4997;
int32 *_SUB_SHOWVWATCHPANEL_LONG_TEMPELEMENTOFFSET=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_TEMPELEMENTOFFSET==NULL){
_SUB_SHOWVWATCHPANEL_LONG_TEMPELEMENTOFFSET=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_TEMPELEMENTOFFSET=0;
}
int32 pass4998;
int32 *_SUB_SHOWVWATCHPANEL_LONG_TEMPSTORAGE=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_TEMPSTORAGE==NULL){
_SUB_SHOWVWATCHPANEL_LONG_TEMPSTORAGE=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_TEMPSTORAGE=0;
}
int32 pass4999;
qbs *_SUB_SHOWVWATCHPANEL_STRING_THISNAME=NULL;
if (!_SUB_SHOWVWATCHPANEL_STRING_THISNAME)_SUB_SHOWVWATCHPANEL_STRING_THISNAME=qbs_new(0,0);
byte_element_struct *byte_element_5000=NULL;
if (!byte_element_5000){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5000=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5000=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_SUB_SHOWVWATCHPANEL_LONG_J=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_J==NULL){
_SUB_SHOWVWATCHPANEL_LONG_J=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_J=0;
}
int64 fornext_value5002;
int64 fornext_finalvalue5002;
int64 fornext_step5002;
uint8 fornext_step_negative5002;
qbs *_SUB_SHOWVWATCHPANEL_STRING_TEMPELEMENTLIST=NULL;
if (!_SUB_SHOWVWATCHPANEL_STRING_TEMPELEMENTLIST)_SUB_SHOWVWATCHPANEL_STRING_TEMPELEMENTLIST=qbs_new(0,0);
byte_element_struct *byte_element_5003=NULL;
if (!byte_element_5003){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5003=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5003=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5004=NULL;
if (!byte_element_5004){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5004=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5004=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_SUB_SHOWVWATCHPANEL_STRING_ITEM=NULL;
if (!_SUB_SHOWVWATCHPANEL_STRING_ITEM)_SUB_SHOWVWATCHPANEL_STRING_ITEM=qbs_new(0,0);
byte_element_struct *byte_element_5005=NULL;
if (!byte_element_5005){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5005=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5005=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_SUB_SHOWVWATCHPANEL_STRING_TEMPVARTYPE=NULL;
if (!_SUB_SHOWVWATCHPANEL_STRING_TEMPVARTYPE)_SUB_SHOWVWATCHPANEL_STRING_TEMPVARTYPE=qbs_new(0,0);
int32 *_SUB_SHOWVWATCHPANEL_LONG_THISISASTRING=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_THISISASTRING==NULL){
_SUB_SHOWVWATCHPANEL_LONG_THISISASTRING=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_THISISASTRING=0;
}
qbs *_SUB_SHOWVWATCHPANEL_STRING_TEMPVALUE=NULL;
if (!_SUB_SHOWVWATCHPANEL_STRING_TEMPVALUE)_SUB_SHOWVWATCHPANEL_STRING_TEMPVALUE=qbs_new(0,0);
byte_element_struct *byte_element_5006=NULL;
if (!byte_element_5006){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5006=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5006=(byte_element_struct*)mem_static_malloc(12);
}
static int32 sc_5007;
byte_element_struct *byte_element_5008=NULL;
if (!byte_element_5008){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5008=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5008=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5009=NULL;
if (!byte_element_5009){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5009=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5009=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5010=NULL;
if (!byte_element_5010){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5010=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5010=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5012=NULL;
if (!byte_element_5012){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5012=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5012=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_SUB_SHOWVWATCHPANEL_LONG_K=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_K==NULL){
_SUB_SHOWVWATCHPANEL_LONG_K=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_K=0;
}
qbs *_SUB_SHOWVWATCHPANEL_STRING_TEMP3=NULL;
if (!_SUB_SHOWVWATCHPANEL_STRING_TEMP3)_SUB_SHOWVWATCHPANEL_STRING_TEMP3=qbs_new(0,0);
qbs *_SUB_SHOWVWATCHPANEL_STRING_CONDITION=NULL;
if (!_SUB_SHOWVWATCHPANEL_STRING_CONDITION)_SUB_SHOWVWATCHPANEL_STRING_CONDITION=qbs_new(0,0);
byte_element_struct *byte_element_5013=NULL;
if (!byte_element_5013){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5013=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5013=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5014=NULL;
if (!byte_element_5014){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5014=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5014=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5015=NULL;
if (!byte_element_5015){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5015=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5015=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5016=NULL;
if (!byte_element_5016){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5016=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5016=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5017=NULL;
if (!byte_element_5017){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5017=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5017=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_SUB_SHOWVWATCHPANEL_LONG_X2=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_X2==NULL){
_SUB_SHOWVWATCHPANEL_LONG_X2=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_X2=0;
}
int64 fornext_value5019;
int64 fornext_finalvalue5019;
int64 fornext_step5019;
uint8 fornext_step_negative5019;
int32 pass5020;
int32 pass5021;
int32 pass5022;
int32 pass5023;
int32 pass5024;
int32 pass5025;
int32 pass5026;
int32 pass5027;
int32 pass5028;
int32 pass5029;

View file

@ -1,48 +1,234 @@
int32 *_FUNC_MULTISEARCH_LONG_MULTISEARCH=NULL;
if(_FUNC_MULTISEARCH_LONG_MULTISEARCH==NULL){
_FUNC_MULTISEARCH_LONG_MULTISEARCH=(int32*)mem_static_malloc(4);
*_FUNC_MULTISEARCH_LONG_MULTISEARCH=0;
}
qbs*oldstr5030=NULL;
if(_FUNC_MULTISEARCH_STRING___FULLTEXT->tmp||_FUNC_MULTISEARCH_STRING___FULLTEXT->fixed||_FUNC_MULTISEARCH_STRING___FULLTEXT->readonly){
oldstr5030=_FUNC_MULTISEARCH_STRING___FULLTEXT;
if (oldstr5030->cmem_descriptor){
_FUNC_MULTISEARCH_STRING___FULLTEXT=qbs_new_cmem(oldstr5030->len,0);
qbs*oldstr5069=NULL;
if(_SUB_SHOWVWATCHPANEL_STRING_CURRENTSCOPE->tmp||_SUB_SHOWVWATCHPANEL_STRING_CURRENTSCOPE->fixed||_SUB_SHOWVWATCHPANEL_STRING_CURRENTSCOPE->readonly){
oldstr5069=_SUB_SHOWVWATCHPANEL_STRING_CURRENTSCOPE;
if (oldstr5069->cmem_descriptor){
_SUB_SHOWVWATCHPANEL_STRING_CURRENTSCOPE=qbs_new_cmem(oldstr5069->len,0);
}else{
_FUNC_MULTISEARCH_STRING___FULLTEXT=qbs_new(oldstr5030->len,0);
_SUB_SHOWVWATCHPANEL_STRING_CURRENTSCOPE=qbs_new(oldstr5069->len,0);
}
memcpy(_FUNC_MULTISEARCH_STRING___FULLTEXT->chr,oldstr5030->chr,oldstr5030->len);
memcpy(_SUB_SHOWVWATCHPANEL_STRING_CURRENTSCOPE->chr,oldstr5069->chr,oldstr5069->len);
}
qbs*oldstr5031=NULL;
if(_FUNC_MULTISEARCH_STRING___SEARCHSTRING->tmp||_FUNC_MULTISEARCH_STRING___SEARCHSTRING->fixed||_FUNC_MULTISEARCH_STRING___SEARCHSTRING->readonly){
oldstr5031=_FUNC_MULTISEARCH_STRING___SEARCHSTRING;
if (oldstr5031->cmem_descriptor){
_FUNC_MULTISEARCH_STRING___SEARCHSTRING=qbs_new_cmem(oldstr5031->len,0);
}else{
_FUNC_MULTISEARCH_STRING___SEARCHSTRING=qbs_new(oldstr5031->len,0);
int32 *_SUB_SHOWVWATCHPANEL_LONG_FG=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_FG==NULL){
_SUB_SHOWVWATCHPANEL_LONG_FG=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_FG=0;
}
memcpy(_FUNC_MULTISEARCH_STRING___SEARCHSTRING->chr,oldstr5031->chr,oldstr5031->len);
int32 *_SUB_SHOWVWATCHPANEL_LONG_BG=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_BG==NULL){
_SUB_SHOWVWATCHPANEL_LONG_BG=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_BG=0;
}
qbs *_FUNC_MULTISEARCH_STRING_FULLTEXT=NULL;
if (!_FUNC_MULTISEARCH_STRING_FULLTEXT)_FUNC_MULTISEARCH_STRING_FULLTEXT=qbs_new(0,0);
qbs *_FUNC_MULTISEARCH_STRING_SEARCHSTRING=NULL;
if (!_FUNC_MULTISEARCH_STRING_SEARCHSTRING)_FUNC_MULTISEARCH_STRING_SEARCHSTRING=qbs_new(0,0);
byte_element_struct *byte_element_5032=NULL;
if (!byte_element_5032){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5032=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5032=(byte_element_struct*)mem_static_malloc(12);
qbs *_SUB_SHOWVWATCHPANEL_STRING_TITLE=NULL;
if (!_SUB_SHOWVWATCHPANEL_STRING_TITLE)_SUB_SHOWVWATCHPANEL_STRING_TITLE=qbs_new(0,0);
byte_element_struct *byte_element_5070=NULL;
if (!byte_element_5070){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5070=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5070=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5033=NULL;
if (!byte_element_5033){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5033=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5033=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_5071=NULL;
if (!byte_element_5071){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5071=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5071=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_MULTISEARCH_LONG_FINDPLUS=NULL;
if(_FUNC_MULTISEARCH_LONG_FINDPLUS==NULL){
_FUNC_MULTISEARCH_LONG_FINDPLUS=(int32*)mem_static_malloc(4);
*_FUNC_MULTISEARCH_LONG_FINDPLUS=0;
byte_element_struct *byte_element_5072=NULL;
if (!byte_element_5072){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5072=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5072=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_MULTISEARCH_STRING_THISTERM=NULL;
if (!_FUNC_MULTISEARCH_STRING_THISTERM)_FUNC_MULTISEARCH_STRING_THISTERM=qbs_new(0,0);
byte_element_struct *byte_element_5035=NULL;
if (!byte_element_5035){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5035=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5035=(byte_element_struct*)mem_static_malloc(12);
int32 *_SUB_SHOWVWATCHPANEL_LONG_VWATCHPANELLIMIT=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_VWATCHPANELLIMIT==NULL){
_SUB_SHOWVWATCHPANEL_LONG_VWATCHPANELLIMIT=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_VWATCHPANELLIMIT=0;
}
int32 pass5073;
int32 pass5074;
int32 pass5075;
int32 pass5076;
int32 *_SUB_SHOWVWATCHPANEL_LONG_X=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_X==NULL){
_SUB_SHOWVWATCHPANEL_LONG_X=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_X=0;
}
byte_element_struct *byte_element_5077=NULL;
if (!byte_element_5077){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5077=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5077=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_SUB_SHOWVWATCHPANEL_LONG_Y=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_Y==NULL){
_SUB_SHOWVWATCHPANEL_LONG_Y=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_Y=0;
}
int32 *_SUB_SHOWVWATCHPANEL_LONG_I=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_I==NULL){
_SUB_SHOWVWATCHPANEL_LONG_I=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_I=0;
}
int32 *_SUB_SHOWVWATCHPANEL_LONG_SHADOWX=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_SHADOWX==NULL){
_SUB_SHOWVWATCHPANEL_LONG_SHADOWX=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_SHADOWX=0;
}
int32 *_SUB_SHOWVWATCHPANEL_LONG_SHADOWY=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_SHADOWY==NULL){
_SUB_SHOWVWATCHPANEL_LONG_SHADOWY=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_SHADOWY=0;
}
int32 *_SUB_SHOWVWATCHPANEL_LONG_SHADOWLENGTH=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_SHADOWLENGTH==NULL){
_SUB_SHOWVWATCHPANEL_LONG_SHADOWLENGTH=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_SHADOWLENGTH=0;
}
qbs *_SUB_SHOWVWATCHPANEL_STRING_TEMP=NULL;
if (!_SUB_SHOWVWATCHPANEL_STRING_TEMP)_SUB_SHOWVWATCHPANEL_STRING_TEMP=qbs_new(0,0);
int32 pass5078;
int32 *_SUB_SHOWVWATCHPANEL_LONG_ACTUALLONGESTVARNAME=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_ACTUALLONGESTVARNAME==NULL){
_SUB_SHOWVWATCHPANEL_LONG_ACTUALLONGESTVARNAME=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_ACTUALLONGESTVARNAME=0;
}
int32 *_SUB_SHOWVWATCHPANEL_LONG_DISPLAYFORMATBUTTON=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_DISPLAYFORMATBUTTON==NULL){
_SUB_SHOWVWATCHPANEL_LONG_DISPLAYFORMATBUTTON=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_DISPLAYFORMATBUTTON=0;
}
qbs *_SUB_SHOWVWATCHPANEL_STRING_TEMP2=NULL;
if (!_SUB_SHOWVWATCHPANEL_STRING_TEMP2)_SUB_SHOWVWATCHPANEL_STRING_TEMP2=qbs_new(0,0);
int32 pass5080;
int32 *_SUB_SHOWVWATCHPANEL_LONG_TEMPINDEX=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_TEMPINDEX==NULL){
_SUB_SHOWVWATCHPANEL_LONG_TEMPINDEX=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_TEMPINDEX=0;
}
int32 pass5081;
int32 *_SUB_SHOWVWATCHPANEL_LONG_TEMPTOTALARRAYINDEXES=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_TEMPTOTALARRAYINDEXES==NULL){
_SUB_SHOWVWATCHPANEL_LONG_TEMPTOTALARRAYINDEXES=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_TEMPTOTALARRAYINDEXES=0;
}
int32 pass5082;
qbs *_SUB_SHOWVWATCHPANEL_STRING_TEMPARRAYINDEXES=NULL;
if (!_SUB_SHOWVWATCHPANEL_STRING_TEMPARRAYINDEXES)_SUB_SHOWVWATCHPANEL_STRING_TEMPARRAYINDEXES=qbs_new(0,0);
int32 *_SUB_SHOWVWATCHPANEL_LONG_TEMPELEMENT=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_TEMPELEMENT==NULL){
_SUB_SHOWVWATCHPANEL_LONG_TEMPELEMENT=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_TEMPELEMENT=0;
}
int32 pass5083;
int32 *_SUB_SHOWVWATCHPANEL_LONG_TEMPELEMENTOFFSET=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_TEMPELEMENTOFFSET==NULL){
_SUB_SHOWVWATCHPANEL_LONG_TEMPELEMENTOFFSET=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_TEMPELEMENTOFFSET=0;
}
int32 pass5084;
int32 *_SUB_SHOWVWATCHPANEL_LONG_TEMPSTORAGE=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_TEMPSTORAGE==NULL){
_SUB_SHOWVWATCHPANEL_LONG_TEMPSTORAGE=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_TEMPSTORAGE=0;
}
int32 pass5085;
qbs *_SUB_SHOWVWATCHPANEL_STRING_THISNAME=NULL;
if (!_SUB_SHOWVWATCHPANEL_STRING_THISNAME)_SUB_SHOWVWATCHPANEL_STRING_THISNAME=qbs_new(0,0);
byte_element_struct *byte_element_5086=NULL;
if (!byte_element_5086){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5086=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5086=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_SUB_SHOWVWATCHPANEL_LONG_J=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_J==NULL){
_SUB_SHOWVWATCHPANEL_LONG_J=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_J=0;
}
int64 fornext_value5088;
int64 fornext_finalvalue5088;
int64 fornext_step5088;
uint8 fornext_step_negative5088;
qbs *_SUB_SHOWVWATCHPANEL_STRING_TEMPELEMENTLIST=NULL;
if (!_SUB_SHOWVWATCHPANEL_STRING_TEMPELEMENTLIST)_SUB_SHOWVWATCHPANEL_STRING_TEMPELEMENTLIST=qbs_new(0,0);
byte_element_struct *byte_element_5089=NULL;
if (!byte_element_5089){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5089=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5089=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5090=NULL;
if (!byte_element_5090){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5090=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5090=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_SUB_SHOWVWATCHPANEL_STRING_ITEM=NULL;
if (!_SUB_SHOWVWATCHPANEL_STRING_ITEM)_SUB_SHOWVWATCHPANEL_STRING_ITEM=qbs_new(0,0);
byte_element_struct *byte_element_5091=NULL;
if (!byte_element_5091){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5091=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5091=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_SUB_SHOWVWATCHPANEL_STRING_TEMPVARTYPE=NULL;
if (!_SUB_SHOWVWATCHPANEL_STRING_TEMPVARTYPE)_SUB_SHOWVWATCHPANEL_STRING_TEMPVARTYPE=qbs_new(0,0);
int32 *_SUB_SHOWVWATCHPANEL_LONG_THISISASTRING=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_THISISASTRING==NULL){
_SUB_SHOWVWATCHPANEL_LONG_THISISASTRING=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_THISISASTRING=0;
}
qbs *_SUB_SHOWVWATCHPANEL_STRING_TEMPVALUE=NULL;
if (!_SUB_SHOWVWATCHPANEL_STRING_TEMPVALUE)_SUB_SHOWVWATCHPANEL_STRING_TEMPVALUE=qbs_new(0,0);
byte_element_struct *byte_element_5092=NULL;
if (!byte_element_5092){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5092=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5092=(byte_element_struct*)mem_static_malloc(12);
}
static int32 sc_5093;
byte_element_struct *byte_element_5094=NULL;
if (!byte_element_5094){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5094=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5094=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5095=NULL;
if (!byte_element_5095){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5095=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5095=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5096=NULL;
if (!byte_element_5096){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5096=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5096=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5098=NULL;
if (!byte_element_5098){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5098=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5098=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_SUB_SHOWVWATCHPANEL_LONG_K=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_K==NULL){
_SUB_SHOWVWATCHPANEL_LONG_K=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_K=0;
}
qbs *_SUB_SHOWVWATCHPANEL_STRING_TEMP3=NULL;
if (!_SUB_SHOWVWATCHPANEL_STRING_TEMP3)_SUB_SHOWVWATCHPANEL_STRING_TEMP3=qbs_new(0,0);
qbs *_SUB_SHOWVWATCHPANEL_STRING_CONDITION=NULL;
if (!_SUB_SHOWVWATCHPANEL_STRING_CONDITION)_SUB_SHOWVWATCHPANEL_STRING_CONDITION=qbs_new(0,0);
byte_element_struct *byte_element_5099=NULL;
if (!byte_element_5099){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5099=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5099=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5100=NULL;
if (!byte_element_5100){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5100=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5100=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5101=NULL;
if (!byte_element_5101){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5101=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5101=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5102=NULL;
if (!byte_element_5102){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5102=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5102=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5103=NULL;
if (!byte_element_5103){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5103=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5103=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_SUB_SHOWVWATCHPANEL_LONG_X2=NULL;
if(_SUB_SHOWVWATCHPANEL_LONG_X2==NULL){
_SUB_SHOWVWATCHPANEL_LONG_X2=(int32*)mem_static_malloc(4);
*_SUB_SHOWVWATCHPANEL_LONG_X2=0;
}
int64 fornext_value5105;
int64 fornext_finalvalue5105;
int64 fornext_step5105;
uint8 fornext_step_negative5105;
int32 pass5106;
int32 pass5107;
int32 pass5108;
int32 pass5109;
int32 pass5110;
int32 pass5111;
int32 pass5112;
int32 pass5113;
int32 pass5114;
int32 pass5115;

View file

@ -1,706 +1,48 @@
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_IDEVARIABLEWATCHBOX=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_IDEVARIABLEWATCHBOX)_FUNC_IDEVARIABLEWATCHBOX_STRING_IDEVARIABLEWATCHBOX=qbs_new(0,0);
qbs*oldstr5036=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_STRING_CURRENTSCOPE->tmp||_FUNC_IDEVARIABLEWATCHBOX_STRING_CURRENTSCOPE->fixed||_FUNC_IDEVARIABLEWATCHBOX_STRING_CURRENTSCOPE->readonly){
oldstr5036=_FUNC_IDEVARIABLEWATCHBOX_STRING_CURRENTSCOPE;
if (oldstr5036->cmem_descriptor){
_FUNC_IDEVARIABLEWATCHBOX_STRING_CURRENTSCOPE=qbs_new_cmem(oldstr5036->len,0);
int32 *_FUNC_MULTISEARCH_LONG_MULTISEARCH=NULL;
if(_FUNC_MULTISEARCH_LONG_MULTISEARCH==NULL){
_FUNC_MULTISEARCH_LONG_MULTISEARCH=(int32*)mem_static_malloc(4);
*_FUNC_MULTISEARCH_LONG_MULTISEARCH=0;
}
qbs*oldstr5116=NULL;
if(_FUNC_MULTISEARCH_STRING___FULLTEXT->tmp||_FUNC_MULTISEARCH_STRING___FULLTEXT->fixed||_FUNC_MULTISEARCH_STRING___FULLTEXT->readonly){
oldstr5116=_FUNC_MULTISEARCH_STRING___FULLTEXT;
if (oldstr5116->cmem_descriptor){
_FUNC_MULTISEARCH_STRING___FULLTEXT=qbs_new_cmem(oldstr5116->len,0);
}else{
_FUNC_IDEVARIABLEWATCHBOX_STRING_CURRENTSCOPE=qbs_new(oldstr5036->len,0);
_FUNC_MULTISEARCH_STRING___FULLTEXT=qbs_new(oldstr5116->len,0);
}
memcpy(_FUNC_IDEVARIABLEWATCHBOX_STRING_CURRENTSCOPE->chr,oldstr5036->chr,oldstr5036->len);
memcpy(_FUNC_MULTISEARCH_STRING___FULLTEXT->chr,oldstr5116->chr,oldstr5116->len);
}
qbs*oldstr5037=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER->tmp||_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER->fixed||_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER->readonly){
oldstr5037=_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER;
if (oldstr5037->cmem_descriptor){
_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER=qbs_new_cmem(oldstr5037->len,0);
qbs*oldstr5117=NULL;
if(_FUNC_MULTISEARCH_STRING___SEARCHSTRING->tmp||_FUNC_MULTISEARCH_STRING___SEARCHSTRING->fixed||_FUNC_MULTISEARCH_STRING___SEARCHSTRING->readonly){
oldstr5117=_FUNC_MULTISEARCH_STRING___SEARCHSTRING;
if (oldstr5117->cmem_descriptor){
_FUNC_MULTISEARCH_STRING___SEARCHSTRING=qbs_new_cmem(oldstr5117->len,0);
}else{
_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER=qbs_new(oldstr5037->len,0);
_FUNC_MULTISEARCH_STRING___SEARCHSTRING=qbs_new(oldstr5117->len,0);
}
memcpy(_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER->chr,oldstr5037->chr,oldstr5037->len);
memcpy(_FUNC_MULTISEARCH_STRING___SEARCHSTRING->chr,oldstr5117->chr,oldstr5117->len);
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_FOCUS=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_FOCUS==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_FOCUS=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_FOCUS=0;
qbs *_FUNC_MULTISEARCH_STRING_FULLTEXT=NULL;
if (!_FUNC_MULTISEARCH_STRING_FULLTEXT)_FUNC_MULTISEARCH_STRING_FULLTEXT=qbs_new(0,0);
qbs *_FUNC_MULTISEARCH_STRING_SEARCHSTRING=NULL;
if (!_FUNC_MULTISEARCH_STRING_SEARCHSTRING)_FUNC_MULTISEARCH_STRING_SEARCHSTRING=qbs_new(0,0);
byte_element_struct *byte_element_5118=NULL;
if (!byte_element_5118){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5118=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5118=(byte_element_struct*)mem_static_malloc(12);
}
void *_FUNC_IDEVARIABLEWATCHBOX_UDT_P=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_UDT_P==NULL){
_FUNC_IDEVARIABLEWATCHBOX_UDT_P=(void*)mem_static_malloc(20);
memset(_FUNC_IDEVARIABLEWATCHBOX_UDT_P,0,20);
byte_element_struct *byte_element_5119=NULL;
if (!byte_element_5119){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5119=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5119=(byte_element_struct*)mem_static_malloc(12);
}
ptrszint *_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_O=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_O){
_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_O=(ptrszint*)mem_static_malloc(9*ptrsz);
new_mem_lock();
mem_lock_tmp->type=4;
((ptrszint*)_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_O)[8]=(ptrszint)mem_lock_tmp;
_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_O[2]=0;
_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_O[4]=2147483647;
_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_O[5]=0;
_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_O[6]=0;
_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_O[0]=(ptrszint)nothingvalue;
int32 *_FUNC_MULTISEARCH_LONG_FINDPLUS=NULL;
if(_FUNC_MULTISEARCH_LONG_FINDPLUS==NULL){
_FUNC_MULTISEARCH_LONG_FINDPLUS=(int32*)mem_static_malloc(4);
*_FUNC_MULTISEARCH_LONG_FINDPLUS=0;
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING1_SEP=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_STRING1_SEP==NULL){
_FUNC_IDEVARIABLEWATCHBOX_STRING1_SEP=qbs_new_fixed((uint8*)mem_static_malloc(1),1,0);
memset(_FUNC_IDEVARIABLEWATCHBOX_STRING1_SEP->chr,0,1);
qbs *_FUNC_MULTISEARCH_STRING_THISTERM=NULL;
if (!_FUNC_MULTISEARCH_STRING_THISTERM)_FUNC_MULTISEARCH_STRING_THISTERM=qbs_new(0,0);
byte_element_struct *byte_element_5121=NULL;
if (!byte_element_5121){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5121=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5121=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_MAINMODULE=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_MAINMODULE)_FUNC_IDEVARIABLEWATCHBOX_STRING_MAINMODULE=qbs_new(0,0);
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXMODULENAMELEN=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXMODULENAMELEN==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXMODULENAMELEN=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXMODULENAMELEN=0;
}
byte_element_struct *byte_element_5038=NULL;
if (!byte_element_5038){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5038=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5038=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXTYPELEN=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXTYPELEN==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXTYPELEN=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXTYPELEN=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_VARIABLENAMECOLOR=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_VARIABLENAMECOLOR==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_VARIABLENAMECOLOR=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_VARIABLENAMECOLOR=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_TYPECOLUMNCOLOR=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_TYPECOLUMNCOLOR==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_TYPECOLUMNCOLOR=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_TYPECOLUMNCOLOR=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_SELECTEDBG=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_SELECTEDBG==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_SELECTEDBG=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_SELECTEDBG=0;
}
ptrszint *_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_VARDLGLIST=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_VARDLGLIST){
_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_VARDLGLIST=(ptrszint*)mem_static_malloc(9*ptrsz);
new_mem_lock();
mem_lock_tmp->type=4;
((ptrszint*)_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_VARDLGLIST)[8]=(ptrszint)mem_lock_tmp;
_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_VARDLGLIST[2]=0;
_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_VARDLGLIST[4]=2147483647;
_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_VARDLGLIST[5]=0;
_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_VARDLGLIST[6]=0;
_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_VARDLGLIST[0]=(ptrszint)nothingvalue;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_X=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_X==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_X=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_X=0;
}
int64 fornext_value5040;
int64 fornext_finalvalue5040;
int64 fornext_step5040;
uint8 fornext_step_negative5040;
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_SEARCHTERM=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_SEARCHTERM)_FUNC_IDEVARIABLEWATCHBOX_STRING_SEARCHTERM=qbs_new(0,0);
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_FIRSTRUN=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_FIRSTRUN==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_FIRSTRUN=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_FIRSTRUN=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_DIALOGHEIGHT=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_DIALOGHEIGHT==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_DIALOGHEIGHT=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_DIALOGHEIGHT=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_I=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_I==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_I=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_LASTUSEDDIALOGHEIGHT=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_LASTUSEDDIALOGHEIGHT==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_LASTUSEDDIALOGHEIGHT=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_LASTUSEDDIALOGHEIGHT=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_DIALOGWIDTH=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_DIALOGWIDTH==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_DIALOGWIDTH=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_DIALOGWIDTH=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXVARLEN=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXVARLEN==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXVARLEN=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXVARLEN=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_FILTERBOX=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_FILTERBOX==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_FILTERBOX=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_FILTERBOX=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_PREVFOCUS=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_PREVFOCUS==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_PREVFOCUS=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_PREVFOCUS=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_VARLISTBOX=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_VARLISTBOX==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_VARLISTBOX=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_VARLISTBOX=0;
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_L=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_L)_FUNC_IDEVARIABLEWATCHBOX_STRING_L=qbs_new(0,0);
byte_element_struct *byte_element_5041=NULL;
if (!byte_element_5041){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5041=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5041=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMP=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMP)_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMP=qbs_new(0,0);
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_TOTALVISIBLEVARIABLES=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_TOTALVISIBLEVARIABLES==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_TOTALVISIBLEVARIABLES=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_TOTALVISIBLEVARIABLES=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_BUTTONSET=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_BUTTONSET==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_BUTTONSET=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_BUTTONSET=0;
}
int64 fornext_value5043;
int64 fornext_finalvalue5043;
int64 fornext_step5043;
uint8 fornext_step_negative5043;
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_F=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_F==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_F=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_F=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_CX=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_CX==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_CX=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_CX=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_CY=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_CY==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_CY=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_CY=0;
}
int64 fornext_value5046;
int64 fornext_finalvalue5046;
int64 fornext_step5046;
uint8 fornext_step_negative5046;
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_LASTFOCUS=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_LASTFOCUS==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_LASTFOCUS=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_LASTFOCUS=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_DOUBLECLICKTHRESHOLD=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_DOUBLECLICKTHRESHOLD==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_DOUBLECLICKTHRESHOLD=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_DOUBLECLICKTHRESHOLD=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_Y=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_Y==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_Y=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_Y=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_FG=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_FG==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_FG=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_FG=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_BG=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_BG==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_BG=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_BG=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_QUICKDLGUPDATE=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_QUICKDLGUPDATE==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_QUICKDLGUPDATE=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_QUICKDLGUPDATE=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_CHANGE=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_CHANGE==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_CHANGE=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_CHANGE=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_MOUSEDOWN=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_MOUSEDOWN==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_MOUSEDOWN=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_MOUSEDOWN=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_MOUSEUP=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_MOUSEUP==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_MOUSEUP=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_MOUSEUP=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_ALT=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_ALT==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_ALT=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_ALT=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_OLDALT=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_OLDALT==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_OLDALT=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_OLDALT=0;
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_ALTLETTER=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_ALTLETTER)_FUNC_IDEVARIABLEWATCHBOX_STRING_ALTLETTER=qbs_new(0,0);
byte_element_struct *byte_element_5049=NULL;
if (!byte_element_5049){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5049=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5049=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_K=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_K==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_K=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_K=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_INFO=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_INFO==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_INFO=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_INFO=0;
}
int64 fornext_value5051;
int64 fornext_finalvalue5051;
int64 fornext_step5051;
uint8 fornext_step_negative5051;
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_T=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_T==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_T=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_T=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_FOCUSOFFSET=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_FOCUSOFFSET==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_FOCUSOFFSET=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_FOCUSOFFSET=0;
}
byte_element_struct *byte_element_5052=NULL;
if (!byte_element_5052){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5052=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5052=(byte_element_struct*)mem_static_malloc(12);
}
int64 fornext_value5054;
int64 fornext_finalvalue5054;
int64 fornext_step5054;
uint8 fornext_step_negative5054;
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_VARTYPE=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_VARTYPE)_FUNC_IDEVARIABLEWATCHBOX_STRING_VARTYPE=qbs_new(0,0);
int64 fornext_value5056;
int64 fornext_finalvalue5056;
int64 fornext_step5056;
uint8 fornext_step_negative5056;
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_DLGTITLE=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_DLGTITLE)_FUNC_IDEVARIABLEWATCHBOX_STRING_DLGTITLE=qbs_new(0,0);
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_DLGPROMPT=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_DLGPROMPT)_FUNC_IDEVARIABLEWATCHBOX_STRING_DLGPROMPT=qbs_new(0,0);
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_DLGPROMPT2=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_DLGPROMPT2)_FUNC_IDEVARIABLEWATCHBOX_STRING_DLGPROMPT2=qbs_new(0,0);
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_THISRETURNACTION=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_THISRETURNACTION==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_THISRETURNACTION=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_THISRETURNACTION=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPINDEX=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPINDEX==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPINDEX=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPINDEX=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPARRAYINDEX=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPARRAYINDEX==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPARRAYINDEX=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPARRAYINDEX=0;
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPARRAYINDEXES=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPARRAYINDEXES)_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPARRAYINDEXES=qbs_new(0,0);
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPSTORAGE=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPSTORAGE==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPSTORAGE=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPSTORAGE=0;
}
byte_element_struct *byte_element_5059=NULL;
if (!byte_element_5059){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5059=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5059=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPELEMENTOFFSET=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPELEMENTOFFSET)_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPELEMENTOFFSET=qbs_new(0,0);
byte_element_struct *byte_element_5060=NULL;
if (!byte_element_5060){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5060=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5060=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPISUDT=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPISUDT==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPISUDT=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPISUDT=0;
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_V=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_V)_FUNC_IDEVARIABLEWATCHBOX_STRING_V=qbs_new(0,0);
int32 pass5061;
int32 pass5062;
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_OK=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_OK==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_OK=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_OK=0;
}
byte_element_struct *byte_element_5063=NULL;
if (!byte_element_5063){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5063=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5063=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5065=NULL;
if (!byte_element_5065){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5065=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5065=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_RESULT=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_RESULT==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_RESULT=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_RESULT=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_FOUNDCOMMA=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_FOUNDCOMMA==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_FOUNDCOMMA=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_FOUNDCOMMA=0;
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPVARTYPE=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPVARTYPE)_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPVARTYPE=qbs_new(0,0);
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_ELEMENTINDEXES=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_ELEMENTINDEXES)_FUNC_IDEVARIABLEWATCHBOX_STRING_ELEMENTINDEXES=qbs_new(0,0);
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_THISUDT=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_THISUDT==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_THISUDT=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_THISUDT=0;
}
int64 fornext_value5068;
int64 fornext_finalvalue5068;
int64 fornext_step5068;
uint8 fornext_step_negative5068;
int32 pass5070;
int32 pass5071;
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_TYP=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_TYP==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_TYP=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_TYP=0;
}
int32 pass5072;
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_RESULT=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_RESULT)_FUNC_IDEVARIABLEWATCHBOX_STRING_RESULT=qbs_new(0,0);
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_STORAGESLOT=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_STORAGESLOT==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_STORAGESLOT=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_STORAGESLOT=0;
}
byte_element_struct *byte_element_5075=NULL;
if (!byte_element_5075){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5075=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5075=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5076=NULL;
if (!byte_element_5076){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5076=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5076=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_A2=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_A2)_FUNC_IDEVARIABLEWATCHBOX_STRING_A2=qbs_new(0,0);
byte_element_struct *byte_element_5078=NULL;
if (!byte_element_5078){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5078=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5078=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_J=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_J==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_J=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_J=0;
}
byte_element_struct *byte_element_5079=NULL;
if (!byte_element_5079){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5079=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5079=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_THISWIDTH=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_THISWIDTH==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_THISWIDTH=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_THISWIDTH=0;
}
static int32 sc_5080;
int32 pass5081;
byte_element_struct *byte_element_5082=NULL;
if (!byte_element_5082){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5082=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5082=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_OP1=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_OP1)_FUNC_IDEVARIABLEWATCHBOX_STRING_OP1=qbs_new(0,0);
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_OP2=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_OP2)_FUNC_IDEVARIABLEWATCHBOX_STRING_OP2=qbs_new(0,0);
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_OP=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_OP)_FUNC_IDEVARIABLEWATCHBOX_STRING_OP=qbs_new(0,0);
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_ACTUALVALUE=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_ACTUALVALUE)_FUNC_IDEVARIABLEWATCHBOX_STRING_ACTUALVALUE=qbs_new(0,0);
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_CMD=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_CMD)_FUNC_IDEVARIABLEWATCHBOX_STRING_CMD=qbs_new(0,0);
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPELEMENT=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPELEMENT==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPELEMENT=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPELEMENT=0;
}
byte_element_struct *byte_element_5084=NULL;
if (!byte_element_5084){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5084=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5084=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5085=NULL;
if (!byte_element_5085){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5085=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5085=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5087=NULL;
if (!byte_element_5087){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5087=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5087=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5088=NULL;
if (!byte_element_5088){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5088=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5088=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5089=NULL;
if (!byte_element_5089){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5089=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5089=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_LONGESTVARNAME=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_LONGESTVARNAME==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_LONGESTVARNAME=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_LONGESTVARNAME=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_TOTALSELECTEDVARIABLES=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_TOTALSELECTEDVARIABLES==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_TOTALSELECTEDVARIABLES=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_TOTALSELECTEDVARIABLES=0;
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_MSG=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_MSG)_FUNC_IDEVARIABLEWATCHBOX_STRING_MSG=qbs_new(0,0);
int64 fornext_value5091;
int64 fornext_finalvalue5091;
int64 fornext_step5091;
uint8 fornext_step_negative5091;
int32 pass5092;
int32 pass5093;
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_C=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_C==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_C=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_C=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_N=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_N==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_N=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_N=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXPROGRESSWIDTH=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXPROGRESSWIDTH==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXPROGRESSWIDTH=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXPROGRESSWIDTH=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_PERCENTAGE=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_PERCENTAGE==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_PERCENTAGE=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_PERCENTAGE=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_PERCENTAGECHARS=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_PERCENTAGECHARS==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_PERCENTAGECHARS=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_PERCENTAGECHARS=0;
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_PERCENTAGEMSG=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_PERCENTAGEMSG)_FUNC_IDEVARIABLEWATCHBOX_STRING_PERCENTAGEMSG=qbs_new(0,0);
byte_element_struct *byte_element_5094=NULL;
if (!byte_element_5094){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5094=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5094=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_THISLEN=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_THISLEN==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_THISLEN=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_THISLEN=0;
}
int32 pass5096;
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMP2=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMP2)_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMP2=qbs_new(0,0);
int32 pass5098;
byte_element_struct *byte_element_5099=NULL;
if (!byte_element_5099){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5099=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5099=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_LENGTH=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_LENGTH==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_LENGTH=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_LENGTH=0;
}
int32 pass5101;
int32 pass5103;
byte_element_struct *byte_element_5104=NULL;
if (!byte_element_5104){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5104=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5104=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_THISTEMPELEMENT=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_THISTEMPELEMENT)_FUNC_IDEVARIABLEWATCHBOX_STRING_THISTEMPELEMENT=qbs_new(0,0);
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_THISELEMENTLIST=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_THISELEMENTLIST)_FUNC_IDEVARIABLEWATCHBOX_STRING_THISELEMENTLIST=qbs_new(0,0);
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPELEMENTOFFSET=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPELEMENTOFFSET==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPELEMENTOFFSET=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPELEMENTOFFSET=0;
}
byte_element_struct *byte_element_5110=NULL;
if (!byte_element_5110){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5110=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5110=(byte_element_struct*)mem_static_malloc(12);
}
float *_FUNC_IDEVARIABLEWATCHBOX_SINGLE_LASTCLICK=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_SINGLE_LASTCLICK==NULL){
_FUNC_IDEVARIABLEWATCHBOX_SINGLE_LASTCLICK=(float*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_SINGLE_LASTCLICK=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_CLICKEDITEM=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_CLICKEDITEM==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_CLICKEDITEM=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_CLICKEDITEM=0;
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPPROMPT=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPPROMPT)_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPPROMPT=qbs_new(0,0);
int32 pass5111;
int32 pass5112;
byte_element_struct *byte_element_5113=NULL;
if (!byte_element_5113){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5113=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5113=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5115=NULL;
if (!byte_element_5115){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5115=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5115=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5117=NULL;
if (!byte_element_5117){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5117=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5117=(byte_element_struct*)mem_static_malloc(12);
}
int64 fornext_value5119;
int64 fornext_finalvalue5119;
int64 fornext_step5119;
uint8 fornext_step_negative5119;
int32 pass5121;
int32 pass5122;
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_LONGESTELEMENTNAME=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_LONGESTELEMENTNAME==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_LONGESTELEMENTNAME=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_LONGESTELEMENTNAME=0;
}
byte_element_struct *byte_element_5124=NULL;
if (!byte_element_5124){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5124=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5124=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5125=NULL;
if (!byte_element_5125){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5125=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5125=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5126=NULL;
if (!byte_element_5126){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5126=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5126=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5128=NULL;
if (!byte_element_5128){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5128=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5128=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5129=NULL;
if (!byte_element_5129){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5129=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5129=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_PROPOSEDTITLE=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_PROPOSEDTITLE)_FUNC_IDEVARIABLEWATCHBOX_STRING_PROPOSEDTITLE=qbs_new(0,0);
int64 fornext_value5131;
int64 fornext_finalvalue5131;
int64 fornext_step5131;
uint8 fornext_step_negative5131;
byte_element_struct *byte_element_5132=NULL;
if (!byte_element_5132){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5132=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5132=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_THISSCOPE=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_THISSCOPE)_FUNC_IDEVARIABLEWATCHBOX_STRING_THISSCOPE=qbs_new(0,0);
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_ITEM=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_ITEM)_FUNC_IDEVARIABLEWATCHBOX_STRING_ITEM=qbs_new(0,0);
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_L3=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_L3)_FUNC_IDEVARIABLEWATCHBOX_STRING_L3=qbs_new(0,0);
byte_element_struct *byte_element_5133=NULL;
if (!byte_element_5133){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5133=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5133=(byte_element_struct*)mem_static_malloc(12);
}
int64 fornext_value5135;
int64 fornext_finalvalue5135;
int64 fornext_step5135;
uint8 fornext_step_negative5135;
int32 pass5136;
int32 pass5137;
int64 fornext_value5139;
int64 fornext_finalvalue5139;
int64 fornext_step5139;
uint8 fornext_step_negative5139;
byte_element_struct *byte_element_5140=NULL;
if (!byte_element_5140){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5140=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5140=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5141=NULL;
if (!byte_element_5141){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5141=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5141=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5143=NULL;
if (!byte_element_5143){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5143=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5143=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_ITEMTOSELECT=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_ITEMTOSELECT==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_ITEMTOSELECT=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_ITEMTOSELECT=0;
}
byte_element_struct *byte_element_5144=NULL;
if (!byte_element_5144){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5144=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5144=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5145=NULL;
if (!byte_element_5145){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5145=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5145=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_THISNAME=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_THISNAME)_FUNC_IDEVARIABLEWATCHBOX_STRING_THISNAME=qbs_new(0,0);
byte_element_struct *byte_element_5146=NULL;
if (!byte_element_5146){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5146=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5146=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5148=NULL;
if (!byte_element_5148){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5148=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5148=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_TEXT=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_TEXT)_FUNC_IDEVARIABLEWATCHBOX_STRING_TEXT=qbs_new(0,0);
byte_element_struct *byte_element_5149=NULL;
if (!byte_element_5149){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5149=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5149=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5150=NULL;
if (!byte_element_5150){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5150=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5150=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5151=NULL;
if (!byte_element_5151){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5151=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5151=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5152=NULL;
if (!byte_element_5152){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5152=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5152=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5153=NULL;
if (!byte_element_5153){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5153=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5153=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_THISISASTRING=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_THISISASTRING==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_THISISASTRING=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_THISISASTRING=0;
}
byte_element_struct *byte_element_5154=NULL;
if (!byte_element_5154){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5154=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5154=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5155=NULL;
if (!byte_element_5155){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5155=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5155=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPVALUE=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPVALUE)_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPVALUE=qbs_new(0,0);
static int32 sc_5157;
byte_element_struct *byte_element_5158=NULL;
if (!byte_element_5158){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5158=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5158=(byte_element_struct*)mem_static_malloc(12);
}
static int32 sc_5159;

View file

@ -1,338 +1,706 @@
qbs *_FUNC_IDEELEMENTWATCHBOX_STRING_IDEELEMENTWATCHBOX=NULL;
if (!_FUNC_IDEELEMENTWATCHBOX_STRING_IDEELEMENTWATCHBOX)_FUNC_IDEELEMENTWATCHBOX_STRING_IDEELEMENTWATCHBOX=qbs_new(0,0);
qbs*oldstr5160=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_STRING_CURRENTPATH->tmp||_FUNC_IDEELEMENTWATCHBOX_STRING_CURRENTPATH->fixed||_FUNC_IDEELEMENTWATCHBOX_STRING_CURRENTPATH->readonly){
oldstr5160=_FUNC_IDEELEMENTWATCHBOX_STRING_CURRENTPATH;
if (oldstr5160->cmem_descriptor){
_FUNC_IDEELEMENTWATCHBOX_STRING_CURRENTPATH=qbs_new_cmem(oldstr5160->len,0);
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_IDEVARIABLEWATCHBOX=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_IDEVARIABLEWATCHBOX)_FUNC_IDEVARIABLEWATCHBOX_STRING_IDEVARIABLEWATCHBOX=qbs_new(0,0);
qbs*oldstr5122=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_STRING_CURRENTSCOPE->tmp||_FUNC_IDEVARIABLEWATCHBOX_STRING_CURRENTSCOPE->fixed||_FUNC_IDEVARIABLEWATCHBOX_STRING_CURRENTSCOPE->readonly){
oldstr5122=_FUNC_IDEVARIABLEWATCHBOX_STRING_CURRENTSCOPE;
if (oldstr5122->cmem_descriptor){
_FUNC_IDEVARIABLEWATCHBOX_STRING_CURRENTSCOPE=qbs_new_cmem(oldstr5122->len,0);
}else{
_FUNC_IDEELEMENTWATCHBOX_STRING_CURRENTPATH=qbs_new(oldstr5160->len,0);
_FUNC_IDEVARIABLEWATCHBOX_STRING_CURRENTSCOPE=qbs_new(oldstr5122->len,0);
}
memcpy(_FUNC_IDEELEMENTWATCHBOX_STRING_CURRENTPATH->chr,oldstr5160->chr,oldstr5160->len);
memcpy(_FUNC_IDEVARIABLEWATCHBOX_STRING_CURRENTSCOPE->chr,oldstr5122->chr,oldstr5122->len);
}
qbs*oldstr5161=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES->tmp||_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES->fixed||_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES->readonly){
oldstr5161=_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES;
if (oldstr5161->cmem_descriptor){
_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES=qbs_new_cmem(oldstr5161->len,0);
qbs*oldstr5123=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER->tmp||_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER->fixed||_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER->readonly){
oldstr5123=_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER;
if (oldstr5123->cmem_descriptor){
_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER=qbs_new_cmem(oldstr5123->len,0);
}else{
_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES=qbs_new(oldstr5161->len,0);
_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER=qbs_new(oldstr5123->len,0);
}
memcpy(_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES->chr,oldstr5161->chr,oldstr5161->len);
memcpy(_FUNC_IDEVARIABLEWATCHBOX_STRING_FILTER->chr,oldstr5123->chr,oldstr5123->len);
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_FOCUS=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_FOCUS==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_FOCUS=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_FOCUS=0;
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_FOCUS=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_FOCUS==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_FOCUS=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_FOCUS=0;
}
void *_FUNC_IDEELEMENTWATCHBOX_UDT_P=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_UDT_P==NULL){
_FUNC_IDEELEMENTWATCHBOX_UDT_P=(void*)mem_static_malloc(20);
memset(_FUNC_IDEELEMENTWATCHBOX_UDT_P,0,20);
void *_FUNC_IDEVARIABLEWATCHBOX_UDT_P=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_UDT_P==NULL){
_FUNC_IDEVARIABLEWATCHBOX_UDT_P=(void*)mem_static_malloc(20);
memset(_FUNC_IDEVARIABLEWATCHBOX_UDT_P,0,20);
}
ptrszint *_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_O=NULL;
if (!_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_O){
_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_O=(ptrszint*)mem_static_malloc(9*ptrsz);
ptrszint *_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_O=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_O){
_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_O=(ptrszint*)mem_static_malloc(9*ptrsz);
new_mem_lock();
mem_lock_tmp->type=4;
((ptrszint*)_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_O)[8]=(ptrszint)mem_lock_tmp;
_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_O[2]=0;
_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_O[4]=2147483647;
_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_O[5]=0;
_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_O[6]=0;
_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_O[0]=(ptrszint)nothingvalue;
((ptrszint*)_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_O)[8]=(ptrszint)mem_lock_tmp;
_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_O[2]=0;
_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_O[4]=2147483647;
_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_O[5]=0;
_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_O[6]=0;
_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_O[0]=(ptrszint)nothingvalue;
}
qbs *_FUNC_IDEELEMENTWATCHBOX_STRING1_SEP=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_STRING1_SEP==NULL){
_FUNC_IDEELEMENTWATCHBOX_STRING1_SEP=qbs_new_fixed((uint8*)mem_static_malloc(1),1,0);
memset(_FUNC_IDEELEMENTWATCHBOX_STRING1_SEP->chr,0,1);
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING1_SEP=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_STRING1_SEP==NULL){
_FUNC_IDEVARIABLEWATCHBOX_STRING1_SEP=qbs_new_fixed((uint8*)mem_static_malloc(1),1,0);
memset(_FUNC_IDEVARIABLEWATCHBOX_STRING1_SEP->chr,0,1);
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_VARIABLENAMECOLOR=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_VARIABLENAMECOLOR==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_VARIABLENAMECOLOR=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_VARIABLENAMECOLOR=0;
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_MAINMODULE=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_MAINMODULE)_FUNC_IDEVARIABLEWATCHBOX_STRING_MAINMODULE=qbs_new(0,0);
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXMODULENAMELEN=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXMODULENAMELEN==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXMODULENAMELEN=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXMODULENAMELEN=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_TYPECOLUMNCOLOR=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_TYPECOLUMNCOLOR==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_TYPECOLUMNCOLOR=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_TYPECOLUMNCOLOR=0;
byte_element_struct *byte_element_5124=NULL;
if (!byte_element_5124){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5124=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5124=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_SELECTEDBG=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_SELECTEDBG==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_SELECTEDBG=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_SELECTEDBG=0;
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXTYPELEN=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXTYPELEN==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXTYPELEN=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXTYPELEN=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_TOTALELEMENTS=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_TOTALELEMENTS==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_TOTALELEMENTS=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_TOTALELEMENTS=0;
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_VARIABLENAMECOLOR=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_VARIABLENAMECOLOR==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_VARIABLENAMECOLOR=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_VARIABLENAMECOLOR=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_TYPECOLUMNCOLOR=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_TYPECOLUMNCOLOR==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_TYPECOLUMNCOLOR=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_TYPECOLUMNCOLOR=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_SELECTEDBG=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_SELECTEDBG==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_SELECTEDBG=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_SELECTEDBG=0;
}
ptrszint *_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_VARDLGLIST=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_VARDLGLIST){
_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_VARDLGLIST=(ptrszint*)mem_static_malloc(9*ptrsz);
new_mem_lock();
mem_lock_tmp->type=4;
((ptrszint*)_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_VARDLGLIST)[8]=(ptrszint)mem_lock_tmp;
_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_VARDLGLIST[2]=0;
_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_VARDLGLIST[4]=2147483647;
_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_VARDLGLIST[5]=0;
_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_VARDLGLIST[6]=0;
_FUNC_IDEVARIABLEWATCHBOX_ARRAY_UDT_VARDLGLIST[0]=(ptrszint)nothingvalue;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_X=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_X==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_X=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_X=0;
}
int64 fornext_value5126;
int64 fornext_finalvalue5126;
int64 fornext_step5126;
uint8 fornext_step_negative5126;
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_SEARCHTERM=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_SEARCHTERM)_FUNC_IDEVARIABLEWATCHBOX_STRING_SEARCHTERM=qbs_new(0,0);
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_FIRSTRUN=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_FIRSTRUN==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_FIRSTRUN=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_FIRSTRUN=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_DIALOGHEIGHT=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_DIALOGHEIGHT==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_DIALOGHEIGHT=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_DIALOGHEIGHT=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_I=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_I==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_I=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_LASTUSEDDIALOGHEIGHT=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_LASTUSEDDIALOGHEIGHT==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_LASTUSEDDIALOGHEIGHT=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_LASTUSEDDIALOGHEIGHT=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_DIALOGWIDTH=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_DIALOGWIDTH==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_DIALOGWIDTH=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_DIALOGWIDTH=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXVARLEN=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXVARLEN==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXVARLEN=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXVARLEN=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_FILTERBOX=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_FILTERBOX==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_FILTERBOX=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_FILTERBOX=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_PREVFOCUS=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_PREVFOCUS==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_PREVFOCUS=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_PREVFOCUS=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_VARLISTBOX=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_VARLISTBOX==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_VARLISTBOX=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_VARLISTBOX=0;
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_L=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_L)_FUNC_IDEVARIABLEWATCHBOX_STRING_L=qbs_new(0,0);
byte_element_struct *byte_element_5127=NULL;
if (!byte_element_5127){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5127=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5127=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMP=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMP)_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMP=qbs_new(0,0);
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_TOTALVISIBLEVARIABLES=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_TOTALVISIBLEVARIABLES==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_TOTALVISIBLEVARIABLES=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_TOTALVISIBLEVARIABLES=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_BUTTONSET=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_BUTTONSET==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_BUTTONSET=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_BUTTONSET=0;
}
int64 fornext_value5129;
int64 fornext_finalvalue5129;
int64 fornext_step5129;
uint8 fornext_step_negative5129;
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_F=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_F==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_F=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_F=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_CX=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_CX==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_CX=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_CX=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_CY=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_CY==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_CY=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_CY=0;
}
int64 fornext_value5132;
int64 fornext_finalvalue5132;
int64 fornext_step5132;
uint8 fornext_step_negative5132;
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_LASTFOCUS=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_LASTFOCUS==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_LASTFOCUS=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_LASTFOCUS=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_DOUBLECLICKTHRESHOLD=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_DOUBLECLICKTHRESHOLD==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_DOUBLECLICKTHRESHOLD=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_DOUBLECLICKTHRESHOLD=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_Y=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_Y==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_Y=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_Y=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_FG=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_FG==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_FG=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_FG=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_BG=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_BG==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_BG=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_BG=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_QUICKDLGUPDATE=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_QUICKDLGUPDATE==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_QUICKDLGUPDATE=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_QUICKDLGUPDATE=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_CHANGE=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_CHANGE==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_CHANGE=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_CHANGE=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_MOUSEDOWN=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_MOUSEDOWN==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_MOUSEDOWN=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_MOUSEDOWN=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_MOUSEUP=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_MOUSEUP==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_MOUSEUP=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_MOUSEUP=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_ALT=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_ALT==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_ALT=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_ALT=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_OLDALT=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_OLDALT==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_OLDALT=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_OLDALT=0;
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_ALTLETTER=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_ALTLETTER)_FUNC_IDEVARIABLEWATCHBOX_STRING_ALTLETTER=qbs_new(0,0);
byte_element_struct *byte_element_5135=NULL;
if (!byte_element_5135){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5135=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5135=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_K=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_K==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_K=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_K=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_INFO=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_INFO==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_INFO=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_INFO=0;
}
int64 fornext_value5137;
int64 fornext_finalvalue5137;
int64 fornext_step5137;
uint8 fornext_step_negative5137;
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_T=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_T==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_T=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_T=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_FOCUSOFFSET=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_FOCUSOFFSET==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_FOCUSOFFSET=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_FOCUSOFFSET=0;
}
byte_element_struct *byte_element_5138=NULL;
if (!byte_element_5138){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5138=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5138=(byte_element_struct*)mem_static_malloc(12);
}
int64 fornext_value5140;
int64 fornext_finalvalue5140;
int64 fornext_step5140;
uint8 fornext_step_negative5140;
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_VARTYPE=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_VARTYPE)_FUNC_IDEVARIABLEWATCHBOX_STRING_VARTYPE=qbs_new(0,0);
int64 fornext_value5142;
int64 fornext_finalvalue5142;
int64 fornext_step5142;
uint8 fornext_step_negative5142;
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_DLGTITLE=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_DLGTITLE)_FUNC_IDEVARIABLEWATCHBOX_STRING_DLGTITLE=qbs_new(0,0);
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_DLGPROMPT=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_DLGPROMPT)_FUNC_IDEVARIABLEWATCHBOX_STRING_DLGPROMPT=qbs_new(0,0);
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_DLGPROMPT2=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_DLGPROMPT2)_FUNC_IDEVARIABLEWATCHBOX_STRING_DLGPROMPT2=qbs_new(0,0);
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_THISRETURNACTION=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_THISRETURNACTION==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_THISRETURNACTION=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_THISRETURNACTION=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPINDEX=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPINDEX==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPINDEX=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPINDEX=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPARRAYINDEX=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPARRAYINDEX==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPARRAYINDEX=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPARRAYINDEX=0;
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPARRAYINDEXES=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPARRAYINDEXES)_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPARRAYINDEXES=qbs_new(0,0);
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPSTORAGE=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPSTORAGE==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPSTORAGE=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPSTORAGE=0;
}
byte_element_struct *byte_element_5145=NULL;
if (!byte_element_5145){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5145=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5145=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPELEMENTOFFSET=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPELEMENTOFFSET)_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPELEMENTOFFSET=qbs_new(0,0);
byte_element_struct *byte_element_5146=NULL;
if (!byte_element_5146){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5146=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5146=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPISUDT=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPISUDT==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPISUDT=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPISUDT=0;
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_V=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_V)_FUNC_IDEVARIABLEWATCHBOX_STRING_V=qbs_new(0,0);
int32 pass5147;
int32 pass5148;
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_OK=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_OK==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_OK=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_OK=0;
}
byte_element_struct *byte_element_5149=NULL;
if (!byte_element_5149){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5149=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5149=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5151=NULL;
if (!byte_element_5151){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5151=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5151=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_RESULT=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_RESULT==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_RESULT=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_RESULT=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_FOUNDCOMMA=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_FOUNDCOMMA==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_FOUNDCOMMA=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_FOUNDCOMMA=0;
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPVARTYPE=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPVARTYPE)_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPVARTYPE=qbs_new(0,0);
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_ELEMENTINDEXES=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_ELEMENTINDEXES)_FUNC_IDEVARIABLEWATCHBOX_STRING_ELEMENTINDEXES=qbs_new(0,0);
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_THISUDT=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_THISUDT==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_THISUDT=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_THISUDT=0;
}
int64 fornext_value5154;
int64 fornext_finalvalue5154;
int64 fornext_step5154;
uint8 fornext_step_negative5154;
int32 pass5156;
int32 pass5157;
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_TYP=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_TYP==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_TYP=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_TYP=0;
}
int32 pass5158;
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_RESULT=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_RESULT)_FUNC_IDEVARIABLEWATCHBOX_STRING_RESULT=qbs_new(0,0);
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_STORAGESLOT=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_STORAGESLOT==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_STORAGESLOT=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_STORAGESLOT=0;
}
byte_element_struct *byte_element_5161=NULL;
if (!byte_element_5161){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5161=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5161=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5162=NULL;
if (!byte_element_5162){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5162=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5162=(byte_element_struct*)mem_static_malloc(12);
}
ptrszint *_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_VARDLGLIST=NULL;
if (!_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_VARDLGLIST){
_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_VARDLGLIST=(ptrszint*)mem_static_malloc(9*ptrsz);
new_mem_lock();
mem_lock_tmp->type=4;
((ptrszint*)_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_VARDLGLIST)[8]=(ptrszint)mem_lock_tmp;
_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_VARDLGLIST[2]=0;
_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_VARDLGLIST[4]=2147483647;
_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_VARDLGLIST[5]=0;
_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_VARDLGLIST[6]=0;
_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_VARDLGLIST[0]=(ptrszint)nothingvalue;
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_A2=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_A2)_FUNC_IDEVARIABLEWATCHBOX_STRING_A2=qbs_new(0,0);
byte_element_struct *byte_element_5164=NULL;
if (!byte_element_5164){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5164=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5164=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_DIALOGHEIGHT=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_DIALOGHEIGHT==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_DIALOGHEIGHT=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_DIALOGHEIGHT=0;
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_J=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_J==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_J=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_J=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_I=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_I==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_I=0;
byte_element_struct *byte_element_5165=NULL;
if (!byte_element_5165){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5165=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5165=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_DIALOGWIDTH=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_DIALOGWIDTH==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_DIALOGWIDTH=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_DIALOGWIDTH=0;
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_THISWIDTH=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_THISWIDTH==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_THISWIDTH=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_THISWIDTH=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_LONGESTNAME=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_LONGESTNAME==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_LONGESTNAME=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_LONGESTNAME=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_MAXTYPELEN=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_MAXTYPELEN==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_MAXTYPELEN=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_MAXTYPELEN=0;
}
qbs *_FUNC_IDEELEMENTWATCHBOX_STRING_TITLE=NULL;
if (!_FUNC_IDEELEMENTWATCHBOX_STRING_TITLE)_FUNC_IDEELEMENTWATCHBOX_STRING_TITLE=qbs_new(0,0);
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_VARLISTBOX=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_VARLISTBOX==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_VARLISTBOX=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_VARLISTBOX=0;
}
qbs *_FUNC_IDEELEMENTWATCHBOX_STRING_L=NULL;
if (!_FUNC_IDEELEMENTWATCHBOX_STRING_L)_FUNC_IDEELEMENTWATCHBOX_STRING_L=qbs_new(0,0);
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_BUTTONSET=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_BUTTONSET==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_BUTTONSET=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_BUTTONSET=0;
}
int64 fornext_value5164;
int64 fornext_finalvalue5164;
int64 fornext_step5164;
uint8 fornext_step_negative5164;
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_F=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_F==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_F=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_F=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_CX=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_CX==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_CX=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_CX=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_CY=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_CY==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_CY=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_CY=0;
}
int64 fornext_value5167;
int64 fornext_finalvalue5167;
int64 fornext_step5167;
uint8 fornext_step_negative5167;
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_LASTFOCUS=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_LASTFOCUS==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_LASTFOCUS=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_LASTFOCUS=0;
}
qbs *_FUNC_IDEELEMENTWATCHBOX_STRING_TEMP=NULL;
if (!_FUNC_IDEELEMENTWATCHBOX_STRING_TEMP)_FUNC_IDEELEMENTWATCHBOX_STRING_TEMP=qbs_new(0,0);
static int32 sc_5166;
int32 pass5167;
byte_element_struct *byte_element_5168=NULL;
if (!byte_element_5168){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5168=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5168=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_CHANGE=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_CHANGE==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_CHANGE=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_CHANGE=0;
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_OP1=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_OP1)_FUNC_IDEVARIABLEWATCHBOX_STRING_OP1=qbs_new(0,0);
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_OP2=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_OP2)_FUNC_IDEVARIABLEWATCHBOX_STRING_OP2=qbs_new(0,0);
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_OP=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_OP)_FUNC_IDEVARIABLEWATCHBOX_STRING_OP=qbs_new(0,0);
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_ACTUALVALUE=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_ACTUALVALUE)_FUNC_IDEVARIABLEWATCHBOX_STRING_ACTUALVALUE=qbs_new(0,0);
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_CMD=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_CMD)_FUNC_IDEVARIABLEWATCHBOX_STRING_CMD=qbs_new(0,0);
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPELEMENT=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPELEMENT==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPELEMENT=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPELEMENT=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_MOUSEDOWN=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_MOUSEDOWN==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_MOUSEDOWN=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_MOUSEDOWN=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_MOUSEUP=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_MOUSEUP==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_MOUSEUP=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_MOUSEUP=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_ALT=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_ALT==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_ALT=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_ALT=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_OLDALT=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_OLDALT==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_OLDALT=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_OLDALT=0;
}
qbs *_FUNC_IDEELEMENTWATCHBOX_STRING_ALTLETTER=NULL;
if (!_FUNC_IDEELEMENTWATCHBOX_STRING_ALTLETTER)_FUNC_IDEELEMENTWATCHBOX_STRING_ALTLETTER=qbs_new(0,0);
byte_element_struct *byte_element_5170=NULL;
if (!byte_element_5170){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5170=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5170=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_K=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_K==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_K=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_K=0;
byte_element_struct *byte_element_5171=NULL;
if (!byte_element_5171){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5171=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5171=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_INFO=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_INFO==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_INFO=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_INFO=0;
byte_element_struct *byte_element_5173=NULL;
if (!byte_element_5173){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5173=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5173=(byte_element_struct*)mem_static_malloc(12);
}
int64 fornext_value5172;
int64 fornext_finalvalue5172;
int64 fornext_step5172;
uint8 fornext_step_negative5172;
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_T=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_T==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_T=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_T=0;
byte_element_struct *byte_element_5174=NULL;
if (!byte_element_5174){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5174=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5174=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_FOCUSOFFSET=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_FOCUSOFFSET==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_FOCUSOFFSET=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_FOCUSOFFSET=0;
byte_element_struct *byte_element_5175=NULL;
if (!byte_element_5175){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5175=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5175=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_Y=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_Y==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_Y=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_Y=0;
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_LONGESTVARNAME=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_LONGESTVARNAME==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_LONGESTVARNAME=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_LONGESTVARNAME=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_TOGGLEANDRETURN=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_TOGGLEANDRETURN==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_TOGGLEANDRETURN=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_TOGGLEANDRETURN=0;
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_TOTALSELECTEDVARIABLES=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_TOTALSELECTEDVARIABLES==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_TOTALSELECTEDVARIABLES=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_TOTALSELECTEDVARIABLES=0;
}
int64 fornext_value5174;
int64 fornext_finalvalue5174;
int64 fornext_step5174;
uint8 fornext_step_negative5174;
qbs *_FUNC_IDEELEMENTWATCHBOX_STRING_VARTYPE=NULL;
if (!_FUNC_IDEELEMENTWATCHBOX_STRING_VARTYPE)_FUNC_IDEELEMENTWATCHBOX_STRING_VARTYPE=qbs_new(0,0);
int64 fornext_value5176;
int64 fornext_finalvalue5176;
int64 fornext_step5176;
uint8 fornext_step_negative5176;
int64 fornext_value5178;
int64 fornext_finalvalue5178;
int64 fornext_step5178;
uint8 fornext_step_negative5178;
qbs *_FUNC_IDEELEMENTWATCHBOX_STRING_THISNAME=NULL;
if (!_FUNC_IDEELEMENTWATCHBOX_STRING_THISNAME)_FUNC_IDEELEMENTWATCHBOX_STRING_THISNAME=qbs_new(0,0);
byte_element_struct *byte_element_5179=NULL;
if (!byte_element_5179){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5179=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5179=(byte_element_struct*)mem_static_malloc(12);
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_MSG=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_MSG)_FUNC_IDEVARIABLEWATCHBOX_STRING_MSG=qbs_new(0,0);
int64 fornext_value5177;
int64 fornext_finalvalue5177;
int64 fornext_step5177;
uint8 fornext_step_negative5177;
int32 pass5178;
int32 pass5179;
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_C=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_C==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_C=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_C=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_N=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_N==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_N=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_N=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXPROGRESSWIDTH=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXPROGRESSWIDTH==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXPROGRESSWIDTH=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_MAXPROGRESSWIDTH=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_PERCENTAGE=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_PERCENTAGE==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_PERCENTAGE=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_PERCENTAGE=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_PERCENTAGECHARS=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_PERCENTAGECHARS==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_PERCENTAGECHARS=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_PERCENTAGECHARS=0;
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_PERCENTAGEMSG=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_PERCENTAGEMSG)_FUNC_IDEVARIABLEWATCHBOX_STRING_PERCENTAGEMSG=qbs_new(0,0);
byte_element_struct *byte_element_5180=NULL;
if (!byte_element_5180){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5180=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5180=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5181=NULL;
if (!byte_element_5181){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5181=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5181=(byte_element_struct*)mem_static_malloc(12);
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_THISLEN=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_THISLEN==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_THISLEN=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_THISLEN=0;
}
float *_FUNC_IDEELEMENTWATCHBOX_SINGLE_LASTCLICK=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_SINGLE_LASTCLICK==NULL){
_FUNC_IDEELEMENTWATCHBOX_SINGLE_LASTCLICK=(float*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_SINGLE_LASTCLICK=0;
int32 pass5182;
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMP2=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMP2)_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMP2=qbs_new(0,0);
int32 pass5184;
byte_element_struct *byte_element_5185=NULL;
if (!byte_element_5185){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5185=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5185=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_CLICKEDITEM=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_CLICKEDITEM==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_CLICKEDITEM=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_CLICKEDITEM=0;
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_LENGTH=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_LENGTH==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_LENGTH=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_LENGTH=0;
}
int64 fornext_value5183;
int64 fornext_finalvalue5183;
int64 fornext_step5183;
uint8 fornext_step_negative5183;
qbs *_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES2=NULL;
if (!_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES2)_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES2=qbs_new(0,0);
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_THISUDT=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_THISUDT==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_THISUDT=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_THISUDT=0;
}
int64 fornext_value5185;
int64 fornext_finalvalue5185;
int64 fornext_step5185;
uint8 fornext_step_negative5185;
qbs *_FUNC_IDEELEMENTWATCHBOX_STRING_V=NULL;
if (!_FUNC_IDEELEMENTWATCHBOX_STRING_V)_FUNC_IDEELEMENTWATCHBOX_STRING_V=qbs_new(0,0);
int32 pass5187;
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_OK2=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_OK2==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_OK2=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_OK2=0;
int32 pass5189;
byte_element_struct *byte_element_5190=NULL;
if (!byte_element_5190){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5190=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5190=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_X=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_X==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_X=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_X=0;
}
int64 fornext_value5189;
int64 fornext_finalvalue5189;
int64 fornext_step5189;
uint8 fornext_step_negative5189;
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_THISTYPE=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_THISTYPE==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_THISTYPE=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_THISTYPE=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_THISLEN=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_THISLEN==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_THISLEN=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_THISLEN=0;
}
int64 fornext_value5191;
int64 fornext_finalvalue5191;
int64 fornext_step5191;
uint8 fornext_step_negative5191;
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_THISELEMENT=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_THISELEMENT==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_THISELEMENT=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_THISELEMENT=0;
}
byte_element_struct *byte_element_5192=NULL;
if (!byte_element_5192){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5192=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5192=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5193=NULL;
if (!byte_element_5193){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5193=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5193=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5194=NULL;
if (!byte_element_5194){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5194=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5194=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_IDEELEMENTWATCHBOX_STRING_TEXT=NULL;
if (!_FUNC_IDEELEMENTWATCHBOX_STRING_TEXT)_FUNC_IDEELEMENTWATCHBOX_STRING_TEXT=qbs_new(0,0);
byte_element_struct *byte_element_5195=NULL;
if (!byte_element_5195){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5195=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5195=(byte_element_struct*)mem_static_malloc(12);
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_THISTEMPELEMENT=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_THISTEMPELEMENT)_FUNC_IDEVARIABLEWATCHBOX_STRING_THISTEMPELEMENT=qbs_new(0,0);
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_THISELEMENTLIST=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_THISELEMENTLIST)_FUNC_IDEVARIABLEWATCHBOX_STRING_THISELEMENTLIST=qbs_new(0,0);
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPELEMENTOFFSET=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPELEMENTOFFSET==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPELEMENTOFFSET=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_TEMPELEMENTOFFSET=0;
}
byte_element_struct *byte_element_5196=NULL;
if (!byte_element_5196){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5196=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5196=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5197=NULL;
if (!byte_element_5197){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5197=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5197=(byte_element_struct*)mem_static_malloc(12);
float *_FUNC_IDEVARIABLEWATCHBOX_SINGLE_LASTCLICK=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_SINGLE_LASTCLICK==NULL){
_FUNC_IDEVARIABLEWATCHBOX_SINGLE_LASTCLICK=(float*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_SINGLE_LASTCLICK=0;
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_CLICKEDITEM=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_CLICKEDITEM==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_CLICKEDITEM=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_CLICKEDITEM=0;
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPPROMPT=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPPROMPT)_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPPROMPT=qbs_new(0,0);
int32 pass5197;
int32 pass5198;
byte_element_struct *byte_element_5199=NULL;
if (!byte_element_5199){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5199=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5199=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5201=NULL;
if (!byte_element_5201){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5201=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5201=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5203=NULL;
if (!byte_element_5203){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5203=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5203=(byte_element_struct*)mem_static_malloc(12);
}
int64 fornext_value5205;
int64 fornext_finalvalue5205;
int64 fornext_step5205;
uint8 fornext_step_negative5205;
int32 pass5207;
int32 pass5208;
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_LONGESTELEMENTNAME=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_LONGESTELEMENTNAME==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_LONGESTELEMENTNAME=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_LONGESTELEMENTNAME=0;
}
byte_element_struct *byte_element_5210=NULL;
if (!byte_element_5210){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5210=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5210=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5211=NULL;
if (!byte_element_5211){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5211=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5211=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5212=NULL;
if (!byte_element_5212){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5212=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5212=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5214=NULL;
if (!byte_element_5214){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5214=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5214=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5215=NULL;
if (!byte_element_5215){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5215=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5215=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_PROPOSEDTITLE=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_PROPOSEDTITLE)_FUNC_IDEVARIABLEWATCHBOX_STRING_PROPOSEDTITLE=qbs_new(0,0);
int64 fornext_value5217;
int64 fornext_finalvalue5217;
int64 fornext_step5217;
uint8 fornext_step_negative5217;
byte_element_struct *byte_element_5218=NULL;
if (!byte_element_5218){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5218=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5218=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_THISSCOPE=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_THISSCOPE)_FUNC_IDEVARIABLEWATCHBOX_STRING_THISSCOPE=qbs_new(0,0);
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_ITEM=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_ITEM)_FUNC_IDEVARIABLEWATCHBOX_STRING_ITEM=qbs_new(0,0);
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_L3=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_L3)_FUNC_IDEVARIABLEWATCHBOX_STRING_L3=qbs_new(0,0);
byte_element_struct *byte_element_5219=NULL;
if (!byte_element_5219){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5219=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5219=(byte_element_struct*)mem_static_malloc(12);
}
int64 fornext_value5221;
int64 fornext_finalvalue5221;
int64 fornext_step5221;
uint8 fornext_step_negative5221;
int32 pass5222;
int32 pass5223;
int64 fornext_value5225;
int64 fornext_finalvalue5225;
int64 fornext_step5225;
uint8 fornext_step_negative5225;
byte_element_struct *byte_element_5226=NULL;
if (!byte_element_5226){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5226=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5226=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5227=NULL;
if (!byte_element_5227){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5227=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5227=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5229=NULL;
if (!byte_element_5229){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5229=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5229=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_ITEMTOSELECT=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_ITEMTOSELECT==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_ITEMTOSELECT=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_ITEMTOSELECT=0;
}
byte_element_struct *byte_element_5230=NULL;
if (!byte_element_5230){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5230=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5230=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5231=NULL;
if (!byte_element_5231){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5231=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5231=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_THISNAME=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_THISNAME)_FUNC_IDEVARIABLEWATCHBOX_STRING_THISNAME=qbs_new(0,0);
byte_element_struct *byte_element_5232=NULL;
if (!byte_element_5232){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5232=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5232=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5234=NULL;
if (!byte_element_5234){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5234=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5234=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_TEXT=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_TEXT)_FUNC_IDEVARIABLEWATCHBOX_STRING_TEXT=qbs_new(0,0);
byte_element_struct *byte_element_5235=NULL;
if (!byte_element_5235){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5235=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5235=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5236=NULL;
if (!byte_element_5236){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5236=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5236=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5237=NULL;
if (!byte_element_5237){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5237=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5237=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5238=NULL;
if (!byte_element_5238){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5238=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5238=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5239=NULL;
if (!byte_element_5239){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5239=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5239=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEVARIABLEWATCHBOX_LONG_THISISASTRING=NULL;
if(_FUNC_IDEVARIABLEWATCHBOX_LONG_THISISASTRING==NULL){
_FUNC_IDEVARIABLEWATCHBOX_LONG_THISISASTRING=(int32*)mem_static_malloc(4);
*_FUNC_IDEVARIABLEWATCHBOX_LONG_THISISASTRING=0;
}
byte_element_struct *byte_element_5240=NULL;
if (!byte_element_5240){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5240=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5240=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5241=NULL;
if (!byte_element_5241){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5241=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5241=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPVALUE=NULL;
if (!_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPVALUE)_FUNC_IDEVARIABLEWATCHBOX_STRING_TEMPVALUE=qbs_new(0,0);
static int32 sc_5243;
byte_element_struct *byte_element_5244=NULL;
if (!byte_element_5244){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5244=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5244=(byte_element_struct*)mem_static_malloc(12);
}
static int32 sc_5245;

View file

@ -1,14 +1,14 @@
qbs *_FUNC_EVALUATE_STRING_EVALUATE=NULL;
if (!_FUNC_EVALUATE_STRING_EVALUATE)_FUNC_EVALUATE_STRING_EVALUATE=qbs_new(0,0);
qbs*oldstr2535=NULL;
qbs*oldstr2568=NULL;
if(_FUNC_EVALUATE_STRING_A2->tmp||_FUNC_EVALUATE_STRING_A2->fixed||_FUNC_EVALUATE_STRING_A2->readonly){
oldstr2535=_FUNC_EVALUATE_STRING_A2;
if (oldstr2535->cmem_descriptor){
_FUNC_EVALUATE_STRING_A2=qbs_new_cmem(oldstr2535->len,0);
oldstr2568=_FUNC_EVALUATE_STRING_A2;
if (oldstr2568->cmem_descriptor){
_FUNC_EVALUATE_STRING_A2=qbs_new_cmem(oldstr2568->len,0);
}else{
_FUNC_EVALUATE_STRING_A2=qbs_new(oldstr2535->len,0);
_FUNC_EVALUATE_STRING_A2=qbs_new(oldstr2568->len,0);
}
memcpy(_FUNC_EVALUATE_STRING_A2->chr,oldstr2535->chr,oldstr2535->len);
memcpy(_FUNC_EVALUATE_STRING_A2->chr,oldstr2568->chr,oldstr2568->len);
}
ptrszint *_FUNC_EVALUATE_ARRAY_STRING_BLOCK=NULL;
if (!_FUNC_EVALUATE_ARRAY_STRING_BLOCK){
@ -68,15 +68,15 @@ if(_FUNC_EVALUATE_LONG_I==NULL){
_FUNC_EVALUATE_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_EVALUATE_LONG_I=0;
}
int64 fornext_value2538;
int64 fornext_finalvalue2538;
int64 fornext_step2538;
uint8 fornext_step_negative2538;
int64 fornext_value2571;
int64 fornext_finalvalue2571;
int64 fornext_step2571;
uint8 fornext_step_negative2571;
qbs *_FUNC_EVALUATE_STRING_L=NULL;
if (!_FUNC_EVALUATE_STRING_L)_FUNC_EVALUATE_STRING_L=qbs_new(0,0);
qbs *_FUNC_EVALUATE_STRING_NEXTL=NULL;
if (!_FUNC_EVALUATE_STRING_NEXTL)_FUNC_EVALUATE_STRING_NEXTL=qbs_new(0,0);
int32 pass2540;
int32 pass2573;
qbs *_FUNC_EVALUATE_STRING_L2=NULL;
if (!_FUNC_EVALUATE_STRING_L2)_FUNC_EVALUATE_STRING_L2=qbs_new(0,0);
int32 *_FUNC_EVALUATE_LONG_TRY_METHOD=NULL;
@ -84,15 +84,15 @@ if(_FUNC_EVALUATE_LONG_TRY_METHOD==NULL){
_FUNC_EVALUATE_LONG_TRY_METHOD=(int32*)mem_static_malloc(4);
*_FUNC_EVALUATE_LONG_TRY_METHOD=0;
}
int64 fornext_value2543;
int64 fornext_finalvalue2543;
int64 fornext_step2543;
uint8 fornext_step_negative2543;
int64 fornext_value2576;
int64 fornext_finalvalue2576;
int64 fornext_step2576;
uint8 fornext_step_negative2576;
qbs *_FUNC_EVALUATE_STRING_DTYP=NULL;
if (!_FUNC_EVALUATE_STRING_DTYP)_FUNC_EVALUATE_STRING_DTYP=qbs_new(0,0);
byte_element_struct *byte_element_2544=NULL;
if (!byte_element_2544){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2544=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2544=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_2577=NULL;
if (!byte_element_2577){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2577=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2577=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_EVALUATE_LONG_V=NULL;
if(_FUNC_EVALUATE_LONG_V==NULL){
@ -121,8 +121,8 @@ _FUNC_EVALUATE_LONG_B2=(int32*)mem_static_malloc(4);
}
qbs *_FUNC_EVALUATE_STRING_C=NULL;
if (!_FUNC_EVALUATE_STRING_C)_FUNC_EVALUATE_STRING_C=qbs_new(0,0);
int32 pass2547;
int32 pass2548;
int32 pass2580;
int32 pass2581;
int32 *_FUNC_EVALUATE_LONG_TYP2=NULL;
if(_FUNC_EVALUATE_LONG_TYP2==NULL){
_FUNC_EVALUATE_LONG_TYP2=(int32*)mem_static_malloc(4);
@ -130,9 +130,9 @@ _FUNC_EVALUATE_LONG_TYP2=(int32*)mem_static_malloc(4);
}
qbs *_FUNC_EVALUATE_STRING_O=NULL;
if (!_FUNC_EVALUATE_STRING_O)_FUNC_EVALUATE_STRING_O=qbs_new(0,0);
byte_element_struct *byte_element_2549=NULL;
if (!byte_element_2549){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2549=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2549=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_2582=NULL;
if (!byte_element_2582){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2582=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2582=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_EVALUATE_LONG_U=NULL;
if(_FUNC_EVALUATE_LONG_U==NULL){
@ -149,10 +149,10 @@ if(_FUNC_EVALUATE_LONG_I3==NULL){
_FUNC_EVALUATE_LONG_I3=(int32*)mem_static_malloc(4);
*_FUNC_EVALUATE_LONG_I3=0;
}
int64 fornext_value2551;
int64 fornext_finalvalue2551;
int64 fornext_step2551;
uint8 fornext_step_negative2551;
int64 fornext_value2584;
int64 fornext_finalvalue2584;
int64 fornext_step2584;
uint8 fornext_step_negative2584;
qbs *_FUNC_EVALUATE_STRING_E2=NULL;
if (!_FUNC_EVALUATE_STRING_E2)_FUNC_EVALUATE_STRING_E2=qbs_new(0,0);
int32 *_FUNC_EVALUATE_LONG_I4=NULL;
@ -162,31 +162,31 @@ _FUNC_EVALUATE_LONG_I4=(int32*)mem_static_malloc(4);
}
qbs *_FUNC_EVALUATE_STRING_E=NULL;
if (!_FUNC_EVALUATE_STRING_E)_FUNC_EVALUATE_STRING_E=qbs_new(0,0);
int32 pass2552;
int32 pass2585;
int32 *_FUNC_EVALUATE_LONG_ARGS=NULL;
if(_FUNC_EVALUATE_LONG_ARGS==NULL){
_FUNC_EVALUATE_LONG_ARGS=(int32*)mem_static_malloc(4);
*_FUNC_EVALUATE_LONG_ARGS=0;
}
int32 pass2553;
int32 pass2554;
int32 pass2555;
int32 pass2556;
int32 pass2586;
int32 pass2587;
int32 pass2588;
int32 pass2589;
int32 *_FUNC_EVALUATE_LONG_NUME=NULL;
if(_FUNC_EVALUATE_LONG_NUME==NULL){
_FUNC_EVALUATE_LONG_NUME=(int32*)mem_static_malloc(4);
*_FUNC_EVALUATE_LONG_NUME=0;
}
int64 fornext_value2561;
int64 fornext_finalvalue2561;
int64 fornext_step2561;
uint8 fornext_step_negative2561;
int64 fornext_value2594;
int64 fornext_finalvalue2594;
int64 fornext_step2594;
uint8 fornext_step_negative2594;
qbs *_FUNC_EVALUATE_STRING_FAKEE=NULL;
if (!_FUNC_EVALUATE_STRING_FAKEE)_FUNC_EVALUATE_STRING_FAKEE=qbs_new(0,0);
int64 fornext_value2563;
int64 fornext_finalvalue2563;
int64 fornext_step2563;
uint8 fornext_step_negative2563;
int64 fornext_value2596;
int64 fornext_finalvalue2596;
int64 fornext_step2596;
uint8 fornext_step_negative2596;
int32 *_FUNC_EVALUATE_LONG_OLDDIMSTATIC=NULL;
if(_FUNC_EVALUATE_LONG_OLDDIMSTATIC==NULL){
_FUNC_EVALUATE_LONG_OLDDIMSTATIC=(int32*)mem_static_malloc(4);
@ -207,10 +207,10 @@ if(_FUNC_EVALUATE_LONG_X==NULL){
_FUNC_EVALUATE_LONG_X=(int32*)mem_static_malloc(4);
*_FUNC_EVALUATE_LONG_X=0;
}
int64 fornext_value2566;
int64 fornext_finalvalue2566;
int64 fornext_step2566;
uint8 fornext_step_negative2566;
int64 fornext_value2599;
int64 fornext_finalvalue2599;
int64 fornext_step2599;
uint8 fornext_step_negative2599;
qbs *_FUNC_EVALUATE_STRING_VARNAME2=NULL;
if (!_FUNC_EVALUATE_STRING_VARNAME2)_FUNC_EVALUATE_STRING_VARNAME2=qbs_new(0,0);
qbs *_FUNC_EVALUATE_STRING_TYP2=NULL;
@ -234,17 +234,17 @@ if(_FUNC_EVALUATE_LONG_I1==NULL){
_FUNC_EVALUATE_LONG_I1=(int32*)mem_static_malloc(4);
*_FUNC_EVALUATE_LONG_I1=0;
}
int32 pass2568;
int32 pass2601;
qbs *_FUNC_EVALUATE_STRING_R=NULL;
if (!_FUNC_EVALUATE_STRING_R)_FUNC_EVALUATE_STRING_R=qbs_new(0,0);
int64 fornext_value2571;
int64 fornext_finalvalue2571;
int64 fornext_step2571;
uint8 fornext_step_negative2571;
int64 fornext_value2575;
int64 fornext_finalvalue2575;
int64 fornext_step2575;
uint8 fornext_step_negative2575;
int64 fornext_value2604;
int64 fornext_finalvalue2604;
int64 fornext_step2604;
uint8 fornext_step_negative2604;
int64 fornext_value2608;
int64 fornext_finalvalue2608;
int64 fornext_step2608;
uint8 fornext_step_negative2608;
int32 *_FUNC_EVALUATE_LONG_C=NULL;
if(_FUNC_EVALUATE_LONG_C==NULL){
_FUNC_EVALUATE_LONG_C=(int32*)mem_static_malloc(4);
@ -261,29 +261,29 @@ qbs *_FUNC_EVALUATE_STRING_X=NULL;
if (!_FUNC_EVALUATE_STRING_X)_FUNC_EVALUATE_STRING_X=qbs_new(0,0);
qbs *_FUNC_EVALUATE_STRING_TYP=NULL;
if (!_FUNC_EVALUATE_STRING_TYP)_FUNC_EVALUATE_STRING_TYP=qbs_new(0,0);
byte_element_struct *byte_element_2576=NULL;
if (!byte_element_2576){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2576=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2576=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_2609=NULL;
if (!byte_element_2609){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_2609=(byte_element_struct*)(mem_static_pointer-12); else byte_element_2609=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_EVALUATE_LONG_RETVAL=NULL;
if(_FUNC_EVALUATE_LONG_RETVAL==NULL){
_FUNC_EVALUATE_LONG_RETVAL=(int32*)mem_static_malloc(4);
*_FUNC_EVALUATE_LONG_RETVAL=0;
}
int32 pass2580;
int32 pass2581;
int8 pass2582;
int32 pass2583;
int32 pass2584;
int32 pass2613;
int32 pass2614;
int8 pass2615;
int32 pass2616;
int32 pass2617;
int32 *_FUNC_EVALUATE_LONG_NONOP=NULL;
if(_FUNC_EVALUATE_LONG_NONOP==NULL){
_FUNC_EVALUATE_LONG_NONOP=(int32*)mem_static_malloc(4);
*_FUNC_EVALUATE_LONG_NONOP=0;
}
int64 fornext_value2588;
int64 fornext_finalvalue2588;
int64 fornext_step2588;
uint8 fornext_step_negative2588;
int64 fornext_value2621;
int64 fornext_finalvalue2621;
int64 fornext_step2621;
uint8 fornext_step_negative2621;
int32 *_FUNC_EVALUATE_LONG_ISOP=NULL;
if(_FUNC_EVALUATE_LONG_ISOP==NULL){
_FUNC_EVALUATE_LONG_ISOP=(int32*)mem_static_malloc(4);
@ -341,8 +341,8 @@ if(_FUNC_EVALUATE_LONG_B3==NULL){
_FUNC_EVALUATE_LONG_B3=(int32*)mem_static_malloc(4);
*_FUNC_EVALUATE_LONG_B3=0;
}
int64 fornext_value2591;
int64 fornext_finalvalue2591;
int64 fornext_step2591;
uint8 fornext_step_negative2591;
int32 pass2600;
int64 fornext_value2624;
int64 fornext_finalvalue2624;
int64 fornext_step2624;
uint8 fornext_step_negative2624;
int32 pass2633;

View file

@ -1,44 +1,338 @@
qbs *_FUNC_FORMATRANGE_STRING_FORMATRANGE=NULL;
if (!_FUNC_FORMATRANGE_STRING_FORMATRANGE)_FUNC_FORMATRANGE_STRING_FORMATRANGE=qbs_new(0,0);
qbs*oldstr5198=NULL;
if(_FUNC_FORMATRANGE_STRING___TEXT->tmp||_FUNC_FORMATRANGE_STRING___TEXT->fixed||_FUNC_FORMATRANGE_STRING___TEXT->readonly){
oldstr5198=_FUNC_FORMATRANGE_STRING___TEXT;
if (oldstr5198->cmem_descriptor){
_FUNC_FORMATRANGE_STRING___TEXT=qbs_new_cmem(oldstr5198->len,0);
qbs *_FUNC_IDEELEMENTWATCHBOX_STRING_IDEELEMENTWATCHBOX=NULL;
if (!_FUNC_IDEELEMENTWATCHBOX_STRING_IDEELEMENTWATCHBOX)_FUNC_IDEELEMENTWATCHBOX_STRING_IDEELEMENTWATCHBOX=qbs_new(0,0);
qbs*oldstr5246=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_STRING_CURRENTPATH->tmp||_FUNC_IDEELEMENTWATCHBOX_STRING_CURRENTPATH->fixed||_FUNC_IDEELEMENTWATCHBOX_STRING_CURRENTPATH->readonly){
oldstr5246=_FUNC_IDEELEMENTWATCHBOX_STRING_CURRENTPATH;
if (oldstr5246->cmem_descriptor){
_FUNC_IDEELEMENTWATCHBOX_STRING_CURRENTPATH=qbs_new_cmem(oldstr5246->len,0);
}else{
_FUNC_FORMATRANGE_STRING___TEXT=qbs_new(oldstr5198->len,0);
_FUNC_IDEELEMENTWATCHBOX_STRING_CURRENTPATH=qbs_new(oldstr5246->len,0);
}
memcpy(_FUNC_FORMATRANGE_STRING___TEXT->chr,oldstr5198->chr,oldstr5198->len);
memcpy(_FUNC_IDEELEMENTWATCHBOX_STRING_CURRENTPATH->chr,oldstr5246->chr,oldstr5246->len);
}
qbs *_FUNC_FORMATRANGE_STRING_TEMP=NULL;
if (!_FUNC_FORMATRANGE_STRING_TEMP)_FUNC_FORMATRANGE_STRING_TEMP=qbs_new(0,0);
int32 *_FUNC_FORMATRANGE_LONG_V1=NULL;
if(_FUNC_FORMATRANGE_LONG_V1==NULL){
_FUNC_FORMATRANGE_LONG_V1=(int32*)mem_static_malloc(4);
*_FUNC_FORMATRANGE_LONG_V1=0;
qbs*oldstr5247=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES->tmp||_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES->fixed||_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES->readonly){
oldstr5247=_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES;
if (oldstr5247->cmem_descriptor){
_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES=qbs_new_cmem(oldstr5247->len,0);
}else{
_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES=qbs_new(oldstr5247->len,0);
}
int32 *_FUNC_FORMATRANGE_LONG_V2=NULL;
if(_FUNC_FORMATRANGE_LONG_V2==NULL){
_FUNC_FORMATRANGE_LONG_V2=(int32*)mem_static_malloc(4);
*_FUNC_FORMATRANGE_LONG_V2=0;
memcpy(_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES->chr,oldstr5247->chr,oldstr5247->len);
}
int32 *_FUNC_FORMATRANGE_LONG_I=NULL;
if(_FUNC_FORMATRANGE_LONG_I==NULL){
_FUNC_FORMATRANGE_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_FORMATRANGE_LONG_I=0;
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_FOCUS=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_FOCUS==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_FOCUS=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_FOCUS=0;
}
int64 fornext_value5200;
int64 fornext_finalvalue5200;
int64 fornext_step5200;
uint8 fornext_step_negative5200;
byte_element_struct *byte_element_5201=NULL;
if (!byte_element_5201){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5201=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5201=(byte_element_struct*)mem_static_malloc(12);
void *_FUNC_IDEELEMENTWATCHBOX_UDT_P=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_UDT_P==NULL){
_FUNC_IDEELEMENTWATCHBOX_UDT_P=(void*)mem_static_malloc(20);
memset(_FUNC_IDEELEMENTWATCHBOX_UDT_P,0,20);
}
int32 *_FUNC_FORMATRANGE_LONG_V=NULL;
if(_FUNC_FORMATRANGE_LONG_V==NULL){
_FUNC_FORMATRANGE_LONG_V=(int32*)mem_static_malloc(4);
*_FUNC_FORMATRANGE_LONG_V=0;
ptrszint *_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_O=NULL;
if (!_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_O){
_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_O=(ptrszint*)mem_static_malloc(9*ptrsz);
new_mem_lock();
mem_lock_tmp->type=4;
((ptrszint*)_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_O)[8]=(ptrszint)mem_lock_tmp;
_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_O[2]=0;
_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_O[4]=2147483647;
_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_O[5]=0;
_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_O[6]=0;
_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_O[0]=(ptrszint)nothingvalue;
}
qbs *_FUNC_IDEELEMENTWATCHBOX_STRING1_SEP=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_STRING1_SEP==NULL){
_FUNC_IDEELEMENTWATCHBOX_STRING1_SEP=qbs_new_fixed((uint8*)mem_static_malloc(1),1,0);
memset(_FUNC_IDEELEMENTWATCHBOX_STRING1_SEP->chr,0,1);
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_VARIABLENAMECOLOR=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_VARIABLENAMECOLOR==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_VARIABLENAMECOLOR=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_VARIABLENAMECOLOR=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_TYPECOLUMNCOLOR=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_TYPECOLUMNCOLOR==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_TYPECOLUMNCOLOR=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_TYPECOLUMNCOLOR=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_SELECTEDBG=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_SELECTEDBG==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_SELECTEDBG=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_SELECTEDBG=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_TOTALELEMENTS=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_TOTALELEMENTS==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_TOTALELEMENTS=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_TOTALELEMENTS=0;
}
byte_element_struct *byte_element_5248=NULL;
if (!byte_element_5248){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5248=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5248=(byte_element_struct*)mem_static_malloc(12);
}
ptrszint *_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_VARDLGLIST=NULL;
if (!_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_VARDLGLIST){
_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_VARDLGLIST=(ptrszint*)mem_static_malloc(9*ptrsz);
new_mem_lock();
mem_lock_tmp->type=4;
((ptrszint*)_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_VARDLGLIST)[8]=(ptrszint)mem_lock_tmp;
_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_VARDLGLIST[2]=0;
_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_VARDLGLIST[4]=2147483647;
_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_VARDLGLIST[5]=0;
_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_VARDLGLIST[6]=0;
_FUNC_IDEELEMENTWATCHBOX_ARRAY_UDT_VARDLGLIST[0]=(ptrszint)nothingvalue;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_DIALOGHEIGHT=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_DIALOGHEIGHT==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_DIALOGHEIGHT=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_DIALOGHEIGHT=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_I=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_I==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_I=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_DIALOGWIDTH=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_DIALOGWIDTH==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_DIALOGWIDTH=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_DIALOGWIDTH=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_LONGESTNAME=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_LONGESTNAME==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_LONGESTNAME=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_LONGESTNAME=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_MAXTYPELEN=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_MAXTYPELEN==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_MAXTYPELEN=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_MAXTYPELEN=0;
}
qbs *_FUNC_IDEELEMENTWATCHBOX_STRING_TITLE=NULL;
if (!_FUNC_IDEELEMENTWATCHBOX_STRING_TITLE)_FUNC_IDEELEMENTWATCHBOX_STRING_TITLE=qbs_new(0,0);
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_VARLISTBOX=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_VARLISTBOX==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_VARLISTBOX=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_VARLISTBOX=0;
}
qbs *_FUNC_IDEELEMENTWATCHBOX_STRING_L=NULL;
if (!_FUNC_IDEELEMENTWATCHBOX_STRING_L)_FUNC_IDEELEMENTWATCHBOX_STRING_L=qbs_new(0,0);
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_BUTTONSET=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_BUTTONSET==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_BUTTONSET=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_BUTTONSET=0;
}
int64 fornext_value5250;
int64 fornext_finalvalue5250;
int64 fornext_step5250;
uint8 fornext_step_negative5250;
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_F=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_F==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_F=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_F=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_CX=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_CX==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_CX=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_CX=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_CY=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_CY==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_CY=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_CY=0;
}
int64 fornext_value5253;
int64 fornext_finalvalue5253;
int64 fornext_step5253;
uint8 fornext_step_negative5253;
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_LASTFOCUS=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_LASTFOCUS==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_LASTFOCUS=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_LASTFOCUS=0;
}
qbs *_FUNC_IDEELEMENTWATCHBOX_STRING_TEMP=NULL;
if (!_FUNC_IDEELEMENTWATCHBOX_STRING_TEMP)_FUNC_IDEELEMENTWATCHBOX_STRING_TEMP=qbs_new(0,0);
byte_element_struct *byte_element_5254=NULL;
if (!byte_element_5254){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5254=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5254=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_CHANGE=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_CHANGE==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_CHANGE=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_CHANGE=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_MOUSEDOWN=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_MOUSEDOWN==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_MOUSEDOWN=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_MOUSEDOWN=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_MOUSEUP=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_MOUSEUP==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_MOUSEUP=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_MOUSEUP=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_ALT=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_ALT==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_ALT=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_ALT=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_OLDALT=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_OLDALT==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_OLDALT=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_OLDALT=0;
}
qbs *_FUNC_IDEELEMENTWATCHBOX_STRING_ALTLETTER=NULL;
if (!_FUNC_IDEELEMENTWATCHBOX_STRING_ALTLETTER)_FUNC_IDEELEMENTWATCHBOX_STRING_ALTLETTER=qbs_new(0,0);
byte_element_struct *byte_element_5256=NULL;
if (!byte_element_5256){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5256=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5256=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_K=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_K==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_K=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_K=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_INFO=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_INFO==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_INFO=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_INFO=0;
}
int64 fornext_value5258;
int64 fornext_finalvalue5258;
int64 fornext_step5258;
uint8 fornext_step_negative5258;
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_T=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_T==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_T=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_T=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_FOCUSOFFSET=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_FOCUSOFFSET==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_FOCUSOFFSET=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_FOCUSOFFSET=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_Y=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_Y==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_Y=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_Y=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_TOGGLEANDRETURN=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_TOGGLEANDRETURN==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_TOGGLEANDRETURN=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_TOGGLEANDRETURN=0;
}
int64 fornext_value5260;
int64 fornext_finalvalue5260;
int64 fornext_step5260;
uint8 fornext_step_negative5260;
qbs *_FUNC_IDEELEMENTWATCHBOX_STRING_VARTYPE=NULL;
if (!_FUNC_IDEELEMENTWATCHBOX_STRING_VARTYPE)_FUNC_IDEELEMENTWATCHBOX_STRING_VARTYPE=qbs_new(0,0);
int64 fornext_value5262;
int64 fornext_finalvalue5262;
int64 fornext_step5262;
uint8 fornext_step_negative5262;
int64 fornext_value5264;
int64 fornext_finalvalue5264;
int64 fornext_step5264;
uint8 fornext_step_negative5264;
qbs *_FUNC_IDEELEMENTWATCHBOX_STRING_THISNAME=NULL;
if (!_FUNC_IDEELEMENTWATCHBOX_STRING_THISNAME)_FUNC_IDEELEMENTWATCHBOX_STRING_THISNAME=qbs_new(0,0);
byte_element_struct *byte_element_5265=NULL;
if (!byte_element_5265){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5265=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5265=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5266=NULL;
if (!byte_element_5266){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5266=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5266=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5267=NULL;
if (!byte_element_5267){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5267=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5267=(byte_element_struct*)mem_static_malloc(12);
}
float *_FUNC_IDEELEMENTWATCHBOX_SINGLE_LASTCLICK=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_SINGLE_LASTCLICK==NULL){
_FUNC_IDEELEMENTWATCHBOX_SINGLE_LASTCLICK=(float*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_SINGLE_LASTCLICK=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_CLICKEDITEM=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_CLICKEDITEM==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_CLICKEDITEM=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_CLICKEDITEM=0;
}
int64 fornext_value5269;
int64 fornext_finalvalue5269;
int64 fornext_step5269;
uint8 fornext_step_negative5269;
qbs *_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES2=NULL;
if (!_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES2)_FUNC_IDEELEMENTWATCHBOX_STRING_ELEMENTINDEXES2=qbs_new(0,0);
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_THISUDT=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_THISUDT==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_THISUDT=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_THISUDT=0;
}
int64 fornext_value5271;
int64 fornext_finalvalue5271;
int64 fornext_step5271;
uint8 fornext_step_negative5271;
qbs *_FUNC_IDEELEMENTWATCHBOX_STRING_V=NULL;
if (!_FUNC_IDEELEMENTWATCHBOX_STRING_V)_FUNC_IDEELEMENTWATCHBOX_STRING_V=qbs_new(0,0);
int32 pass5273;
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_OK2=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_OK2==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_OK2=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_OK2=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_X=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_X==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_X=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_X=0;
}
int64 fornext_value5275;
int64 fornext_finalvalue5275;
int64 fornext_step5275;
uint8 fornext_step_negative5275;
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_THISTYPE=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_THISTYPE==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_THISTYPE=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_THISTYPE=0;
}
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_THISLEN=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_THISLEN==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_THISLEN=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_THISLEN=0;
}
int64 fornext_value5277;
int64 fornext_finalvalue5277;
int64 fornext_step5277;
uint8 fornext_step_negative5277;
int32 *_FUNC_IDEELEMENTWATCHBOX_LONG_THISELEMENT=NULL;
if(_FUNC_IDEELEMENTWATCHBOX_LONG_THISELEMENT==NULL){
_FUNC_IDEELEMENTWATCHBOX_LONG_THISELEMENT=(int32*)mem_static_malloc(4);
*_FUNC_IDEELEMENTWATCHBOX_LONG_THISELEMENT=0;
}
byte_element_struct *byte_element_5278=NULL;
if (!byte_element_5278){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5278=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5278=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5279=NULL;
if (!byte_element_5279){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5279=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5279=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5280=NULL;
if (!byte_element_5280){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5280=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5280=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_IDEELEMENTWATCHBOX_STRING_TEXT=NULL;
if (!_FUNC_IDEELEMENTWATCHBOX_STRING_TEXT)_FUNC_IDEELEMENTWATCHBOX_STRING_TEXT=qbs_new(0,0);
byte_element_struct *byte_element_5281=NULL;
if (!byte_element_5281){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5281=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5281=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5282=NULL;
if (!byte_element_5282){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5282=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5282=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5283=NULL;
if (!byte_element_5283){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5283=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5283=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_FORMATRANGE_STRING_A2=NULL;
if (!_FUNC_FORMATRANGE_STRING_A2)_FUNC_FORMATRANGE_STRING_A2=qbs_new(0,0);

View file

@ -1,54 +1,44 @@
qbs *_FUNC_EXPANDARRAY_STRING_EXPANDARRAY=NULL;
if (!_FUNC_EXPANDARRAY_STRING_EXPANDARRAY)_FUNC_EXPANDARRAY_STRING_EXPANDARRAY=qbs_new(0,0);
qbs*oldstr5202=NULL;
if(_FUNC_EXPANDARRAY_STRING___INDEXES->tmp||_FUNC_EXPANDARRAY_STRING___INDEXES->fixed||_FUNC_EXPANDARRAY_STRING___INDEXES->readonly){
oldstr5202=_FUNC_EXPANDARRAY_STRING___INDEXES;
if (oldstr5202->cmem_descriptor){
_FUNC_EXPANDARRAY_STRING___INDEXES=qbs_new_cmem(oldstr5202->len,0);
qbs *_FUNC_FORMATRANGE_STRING_FORMATRANGE=NULL;
if (!_FUNC_FORMATRANGE_STRING_FORMATRANGE)_FUNC_FORMATRANGE_STRING_FORMATRANGE=qbs_new(0,0);
qbs*oldstr5284=NULL;
if(_FUNC_FORMATRANGE_STRING___TEXT->tmp||_FUNC_FORMATRANGE_STRING___TEXT->fixed||_FUNC_FORMATRANGE_STRING___TEXT->readonly){
oldstr5284=_FUNC_FORMATRANGE_STRING___TEXT;
if (oldstr5284->cmem_descriptor){
_FUNC_FORMATRANGE_STRING___TEXT=qbs_new_cmem(oldstr5284->len,0);
}else{
_FUNC_EXPANDARRAY_STRING___INDEXES=qbs_new(oldstr5202->len,0);
_FUNC_FORMATRANGE_STRING___TEXT=qbs_new(oldstr5284->len,0);
}
memcpy(_FUNC_EXPANDARRAY_STRING___INDEXES->chr,oldstr5202->chr,oldstr5202->len);
memcpy(_FUNC_FORMATRANGE_STRING___TEXT->chr,oldstr5284->chr,oldstr5284->len);
}
qbs*oldstr5203=NULL;
if(_FUNC_EXPANDARRAY_STRING___PATH->tmp||_FUNC_EXPANDARRAY_STRING___PATH->fixed||_FUNC_EXPANDARRAY_STRING___PATH->readonly){
oldstr5203=_FUNC_EXPANDARRAY_STRING___PATH;
if (oldstr5203->cmem_descriptor){
_FUNC_EXPANDARRAY_STRING___PATH=qbs_new_cmem(oldstr5203->len,0);
}else{
_FUNC_EXPANDARRAY_STRING___PATH=qbs_new(oldstr5203->len,0);
qbs *_FUNC_FORMATRANGE_STRING_TEMP=NULL;
if (!_FUNC_FORMATRANGE_STRING_TEMP)_FUNC_FORMATRANGE_STRING_TEMP=qbs_new(0,0);
int32 *_FUNC_FORMATRANGE_LONG_V1=NULL;
if(_FUNC_FORMATRANGE_LONG_V1==NULL){
_FUNC_FORMATRANGE_LONG_V1=(int32*)mem_static_malloc(4);
*_FUNC_FORMATRANGE_LONG_V1=0;
}
memcpy(_FUNC_EXPANDARRAY_STRING___PATH->chr,oldstr5203->chr,oldstr5203->len);
int32 *_FUNC_FORMATRANGE_LONG_V2=NULL;
if(_FUNC_FORMATRANGE_LONG_V2==NULL){
_FUNC_FORMATRANGE_LONG_V2=(int32*)mem_static_malloc(4);
*_FUNC_FORMATRANGE_LONG_V2=0;
}
int32 *_FUNC_EXPANDARRAY_LONG_TOTALINDEXES=NULL;
if(_FUNC_EXPANDARRAY_LONG_TOTALINDEXES==NULL){
_FUNC_EXPANDARRAY_LONG_TOTALINDEXES=(int32*)mem_static_malloc(4);
*_FUNC_EXPANDARRAY_LONG_TOTALINDEXES=0;
int32 *_FUNC_FORMATRANGE_LONG_I=NULL;
if(_FUNC_FORMATRANGE_LONG_I==NULL){
_FUNC_FORMATRANGE_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_FORMATRANGE_LONG_I=0;
}
qbs *_FUNC_EXPANDARRAY_STRING_INDEXES=NULL;
if (!_FUNC_EXPANDARRAY_STRING_INDEXES)_FUNC_EXPANDARRAY_STRING_INDEXES=qbs_new(0,0);
qbs *_FUNC_EXPANDARRAY_STRING_REMAININGINDEXES=NULL;
if (!_FUNC_EXPANDARRAY_STRING_REMAININGINDEXES)_FUNC_EXPANDARRAY_STRING_REMAININGINDEXES=qbs_new(0,0);
int32 *_FUNC_EXPANDARRAY_LONG_I=NULL;
if(_FUNC_EXPANDARRAY_LONG_I==NULL){
_FUNC_EXPANDARRAY_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_EXPANDARRAY_LONG_I=0;
int64 fornext_value5286;
int64 fornext_finalvalue5286;
int64 fornext_step5286;
uint8 fornext_step_negative5286;
byte_element_struct *byte_element_5287=NULL;
if (!byte_element_5287){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5287=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5287=(byte_element_struct*)mem_static_malloc(12);
}
int64 fornext_value5205;
int64 fornext_finalvalue5205;
int64 fornext_step5205;
uint8 fornext_step_negative5205;
qbs *_FUNC_EXPANDARRAY_STRING_TEMP=NULL;
if (!_FUNC_EXPANDARRAY_STRING_TEMP)_FUNC_EXPANDARRAY_STRING_TEMP=qbs_new(0,0);
byte_element_struct *byte_element_5206=NULL;
if (!byte_element_5206){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5206=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5206=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5207=NULL;
if (!byte_element_5207){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5207=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5207=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5208=NULL;
if (!byte_element_5208){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5208=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5208=(byte_element_struct*)mem_static_malloc(12);
int32 *_FUNC_FORMATRANGE_LONG_V=NULL;
if(_FUNC_FORMATRANGE_LONG_V==NULL){
_FUNC_FORMATRANGE_LONG_V=(int32*)mem_static_malloc(4);
*_FUNC_FORMATRANGE_LONG_V=0;
}
qbs *_FUNC_FORMATRANGE_STRING_A2=NULL;
if (!_FUNC_FORMATRANGE_STRING_A2)_FUNC_FORMATRANGE_STRING_A2=qbs_new(0,0);

View file

@ -1,114 +1,54 @@
qbs *_FUNC_PARSERANGE_STRING_PARSERANGE=NULL;
if (!_FUNC_PARSERANGE_STRING_PARSERANGE)_FUNC_PARSERANGE_STRING_PARSERANGE=qbs_new(0,0);
qbs*oldstr5209=NULL;
if(_FUNC_PARSERANGE_STRING___TEXT->tmp||_FUNC_PARSERANGE_STRING___TEXT->fixed||_FUNC_PARSERANGE_STRING___TEXT->readonly){
oldstr5209=_FUNC_PARSERANGE_STRING___TEXT;
if (oldstr5209->cmem_descriptor){
_FUNC_PARSERANGE_STRING___TEXT=qbs_new_cmem(oldstr5209->len,0);
qbs *_FUNC_EXPANDARRAY_STRING_EXPANDARRAY=NULL;
if (!_FUNC_EXPANDARRAY_STRING_EXPANDARRAY)_FUNC_EXPANDARRAY_STRING_EXPANDARRAY=qbs_new(0,0);
qbs*oldstr5288=NULL;
if(_FUNC_EXPANDARRAY_STRING___INDEXES->tmp||_FUNC_EXPANDARRAY_STRING___INDEXES->fixed||_FUNC_EXPANDARRAY_STRING___INDEXES->readonly){
oldstr5288=_FUNC_EXPANDARRAY_STRING___INDEXES;
if (oldstr5288->cmem_descriptor){
_FUNC_EXPANDARRAY_STRING___INDEXES=qbs_new_cmem(oldstr5288->len,0);
}else{
_FUNC_PARSERANGE_STRING___TEXT=qbs_new(oldstr5209->len,0);
_FUNC_EXPANDARRAY_STRING___INDEXES=qbs_new(oldstr5288->len,0);
}
memcpy(_FUNC_PARSERANGE_STRING___TEXT->chr,oldstr5209->chr,oldstr5209->len);
memcpy(_FUNC_EXPANDARRAY_STRING___INDEXES->chr,oldstr5288->chr,oldstr5288->len);
}
int8 *_FUNC_PARSERANGE_BYTE_ZEROINCLUDED=NULL;
if(_FUNC_PARSERANGE_BYTE_ZEROINCLUDED==NULL){
_FUNC_PARSERANGE_BYTE_ZEROINCLUDED=(int8*)mem_static_malloc(1);
*_FUNC_PARSERANGE_BYTE_ZEROINCLUDED=0;
qbs*oldstr5289=NULL;
if(_FUNC_EXPANDARRAY_STRING___PATH->tmp||_FUNC_EXPANDARRAY_STRING___PATH->fixed||_FUNC_EXPANDARRAY_STRING___PATH->readonly){
oldstr5289=_FUNC_EXPANDARRAY_STRING___PATH;
if (oldstr5289->cmem_descriptor){
_FUNC_EXPANDARRAY_STRING___PATH=qbs_new_cmem(oldstr5289->len,0);
}else{
_FUNC_EXPANDARRAY_STRING___PATH=qbs_new(oldstr5289->len,0);
}
qbs *_FUNC_PARSERANGE_STRING_FILTER=NULL;
if (!_FUNC_PARSERANGE_STRING_FILTER)_FUNC_PARSERANGE_STRING_FILTER=qbs_new(0,0);
int32 *_FUNC_PARSERANGE_LONG_J=NULL;
if(_FUNC_PARSERANGE_LONG_J==NULL){
_FUNC_PARSERANGE_LONG_J=(int32*)mem_static_malloc(4);
*_FUNC_PARSERANGE_LONG_J=0;
memcpy(_FUNC_EXPANDARRAY_STRING___PATH->chr,oldstr5289->chr,oldstr5289->len);
}
qbs *_FUNC_PARSERANGE_STRING_TEMP=NULL;
if (!_FUNC_PARSERANGE_STRING_TEMP)_FUNC_PARSERANGE_STRING_TEMP=qbs_new(0,0);
int32 *_FUNC_PARSERANGE_LONG_READING=NULL;
if(_FUNC_PARSERANGE_LONG_READING==NULL){
_FUNC_PARSERANGE_LONG_READING=(int32*)mem_static_malloc(4);
*_FUNC_PARSERANGE_LONG_READING=0;
int32 *_FUNC_EXPANDARRAY_LONG_TOTALINDEXES=NULL;
if(_FUNC_EXPANDARRAY_LONG_TOTALINDEXES==NULL){
_FUNC_EXPANDARRAY_LONG_TOTALINDEXES=(int32*)mem_static_malloc(4);
*_FUNC_EXPANDARRAY_LONG_TOTALINDEXES=0;
}
int64 fornext_value5211;
int64 fornext_finalvalue5211;
int64 fornext_step5211;
uint8 fornext_step_negative5211;
byte_element_struct *byte_element_5212=NULL;
if (!byte_element_5212){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5212=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5212=(byte_element_struct*)mem_static_malloc(12);
qbs *_FUNC_EXPANDARRAY_STRING_INDEXES=NULL;
if (!_FUNC_EXPANDARRAY_STRING_INDEXES)_FUNC_EXPANDARRAY_STRING_INDEXES=qbs_new(0,0);
qbs *_FUNC_EXPANDARRAY_STRING_REMAININGINDEXES=NULL;
if (!_FUNC_EXPANDARRAY_STRING_REMAININGINDEXES)_FUNC_EXPANDARRAY_STRING_REMAININGINDEXES=qbs_new(0,0);
int32 *_FUNC_EXPANDARRAY_LONG_I=NULL;
if(_FUNC_EXPANDARRAY_LONG_I==NULL){
_FUNC_EXPANDARRAY_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_EXPANDARRAY_LONG_I=0;
}
int32 *_FUNC_PARSERANGE_LONG_V=NULL;
if(_FUNC_PARSERANGE_LONG_V==NULL){
_FUNC_PARSERANGE_LONG_V=(int32*)mem_static_malloc(4);
*_FUNC_PARSERANGE_LONG_V=0;
int64 fornext_value5291;
int64 fornext_finalvalue5291;
int64 fornext_step5291;
uint8 fornext_step_negative5291;
qbs *_FUNC_EXPANDARRAY_STRING_TEMP=NULL;
if (!_FUNC_EXPANDARRAY_STRING_TEMP)_FUNC_EXPANDARRAY_STRING_TEMP=qbs_new(0,0);
byte_element_struct *byte_element_5292=NULL;
if (!byte_element_5292){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5292=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5292=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_PARSERANGE_LONG_PREVCHAR=NULL;
if(_FUNC_PARSERANGE_LONG_PREVCHAR==NULL){
_FUNC_PARSERANGE_LONG_PREVCHAR=(int32*)mem_static_malloc(4);
*_FUNC_PARSERANGE_LONG_PREVCHAR=0;
byte_element_struct *byte_element_5293=NULL;
if (!byte_element_5293){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5293=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5293=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5214=NULL;
if (!byte_element_5214){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5214=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5214=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_PARSERANGE_STRING_V1=NULL;
if (!_FUNC_PARSERANGE_STRING_V1)_FUNC_PARSERANGE_STRING_V1=qbs_new(0,0);
qbs *_FUNC_PARSERANGE_STRING_V2=NULL;
if (!_FUNC_PARSERANGE_STRING_V2)_FUNC_PARSERANGE_STRING_V2=qbs_new(0,0);
byte_element_struct *byte_element_5215=NULL;
if (!byte_element_5215){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5215=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5215=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_PARSERANGE_STRING_RETURNVALUE=NULL;
if (!_FUNC_PARSERANGE_STRING_RETURNVALUE)_FUNC_PARSERANGE_STRING_RETURNVALUE=qbs_new(0,0);
int32 *_FUNC_PARSERANGE_LONG_I=NULL;
if(_FUNC_PARSERANGE_LONG_I==NULL){
_FUNC_PARSERANGE_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_PARSERANGE_LONG_I=0;
}
int64 fornext_value5217;
int64 fornext_finalvalue5217;
int64 fornext_step5217;
uint8 fornext_step_negative5217;
byte_element_struct *byte_element_5218=NULL;
if (!byte_element_5218){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5218=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5218=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_PARSERANGE_LONG_V1=NULL;
if(_FUNC_PARSERANGE_LONG_V1==NULL){
_FUNC_PARSERANGE_LONG_V1=(int32*)mem_static_malloc(4);
*_FUNC_PARSERANGE_LONG_V1=0;
}
int32 *_FUNC_PARSERANGE_LONG_V2=NULL;
if(_FUNC_PARSERANGE_LONG_V2==NULL){
_FUNC_PARSERANGE_LONG_V2=(int32*)mem_static_malloc(4);
*_FUNC_PARSERANGE_LONG_V2=0;
}
byte_element_struct *byte_element_5219=NULL;
if (!byte_element_5219){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5219=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5219=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5220=NULL;
if (!byte_element_5220){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5220=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5220=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5221=NULL;
if (!byte_element_5221){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5221=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5221=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5222=NULL;
if (!byte_element_5222){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5222=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5222=(byte_element_struct*)mem_static_malloc(12);
}
int64 fornext_value5224;
int64 fornext_finalvalue5224;
int64 fornext_step5224;
uint8 fornext_step_negative5224;
byte_element_struct *byte_element_5225=NULL;
if (!byte_element_5225){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5225=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5225=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5226=NULL;
if (!byte_element_5226){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5226=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5226=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_5294=NULL;
if (!byte_element_5294){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5294=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5294=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -1,165 +1,114 @@
int32 *_FUNC_IDECALLSTACKBOX_LONG_IDECALLSTACKBOX=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_IDECALLSTACKBOX==NULL){
_FUNC_IDECALLSTACKBOX_LONG_IDECALLSTACKBOX=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_IDECALLSTACKBOX=0;
qbs *_FUNC_PARSERANGE_STRING_PARSERANGE=NULL;
if (!_FUNC_PARSERANGE_STRING_PARSERANGE)_FUNC_PARSERANGE_STRING_PARSERANGE=qbs_new(0,0);
qbs*oldstr5295=NULL;
if(_FUNC_PARSERANGE_STRING___TEXT->tmp||_FUNC_PARSERANGE_STRING___TEXT->fixed||_FUNC_PARSERANGE_STRING___TEXT->readonly){
oldstr5295=_FUNC_PARSERANGE_STRING___TEXT;
if (oldstr5295->cmem_descriptor){
_FUNC_PARSERANGE_STRING___TEXT=qbs_new_cmem(oldstr5295->len,0);
}else{
_FUNC_PARSERANGE_STRING___TEXT=qbs_new(oldstr5295->len,0);
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_FOCUS=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_FOCUS==NULL){
_FUNC_IDECALLSTACKBOX_LONG_FOCUS=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_FOCUS=0;
memcpy(_FUNC_PARSERANGE_STRING___TEXT->chr,oldstr5295->chr,oldstr5295->len);
}
void *_FUNC_IDECALLSTACKBOX_UDT_P=NULL;
if(_FUNC_IDECALLSTACKBOX_UDT_P==NULL){
_FUNC_IDECALLSTACKBOX_UDT_P=(void*)mem_static_malloc(20);
memset(_FUNC_IDECALLSTACKBOX_UDT_P,0,20);
int8 *_FUNC_PARSERANGE_BYTE_ZEROINCLUDED=NULL;
if(_FUNC_PARSERANGE_BYTE_ZEROINCLUDED==NULL){
_FUNC_PARSERANGE_BYTE_ZEROINCLUDED=(int8*)mem_static_malloc(1);
*_FUNC_PARSERANGE_BYTE_ZEROINCLUDED=0;
}
ptrszint *_FUNC_IDECALLSTACKBOX_ARRAY_UDT_O=NULL;
if (!_FUNC_IDECALLSTACKBOX_ARRAY_UDT_O){
_FUNC_IDECALLSTACKBOX_ARRAY_UDT_O=(ptrszint*)mem_static_malloc(9*ptrsz);
new_mem_lock();
mem_lock_tmp->type=4;
((ptrszint*)_FUNC_IDECALLSTACKBOX_ARRAY_UDT_O)[8]=(ptrszint)mem_lock_tmp;
_FUNC_IDECALLSTACKBOX_ARRAY_UDT_O[2]=0;
_FUNC_IDECALLSTACKBOX_ARRAY_UDT_O[4]=2147483647;
_FUNC_IDECALLSTACKBOX_ARRAY_UDT_O[5]=0;
_FUNC_IDECALLSTACKBOX_ARRAY_UDT_O[6]=0;
_FUNC_IDECALLSTACKBOX_ARRAY_UDT_O[0]=(ptrszint)nothingvalue;
qbs *_FUNC_PARSERANGE_STRING_FILTER=NULL;
if (!_FUNC_PARSERANGE_STRING_FILTER)_FUNC_PARSERANGE_STRING_FILTER=qbs_new(0,0);
int32 *_FUNC_PARSERANGE_LONG_J=NULL;
if(_FUNC_PARSERANGE_LONG_J==NULL){
_FUNC_PARSERANGE_LONG_J=(int32*)mem_static_malloc(4);
*_FUNC_PARSERANGE_LONG_J=0;
}
qbs *_FUNC_IDECALLSTACKBOX_STRING1_SEP=NULL;
if(_FUNC_IDECALLSTACKBOX_STRING1_SEP==NULL){
_FUNC_IDECALLSTACKBOX_STRING1_SEP=qbs_new_fixed((uint8*)mem_static_malloc(1),1,0);
memset(_FUNC_IDECALLSTACKBOX_STRING1_SEP->chr,0,1);
qbs *_FUNC_PARSERANGE_STRING_TEMP=NULL;
if (!_FUNC_PARSERANGE_STRING_TEMP)_FUNC_PARSERANGE_STRING_TEMP=qbs_new(0,0);
int32 *_FUNC_PARSERANGE_LONG_READING=NULL;
if(_FUNC_PARSERANGE_LONG_READING==NULL){
_FUNC_PARSERANGE_LONG_READING=(int32*)mem_static_malloc(4);
*_FUNC_PARSERANGE_LONG_READING=0;
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_DIALOGHEIGHT=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_DIALOGHEIGHT==NULL){
_FUNC_IDECALLSTACKBOX_LONG_DIALOGHEIGHT=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_DIALOGHEIGHT=0;
int64 fornext_value5297;
int64 fornext_finalvalue5297;
int64 fornext_step5297;
uint8 fornext_step_negative5297;
byte_element_struct *byte_element_5298=NULL;
if (!byte_element_5298){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5298=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5298=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_DIALOGWIDTH=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_DIALOGWIDTH==NULL){
_FUNC_IDECALLSTACKBOX_LONG_DIALOGWIDTH=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_DIALOGWIDTH=0;
int32 *_FUNC_PARSERANGE_LONG_V=NULL;
if(_FUNC_PARSERANGE_LONG_V==NULL){
_FUNC_PARSERANGE_LONG_V=(int32*)mem_static_malloc(4);
*_FUNC_PARSERANGE_LONG_V=0;
}
qbs *_FUNC_IDECALLSTACKBOX_STRING_TEMP=NULL;
if (!_FUNC_IDECALLSTACKBOX_STRING_TEMP)_FUNC_IDECALLSTACKBOX_STRING_TEMP=qbs_new(0,0);
int32 *_FUNC_IDECALLSTACKBOX_LONG_I=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_I==NULL){
_FUNC_IDECALLSTACKBOX_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_I=0;
int32 *_FUNC_PARSERANGE_LONG_PREVCHAR=NULL;
if(_FUNC_PARSERANGE_LONG_PREVCHAR==NULL){
_FUNC_PARSERANGE_LONG_PREVCHAR=(int32*)mem_static_malloc(4);
*_FUNC_PARSERANGE_LONG_PREVCHAR=0;
}
qbs *_FUNC_IDECALLSTACKBOX_STRING_TEMP2=NULL;
if (!_FUNC_IDECALLSTACKBOX_STRING_TEMP2)_FUNC_IDECALLSTACKBOX_STRING_TEMP2=qbs_new(0,0);
byte_element_struct *byte_element_5228=NULL;
if (!byte_element_5228){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5228=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5228=(byte_element_struct*)mem_static_malloc(12);
byte_element_struct *byte_element_5300=NULL;
if (!byte_element_5300){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5300=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5300=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5229=NULL;
if (!byte_element_5229){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5229=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5229=(byte_element_struct*)mem_static_malloc(12);
qbs *_FUNC_PARSERANGE_STRING_V1=NULL;
if (!_FUNC_PARSERANGE_STRING_V1)_FUNC_PARSERANGE_STRING_V1=qbs_new(0,0);
qbs *_FUNC_PARSERANGE_STRING_V2=NULL;
if (!_FUNC_PARSERANGE_STRING_V2)_FUNC_PARSERANGE_STRING_V2=qbs_new(0,0);
byte_element_struct *byte_element_5301=NULL;
if (!byte_element_5301){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5301=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5301=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5230=NULL;
if (!byte_element_5230){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5230=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5230=(byte_element_struct*)mem_static_malloc(12);
qbs *_FUNC_PARSERANGE_STRING_RETURNVALUE=NULL;
if (!_FUNC_PARSERANGE_STRING_RETURNVALUE)_FUNC_PARSERANGE_STRING_RETURNVALUE=qbs_new(0,0);
int32 *_FUNC_PARSERANGE_LONG_I=NULL;
if(_FUNC_PARSERANGE_LONG_I==NULL){
_FUNC_PARSERANGE_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_PARSERANGE_LONG_I=0;
}
byte_element_struct *byte_element_5231=NULL;
if (!byte_element_5231){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5231=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5231=(byte_element_struct*)mem_static_malloc(12);
int64 fornext_value5303;
int64 fornext_finalvalue5303;
int64 fornext_step5303;
uint8 fornext_step_negative5303;
byte_element_struct *byte_element_5304=NULL;
if (!byte_element_5304){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5304=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5304=(byte_element_struct*)mem_static_malloc(12);
}
int64 fornext_value5233;
int64 fornext_finalvalue5233;
int64 fornext_step5233;
uint8 fornext_step_negative5233;
int32 *_FUNC_IDECALLSTACKBOX_LONG_F=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_F==NULL){
_FUNC_IDECALLSTACKBOX_LONG_F=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_F=0;
int32 *_FUNC_PARSERANGE_LONG_V1=NULL;
if(_FUNC_PARSERANGE_LONG_V1==NULL){
_FUNC_PARSERANGE_LONG_V1=(int32*)mem_static_malloc(4);
*_FUNC_PARSERANGE_LONG_V1=0;
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_CX=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_CX==NULL){
_FUNC_IDECALLSTACKBOX_LONG_CX=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_CX=0;
int32 *_FUNC_PARSERANGE_LONG_V2=NULL;
if(_FUNC_PARSERANGE_LONG_V2==NULL){
_FUNC_PARSERANGE_LONG_V2=(int32*)mem_static_malloc(4);
*_FUNC_PARSERANGE_LONG_V2=0;
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_CY=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_CY==NULL){
_FUNC_IDECALLSTACKBOX_LONG_CY=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_CY=0;
byte_element_struct *byte_element_5305=NULL;
if (!byte_element_5305){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5305=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5305=(byte_element_struct*)mem_static_malloc(12);
}
int64 fornext_value5236;
int64 fornext_finalvalue5236;
int64 fornext_step5236;
uint8 fornext_step_negative5236;
int32 *_FUNC_IDECALLSTACKBOX_LONG_LASTFOCUS=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_LASTFOCUS==NULL){
_FUNC_IDECALLSTACKBOX_LONG_LASTFOCUS=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_LASTFOCUS=0;
byte_element_struct *byte_element_5306=NULL;
if (!byte_element_5306){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5306=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5306=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_CHANGE=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_CHANGE==NULL){
_FUNC_IDECALLSTACKBOX_LONG_CHANGE=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_CHANGE=0;
byte_element_struct *byte_element_5307=NULL;
if (!byte_element_5307){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5307=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5307=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_MOUSEDOWN=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_MOUSEDOWN==NULL){
_FUNC_IDECALLSTACKBOX_LONG_MOUSEDOWN=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_MOUSEDOWN=0;
byte_element_struct *byte_element_5308=NULL;
if (!byte_element_5308){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5308=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5308=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_MOUSEUP=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_MOUSEUP==NULL){
_FUNC_IDECALLSTACKBOX_LONG_MOUSEUP=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_MOUSEUP=0;
int64 fornext_value5310;
int64 fornext_finalvalue5310;
int64 fornext_step5310;
uint8 fornext_step_negative5310;
byte_element_struct *byte_element_5311=NULL;
if (!byte_element_5311){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5311=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5311=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_ALT=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_ALT==NULL){
_FUNC_IDECALLSTACKBOX_LONG_ALT=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_ALT=0;
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_OLDALT=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_OLDALT==NULL){
_FUNC_IDECALLSTACKBOX_LONG_OLDALT=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_OLDALT=0;
}
qbs *_FUNC_IDECALLSTACKBOX_STRING_ALTLETTER=NULL;
if (!_FUNC_IDECALLSTACKBOX_STRING_ALTLETTER)_FUNC_IDECALLSTACKBOX_STRING_ALTLETTER=qbs_new(0,0);
byte_element_struct *byte_element_5238=NULL;
if (!byte_element_5238){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5238=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5238=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_K=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_K==NULL){
_FUNC_IDECALLSTACKBOX_LONG_K=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_K=0;
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_INFO=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_INFO==NULL){
_FUNC_IDECALLSTACKBOX_LONG_INFO=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_INFO=0;
}
int64 fornext_value5240;
int64 fornext_finalvalue5240;
int64 fornext_step5240;
uint8 fornext_step_negative5240;
int32 *_FUNC_IDECALLSTACKBOX_LONG_T=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_T==NULL){
_FUNC_IDECALLSTACKBOX_LONG_T=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_T=0;
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_FOCUSOFFSET=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_FOCUSOFFSET==NULL){
_FUNC_IDECALLSTACKBOX_LONG_FOCUSOFFSET=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_FOCUSOFFSET=0;
}
float *_FUNC_IDECALLSTACKBOX_SINGLE_LASTCLICK=NULL;
if(_FUNC_IDECALLSTACKBOX_SINGLE_LASTCLICK==NULL){
_FUNC_IDECALLSTACKBOX_SINGLE_LASTCLICK=(float*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_SINGLE_LASTCLICK=0;
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_CLICKEDITEM=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_CLICKEDITEM==NULL){
_FUNC_IDECALLSTACKBOX_LONG_CLICKEDITEM=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_CLICKEDITEM=0;
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_Y=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_Y==NULL){
_FUNC_IDECALLSTACKBOX_LONG_Y=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_Y=0;
byte_element_struct *byte_element_5312=NULL;
if (!byte_element_5312){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5312=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5312=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -1,9 +1,165 @@
int32 *_SUB_IDEBOX_LONG_Y2=NULL;
if(_SUB_IDEBOX_LONG_Y2==NULL){
_SUB_IDEBOX_LONG_Y2=(int32*)mem_static_malloc(4);
*_SUB_IDEBOX_LONG_Y2=0;
int32 *_FUNC_IDECALLSTACKBOX_LONG_IDECALLSTACKBOX=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_IDECALLSTACKBOX==NULL){
_FUNC_IDECALLSTACKBOX_LONG_IDECALLSTACKBOX=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_IDECALLSTACKBOX=0;
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_FOCUS=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_FOCUS==NULL){
_FUNC_IDECALLSTACKBOX_LONG_FOCUS=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_FOCUS=0;
}
void *_FUNC_IDECALLSTACKBOX_UDT_P=NULL;
if(_FUNC_IDECALLSTACKBOX_UDT_P==NULL){
_FUNC_IDECALLSTACKBOX_UDT_P=(void*)mem_static_malloc(20);
memset(_FUNC_IDECALLSTACKBOX_UDT_P,0,20);
}
ptrszint *_FUNC_IDECALLSTACKBOX_ARRAY_UDT_O=NULL;
if (!_FUNC_IDECALLSTACKBOX_ARRAY_UDT_O){
_FUNC_IDECALLSTACKBOX_ARRAY_UDT_O=(ptrszint*)mem_static_malloc(9*ptrsz);
new_mem_lock();
mem_lock_tmp->type=4;
((ptrszint*)_FUNC_IDECALLSTACKBOX_ARRAY_UDT_O)[8]=(ptrszint)mem_lock_tmp;
_FUNC_IDECALLSTACKBOX_ARRAY_UDT_O[2]=0;
_FUNC_IDECALLSTACKBOX_ARRAY_UDT_O[4]=2147483647;
_FUNC_IDECALLSTACKBOX_ARRAY_UDT_O[5]=0;
_FUNC_IDECALLSTACKBOX_ARRAY_UDT_O[6]=0;
_FUNC_IDECALLSTACKBOX_ARRAY_UDT_O[0]=(ptrszint)nothingvalue;
}
qbs *_FUNC_IDECALLSTACKBOX_STRING1_SEP=NULL;
if(_FUNC_IDECALLSTACKBOX_STRING1_SEP==NULL){
_FUNC_IDECALLSTACKBOX_STRING1_SEP=qbs_new_fixed((uint8*)mem_static_malloc(1),1,0);
memset(_FUNC_IDECALLSTACKBOX_STRING1_SEP->chr,0,1);
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_DIALOGHEIGHT=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_DIALOGHEIGHT==NULL){
_FUNC_IDECALLSTACKBOX_LONG_DIALOGHEIGHT=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_DIALOGHEIGHT=0;
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_DIALOGWIDTH=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_DIALOGWIDTH==NULL){
_FUNC_IDECALLSTACKBOX_LONG_DIALOGWIDTH=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_DIALOGWIDTH=0;
}
qbs *_FUNC_IDECALLSTACKBOX_STRING_TEMP=NULL;
if (!_FUNC_IDECALLSTACKBOX_STRING_TEMP)_FUNC_IDECALLSTACKBOX_STRING_TEMP=qbs_new(0,0);
int32 *_FUNC_IDECALLSTACKBOX_LONG_I=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_I==NULL){
_FUNC_IDECALLSTACKBOX_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_I=0;
}
qbs *_FUNC_IDECALLSTACKBOX_STRING_TEMP2=NULL;
if (!_FUNC_IDECALLSTACKBOX_STRING_TEMP2)_FUNC_IDECALLSTACKBOX_STRING_TEMP2=qbs_new(0,0);
byte_element_struct *byte_element_5314=NULL;
if (!byte_element_5314){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5314=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5314=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5315=NULL;
if (!byte_element_5315){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5315=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5315=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5316=NULL;
if (!byte_element_5316){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5316=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5316=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5317=NULL;
if (!byte_element_5317){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5317=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5317=(byte_element_struct*)mem_static_malloc(12);
}
int64 fornext_value5319;
int64 fornext_finalvalue5319;
int64 fornext_step5319;
uint8 fornext_step_negative5319;
int32 *_FUNC_IDECALLSTACKBOX_LONG_F=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_F==NULL){
_FUNC_IDECALLSTACKBOX_LONG_F=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_F=0;
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_CX=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_CX==NULL){
_FUNC_IDECALLSTACKBOX_LONG_CX=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_CX=0;
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_CY=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_CY==NULL){
_FUNC_IDECALLSTACKBOX_LONG_CY=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_CY=0;
}
int64 fornext_value5322;
int64 fornext_finalvalue5322;
int64 fornext_step5322;
uint8 fornext_step_negative5322;
int32 *_FUNC_IDECALLSTACKBOX_LONG_LASTFOCUS=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_LASTFOCUS==NULL){
_FUNC_IDECALLSTACKBOX_LONG_LASTFOCUS=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_LASTFOCUS=0;
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_CHANGE=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_CHANGE==NULL){
_FUNC_IDECALLSTACKBOX_LONG_CHANGE=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_CHANGE=0;
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_MOUSEDOWN=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_MOUSEDOWN==NULL){
_FUNC_IDECALLSTACKBOX_LONG_MOUSEDOWN=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_MOUSEDOWN=0;
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_MOUSEUP=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_MOUSEUP==NULL){
_FUNC_IDECALLSTACKBOX_LONG_MOUSEUP=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_MOUSEUP=0;
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_ALT=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_ALT==NULL){
_FUNC_IDECALLSTACKBOX_LONG_ALT=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_ALT=0;
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_OLDALT=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_OLDALT==NULL){
_FUNC_IDECALLSTACKBOX_LONG_OLDALT=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_OLDALT=0;
}
qbs *_FUNC_IDECALLSTACKBOX_STRING_ALTLETTER=NULL;
if (!_FUNC_IDECALLSTACKBOX_STRING_ALTLETTER)_FUNC_IDECALLSTACKBOX_STRING_ALTLETTER=qbs_new(0,0);
byte_element_struct *byte_element_5324=NULL;
if (!byte_element_5324){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5324=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5324=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_K=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_K==NULL){
_FUNC_IDECALLSTACKBOX_LONG_K=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_K=0;
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_INFO=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_INFO==NULL){
_FUNC_IDECALLSTACKBOX_LONG_INFO=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_INFO=0;
}
int64 fornext_value5326;
int64 fornext_finalvalue5326;
int64 fornext_step5326;
uint8 fornext_step_negative5326;
int32 *_FUNC_IDECALLSTACKBOX_LONG_T=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_T==NULL){
_FUNC_IDECALLSTACKBOX_LONG_T=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_T=0;
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_FOCUSOFFSET=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_FOCUSOFFSET==NULL){
_FUNC_IDECALLSTACKBOX_LONG_FOCUSOFFSET=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_FOCUSOFFSET=0;
}
float *_FUNC_IDECALLSTACKBOX_SINGLE_LASTCLICK=NULL;
if(_FUNC_IDECALLSTACKBOX_SINGLE_LASTCLICK==NULL){
_FUNC_IDECALLSTACKBOX_SINGLE_LASTCLICK=(float*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_SINGLE_LASTCLICK=0;
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_CLICKEDITEM=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_CLICKEDITEM==NULL){
_FUNC_IDECALLSTACKBOX_LONG_CLICKEDITEM=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_CLICKEDITEM=0;
}
int32 *_FUNC_IDECALLSTACKBOX_LONG_Y=NULL;
if(_FUNC_IDECALLSTACKBOX_LONG_Y==NULL){
_FUNC_IDECALLSTACKBOX_LONG_Y=(int32*)mem_static_malloc(4);
*_FUNC_IDECALLSTACKBOX_LONG_Y=0;
}
int64 fornext_value5242;
int64 fornext_finalvalue5242;
int64 fornext_step5242;
uint8 fornext_step_negative5242;

View file

@ -1,22 +1,9 @@
int32 *_SUB_IDEBOXSHADOW_LONG_Y2=NULL;
if(_SUB_IDEBOXSHADOW_LONG_Y2==NULL){
_SUB_IDEBOXSHADOW_LONG_Y2=(int32*)mem_static_malloc(4);
*_SUB_IDEBOXSHADOW_LONG_Y2=0;
int32 *_SUB_IDEBOX_LONG_Y2=NULL;
if(_SUB_IDEBOX_LONG_Y2==NULL){
_SUB_IDEBOX_LONG_Y2=(int32*)mem_static_malloc(4);
*_SUB_IDEBOX_LONG_Y2=0;
}
int64 fornext_value5244;
int64 fornext_finalvalue5244;
int64 fornext_step5244;
uint8 fornext_step_negative5244;
int32 *_SUB_IDEBOXSHADOW_LONG_X2=NULL;
if(_SUB_IDEBOXSHADOW_LONG_X2==NULL){
_SUB_IDEBOXSHADOW_LONG_X2=(int32*)mem_static_malloc(4);
*_SUB_IDEBOXSHADOW_LONG_X2=0;
}
int64 fornext_value5246;
int64 fornext_finalvalue5246;
int64 fornext_step5246;
uint8 fornext_step_negative5246;
int64 fornext_value5248;
int64 fornext_finalvalue5248;
int64 fornext_step5248;
uint8 fornext_step_negative5248;
int64 fornext_value5328;
int64 fornext_finalvalue5328;
int64 fornext_step5328;
uint8 fornext_step_negative5328;

View file

@ -1,295 +1,22 @@
qbs *_FUNC_IDECHANGE_STRING_IDECHANGE=NULL;
if (!_FUNC_IDECHANGE_STRING_IDECHANGE)_FUNC_IDECHANGE_STRING_IDECHANGE=qbs_new(0,0);
ptrszint *_FUNC_IDECHANGE_ARRAY_STRING_SEARCHHISTORY=NULL;
if (!_FUNC_IDECHANGE_ARRAY_STRING_SEARCHHISTORY){
_FUNC_IDECHANGE_ARRAY_STRING_SEARCHHISTORY=(ptrszint*)mem_static_malloc(9*ptrsz);
new_mem_lock();
mem_lock_tmp->type=4;
((ptrszint*)_FUNC_IDECHANGE_ARRAY_STRING_SEARCHHISTORY)[8]=(ptrszint)mem_lock_tmp;
_FUNC_IDECHANGE_ARRAY_STRING_SEARCHHISTORY[2]=0;
_FUNC_IDECHANGE_ARRAY_STRING_SEARCHHISTORY[4]=2147483647;
_FUNC_IDECHANGE_ARRAY_STRING_SEARCHHISTORY[5]=0;
_FUNC_IDECHANGE_ARRAY_STRING_SEARCHHISTORY[6]=0;
_FUNC_IDECHANGE_ARRAY_STRING_SEARCHHISTORY[0]=(ptrszint)&nothingstring;
int32 *_SUB_IDEBOXSHADOW_LONG_Y2=NULL;
if(_SUB_IDEBOXSHADOW_LONG_Y2==NULL){
_SUB_IDEBOXSHADOW_LONG_Y2=(int32*)mem_static_malloc(4);
*_SUB_IDEBOXSHADOW_LONG_Y2=0;
}
int32 *_FUNC_IDECHANGE_LONG_FOCUS=NULL;
if(_FUNC_IDECHANGE_LONG_FOCUS==NULL){
_FUNC_IDECHANGE_LONG_FOCUS=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_FOCUS=0;
int64 fornext_value5330;
int64 fornext_finalvalue5330;
int64 fornext_step5330;
uint8 fornext_step_negative5330;
int32 *_SUB_IDEBOXSHADOW_LONG_X2=NULL;
if(_SUB_IDEBOXSHADOW_LONG_X2==NULL){
_SUB_IDEBOXSHADOW_LONG_X2=(int32*)mem_static_malloc(4);
*_SUB_IDEBOXSHADOW_LONG_X2=0;
}
void *_FUNC_IDECHANGE_UDT_P=NULL;
if(_FUNC_IDECHANGE_UDT_P==NULL){
_FUNC_IDECHANGE_UDT_P=(void*)mem_static_malloc(20);
memset(_FUNC_IDECHANGE_UDT_P,0,20);
}
ptrszint *_FUNC_IDECHANGE_ARRAY_UDT_O=NULL;
if (!_FUNC_IDECHANGE_ARRAY_UDT_O){
_FUNC_IDECHANGE_ARRAY_UDT_O=(ptrszint*)mem_static_malloc(9*ptrsz);
new_mem_lock();
mem_lock_tmp->type=4;
((ptrszint*)_FUNC_IDECHANGE_ARRAY_UDT_O)[8]=(ptrszint)mem_lock_tmp;
_FUNC_IDECHANGE_ARRAY_UDT_O[2]=0;
_FUNC_IDECHANGE_ARRAY_UDT_O[4]=2147483647;
_FUNC_IDECHANGE_ARRAY_UDT_O[5]=0;
_FUNC_IDECHANGE_ARRAY_UDT_O[6]=0;
_FUNC_IDECHANGE_ARRAY_UDT_O[0]=(ptrszint)nothingvalue;
}
qbs *_FUNC_IDECHANGE_STRING1_SEP=NULL;
if(_FUNC_IDECHANGE_STRING1_SEP==NULL){
_FUNC_IDECHANGE_STRING1_SEP=qbs_new_fixed((uint8*)mem_static_malloc(1),1,0);
memset(_FUNC_IDECHANGE_STRING1_SEP->chr,0,1);
}
qbs *_FUNC_IDECHANGE_STRING_A=NULL;
if (!_FUNC_IDECHANGE_STRING_A)_FUNC_IDECHANGE_STRING_A=qbs_new(0,0);
qbs *_FUNC_IDECHANGE_STRING_A2=NULL;
if (!_FUNC_IDECHANGE_STRING_A2)_FUNC_IDECHANGE_STRING_A2=qbs_new(0,0);
int32 *_FUNC_IDECHANGE_LONG_SX1=NULL;
if(_FUNC_IDECHANGE_LONG_SX1==NULL){
_FUNC_IDECHANGE_LONG_SX1=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_SX1=0;
}
int32 *_FUNC_IDECHANGE_LONG_SX2=NULL;
if(_FUNC_IDECHANGE_LONG_SX2==NULL){
_FUNC_IDECHANGE_LONG_SX2=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_SX2=0;
}
int32 *_FUNC_IDECHANGE_LONG_X=NULL;
if(_FUNC_IDECHANGE_LONG_X==NULL){
_FUNC_IDECHANGE_LONG_X=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_X=0;
}
int64 fornext_value5250;
int64 fornext_finalvalue5250;
int64 fornext_step5250;
uint8 fornext_step_negative5250;
byte_element_struct *byte_element_5251=NULL;
if (!byte_element_5251){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5251=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5251=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDECHANGE_LONG_I=NULL;
if(_FUNC_IDECHANGE_LONG_I==NULL){
_FUNC_IDECHANGE_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_I=0;
}
int32 pass5252;
int32 pass5253;
int32 *_FUNC_IDECHANGE_LONG_PREVFOCUS=NULL;
if(_FUNC_IDECHANGE_LONG_PREVFOCUS==NULL){
_FUNC_IDECHANGE_LONG_PREVFOCUS=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_PREVFOCUS=0;
}
byte_element_struct *byte_element_5254=NULL;
if (!byte_element_5254){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5254=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5254=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5255=NULL;
if (!byte_element_5255){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5255=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5255=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5256=NULL;
if (!byte_element_5256){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5256=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5256=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5257=NULL;
if (!byte_element_5257){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5257=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5257=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDECHANGE_LONG_BUTTONSID=NULL;
if(_FUNC_IDECHANGE_LONG_BUTTONSID==NULL){
_FUNC_IDECHANGE_LONG_BUTTONSID=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_BUTTONSID=0;
}
int64 fornext_value5259;
int64 fornext_finalvalue5259;
int64 fornext_step5259;
uint8 fornext_step_negative5259;
int32 *_FUNC_IDECHANGE_LONG_LASTFOCUS=NULL;
if(_FUNC_IDECHANGE_LONG_LASTFOCUS==NULL){
_FUNC_IDECHANGE_LONG_LASTFOCUS=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_LASTFOCUS=0;
}
int32 *_FUNC_IDECHANGE_LONG_F=NULL;
if(_FUNC_IDECHANGE_LONG_F==NULL){
_FUNC_IDECHANGE_LONG_F=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_F=0;
}
int32 *_FUNC_IDECHANGE_LONG_CX=NULL;
if(_FUNC_IDECHANGE_LONG_CX==NULL){
_FUNC_IDECHANGE_LONG_CX=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_CX=0;
}
int32 *_FUNC_IDECHANGE_LONG_CY=NULL;
if(_FUNC_IDECHANGE_LONG_CY==NULL){
_FUNC_IDECHANGE_LONG_CY=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_CY=0;
}
int32 *_FUNC_IDECHANGE_LONG_CHANGE=NULL;
if(_FUNC_IDECHANGE_LONG_CHANGE==NULL){
_FUNC_IDECHANGE_LONG_CHANGE=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_CHANGE=0;
}
int32 *_FUNC_IDECHANGE_LONG_MOUSEDOWN=NULL;
if(_FUNC_IDECHANGE_LONG_MOUSEDOWN==NULL){
_FUNC_IDECHANGE_LONG_MOUSEDOWN=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_MOUSEDOWN=0;
}
int32 *_FUNC_IDECHANGE_LONG_MOUSEUP=NULL;
if(_FUNC_IDECHANGE_LONG_MOUSEUP==NULL){
_FUNC_IDECHANGE_LONG_MOUSEUP=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_MOUSEUP=0;
}
int32 *_FUNC_IDECHANGE_LONG_ALT=NULL;
if(_FUNC_IDECHANGE_LONG_ALT==NULL){
_FUNC_IDECHANGE_LONG_ALT=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_ALT=0;
}
int32 *_FUNC_IDECHANGE_LONG_OLDALT=NULL;
if(_FUNC_IDECHANGE_LONG_OLDALT==NULL){
_FUNC_IDECHANGE_LONG_OLDALT=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_OLDALT=0;
}
qbs *_FUNC_IDECHANGE_STRING_ALTLETTER=NULL;
if (!_FUNC_IDECHANGE_STRING_ALTLETTER)_FUNC_IDECHANGE_STRING_ALTLETTER=qbs_new(0,0);
byte_element_struct *byte_element_5262=NULL;
if (!byte_element_5262){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5262=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5262=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDECHANGE_LONG_K=NULL;
if(_FUNC_IDECHANGE_LONG_K==NULL){
_FUNC_IDECHANGE_LONG_K=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_K=0;
}
int32 *_FUNC_IDECHANGE_LONG_INFO=NULL;
if(_FUNC_IDECHANGE_LONG_INFO==NULL){
_FUNC_IDECHANGE_LONG_INFO=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_INFO=0;
}
int64 fornext_value5264;
int64 fornext_finalvalue5264;
int64 fornext_step5264;
uint8 fornext_step_negative5264;
int32 *_FUNC_IDECHANGE_LONG_T=NULL;
if(_FUNC_IDECHANGE_LONG_T==NULL){
_FUNC_IDECHANGE_LONG_T=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_T=0;
}
int32 *_FUNC_IDECHANGE_LONG_FOCUSOFFSET=NULL;
if(_FUNC_IDECHANGE_LONG_FOCUSOFFSET==NULL){
_FUNC_IDECHANGE_LONG_FOCUSOFFSET=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_FOCUSOFFSET=0;
}
byte_element_struct *byte_element_5265=NULL;
if (!byte_element_5265){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5265=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5265=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDECHANGE_LONG_LN=NULL;
if(_FUNC_IDECHANGE_LONG_LN==NULL){
_FUNC_IDECHANGE_LONG_LN=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_LN=0;
}
byte_element_struct *byte_element_5266=NULL;
if (!byte_element_5266){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5266=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5266=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5267=NULL;
if (!byte_element_5267){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5267=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5267=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_IDECHANGE_STRING_S=NULL;
if (!_FUNC_IDECHANGE_STRING_S)_FUNC_IDECHANGE_STRING_S=qbs_new(0,0);
int32 *_FUNC_IDECHANGE_LONG_CHANGED=NULL;
if(_FUNC_IDECHANGE_LONG_CHANGED==NULL){
_FUNC_IDECHANGE_LONG_CHANGED=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_CHANGED=0;
}
int32 *_FUNC_IDECHANGE_LONG_Y=NULL;
if(_FUNC_IDECHANGE_LONG_Y==NULL){
_FUNC_IDECHANGE_LONG_Y=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_Y=0;
}
int64 fornext_value5269;
int64 fornext_finalvalue5269;
int64 fornext_step5269;
uint8 fornext_step_negative5269;
int32 *_FUNC_IDECHANGE_LONG_MAXPROGRESSWIDTH=NULL;
if(_FUNC_IDECHANGE_LONG_MAXPROGRESSWIDTH==NULL){
_FUNC_IDECHANGE_LONG_MAXPROGRESSWIDTH=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_MAXPROGRESSWIDTH=0;
}
int32 *_FUNC_IDECHANGE_LONG_PERCENTAGE=NULL;
if(_FUNC_IDECHANGE_LONG_PERCENTAGE==NULL){
_FUNC_IDECHANGE_LONG_PERCENTAGE=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_PERCENTAGE=0;
}
int32 *_FUNC_IDECHANGE_LONG_PERCENTAGECHARS=NULL;
if(_FUNC_IDECHANGE_LONG_PERCENTAGECHARS==NULL){
_FUNC_IDECHANGE_LONG_PERCENTAGECHARS=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_PERCENTAGECHARS=0;
}
qbs *_FUNC_IDECHANGE_STRING_PERCENTAGEMSG=NULL;
if (!_FUNC_IDECHANGE_STRING_PERCENTAGEMSG)_FUNC_IDECHANGE_STRING_PERCENTAGEMSG=qbs_new(0,0);
qbs *_FUNC_IDECHANGE_STRING_L=NULL;
if (!_FUNC_IDECHANGE_STRING_L)_FUNC_IDECHANGE_STRING_L=qbs_new(0,0);
qbs *_FUNC_IDECHANGE_STRING_L2=NULL;
if (!_FUNC_IDECHANGE_STRING_L2)_FUNC_IDECHANGE_STRING_L2=qbs_new(0,0);
int32 *_FUNC_IDECHANGE_LONG_X1=NULL;
if(_FUNC_IDECHANGE_LONG_X1==NULL){
_FUNC_IDECHANGE_LONG_X1=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_X1=0;
}
qbs *_FUNC_IDECHANGE_STRING_L3=NULL;
if (!_FUNC_IDECHANGE_STRING_L3)_FUNC_IDECHANGE_STRING_L3=qbs_new(0,0);
int32 *_FUNC_IDECHANGE_LONG_WHOLE=NULL;
if(_FUNC_IDECHANGE_LONG_WHOLE==NULL){
_FUNC_IDECHANGE_LONG_WHOLE=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_WHOLE=0;
}
int32 *_FUNC_IDECHANGE_LONG_C=NULL;
if(_FUNC_IDECHANGE_LONG_C==NULL){
_FUNC_IDECHANGE_LONG_C=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_C=0;
}
byte_element_struct *byte_element_5270=NULL;
if (!byte_element_5270){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5270=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5270=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5271=NULL;
if (!byte_element_5271){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5271=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5271=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5272=NULL;
if (!byte_element_5272){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5272=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5272=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5273=NULL;
if (!byte_element_5273){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5273=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5273=(byte_element_struct*)mem_static_malloc(12);
}
int8 *_FUNC_IDECHANGE_BYTE_COMMENT=NULL;
if(_FUNC_IDECHANGE_BYTE_COMMENT==NULL){
_FUNC_IDECHANGE_BYTE_COMMENT=(int8*)mem_static_malloc(1);
*_FUNC_IDECHANGE_BYTE_COMMENT=0;
}
int8 *_FUNC_IDECHANGE_BYTE_QUOTE=NULL;
if(_FUNC_IDECHANGE_BYTE_QUOTE==NULL){
_FUNC_IDECHANGE_BYTE_QUOTE=(int8*)mem_static_malloc(1);
*_FUNC_IDECHANGE_BYTE_QUOTE=0;
}
byte_element_struct *byte_element_5274=NULL;
if (!byte_element_5274){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5274=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5274=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5275=NULL;
if (!byte_element_5275){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5275=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5275=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5276=NULL;
if (!byte_element_5276){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5276=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5276=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass5277;
int8 pass5278;
int64 fornext_value5280;
int64 fornext_finalvalue5280;
int64 fornext_step5280;
uint8 fornext_step_negative5280;
int64 fornext_value5332;
int64 fornext_finalvalue5332;
int64 fornext_step5332;
uint8 fornext_step_negative5332;
int64 fornext_value5334;
int64 fornext_finalvalue5334;
int64 fornext_step5334;
uint8 fornext_step_negative5334;

View file

@ -1,41 +1,295 @@
qbs*oldstr5281=NULL;
if(_SUB_FINDQUOTECOMMENT_STRING_TEXT->tmp||_SUB_FINDQUOTECOMMENT_STRING_TEXT->fixed||_SUB_FINDQUOTECOMMENT_STRING_TEXT->readonly){
oldstr5281=_SUB_FINDQUOTECOMMENT_STRING_TEXT;
if (oldstr5281->cmem_descriptor){
_SUB_FINDQUOTECOMMENT_STRING_TEXT=qbs_new_cmem(oldstr5281->len,0);
}else{
_SUB_FINDQUOTECOMMENT_STRING_TEXT=qbs_new(oldstr5281->len,0);
qbs *_FUNC_IDECHANGE_STRING_IDECHANGE=NULL;
if (!_FUNC_IDECHANGE_STRING_IDECHANGE)_FUNC_IDECHANGE_STRING_IDECHANGE=qbs_new(0,0);
ptrszint *_FUNC_IDECHANGE_ARRAY_STRING_SEARCHHISTORY=NULL;
if (!_FUNC_IDECHANGE_ARRAY_STRING_SEARCHHISTORY){
_FUNC_IDECHANGE_ARRAY_STRING_SEARCHHISTORY=(ptrszint*)mem_static_malloc(9*ptrsz);
new_mem_lock();
mem_lock_tmp->type=4;
((ptrszint*)_FUNC_IDECHANGE_ARRAY_STRING_SEARCHHISTORY)[8]=(ptrszint)mem_lock_tmp;
_FUNC_IDECHANGE_ARRAY_STRING_SEARCHHISTORY[2]=0;
_FUNC_IDECHANGE_ARRAY_STRING_SEARCHHISTORY[4]=2147483647;
_FUNC_IDECHANGE_ARRAY_STRING_SEARCHHISTORY[5]=0;
_FUNC_IDECHANGE_ARRAY_STRING_SEARCHHISTORY[6]=0;
_FUNC_IDECHANGE_ARRAY_STRING_SEARCHHISTORY[0]=(ptrszint)&nothingstring;
}
memcpy(_SUB_FINDQUOTECOMMENT_STRING_TEXT->chr,oldstr5281->chr,oldstr5281->len);
int32 *_FUNC_IDECHANGE_LONG_FOCUS=NULL;
if(_FUNC_IDECHANGE_LONG_FOCUS==NULL){
_FUNC_IDECHANGE_LONG_FOCUS=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_FOCUS=0;
}
int32 *_SUB_FINDQUOTECOMMENT_LONG_CURSOR=NULL;
if(_SUB_FINDQUOTECOMMENT_LONG_CURSOR==NULL){
_SUB_FINDQUOTECOMMENT_LONG_CURSOR=(int32*)mem_static_malloc(4);
*_SUB_FINDQUOTECOMMENT_LONG_CURSOR=0;
void *_FUNC_IDECHANGE_UDT_P=NULL;
if(_FUNC_IDECHANGE_UDT_P==NULL){
_FUNC_IDECHANGE_UDT_P=(void*)mem_static_malloc(20);
memset(_FUNC_IDECHANGE_UDT_P,0,20);
}
byte_element_struct *byte_element_5282=NULL;
if (!byte_element_5282){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5282=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5282=(byte_element_struct*)mem_static_malloc(12);
ptrszint *_FUNC_IDECHANGE_ARRAY_UDT_O=NULL;
if (!_FUNC_IDECHANGE_ARRAY_UDT_O){
_FUNC_IDECHANGE_ARRAY_UDT_O=(ptrszint*)mem_static_malloc(9*ptrsz);
new_mem_lock();
mem_lock_tmp->type=4;
((ptrszint*)_FUNC_IDECHANGE_ARRAY_UDT_O)[8]=(ptrszint)mem_lock_tmp;
_FUNC_IDECHANGE_ARRAY_UDT_O[2]=0;
_FUNC_IDECHANGE_ARRAY_UDT_O[4]=2147483647;
_FUNC_IDECHANGE_ARRAY_UDT_O[5]=0;
_FUNC_IDECHANGE_ARRAY_UDT_O[6]=0;
_FUNC_IDECHANGE_ARRAY_UDT_O[0]=(ptrszint)nothingvalue;
}
byte_element_struct *byte_element_5283=NULL;
if (!byte_element_5283){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5283=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5283=(byte_element_struct*)mem_static_malloc(12);
qbs *_FUNC_IDECHANGE_STRING1_SEP=NULL;
if(_FUNC_IDECHANGE_STRING1_SEP==NULL){
_FUNC_IDECHANGE_STRING1_SEP=qbs_new_fixed((uint8*)mem_static_malloc(1),1,0);
memset(_FUNC_IDECHANGE_STRING1_SEP->chr,0,1);
}
int32 *_SUB_FINDQUOTECOMMENT_LONG_FIND_K=NULL;
if(_SUB_FINDQUOTECOMMENT_LONG_FIND_K==NULL){
_SUB_FINDQUOTECOMMENT_LONG_FIND_K=(int32*)mem_static_malloc(4);
*_SUB_FINDQUOTECOMMENT_LONG_FIND_K=0;
qbs *_FUNC_IDECHANGE_STRING_A=NULL;
if (!_FUNC_IDECHANGE_STRING_A)_FUNC_IDECHANGE_STRING_A=qbs_new(0,0);
qbs *_FUNC_IDECHANGE_STRING_A2=NULL;
if (!_FUNC_IDECHANGE_STRING_A2)_FUNC_IDECHANGE_STRING_A2=qbs_new(0,0);
int32 *_FUNC_IDECHANGE_LONG_SX1=NULL;
if(_FUNC_IDECHANGE_LONG_SX1==NULL){
_FUNC_IDECHANGE_LONG_SX1=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_SX1=0;
}
int64 fornext_value5285;
int64 fornext_finalvalue5285;
int64 fornext_step5285;
uint8 fornext_step_negative5285;
static qbs *sc_5286=qbs_new(0,0);
byte_element_struct *byte_element_5287=NULL;
if (!byte_element_5287){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5287=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5287=(byte_element_struct*)mem_static_malloc(12);
int32 *_FUNC_IDECHANGE_LONG_SX2=NULL;
if(_FUNC_IDECHANGE_LONG_SX2==NULL){
_FUNC_IDECHANGE_LONG_SX2=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_SX2=0;
}
byte_element_struct *byte_element_5288=NULL;
if (!byte_element_5288){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5288=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5288=(byte_element_struct*)mem_static_malloc(12);
int32 *_FUNC_IDECHANGE_LONG_X=NULL;
if(_FUNC_IDECHANGE_LONG_X==NULL){
_FUNC_IDECHANGE_LONG_X=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_X=0;
}
int64 fornext_value5336;
int64 fornext_finalvalue5336;
int64 fornext_step5336;
uint8 fornext_step_negative5336;
byte_element_struct *byte_element_5337=NULL;
if (!byte_element_5337){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5337=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5337=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDECHANGE_LONG_I=NULL;
if(_FUNC_IDECHANGE_LONG_I==NULL){
_FUNC_IDECHANGE_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_I=0;
}
int32 pass5338;
int32 pass5339;
int32 *_FUNC_IDECHANGE_LONG_PREVFOCUS=NULL;
if(_FUNC_IDECHANGE_LONG_PREVFOCUS==NULL){
_FUNC_IDECHANGE_LONG_PREVFOCUS=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_PREVFOCUS=0;
}
byte_element_struct *byte_element_5340=NULL;
if (!byte_element_5340){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5340=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5340=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5341=NULL;
if (!byte_element_5341){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5341=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5341=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5342=NULL;
if (!byte_element_5342){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5342=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5342=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5343=NULL;
if (!byte_element_5343){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5343=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5343=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDECHANGE_LONG_BUTTONSID=NULL;
if(_FUNC_IDECHANGE_LONG_BUTTONSID==NULL){
_FUNC_IDECHANGE_LONG_BUTTONSID=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_BUTTONSID=0;
}
int64 fornext_value5345;
int64 fornext_finalvalue5345;
int64 fornext_step5345;
uint8 fornext_step_negative5345;
int32 *_FUNC_IDECHANGE_LONG_LASTFOCUS=NULL;
if(_FUNC_IDECHANGE_LONG_LASTFOCUS==NULL){
_FUNC_IDECHANGE_LONG_LASTFOCUS=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_LASTFOCUS=0;
}
int32 *_FUNC_IDECHANGE_LONG_F=NULL;
if(_FUNC_IDECHANGE_LONG_F==NULL){
_FUNC_IDECHANGE_LONG_F=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_F=0;
}
int32 *_FUNC_IDECHANGE_LONG_CX=NULL;
if(_FUNC_IDECHANGE_LONG_CX==NULL){
_FUNC_IDECHANGE_LONG_CX=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_CX=0;
}
int32 *_FUNC_IDECHANGE_LONG_CY=NULL;
if(_FUNC_IDECHANGE_LONG_CY==NULL){
_FUNC_IDECHANGE_LONG_CY=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_CY=0;
}
int32 *_FUNC_IDECHANGE_LONG_CHANGE=NULL;
if(_FUNC_IDECHANGE_LONG_CHANGE==NULL){
_FUNC_IDECHANGE_LONG_CHANGE=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_CHANGE=0;
}
int32 *_FUNC_IDECHANGE_LONG_MOUSEDOWN=NULL;
if(_FUNC_IDECHANGE_LONG_MOUSEDOWN==NULL){
_FUNC_IDECHANGE_LONG_MOUSEDOWN=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_MOUSEDOWN=0;
}
int32 *_FUNC_IDECHANGE_LONG_MOUSEUP=NULL;
if(_FUNC_IDECHANGE_LONG_MOUSEUP==NULL){
_FUNC_IDECHANGE_LONG_MOUSEUP=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_MOUSEUP=0;
}
int32 *_FUNC_IDECHANGE_LONG_ALT=NULL;
if(_FUNC_IDECHANGE_LONG_ALT==NULL){
_FUNC_IDECHANGE_LONG_ALT=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_ALT=0;
}
int32 *_FUNC_IDECHANGE_LONG_OLDALT=NULL;
if(_FUNC_IDECHANGE_LONG_OLDALT==NULL){
_FUNC_IDECHANGE_LONG_OLDALT=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_OLDALT=0;
}
qbs *_FUNC_IDECHANGE_STRING_ALTLETTER=NULL;
if (!_FUNC_IDECHANGE_STRING_ALTLETTER)_FUNC_IDECHANGE_STRING_ALTLETTER=qbs_new(0,0);
byte_element_struct *byte_element_5348=NULL;
if (!byte_element_5348){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5348=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5348=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDECHANGE_LONG_K=NULL;
if(_FUNC_IDECHANGE_LONG_K==NULL){
_FUNC_IDECHANGE_LONG_K=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_K=0;
}
int32 *_FUNC_IDECHANGE_LONG_INFO=NULL;
if(_FUNC_IDECHANGE_LONG_INFO==NULL){
_FUNC_IDECHANGE_LONG_INFO=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_INFO=0;
}
int64 fornext_value5350;
int64 fornext_finalvalue5350;
int64 fornext_step5350;
uint8 fornext_step_negative5350;
int32 *_FUNC_IDECHANGE_LONG_T=NULL;
if(_FUNC_IDECHANGE_LONG_T==NULL){
_FUNC_IDECHANGE_LONG_T=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_T=0;
}
int32 *_FUNC_IDECHANGE_LONG_FOCUSOFFSET=NULL;
if(_FUNC_IDECHANGE_LONG_FOCUSOFFSET==NULL){
_FUNC_IDECHANGE_LONG_FOCUSOFFSET=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_FOCUSOFFSET=0;
}
byte_element_struct *byte_element_5351=NULL;
if (!byte_element_5351){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5351=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5351=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDECHANGE_LONG_LN=NULL;
if(_FUNC_IDECHANGE_LONG_LN==NULL){
_FUNC_IDECHANGE_LONG_LN=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_LN=0;
}
byte_element_struct *byte_element_5352=NULL;
if (!byte_element_5352){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5352=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5352=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5353=NULL;
if (!byte_element_5353){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5353=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5353=(byte_element_struct*)mem_static_malloc(12);
}
qbs *_FUNC_IDECHANGE_STRING_S=NULL;
if (!_FUNC_IDECHANGE_STRING_S)_FUNC_IDECHANGE_STRING_S=qbs_new(0,0);
int32 *_FUNC_IDECHANGE_LONG_CHANGED=NULL;
if(_FUNC_IDECHANGE_LONG_CHANGED==NULL){
_FUNC_IDECHANGE_LONG_CHANGED=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_CHANGED=0;
}
int32 *_FUNC_IDECHANGE_LONG_Y=NULL;
if(_FUNC_IDECHANGE_LONG_Y==NULL){
_FUNC_IDECHANGE_LONG_Y=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_Y=0;
}
int64 fornext_value5355;
int64 fornext_finalvalue5355;
int64 fornext_step5355;
uint8 fornext_step_negative5355;
int32 *_FUNC_IDECHANGE_LONG_MAXPROGRESSWIDTH=NULL;
if(_FUNC_IDECHANGE_LONG_MAXPROGRESSWIDTH==NULL){
_FUNC_IDECHANGE_LONG_MAXPROGRESSWIDTH=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_MAXPROGRESSWIDTH=0;
}
int32 *_FUNC_IDECHANGE_LONG_PERCENTAGE=NULL;
if(_FUNC_IDECHANGE_LONG_PERCENTAGE==NULL){
_FUNC_IDECHANGE_LONG_PERCENTAGE=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_PERCENTAGE=0;
}
int32 *_FUNC_IDECHANGE_LONG_PERCENTAGECHARS=NULL;
if(_FUNC_IDECHANGE_LONG_PERCENTAGECHARS==NULL){
_FUNC_IDECHANGE_LONG_PERCENTAGECHARS=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_PERCENTAGECHARS=0;
}
qbs *_FUNC_IDECHANGE_STRING_PERCENTAGEMSG=NULL;
if (!_FUNC_IDECHANGE_STRING_PERCENTAGEMSG)_FUNC_IDECHANGE_STRING_PERCENTAGEMSG=qbs_new(0,0);
qbs *_FUNC_IDECHANGE_STRING_L=NULL;
if (!_FUNC_IDECHANGE_STRING_L)_FUNC_IDECHANGE_STRING_L=qbs_new(0,0);
qbs *_FUNC_IDECHANGE_STRING_L2=NULL;
if (!_FUNC_IDECHANGE_STRING_L2)_FUNC_IDECHANGE_STRING_L2=qbs_new(0,0);
int32 *_FUNC_IDECHANGE_LONG_X1=NULL;
if(_FUNC_IDECHANGE_LONG_X1==NULL){
_FUNC_IDECHANGE_LONG_X1=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_X1=0;
}
qbs *_FUNC_IDECHANGE_STRING_L3=NULL;
if (!_FUNC_IDECHANGE_STRING_L3)_FUNC_IDECHANGE_STRING_L3=qbs_new(0,0);
int32 *_FUNC_IDECHANGE_LONG_WHOLE=NULL;
if(_FUNC_IDECHANGE_LONG_WHOLE==NULL){
_FUNC_IDECHANGE_LONG_WHOLE=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_WHOLE=0;
}
int32 *_FUNC_IDECHANGE_LONG_C=NULL;
if(_FUNC_IDECHANGE_LONG_C==NULL){
_FUNC_IDECHANGE_LONG_C=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGE_LONG_C=0;
}
byte_element_struct *byte_element_5356=NULL;
if (!byte_element_5356){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5356=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5356=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5357=NULL;
if (!byte_element_5357){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5357=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5357=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5358=NULL;
if (!byte_element_5358){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5358=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5358=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5359=NULL;
if (!byte_element_5359){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5359=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5359=(byte_element_struct*)mem_static_malloc(12);
}
int8 *_FUNC_IDECHANGE_BYTE_COMMENT=NULL;
if(_FUNC_IDECHANGE_BYTE_COMMENT==NULL){
_FUNC_IDECHANGE_BYTE_COMMENT=(int8*)mem_static_malloc(1);
*_FUNC_IDECHANGE_BYTE_COMMENT=0;
}
int8 *_FUNC_IDECHANGE_BYTE_QUOTE=NULL;
if(_FUNC_IDECHANGE_BYTE_QUOTE==NULL){
_FUNC_IDECHANGE_BYTE_QUOTE=(int8*)mem_static_malloc(1);
*_FUNC_IDECHANGE_BYTE_QUOTE=0;
}
byte_element_struct *byte_element_5360=NULL;
if (!byte_element_5360){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5360=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5360=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5361=NULL;
if (!byte_element_5361){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5361=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5361=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5362=NULL;
if (!byte_element_5362){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5362=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5362=(byte_element_struct*)mem_static_malloc(12);
}
int32 pass5363;
int8 pass5364;
int64 fornext_value5366;
int64 fornext_finalvalue5366;
int64 fornext_step5366;
uint8 fornext_step_negative5366;

View file

@ -1,7 +1,41 @@
qbs *_SUB_IDECHANGED_STRING_PL=NULL;
if (!_SUB_IDECHANGED_STRING_PL)_SUB_IDECHANGED_STRING_PL=qbs_new(0,0);
int32 *_SUB_IDECHANGED_LONG_RESULT=NULL;
if(_SUB_IDECHANGED_LONG_RESULT==NULL){
_SUB_IDECHANGED_LONG_RESULT=(int32*)mem_static_malloc(4);
*_SUB_IDECHANGED_LONG_RESULT=0;
qbs*oldstr5367=NULL;
if(_SUB_FINDQUOTECOMMENT_STRING_TEXT->tmp||_SUB_FINDQUOTECOMMENT_STRING_TEXT->fixed||_SUB_FINDQUOTECOMMENT_STRING_TEXT->readonly){
oldstr5367=_SUB_FINDQUOTECOMMENT_STRING_TEXT;
if (oldstr5367->cmem_descriptor){
_SUB_FINDQUOTECOMMENT_STRING_TEXT=qbs_new_cmem(oldstr5367->len,0);
}else{
_SUB_FINDQUOTECOMMENT_STRING_TEXT=qbs_new(oldstr5367->len,0);
}
memcpy(_SUB_FINDQUOTECOMMENT_STRING_TEXT->chr,oldstr5367->chr,oldstr5367->len);
}
int32 *_SUB_FINDQUOTECOMMENT_LONG_CURSOR=NULL;
if(_SUB_FINDQUOTECOMMENT_LONG_CURSOR==NULL){
_SUB_FINDQUOTECOMMENT_LONG_CURSOR=(int32*)mem_static_malloc(4);
*_SUB_FINDQUOTECOMMENT_LONG_CURSOR=0;
}
byte_element_struct *byte_element_5368=NULL;
if (!byte_element_5368){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5368=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5368=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5369=NULL;
if (!byte_element_5369){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5369=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5369=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_SUB_FINDQUOTECOMMENT_LONG_FIND_K=NULL;
if(_SUB_FINDQUOTECOMMENT_LONG_FIND_K==NULL){
_SUB_FINDQUOTECOMMENT_LONG_FIND_K=(int32*)mem_static_malloc(4);
*_SUB_FINDQUOTECOMMENT_LONG_FIND_K=0;
}
int64 fornext_value5371;
int64 fornext_finalvalue5371;
int64 fornext_step5371;
uint8 fornext_step_negative5371;
static qbs *sc_5372=qbs_new(0,0);
byte_element_struct *byte_element_5373=NULL;
if (!byte_element_5373){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5373=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5373=(byte_element_struct*)mem_static_malloc(12);
}
byte_element_struct *byte_element_5374=NULL;
if (!byte_element_5374){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5374=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5374=(byte_element_struct*)mem_static_malloc(12);
}

View file

@ -1,122 +1,7 @@
qbs *_FUNC_IDECHANGEIT_STRING_IDECHANGEIT=NULL;
if (!_FUNC_IDECHANGEIT_STRING_IDECHANGEIT)_FUNC_IDECHANGEIT_STRING_IDECHANGEIT=qbs_new(0,0);
int32 *_FUNC_IDECHANGEIT_LONG_FOCUS=NULL;
if(_FUNC_IDECHANGEIT_LONG_FOCUS==NULL){
_FUNC_IDECHANGEIT_LONG_FOCUS=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGEIT_LONG_FOCUS=0;
}
void *_FUNC_IDECHANGEIT_UDT_P=NULL;
if(_FUNC_IDECHANGEIT_UDT_P==NULL){
_FUNC_IDECHANGEIT_UDT_P=(void*)mem_static_malloc(20);
memset(_FUNC_IDECHANGEIT_UDT_P,0,20);
}
ptrszint *_FUNC_IDECHANGEIT_ARRAY_UDT_O=NULL;
if (!_FUNC_IDECHANGEIT_ARRAY_UDT_O){
_FUNC_IDECHANGEIT_ARRAY_UDT_O=(ptrszint*)mem_static_malloc(9*ptrsz);
new_mem_lock();
mem_lock_tmp->type=4;
((ptrszint*)_FUNC_IDECHANGEIT_ARRAY_UDT_O)[8]=(ptrszint)mem_lock_tmp;
_FUNC_IDECHANGEIT_ARRAY_UDT_O[2]=0;
_FUNC_IDECHANGEIT_ARRAY_UDT_O[4]=2147483647;
_FUNC_IDECHANGEIT_ARRAY_UDT_O[5]=0;
_FUNC_IDECHANGEIT_ARRAY_UDT_O[6]=0;
_FUNC_IDECHANGEIT_ARRAY_UDT_O[0]=(ptrszint)nothingvalue;
}
qbs *_FUNC_IDECHANGEIT_STRING1_SEP=NULL;
if(_FUNC_IDECHANGEIT_STRING1_SEP==NULL){
_FUNC_IDECHANGEIT_STRING1_SEP=qbs_new_fixed((uint8*)mem_static_malloc(1),1,0);
memset(_FUNC_IDECHANGEIT_STRING1_SEP->chr,0,1);
}
int32 *_FUNC_IDECHANGEIT_LONG_I=NULL;
if(_FUNC_IDECHANGEIT_LONG_I==NULL){
_FUNC_IDECHANGEIT_LONG_I=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGEIT_LONG_I=0;
}
int32 *_FUNC_IDECHANGEIT_LONG_W=NULL;
if(_FUNC_IDECHANGEIT_LONG_W==NULL){
_FUNC_IDECHANGEIT_LONG_W=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGEIT_LONG_W=0;
}
int64 fornext_value5290;
int64 fornext_finalvalue5290;
int64 fornext_step5290;
uint8 fornext_step_negative5290;
int32 *_FUNC_IDECHANGEIT_LONG_F=NULL;
if(_FUNC_IDECHANGEIT_LONG_F==NULL){
_FUNC_IDECHANGEIT_LONG_F=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGEIT_LONG_F=0;
}
int32 *_FUNC_IDECHANGEIT_LONG_CX=NULL;
if(_FUNC_IDECHANGEIT_LONG_CX==NULL){
_FUNC_IDECHANGEIT_LONG_CX=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGEIT_LONG_CX=0;
}
int32 *_FUNC_IDECHANGEIT_LONG_CY=NULL;
if(_FUNC_IDECHANGEIT_LONG_CY==NULL){
_FUNC_IDECHANGEIT_LONG_CY=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGEIT_LONG_CY=0;
}
int64 fornext_value5293;
int64 fornext_finalvalue5293;
int64 fornext_step5293;
uint8 fornext_step_negative5293;
int32 *_FUNC_IDECHANGEIT_LONG_LASTFOCUS=NULL;
if(_FUNC_IDECHANGEIT_LONG_LASTFOCUS==NULL){
_FUNC_IDECHANGEIT_LONG_LASTFOCUS=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGEIT_LONG_LASTFOCUS=0;
}
int32 *_FUNC_IDECHANGEIT_LONG_CHANGE=NULL;
if(_FUNC_IDECHANGEIT_LONG_CHANGE==NULL){
_FUNC_IDECHANGEIT_LONG_CHANGE=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGEIT_LONG_CHANGE=0;
}
int32 *_FUNC_IDECHANGEIT_LONG_MOUSEDOWN=NULL;
if(_FUNC_IDECHANGEIT_LONG_MOUSEDOWN==NULL){
_FUNC_IDECHANGEIT_LONG_MOUSEDOWN=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGEIT_LONG_MOUSEDOWN=0;
}
int32 *_FUNC_IDECHANGEIT_LONG_MOUSEUP=NULL;
if(_FUNC_IDECHANGEIT_LONG_MOUSEUP==NULL){
_FUNC_IDECHANGEIT_LONG_MOUSEUP=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGEIT_LONG_MOUSEUP=0;
}
int32 *_FUNC_IDECHANGEIT_LONG_ALT=NULL;
if(_FUNC_IDECHANGEIT_LONG_ALT==NULL){
_FUNC_IDECHANGEIT_LONG_ALT=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGEIT_LONG_ALT=0;
}
int32 *_FUNC_IDECHANGEIT_LONG_OLDALT=NULL;
if(_FUNC_IDECHANGEIT_LONG_OLDALT==NULL){
_FUNC_IDECHANGEIT_LONG_OLDALT=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGEIT_LONG_OLDALT=0;
}
qbs *_FUNC_IDECHANGEIT_STRING_ALTLETTER=NULL;
if (!_FUNC_IDECHANGEIT_STRING_ALTLETTER)_FUNC_IDECHANGEIT_STRING_ALTLETTER=qbs_new(0,0);
byte_element_struct *byte_element_5295=NULL;
if (!byte_element_5295){
if ((mem_static_pointer+=12)<mem_static_limit) byte_element_5295=(byte_element_struct*)(mem_static_pointer-12); else byte_element_5295=(byte_element_struct*)mem_static_malloc(12);
}
int32 *_FUNC_IDECHANGEIT_LONG_K=NULL;
if(_FUNC_IDECHANGEIT_LONG_K==NULL){
_FUNC_IDECHANGEIT_LONG_K=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGEIT_LONG_K=0;
}
int32 *_FUNC_IDECHANGEIT_LONG_INFO=NULL;
if(_FUNC_IDECHANGEIT_LONG_INFO==NULL){
_FUNC_IDECHANGEIT_LONG_INFO=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGEIT_LONG_INFO=0;
}
int64 fornext_value5297;
int64 fornext_finalvalue5297;
int64 fornext_step5297;
uint8 fornext_step_negative5297;
int32 *_FUNC_IDECHANGEIT_LONG_T=NULL;
if(_FUNC_IDECHANGEIT_LONG_T==NULL){
_FUNC_IDECHANGEIT_LONG_T=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGEIT_LONG_T=0;
}
int32 *_FUNC_IDECHANGEIT_LONG_FOCUSOFFSET=NULL;
if(_FUNC_IDECHANGEIT_LONG_FOCUSOFFSET==NULL){
_FUNC_IDECHANGEIT_LONG_FOCUSOFFSET=(int32*)mem_static_malloc(4);
*_FUNC_IDECHANGEIT_LONG_FOCUSOFFSET=0;
qbs *_SUB_IDECHANGED_STRING_PL=NULL;
if (!_SUB_IDECHANGED_STRING_PL)_SUB_IDECHANGED_STRING_PL=qbs_new(0,0);
int32 *_SUB_IDECHANGED_LONG_RESULT=NULL;
if(_SUB_IDECHANGED_LONG_RESULT==NULL){
_SUB_IDECHANGED_LONG_RESULT=(int32*)mem_static_malloc(4);
*_SUB_IDECHANGED_LONG_RESULT=0;
}

Some files were not shown because too many files have changed in this diff Show more