aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCNLohr <charles@cnlohr.com>2018-04-15 20:41:39 -0400
committerGitHub <noreply@github.com>2018-04-15 20:41:39 -0400
commit63daf8c314ed3111fb8d45822c547f5e526d84bd (patch)
tree927d843a553ef53217c283f19f16728b0ca51c50
parent39a63badbb5864314a9d9e18c0871718ac5d2912 (diff)
parent69b31d3c3b1957e59d7962722a4145bfb0db16f9 (diff)
downloadlibsurvive-63daf8c314ed3111fb8d45822c547f5e526d84bd.tar.gz
libsurvive-63daf8c314ed3111fb8d45822c547f5e526d84bd.tar.bz2
Merge pull request #129 from cnlohr/tcc_build
Improved Makefile system.
-rw-r--r--Makefile179
-rwxr-xr-xattic/dave/AffineSolve (renamed from dave/AffineSolve)bin40104 -> 40104 bytes
-rw-r--r--attic/dave/AffineSolve.c (renamed from dave/AffineSolve.c)0
-rw-r--r--attic/dave/AffineSolve.c.CHARLES (renamed from dave/AffineSolve.c.CHARLES)0
-rw-r--r--attic/dave/HMD_normals.csv (renamed from dave/HMD_normals.csv)0
-rw-r--r--attic/dave/HMD_points.csv (renamed from dave/HMD_points.csv)0
-rw-r--r--attic/dave/Makefile (renamed from dave/Makefile)0
-rw-r--r--attic/dave/OrthoPlot.c (renamed from dave/OrthoPlot.c)0
-rwxr-xr-xattic/dave/dclapack_test (renamed from dave/dclapack_test)bin12960 -> 12960 bytes
-rw-r--r--attic/dave/dclapack_test.c (renamed from dave/dclapack_test.c)0
-rw-r--r--attic/dave/errors.txt (renamed from dave/errors.txt)0
-rw-r--r--attic/dave/fileutil.c (renamed from dave/fileutil.c)0
-rw-r--r--attic/dave/fileutil.h (renamed from dave/fileutil.h)0
-rw-r--r--attic/dave/kalman_filter.c (renamed from dave/kalman_filter.c)0
-rw-r--r--attic/dave/kalman_filter.h (renamed from dave/kalman_filter.h)0
-rw-r--r--attic/dave/main.c (renamed from dave/main.c)0
-rw-r--r--attic/dave/olddata/HMD_normals.csv (renamed from dave/olddata/HMD_normals.csv)0
-rw-r--r--attic/dave/olddata/HMD_points.csv (renamed from dave/olddata/HMD_points.csv)0
-rw-r--r--attic/dave/olddata/ptinfo.csv (renamed from dave/olddata/ptinfo.csv)0
-rw-r--r--attic/dave/ptinfo.csv (renamed from dave/ptinfo.csv)0
-rw-r--r--src/survive_playback.c2
-rw-r--r--winbuild/getdelim.c2
-rw-r--r--winbuild/libsurvive/Test.txt3479
23 files changed, 122 insertions, 3540 deletions
diff --git a/Makefile b/Makefile
index 800ca92..d7848f7 100644
--- a/Makefile
+++ b/Makefile
@@ -1,14 +1,50 @@
-all : lib data_recorder test calibrate calibrate_client simple_pose_test
+all : data_recorder test calibrate calibrate_client simple_pose_test
+ @echo "Built with defaults. Type 'make help' for more info."
+
+.PHONY : help clean buildfolders
+
+LIBRARY:=./lib/libsurvive.so
+OBJDIR:=build
+
+
+ifdef WINDOWS
+ CFLAGS+=-Iinclude/libsurvive -g -O3 -Iredist -DUSE_DOUBLE -std=gnu99 -MD -DNOZLIB -DWINDOWS -DWIN32 -DHIDAPI
+ LDFLAGS+=-L/usr/local/lib -lpthread -g -lm -lsetupapi -lkernel32 -ldbghelp -lgdi32
+ LDFLAGS_TOOLS+=-Llib -lsurvive -Wl,-rpath,lib -lX11 $(LDFLAGS)
+ LIBSURVIVE_CORE:=redist/puff.c redist/crc32.c redist/hid-windows.c winbuild/getdelim.c
+ CC:=i686-w64-mingw32-gcc
+else
+ CFLAGS+=-Iinclude/libsurvive -fPIC -g -O3 -Iredist -DUSE_DOUBLE -std=gnu99 -rdynamic -MD
+ LDFLAGS+=-L/usr/local/lib -lpthread -lz -lm -g -llapacke -lcblas -lm
+ LDFLAGS_TOOLS+=-Llib -lsurvive -Wl,-rpath,lib -lX11 $(LDFLAGS)
+endif
CC?=gcc
-CFLAGS:=-Iinclude/libsurvive -fPIC -g -O3 -Iredist -flto -DUSE_DOUBLE -std=gnu99 -rdynamic #-fsanitize=address -fsanitize=undefined -Wall -Wno-unused-variable -Wno-switch -Wno-unused-but-set-variable -Wno-pointer-sign -Wno-parentheses
-CFLAGS_RELEASE:=-Iinclude/libsurvive -fPIC -msse2 -ftree-vectorize -O3 -Iredist -flto -DUSE_DOUBLE -std=gnu99 -rdynamic -llapacke -lcblas -lm
+
+ifdef EXTRA_WARNINGS
+ CFLAGS+=-fsanitize=address -fsanitize=undefined -Wall -Wno-unused-variable -Wno-switch -Wno-unused-but-set-variable -Wno-pointer-sign -Wno-parentheses
+endif
+
-#LDFLAGS:=-L/usr/local/lib -lpthread -lusb-1.0 -lz -lm -flto -g
+SBA:=redist/sba/sba_chkjac.c redist/sba/sba_crsm.c redist/sba/sba_lapack.c redist/sba/sba_levmar.c redist/sba/sba_levmar_wrap.c redist/minimal_opencv.c src/poser_epnp.c src/poser_sba.c src/epnp/epnp.c
+LIBSURVIVE_CORE+=src/survive.c src/survive_process.c src/ootx_decoder.c src/survive_driverman.c src/survive_default_devices.c src/survive_playback.c src/survive_config.c src/survive_cal.c src/poser.c src/survive_sensor_activations.c src/survive_disambiguator.c src/survive_imu.c
+MINIMAL_NEEDED+=src/survive_usb.c src/survive_charlesbiguator.c src/survive_vive.c src/survive_reproject.c
+AUX_NEEDED+=src/survive_turveybiguator.c src/survive_statebased_disambiguator.c
+POSERS:=src/poser_dummy.c src/poser_imu.c src/poser_charlesrefine.c
+EXTRA_POSERS:=src/poser_daveortho.c src/poser_charlesslow.c src/poser_octavioradii.c src/poser_turveytori.c
+REDISTS:=redist/json_helpers.c redist/linmath.c redist/jsmn.c
+
+ifdef MINIMAL
+ LIBSURVIVE_C:=$(REDISTS) $(LIBSURVIVE_CORE) $(MINIMAL_NEEDED)
+else
+ LIBSURVIVE_C:=$(POSERS) $(REDISTS) $(LIBSURVIVE_CORE) $(SBA) $(MINIMAL_NEEDED) $(AUX_NEEDED)
+endif
-LDFLAGS:=-L/usr/local/lib -lpthread -lz -llapacke -lcblas -lm -flto -g
+LIBSURVIVE_O:=$(LIBSURVIVE_C:%.c=$(OBJDIR)/%.o)
+LIBSURVIVE_D:=$(LIBSURVIVE_C:%.c=$(OBJDIR)/%.d)
+-include $(LIBSURVIVE_D)
#----------
# Platform specific changes to CFLAGS/LDFLAGS
@@ -20,109 +56,134 @@ ifeq ($(UNAME), Darwin)
CFLAGS:=$(CFLAGS) -DRASTERIZER -DHIDAPI -I/usr/local/include -x objective-c
LDFLAGS:=$(LDFLAGS) -framework OpenGL -framework Cocoa -framework IOKit
-#DRAWFUNCTIONS=redist/CNFGFunctions.c redist/CocoaDriver.m
-#GRAPHICS_LOFI:=redist/CNFGFunctions.o redist/CocoaDriver.o
DRAWFUNCTIONS=redist/CNFGFunctions.c redist/CNFGCocoaNSImageDriver.m
GRAPHICS_LOFI:=redist/CNFGFunctions.o redist/CNFGCocoaNSImageDriver.o
# Linux / FreeBSD
else
-LDFLAGS:=$(LDFLAGS) -lX11 -lusb-1.0
+LDFLAGS:=$(LDFLAGS)
DRAWFUNCTIONS=redist/CNFGFunctions.c redist/CNFGXDriver.c redist/CNFG3D.c
GRAPHICS_LOFI:=redist/CNFGFunctions.o redist/CNFGXDriver.o
endif
-SBA:=redist/sba/sba_chkjac.o redist/sba/sba_crsm.o redist/sba/sba_lapack.o redist/sba/sba_levmar.o redist/sba/sba_levmar_wrap.o
-POSERS:=src/poser_dummy.o src/poser_daveortho.o src/poser_charlesslow.o src/poser_octavioradii.o src/poser_turveytori.o src/poser_epnp.o src/poser_sba.o
-REDISTS:=redist/json_helpers.o redist/linmath.o redist/jsmn.o redist/minimal_opencv.o
+
ifeq ($(UNAME), Darwin)
REDISTS:=$(REDISTS) redist/hid-osx.c
endif
-LIBSURVIVE_CORE:=src/survive.o src/survive_usb.o src/survive_charlesbiguator.o src/survive_process.o src/ootx_decoder.o src/survive_driverman.o src/survive_default_devices.o src/survive_vive.o src/survive_playback.o src/survive_config.o src/survive_cal.o src/survive_reproject.o src/poser.o src/epnp/epnp.o src/survive_sensor_activations.o src/survive_turveybiguator.o src/survive_disambiguator.o src/survive_statebased_disambiguator.o src/poser_charlesrefine.o src/survive_imu.o src/poser_imu.o src/poser_general_optimizer.o src/poser_mpfit.o redist/mpfit/mpfit.o src/survive_api.o
-
-#If you want to use HIDAPI on Linux.
-#CFLAGS:=$(CFLAGS) -DHIDAPI
-#REDISTS:=$(REDISTS) redist/hid-linux.o
-#LDFLAGS:=$(LDFLAGS) -ludev
-
-#Useful Preprocessor Directives:
-# -DUSE_DOUBLE = use double instead of float for most operations.
-# -DNOZLIB = use puff.c
-# -DTCC = various things needed for TCC.
-# -DWINDOWS -DWIN32 = Building for Windows
-# -DHIDAPI = Build vive driver to use USBHID instead of interrupt/control messages.
-# -DRUNTIME_SYMNUM = Don't assume __attribute__((constructor)) works. Instead comb for anything starting with REGISTER.
-
-
+ifdef LINUX_USE_HIDAPI
+ CFLAGS:=$(CFLAGS) -DHIDAPI
+ REDISTS:=$(REDISTS) redist/hid-linux.o
+ LDFLAGS:=$(LDFLAGS) -ludev
+endif
-LIBSURVIVE_CORE:=$(LIBSURVIVE_CORE)
-LIBSURVIVE_O:=$(POSERS) $(REDISTS) $(LIBSURVIVE_CORE) $(SBA)
-LIBSURVIVE_C:=$(LIBSURVIVE_O:.o=.c)
+#### Tools
-# unused: redist/crc32.c
+testCocoa : testCocoa.c $(LIBRARY)
+ $(CC) -o $@ $^ $(LDFLAGS_TOOLS) $(CFLAGS)
-testCocoa : testCocoa.c
- $(CC) -o $@ $^ $(LDFLAGS) $(CFLAGS)
+test : test.c $(LIBRARY)
+ $(CC) -o $@ $^ $(LDFLAGS_TOOLS) $(CFLAGS)
-test : test.c ./lib/libsurvive.so
- $(CC) -o $@ $^ $(LDFLAGS) $(CFLAGS)
+simple_pose_test : simple_pose_test.c $(DRAWFUNCTIONS) $(LIBRARY)
+ $(CC) -o $@ $^ $(LDFLAGS_TOOLS) $(CFLAGS)
-simple_pose_test : simple_pose_test.c ./lib/libsurvive.so $(DRAWFUNCTIONS)
- $(CC) -o $@ $^ $(LDFLAGS) $(CFLAGS)
+data_recorder : data_recorder.c $(LIBRARY)
+ $(CC) -o $@ $^ $(LDFLAGS_TOOLS) $(CFLAGS)
-data_recorder : data_recorder.c ./lib/libsurvive.so
- $(CC) -o $@ $^ $(LDFLAGS) $(CFLAGS)
+calibrate : calibrate.c $(DRAWFUNCTIONS) $(LIBRARY)
+ $(CC) -o $@ $^ $(LDFLAGS_TOOLS) $(CFLAGS)
-calibrate : calibrate.c ./lib/libsurvive.so $(DRAWFUNCTIONS)
- $(CC) -o $@ $^ $(LDFLAGS) $(CFLAGS)
+calibrate_client : calibrate_client.c $(GRAPHICS_LOFI) $(LIBRARY)
+ $(CC) -o $@ $^ $(LDFLAGS_TOOLS) $(CFLAGS)
-calibrate_client : calibrate_client.c ./lib/libsurvive.so $(GRAPHICS_LOFI)
- $(CC) -o $@ $^ $(LDFLAGS) $(CFLAGS)
-## Still not working!!! Don't use.
-static_calibrate : calibrate.c $(DRAWFUNCTIONS) $(LIBSURVIVE_C)
- tcc -o $@ $^ $(CFLAGS) $(LDFLAGS) -DTCC
+#### Testers.
./redist/dclhelpers_debuggable.c : ./redist/dclhelpers.c ./redist/dclhelpers.h ./redist/dclapack.h
gcc -E ./redist/dclhelpers.c > ./redist/dclhelpers_debuggable.c
clang-format -i ./redist/dclhelpers_debuggable.c
sed -i 's/#/\/\/#/g' ./redist/dclhelpers_debuggable.c
-
test_dcl: ./redist/test_dcl.c ./redist/dclhelpers.c ./redist/dclhelpers.h ./redist/dclapack.h ./redist/minimal_opencv.c ./src/epnp/epnp.c
- $(CC) -o $@ $^ $(LDFLAGS) $(CFLAGS_RELEASE) -DFLT=double
+ $(CC) -o $@ $^ $(LDFLAGS_TOOLS) $(CFLAGS) -DFLT=double
test_dcl_debug: ./redist/test_dcl.c ./redist/dclhelpers_debuggable.c ./redist/dclhelpers.h ./redist/dclapack.h redist/os_generic.c
- $(CC) -o $@ $^ $(LDFLAGS) $(CFLAGS) -DFLT=double -fsanitize=address -fsanitize=undefined
+ $(CC) -o $@ $^ $(LDFLAGS_TOOLS) $(CFLAGS) -DFLT=double -fsanitize=address -fsanitize=undefined
-test_minimal_cv: ./src/epnp/test_minimal_cv.c ./lib/libsurvive.so
- $(CC) -o $@ $^ $(LDFLAGS) $(CFLAGS)
+test_minimal_cv: ./src/epnp/test_minimal_cv.c $(LIBRARY)
+ $(CC) -o $@ $^ $(LDFLAGS_TOOLS) $(CFLAGS)
-test_epnp: ./src/epnp/test_epnp.c ./lib/libsurvive.so
- $(CC) -o $@ $^ $(LDFLAGS) $(CFLAGS)
+test_epnp: ./src/epnp/test_epnp.c $(LIBRARY)
+ $(CC) -o $@ $^ $(LDFLAGS_TOOLS) $(CFLAGS)
test_epnp_ocv: ./src/epnp/test_epnp.c ./src/epnp/epnp.c
- $(CC) -o $@ $^ -DWITH_OPENCV -lpthread -lz -lm -flto -g -lX11 -lusb-1.0 -Iinclude/libsurvive -fPIC -g -O4 -Iredist -flto -DUSE_DOUBLE -std=gnu99 -rdynamic -fsanitize=address -fsanitize=undefined -llapack -lm -lopencv_core
+ $(CC) -o $@ $^ -DWITH_OPENCV -lpthread -lz -lm -flto -g -lX11 -lusb-1.0 -Iinclude/libsurvive -fPIC -g -O4 -Iredist -flto -DUSE_DOUBLE -std=gnu99 -rdynamic -fsanitize=address -fsanitize=undefined -llapack -lm -lopencv_core $(LDFLAGS_TOOLS)
+
+
-lib:
- mkdir lib
+#### Actual build system.
-lib/libsurvive.so : $(LIBSURVIVE_O)
- $(CC) -o $@ $^ $(LDFLAGS) -shared
+$(OBJDIR):
+ mkdir -p lib
+ mkdir -p $(OBJDIR)
+ mkdir -p $(OBJDIR)/winbuild
+ mkdir -p $(OBJDIR)/src
+ mkdir -p $(OBJDIR)/redist
+ mkdir -p $(OBJDIR)/redist/sba
+ mkdir -p $(OBJDIR)/src/epnp
+$(LIBRARY): $(LIBSURVIVE_O) $(OBJDIR)
+ $(CC) -o $@ $(LIBSURVIVE_O) $(CFLAGS) $(LDFLAGS) -shared
+
+$(OBJDIR)/%.o : %.c $(OBJDIR)
+ $(CC) -c -o $@ $< $(CFLAGS)
calibrate_tcc : $(LIBSURVIVE_C)
tcc -DRUNTIME_SYMNUM $(CFLAGS) -o $@ $^ $(LDFLAGS) calibrate.c $(DRAWFUNCTIONS) redist/symbol_enumerator.c
clean :
- rm -rf */*/*.o *.o src/*.o *~ src/*~ test simple_pose_test data_recorder calibrate testCocoa lib/libsurvive.so test_minimal_cv test_epnp test_epnp_ocv calibrate_client redist/*.o redist/*~ tools/data_server/data_server tools/lighthousefind/lighthousefind tools/lighthousefind_tori/lighthousefind-tori tools/plot_lighthouse/plot_lighthouse tools/process_rawcap/process_to_points redist/jsmntest redist/lintest
+ rm -rf */*/*.o *.o src/*.o $(OBJDIR) *~ src/*~ test simple_pose_test data_recorder calibrate testCocoa lib/libsurvive.so test_minimal_cv test_epnp test_epnp_ocv calibrate_client redist/*.o redist/*~ tools/data_server/data_server tools/lighthousefind/lighthousefind tools/lighthousefind_tori/lighthousefind-tori tools/plot_lighthouse/plot_lighthouse tools/process_rawcap/process_to_points redist/jsmntest redist/lintest
.test_redist:
cd redist && make .run_tests;
.run_tests: .test_redist
+tccbatch :
+ echo "@echo off" > winbuild/build_tcc.bat
+ echo "set TCC=C:\\\\tcc\\\\tcc.exe" >> winbuild/build_tcc.bat
+ echo "echo USing %TCC%" >> winbuild/build_tcc.bat
+ echo "set SOURCES=$(LIBSURVIVE_C)" >> winbuild/build_tcc.bat
+ echo "set EXEC=..\\\\calibrate.c redist\\\\CNFGWinDriver.c redist\\\\os_generic.c redist\\\\CNFGFunctions.c" >> winbuild/build_tcc.bat
+ echo "set CFLAGS=$(CFLAGS)" >> winbuild/build_tcc.bat
+ echo "@echo on" >> winbuild/build_tcc.bat
+ echo "%TCC% -v %CFLAGS% %SOURCES% %REDIST% %EXEC% %LDFLAGS% tcc_stubs.c %RD%hid-windows.c -o calibrate.exe" >> winbuild/build_tcc.bat
+
+help :
+ @echo "Usage: make [flags]"
+ @echo " Build-system flags:"
+ @echo " MINIMAL=1 Buld a minimal build, geared for embedded systems."
+ @echo " LINUX_USE_HIDAPI=1 Build with HIDAPI in Linux instead of just libusb."
+ @echo " EXTRA_WARNINGS=1 Provide many mor warnings for build system."
+ @echo " WINDOWS=1 Cross-target Windows (EXPERIMENTAL)"
+ @echo " CFLAGS= Specify additional CFLAGS."
+ @echo " LDFLAGS= Specify additional LDFLAGS."
+ @echo " CC= Specify a different C compiler."
+ @echo " Useful Preprocessor Directives (For CFLAGS):"
+ @echo " -DUSE_DOUBLE Use double instead of float for most operations."
+ @echo " -DNOZLIB Use puff.c"
+ @echo " -DTCC Various things needed for TCC."
+ @echo " -DWINDOWS -DWIN32 Building for Windows."
+ @echo " -DRUNTIME_SYMNUM Don't assume __attribute__((constructor)) works. Instead comb for anything starting with REGISTER."
+ @echo " -flto Do link-time optimizations. This significantly increases period of time to link but improves performance.."
+ @echo " Useful build targets:"
+ @echo " all Build libsurvive.so and tools."
+ @echo " clean Erase build and incremental files."
+ @echo " buildfolders Produce build file structure."
+ @echo " $(LIBRARY) Produce libsurvive.so"
+
+
diff --git a/dave/AffineSolve b/attic/dave/AffineSolve
index bd93cbd..bd93cbd 100755
--- a/dave/AffineSolve
+++ b/attic/dave/AffineSolve
Binary files differ
diff --git a/dave/AffineSolve.c b/attic/dave/AffineSolve.c
index 685062e..685062e 100644
--- a/dave/AffineSolve.c
+++ b/attic/dave/AffineSolve.c
diff --git a/dave/AffineSolve.c.CHARLES b/attic/dave/AffineSolve.c.CHARLES
index cb62ef6..cb62ef6 100644
--- a/dave/AffineSolve.c.CHARLES
+++ b/attic/dave/AffineSolve.c.CHARLES
diff --git a/dave/HMD_normals.csv b/attic/dave/HMD_normals.csv
index 9abb886..9abb886 100644
--- a/dave/HMD_normals.csv
+++ b/attic/dave/HMD_normals.csv
diff --git a/dave/HMD_points.csv b/attic/dave/HMD_points.csv
index 9c8f61d..9c8f61d 100644
--- a/dave/HMD_points.csv
+++ b/attic/dave/HMD_points.csv
diff --git a/dave/Makefile b/attic/dave/Makefile
index 330bda3..330bda3 100644
--- a/dave/Makefile
+++ b/attic/dave/Makefile
diff --git a/dave/OrthoPlot.c b/attic/dave/OrthoPlot.c
index 222828c..222828c 100644
--- a/dave/OrthoPlot.c
+++ b/attic/dave/OrthoPlot.c
diff --git a/dave/dclapack_test b/attic/dave/dclapack_test
index bac05e7..bac05e7 100755
--- a/dave/dclapack_test
+++ b/attic/dave/dclapack_test
Binary files differ
diff --git a/dave/dclapack_test.c b/attic/dave/dclapack_test.c
index 3f48b08..3f48b08 100644
--- a/dave/dclapack_test.c
+++ b/attic/dave/dclapack_test.c
diff --git a/dave/errors.txt b/attic/dave/errors.txt
index df2a094..df2a094 100644
--- a/dave/errors.txt
+++ b/attic/dave/errors.txt
diff --git a/dave/fileutil.c b/attic/dave/fileutil.c
index 04dc241..04dc241 100644
--- a/dave/fileutil.c
+++ b/attic/dave/fileutil.c
diff --git a/dave/fileutil.h b/attic/dave/fileutil.h
index e5da244..e5da244 100644
--- a/dave/fileutil.h
+++ b/attic/dave/fileutil.h
diff --git a/dave/kalman_filter.c b/attic/dave/kalman_filter.c
index 3d3406a..3d3406a 100644
--- a/dave/kalman_filter.c
+++ b/attic/dave/kalman_filter.c
diff --git a/dave/kalman_filter.h b/attic/dave/kalman_filter.h
index 6511fac..6511fac 100644
--- a/dave/kalman_filter.h
+++ b/attic/dave/kalman_filter.h
diff --git a/dave/main.c b/attic/dave/main.c
index ff187aa..ff187aa 100644
--- a/dave/main.c
+++ b/attic/dave/main.c
diff --git a/dave/olddata/HMD_normals.csv b/attic/dave/olddata/HMD_normals.csv
index 9abb886..9abb886 100644
--- a/dave/olddata/HMD_normals.csv
+++ b/attic/dave/olddata/HMD_normals.csv
diff --git a/dave/olddata/HMD_points.csv b/attic/dave/olddata/HMD_points.csv
index 9c8f61d..9c8f61d 100644
--- a/dave/olddata/HMD_points.csv
+++ b/attic/dave/olddata/HMD_points.csv
diff --git a/dave/olddata/ptinfo.csv b/attic/dave/olddata/ptinfo.csv
index 2dbef65..2dbef65 100644
--- a/dave/olddata/ptinfo.csv
+++ b/attic/dave/olddata/ptinfo.csv
diff --git a/dave/ptinfo.csv b/attic/dave/ptinfo.csv
index f4c5ea9..f4c5ea9 100644
--- a/dave/ptinfo.csv
+++ b/attic/dave/ptinfo.csv
diff --git a/src/survive_playback.c b/src/survive_playback.c
index d5d1c08..0823173 100644
--- a/src/survive_playback.c
+++ b/src/survive_playback.c
@@ -13,7 +13,7 @@
#include "os_generic.h"
#include "stdarg.h"
-#ifdef _WIN32
+#ifdef _MSC_VER
typedef long ssize_t;
#define SSIZE_MAX LONG_MAX
diff --git a/winbuild/getdelim.c b/winbuild/getdelim.c
index 69020ee..0447ba0 100644
--- a/winbuild/getdelim.c
+++ b/winbuild/getdelim.c
@@ -41,7 +41,7 @@
#define restrict
#endif
-#ifndef _POSIX_SOURCE
+#ifdef _MSC_VER
typedef long ssize_t;
#define SSIZE_MAX LONG_MAX
#endif
diff --git a/winbuild/libsurvive/Test.txt b/winbuild/libsurvive/Test.txt
deleted file mode 100644
index 5cf8680..0000000
--- a/winbuild/libsurvive/Test.txt
+++ /dev/null
@@ -1,3479 +0,0 @@
- libsurvive
-
- Timestamp is 5ab9467b (Mon Mar 26 21:14:03 2018)
-
- Preferred load address is 0000000180000000
-
- Start Length Name Class
- 0001:00000000 0001d166H .textbss DATA
- 0002:00000000 0003cf90H .text$mn CODE
- 0002:0003cf90 00001110H .text$mn$00 CODE
- 0002:0003e0a0 00001132H .text$x CODE
- 0003:00000000 00000110H .CRT$XCA DATA
- 0003:00000110 00000110H .CRT$XCZ DATA
- 0003:00000220 00000110H .CRT$XIA DATA
- 0003:00000330 00000110H .CRT$XIZ DATA
- 0003:00000440 00000110H .CRT$XPA DATA
- 0003:00000550 00000110H .CRT$XPZ DATA
- 0003:00000660 00000110H .CRT$XTA DATA
- 0003:00000770 00000110H .CRT$XTZ DATA
- 0003:00000880 0000e914H .rdata DATA
- 0003:0000f194 00000174H .rdata$zzzdbg DATA
- 0003:0000f308 00000110H .rtc$IAA DATA
- 0003:0000f418 00000308H .rtc$IMZ DATA
- 0003:0000f720 00000110H .rtc$IZZ DATA
- 0003:0000f830 00000110H .rtc$TAA DATA
- 0003:0000f940 00000308H .rtc$TMZ DATA
- 0003:0000fc48 00000110H .rtc$TZZ DATA
- 0003:0000fd58 000028e8H .xdata DATA
- 0003:00012640 000004feH .edata DATA
- 0004:00000000 000008e0H .data DATA
- 0004:000008e0 00001b89H .bss DATA
- 0005:00000000 000033f0H .pdata DATA
- 0006:00000000 000006d8H .idata$5 DATA
- 0006:000006d8 00000064H .idata$2 DATA
- 0006:0000073c 00000014H .idata$3 DATA
- 0006:00000750 000006d8H .idata$4 DATA
- 0006:00000e28 00000afeH .idata$6 DATA
- 0007:00000000 0000013fH .00cfg DATA
- 0008:00000000 00000170H .rsrc$01 DATA
- 0008:00000170 000002ccH .rsrc$02 DATA
-
- Address Publics by Value Rva+Base Lib:Object
-
- 0000:00000000 __hybrid_auxiliary_iat 0000000000000000 <absolute>
- 0000:00000000 __guard_fids_count 0000000000000000 <absolute>
- 0000:00000000 __guard_longjmp_count 0000000000000000 <absolute>
- 0000:00000000 __guard_fids_table 0000000000000000 <absolute>
- 0000:00000000 __guard_iat_table 0000000000000000 <absolute>
- 0000:00000000 __guard_iat_count 0000000000000000 <absolute>
- 0000:00000000 __dynamic_value_reloc_table 0000000000000000 <absolute>
- 0000:00000000 ___safe_se_handler_table 0000000000000000 <absolute>
- 0000:00000000 __enclave_config 0000000000000000 <absolute>
- 0000:00000000 __hybrid_code_map_count 0000000000000000 <absolute>
- 0000:00000000 __hybrid_code_map 0000000000000000 <absolute>
- 0000:00000000 __guard_longjmp_table 0000000000000000 <absolute>
- 0000:00000000 ___safe_se_handler_count 0000000000000000 <absolute>
- 0000:00000100 __guard_flags 0000000000000100 <absolute>
- 0000:00000000 __ImageBase 0000000180000000 <linker-defined>
- 0001:00000000 __enc$textbss$begin 0000000180001000 <linker-defined>
- 0001:0001d166 __enc$textbss$end 000000018001e166 <linker-defined>
- 0002:000014d0 crc32 00000001800204d0 f crc32.obj
- 0002:00001680 hid_close 0000000180020680 f hid-windows.obj
- 0002:00001700 hid_enumerate 0000000180020700 f hid-windows.obj
- 0002:00002020 hid_error 0000000180021020 f hid-windows.obj
- 0002:00002070 hid_exit 0000000180021070 f hid-windows.obj
- 0002:000020e0 hid_free_enumeration 00000001800210e0 f hid-windows.obj
- 0002:000021b0 hid_get_feature_report 00000001800211b0 f hid-windows.obj
- 0002:00002330 hid_get_indexed_string 0000000180021330 f hid-windows.obj
- 0002:00002420 hid_get_manufacturer_string 0000000180021420 f hid-windows.obj
- 0002:00002500 hid_get_product_string 0000000180021500 f hid-windows.obj
- 0002:000025e0 hid_get_serial_number_string 00000001800215e0 f hid-windows.obj
- 0002:000026c0 hid_init 00000001800216c0 f hid-windows.obj
- 0002:00002730 hid_open 0000000180021730 f hid-windows.obj
- 0002:00002880 hid_open_path 0000000180021880 f hid-windows.obj
- 0002:00002ac0 hid_read 0000000180021ac0 f hid-windows.obj
- 0002:00002b70 hid_read_timeout 0000000180021b70 f hid-windows.obj
- 0002:00002ea0 hid_send_feature_report 0000000180021ea0 f hid-windows.obj
- 0002:00002f50 hid_set_nonblocking 0000000180021f50 f hid-windows.obj
- 0002:00002fd0 hid_write 0000000180021fd0 f hid-windows.obj
- 0002:00003950 jsmn_init 0000000180022950 f jsmn.obj
- 0002:000039d0 jsmn_parse 00000001800229d0 f jsmn.obj
- 0002:00004900 __local_stdio_printf_options 0000000180023900 f i json_helpers.obj
- 0002:00004940 _vfprintf_l 0000000180023940 f i json_helpers.obj
- 0002:000049d0 _vscprintf 00000001800239d0 f i json_helpers.obj
- 0002:00004a40 _vscprintf_l 0000000180023a40 f i json_helpers.obj
- 0002:00004b10 _vsnprintf 0000000180023b10 f i json_helpers.obj
- 0002:00004ba0 _vsnprintf_l 0000000180023ba0 f i json_helpers.obj
- 0002:00004c80 asprintf 0000000180023c80 f json_helpers.obj
- 0002:00004db0 fprintf 0000000180023db0 f i json_helpers.obj
- 0002:000050b0 json_load_file 00000001800240b0 f json_helpers.obj
- 0002:00005460 json_write_double_array 0000000180024460 f json_helpers.obj
- 0002:00005650 json_write_float 0000000180024650 f json_helpers.obj
- 0002:000056e0 json_write_float_array 00000001800246e0 f json_helpers.obj
- 0002:000058d0 json_write_str 00000001800248d0 f json_helpers.obj
- 0002:00005950 json_write_uint32 0000000180024950 f json_helpers.obj
- 0002:000059d0 load_file_to_mem 00000001800249d0 f json_helpers.obj
- 0002:00005af0 parse_float_array 0000000180024af0 f json_helpers.obj
- 0002:00005dc0 ApplyPoseToPoint 0000000180024dc0 f linmath.obj
- 0002:00005e60 ApplyPoseToPose 0000000180024e60 f linmath.obj
- 0002:00005f20 InvertPose 0000000180024f20 f linmath.obj
- 0002:00006000 add3d 0000000180025000 f linmath.obj
- 0002:00006140 angleaxisfrom2vect 0000000180025140 f linmath.obj
- 0002:000063e0 anglebetween3d 00000001800253e0 f linmath.obj
- 0002:00006500 axisanglefromquat 0000000180025500 f linmath.obj
- 0002:000068a0 compare3d 00000001800258a0 f linmath.obj
- 0002:00006ae0 copy3d 0000000180025ae0 f linmath.obj
- 0002:00006bd0 cross3d 0000000180025bd0 f linmath.obj
- 0002:00006dc0 dot3d 0000000180025dc0 f linmath.obj
- 0002:00006ec0 inverseM33 0000000180025ec0 f linmath.obj
- 0002:00007120 magnitude3d 0000000180026120 f linmath.obj
- 0002:00007220 matrix44copy 0000000180026220 f linmath.obj
- 0002:00007290 matrix44transpose 0000000180026290 f linmath.obj
- 0002:00007630 normalize3d 0000000180026630 f linmath.obj
- 0002:00007800 quatadd 0000000180026800 f linmath.obj
- 0002:00007990 quatcopy 0000000180026990 f linmath.obj
- 0002:00007ab0 quatevenproduct 0000000180026ab0 f linmath.obj
- 0002:00007da0 quatfrom2vectors 0000000180026da0 f linmath.obj
- 0002:00008150 quatfromaxisangle 0000000180027150 f linmath.obj
- 0002:00008300 quatfromeuler 0000000180027300 f linmath.obj
- 0002:000085c0 quatfrommatrix 00000001800275c0 f linmath.obj
- 0002:00008d80 quatfrommatrix33 0000000180027d80 f linmath.obj
- 0002:00009400 quatgetconjugate 0000000180028400 f linmath.obj
- 0002:00009540 quatgetreciprocal 0000000180028540 f linmath.obj
- 0002:000095e0 quatinnerproduct 00000001800285e0 f linmath.obj
- 0002:00009710 quatinvsqmagnitude 0000000180028710 f linmath.obj
- 0002:00009850 quatmagnitude 0000000180028850 f linmath.obj
- 0002:00009980 quatnormalize 0000000180028980 f linmath.obj
- 0002:00009a00 quatoddproduct 0000000180028a00 f linmath.obj
- 0002:00009bf0 quatouterproduct 0000000180028bf0 f linmath.obj
- 0002:00009f40 quatrotateabout 0000000180028f40 f linmath.obj
- 0002:0000a390 quatrotatevector 0000000180029390 f linmath.obj
- 0002:0000a6c0 quatscale 00000001800296c0 f linmath.obj
- 0002:0000a810 quatsetnone 0000000180029810 f linmath.obj
- 0002:0000a8d0 quatslerp 00000001800298d0 f linmath.obj
- 0002:0000abb0 quatsub 0000000180029bb0 f linmath.obj
- 0002:0000ad40 quattoeuler 0000000180029d40 f linmath.obj
- 0002:0000b0d0 quattomatrix 000000018002a0d0 f linmath.obj
- 0002:0000b5f0 quattomatrix33 000000018002a5f0 f linmath.obj
- 0002:0000ba40 rotate_vec 000000018002aa40 f linmath.obj
- 0002:0000bd90 rotatearoundaxis 000000018002ad90 f linmath.obj
- 0002:0000c170 rotation_between_vecs_to_m3 000000018002b170 f linmath.obj
- 0002:0000c250 scale3d 000000018002b250 f linmath.obj
- 0002:0000c360 sub3d 000000018002b360 f linmath.obj
- 0002:0000c4a0 OGCancelThread 000000018002b4a0 f os_generic.obj
- 0002:0000c500 OGCreateMutex 000000018002b500 f os_generic.obj
- 0002:0000c550 OGCreateSema 000000018002b550 f os_generic.obj
- 0002:0000c5b0 OGCreateThread 000000018002b5b0 f os_generic.obj
- 0002:0000c630 OGDeleteMutex 000000018002b630 f os_generic.obj
- 0002:0000c690 OGDeleteSema 000000018002b690 f os_generic.obj
- 0002:0000c6f0 OGGetAbsoluteTime 000000018002b6f0 f os_generic.obj
- 0002:0000c790 OGGetFileTime 000000018002b790 f os_generic.obj
- 0002:0000c890 OGGetSema 000000018002b890 f os_generic.obj
- 0002:0000c990 OGJoinThread 000000018002b990 f os_generic.obj
- 0002:0000ca00 OGLockMutex 000000018002ba00 f os_generic.obj
- 0002:0000ca60 OGLockSema 000000018002ba60 f os_generic.obj
- 0002:0000cac0 OGSleep 000000018002bac0 f os_generic.obj
- 0002:0000cb20 OGUSleep 000000018002bb20 f os_generic.obj
- 0002:0000cb80 OGUnlockMutex 000000018002bb80 f os_generic.obj
- 0002:0000cbe0 OGUnlockSema 000000018002bbe0 f os_generic.obj
- 0002:0000de30 puff 000000018002ce30 f puff.obj
- 0002:0000e400 EnumerateSymbols 000000018002d400 f symbol_enumerator.obj
- 0002:0000e4d0 mycb 000000018002d4d0 f symbol_enumerator.obj
- 0002:0000e5a0 _half_to_float 000000018002d5a0 f ootx_decoder.obj
- 0002:0000e750 get_ptr 000000018002d750 f ootx_decoder.obj
- 0002:0000e7f0 init_lighthouse_info_v6 000000018002d7f0 f ootx_decoder.obj
- 0002:0000eb90 ootx_decode_bit 000000018002db90 f ootx_decoder.obj
- 0002:0000ec00 ootx_detect_preamble 000000018002dc00 f ootx_decoder.obj
- 0002:0000ecb0 ootx_free_decoder_context 000000018002dcb0 f ootx_decoder.obj
- 0002:0000ed30 ootx_inc_buffer_offset 000000018002dd30 f ootx_decoder.obj
- 0002:0000ede0 ootx_init_decoder_context 000000018002dde0 f ootx_decoder.obj
- 0002:0000eec0 ootx_process_bit 000000018002dec0 f ootx_decoder.obj
- 0002:0000ef30 ootx_pump_bit 000000018002df30 f ootx_decoder.obj
- 0002:0000f190 ootx_reset_buffer 000000018002e190 f ootx_decoder.obj
- 0002:0000f220 ootx_write_to_buffer 000000018002e220 f ootx_decoder.obj
- 0002:0000f310 print_lighthouse_info_v6 000000018002e310 f ootx_decoder.obj
- 0002:0000f560 printf 000000018002e560 f i ootx_decoder.obj
- 0002:0000f620 PoserData_lighthouse_pose_func 000000018002e620 f poser.obj
- 0002:0000f9e0 PoserData_poser_raw_pose_func 000000018002e9e0 f poser.obj
- 0002:0000fab0 PoserCharlesSlow 000000018002eab0 f poser_charlesslow.obj
- 0002:00010970 REGISTERPoserCharlesSlow 000000018002f970 f poser_charlesslow.obj
- 0002:000115f0 _vsprintf_l 00000001800305f0 f i poser_charlesslow.obj
- 0002:00011680 sprintf 0000000180030680 f i poser_charlesslow.obj
- 0002:00011730 OrthoSolve 0000000180030730 f poser_daveortho.obj
- 0002:000169a0 PoserDaveOrtho 00000001800359a0 f poser_daveortho.obj
- 0002:00017de0 REGISTERPoserDaveOrtho 0000000180036de0 f poser_daveortho.obj
- 0002:00017e30 PoserDummy 0000000180036e30 f poser_dummy.obj
- 0002:00017f80 REGISTERPoserDummy 0000000180036f80 f poser_dummy.obj
- 0002:00017fd0 PoserOctavioRadii 0000000180036fd0 f poser_octavioradii.obj
- 0002:00019420 REGISTERPoserOctavioRadii 0000000180038420 f poser_octavioradii.obj
- 0002:0001a650 GetRotationMatrixForTorus 0000000180039650 f poser_turveytori.obj
- 0002:0001a7e0 PoserTurveyTori 00000001800397e0 f poser_turveytori.obj
- 0002:0001c1c0 REGISTERPoserTurveyTori 000000018003b1c0 f poser_turveytori.obj
- 0002:0001d050 RotateAndTranslatePoint 000000018003c050 f poser_turveytori.obj
- 0002:0001d3c0 RotationEstimateFitnessAxisAngle 000000018003c3c0 f poser_turveytori.obj
- 0002:0001d690 RotationEstimateFitnessAxisAngleOriginal 000000018003c690 f poser_turveytori.obj
- 0002:0001dae0 RotationEstimateFitnessOld 000000018003cae0 f poser_turveytori.obj
- 0002:0001df10 RotationEstimateFitnessQuaternion 000000018003cf10 f poser_turveytori.obj
- 0002:0001f9e0 SolveForRotation 000000018003e9e0 f poser_turveytori.obj
- 0002:0001fb60 SolveForRotationQuat 000000018003eb60 f poser_turveytori.obj
- 0002:0001fee0 angleBetweenSensors 000000018003eee0 f poser_turveytori.obj
- 0002:0001ffb0 angleFromPoints 000000018003efb0 f poser_turveytori.obj
- 0002:000202a0 calculateTorusPointFromAngles 000000018003f2a0 f poser_turveytori.obj
- 0002:00020620 compareFlts 000000018003f620 f poser_turveytori.obj
- 0002:000207f0 drawLineBetweenPoints 000000018003f7f0 f poser_turveytori.obj
- 0002:00020850 estimateToroidalAndPoloidalAngleOfPoint 000000018003f850 f poser_turveytori.obj
- 0002:00020d80 getAvgPoints 000000018003fd80 f poser_turveytori.obj
- 0002:00020ec0 getGradient 000000018003fec0 f poser_turveytori.obj
- 0002:00021260 getNormalizedAndScaledRotationGradient 0000000180040260 f poser_turveytori.obj
- 0002:000212f0 getNormalizedAndScaledVector 00000001800402f0 f poser_turveytori.obj
- 0002:00021490 getPointFitness 0000000180040490 f poser_turveytori.obj
- 0002:00021860 getPointFitnessForPna 0000000180040860 f poser_turveytori.obj
- 0002:00021a80 getRotationGradientAxisAngle 0000000180040a80 f poser_turveytori.obj
- 0002:00021e40 getRotationGradientQuaternion 0000000180040e40 f poser_turveytori.obj
- 0002:00022200 markPointWithStar 0000000180041200 f poser_turveytori.obj
- 0002:00022250 midpoint 0000000180041250 f poser_turveytori.obj
- 0002:00022390 pythAngleBetweenSensors2 0000000180041390 f poser_turveytori.obj
- 0002:000224f0 updateHeader 00000001800414f0 f poser_turveytori.obj
- 0002:00022530 writeAxes 0000000180041530 f poser_turveytori.obj
- 0002:00022570 writePcdHeader 0000000180041570 f poser_turveytori.obj
- 0002:000225b0 writePoint 00000001800415b0 f poser_turveytori.obj
- 0002:00022610 writePointCloud 0000000180041610 f poser_turveytori.obj
- 0002:00022660 GetDriverByConfig 0000000180041660 f survive.obj
- 0002:00022a70 SymnumCheck 0000000180041a70 f survive.obj
- 0002:00022cb0 survive_add_driver 0000000180041cb0 f survive.obj
- 0002:00022eb0 survive_add_object 0000000180041eb0 f survive.obj
- 0002:00022f90 survive_close 0000000180041f90 f survive.obj
- 0002:00023440 survive_get_so_by_name 0000000180042440 f survive.obj
- 0002:00023510 survive_haptic 0000000180042510 f survive.obj
- 0002:000235e0 survive_init_internal 00000001800425e0 f survive.obj
- 0002:00023d10 survive_install_angle_fn 0000000180042d10 f survive.obj
- 0002:00023d90 survive_install_button_fn 0000000180042d90 f survive.obj
- 0002:00023e10 survive_install_error_fn 0000000180042e10 f survive.obj
- 0002:00023e90 survive_install_htc_config_fn 0000000180042e90 f survive.obj
- 0002:00023f10 survive_install_imu_fn 0000000180042f10 f survive.obj
- 0002:00023f90 survive_install_info_fn 0000000180042f90 f survive.obj
- 0002:00024010 survive_install_light_fn 0000000180043010 f survive.obj
- 0002:00024090 survive_install_lighthouse_pose_fn 0000000180043090 f survive.obj
- 0002:00024110 survive_install_raw_pose_fn 0000000180043110 f survive.obj
- 0002:00024190 survive_poll 0000000180043190 f survive.obj
- 0002:000242a0 survive_send_magic 00000001800432a0 f survive.obj
- 0002:000243e0 survive_simple_inflate 00000001800433e0 f survive.obj
- 0002:00024510 survive_startup 0000000180043510 f survive.obj
- 0002:00024b90 survive_verify_FLT_size 0000000180043b90 f survive.obj
- 0002:000267b0 ootx_packet_clbk_d 00000001800457b0 f survive_cal.obj
- 0002:00026c60 snprintf 0000000180045c60 f i survive_cal.obj
- 0002:00026d20 survive_cal_angle 0000000180045d20 f survive_cal.obj
- 0002:000275a0 survive_cal_get_status 00000001800465a0 f survive_cal.obj
- 0002:00027850 survive_cal_install 0000000180046850 f survive_cal.obj
- 0002:00027d80 survive_cal_light 0000000180046d80 f survive_cal.obj
- 0002:000280d0 vsnprintf 00000001800470d0 f i survive_cal.obj
- 0002:000281a0 DisambiguatorCharles 00000001800471a0 f survive_charlesbiguator.obj
- 0002:00028cc0 REGISTERDisambiguatorCharles 0000000180047cc0 f survive_charlesbiguator.obj
- 0002:00028db0 _json_write_float_array 0000000180047db0 f survive_config.obj
- 0002:00028fe0 config_read 0000000180047fe0 f survive_config.obj
- 0002:000290d0 config_read_float 00000001800480d0 f survive_config.obj
- 0002:00029180 config_read_float_array 0000000180048180 f survive_config.obj
- 0002:00029320 config_read_lighthouse 0000000180048320 f survive_config.obj
- 0002:00029690 config_read_str 0000000180048690 f survive_config.obj
- 0002:00029730 config_read_uint32 0000000180048730 f survive_config.obj
- 0002:000297d0 config_save 00000001800487d0 f survive_config.obj
- 0002:000298c0 config_set_float 00000001800488c0 f survive_config.obj
- 0002:00029990 config_set_float_a 0000000180048990 f survive_config.obj
- 0002:00029b00 config_set_lighthouse 0000000180048b00 f survive_config.obj
- 0002:00029cf0 config_set_str 0000000180048cf0 f survive_config.obj
- 0002:00029df0 config_set_uint32 0000000180048df0 f survive_config.obj
- 0002:00029ec0 destroy_config_entry 0000000180048ec0 f survive_config.obj
- 0002:00029f70 destroy_config_group 0000000180048f70 f survive_config.obj
- 0002:0002a040 find_config_entry 0000000180049040 f survive_config.obj
- 0002:0002a110 handle_config_group 0000000180049110 f survive_config.obj
- 0002:0002a220 handle_tag_value 0000000180049220 f survive_config.obj
- 0002:0002a320 init_config_entry 0000000180049320 f survive_config.obj
- 0002:0002a3b0 init_config_group 00000001800493b0 f survive_config.obj
- 0002:0002a4c0 next_unused_entry 00000001800494c0 f survive_config.obj
- 0002:0002a5a0 parse_floats 00000001800495a0 f survive_config.obj
- 0002:0002a7e0 parse_uint32 00000001800497e0 f survive_config.obj
- 0002:0002aa00 pop_config_group 0000000180049a00 f survive_config.obj
- 0002:0002aa50 print_json_value 0000000180049a50 f survive_config.obj
- 0002:0002ab00 resize_config_group 0000000180049b00 f survive_config.obj
- 0002:0002acf0 sstrcpy 0000000180049cf0 f survive_config.obj
- 0002:0002ae10 survive_configf 0000000180049e10 f survive_config.obj
- 0002:0002af60 survive_configi 0000000180049f60 f survive_config.obj
- 0002:0002b0a0 survive_configs 000000018004a0a0 f survive_config.obj
- 0002:0002b1e0 write_config_group 000000018004a1e0 f survive_config.obj
- 0002:0002baa0 survive_create_hmd 000000018004aaa0 f survive_default_devices.obj
- 0002:0002bb30 survive_create_tr0 000000018004ab30 f survive_default_devices.obj
- 0002:0002bbc0 survive_create_wm0 000000018004abc0 f survive_default_devices.obj
- 0002:0002bc50 survive_create_wm1 000000018004ac50 f survive_default_devices.obj
- 0002:0002bce0 survive_create_ww0 000000018004ace0 f survive_default_devices.obj
- 0002:0002bd70 survive_load_htc_config_format 000000018004ad70 f survive_default_devices.obj
- 0002:0002c750 handle_lightcap 000000018004b750 f survive_disambiguator.obj
- 0002:0002c7d0 GetDriver 000000018004b7d0 f survive_driverman.obj
- 0002:0002c880 GetDriverNameMatching 000000018004b880 f survive_driverman.obj
- 0002:0002c9a0 ListDrivers 000000018004b9a0 f survive_driverman.obj
- 0002:0002ca40 RegisterDriver 000000018004ba40 f survive_driverman.obj
- 0002:0002cae0 DriverRegPlayback 000000018004bae0 f survive_playback.obj
- 0002:0002d120 REGISTERDriverRegPlayback 000000018004c120 f survive_playback.obj
- 0002:0002d170 __local_stdio_scanf_options 000000018004c170 f i survive_playback.obj
- 0002:0002d1b0 _vsscanf_l 000000018004c1b0 f i survive_playback.obj
- 0002:0002dd80 sscanf 000000018004cd80 f i survive_playback.obj
- 0002:0002de30 survive_install_recording 000000018004ce30 f survive_playback.obj
- 0002:0002e120 survive_recording_angle_process 000000018004d120 f survive_playback.obj
- 0002:0002e210 survive_recording_config_process 000000018004d210 f survive_playback.obj
- 0002:0002e350 survive_recording_imu_process 000000018004d350 f survive_playback.obj
- 0002:0002e4f0 survive_recording_info_process 000000018004d4f0 f survive_playback.obj
- 0002:0002e580 survive_recording_light_process 000000018004d580 f survive_playback.obj
- 0002:0002e7f0 survive_recording_lightcap 000000018004d7f0 f survive_playback.obj
- 0002:0002e8d0 survive_recording_lighthouse_process 000000018004d8d0 f survive_playback.obj
- 0002:0002ea70 survive_recording_raw_pose_process 000000018004da70 f survive_playback.obj
- 0002:0002ec80 vfprintf 000000018004dc80 f i survive_playback.obj
- 0002:0002ee70 survive_default_angle_process 000000018004de70 f survive_process.obj
- 0002:0002f070 survive_default_button_process 000000018004e070 f survive_process.obj
- 0002:0002f0c0 survive_default_htc_config_process 000000018004e0c0 f survive_process.obj
- 0002:0002f150 survive_default_imu_process 000000018004e150 f survive_process.obj
- 0002:0002f3d0 survive_default_light_process 000000018004e3d0 f survive_process.obj
- 0002:0002f750 survive_default_lighthouse_pose_process 000000018004e750 f survive_process.obj
- 0002:0002f8f0 survive_default_raw_pose_process 000000018004e8f0 f survive_process.obj
- 0002:0002fa30 survive_calibration_config_create_from_idx 000000018004ea30 f survive_reproject.obj
- 0002:0002fc40 survive_calibration_config_index 000000018004ec40 f survive_reproject.obj
- 0002:0002fd10 survive_calibration_config_max_idx 000000018004ed10 f survive_reproject.obj
- 0002:0002fdb0 survive_calibration_default_config 000000018004edb0 f survive_reproject.obj
- 0002:0002fe50 survive_calibration_options_config_apply 000000018004ee50 f survive_reproject.obj
- 0002:000300a0 survive_reproject 000000018004f0a0 f survive_reproject.obj
- 0002:00030150 survive_reproject_from_pose 000000018004f150 f survive_reproject.obj
- 0002:000301f0 survive_reproject_from_pose_with_config 000000018004f1f0 f survive_reproject.obj
- 0002:00030730 SurviveSensorActivations_add 000000018004f730 f survive_sensor_activations.obj
- 0002:00030850 SurviveSensorActivations_add_imu 000000018004f850 f survive_sensor_activations.obj
- 0002:00030a20 SurviveSensorActivations_isPairValid 000000018004fa20 f survive_sensor_activations.obj
- 0002:00030b20 DisambiguatorTurvey 000000018004fb20 f survive_turveybiguator.obj
- 0002:00030c70 REGISTERDisambiguatorTurvey 000000018004fc70 f survive_turveybiguator.obj
- 0002:00031e20 DriverRegHTCVive 0000000180050e20 f survive_vive.obj
- 0002:000324d0 HAPIReceiver 00000001800514d0 f survive_vive.obj
- 0002:00032790 REGISTERDriverRegHTCVive 0000000180051790 f survive_vive.obj
- 0002:000327e0 _vfwprintf_l 00000001800517e0 f i survive_vive.obj
- 0002:00032870 calibrate_acc 0000000180051870 f survive_vive.obj
- 0002:00032b00 calibrate_gyro 0000000180051b00 f survive_vive.obj
- 0002:00034020 incrementAndPostButtonQueue 0000000180053020 f survive_vive.obj
- 0002:000341a0 init_SurviveObject 00000001800531a0 f survive_vive.obj
- 0002:00034280 registerButtonEvent 0000000180053280 f survive_vive.obj
- 0002:00034840 survive_data_cb 0000000180053840 f survive_vive.obj
- 0002:000353c0 survive_get_config 00000001800543c0 f survive_vive.obj
- 0002:00035a70 survive_usb_init 0000000180054a70 f survive_vive.obj
- 0002:000366f0 survive_vive_close 00000001800556f0 f survive_vive.obj
- 0002:00036760 survive_vive_send_haptic 0000000180055760 f survive_vive.obj
- 0002:00036980 survive_vive_send_magic 0000000180055980 f survive_vive.obj
- 0002:00036eb0 survive_vive_usb_close 0000000180055eb0 f survive_vive.obj
- 0002:00036f90 survive_vive_usb_poll 0000000180055f90 f survive_vive.obj
- 0002:00037090 wprintf 0000000180056090 f i survive_vive.obj
- 0002:00037150 getdelim 0000000180056150 f getdelim.obj
- 0002:00037410 getline 0000000180056410 f getdelim.obj
- 0002:00037485 SymEnumSymbols 0000000180056485 f DbgHelp:dbghelp.dll
- 0002:0003748b SymInitialize 000000018005648b f DbgHelp:dbghelp.dll
- 0002:00037491 SymCleanup 0000000180056491 f DbgHelp:dbghelp.dll
- 0002:00037497 SetupDiEnumDeviceInfo 0000000180056497 f SetupAPI:SETUPAPI.dll
- 0002:0003749d SetupDiDestroyDeviceInfoList 000000018005649d f SetupAPI:SETUPAPI.dll
- 0002:000374a3 SetupDiEnumDeviceInterfaces 00000001800564a3 f SetupAPI:SETUPAPI.dll
- 0002:000374a9 SetupDiGetDeviceInterfaceDetailA 00000001800564a9 f SetupAPI:SETUPAPI.dll
- 0002:000374af SetupDiGetClassDevsA 00000001800564af f SetupAPI:SETUPAPI.dll
- 0002:000374b5 SetupDiGetDeviceRegistryPropertyA 00000001800564b5 f SetupAPI:SETUPAPI.dll
- 0002:000374bb CreateFileA 00000001800564bb f kernel32:KERNEL32.dll
- 0002:000374c1 ReadFile 00000001800564c1 f kernel32:KERNEL32.dll
- 0002:000374c7 WriteFile 00000001800564c7 f kernel32:KERNEL32.dll
- 0002:000374cd CloseHandle 00000001800564cd f kernel32:KERNEL32.dll
- 0002:000374d3 GetLastError 00000001800564d3 f kernel32:KERNEL32.dll
- 0002:000374d9 DeviceIoControl 00000001800564d9 f kernel32:KERNEL32.dll
- 0002:000374df GetOverlappedResult 00000001800564df f kernel32:KERNEL32.dll
- 0002:000374e5 CancelIo 00000001800564e5 f kernel32:KERNEL32.dll
- 0002:000374eb ResetEvent 00000001800564eb f kernel32:KERNEL32.dll
- 0002:000374f1 WaitForSingleObject 00000001800564f1 f kernel32:KERNEL32.dll
- 0002:000374f7 CreateEventA 00000001800564f7 f kernel32:KERNEL32.dll
- 0002:000374fd FreeLibrary 00000001800564fd f kernel32:KERNEL32.dll
- 0002:00037503 GetProcAddress 0000000180056503 f kernel32:KERNEL32.dll
- 0002:00037509 LoadLibraryA 0000000180056509 f kernel32:KERNEL32.dll
- 0002:0003750f LocalFree 000000018005650f f kernel32:KERNEL32.dll
- 0002:00037515 FormatMessageW 0000000180056515 f kernel32:KERNEL32.dll
- 0002:0003751b GetFileTime 000000018005651b f kernel32:KERNEL32.dll
- 0002:00037521 QueryPerformanceCounter 0000000180056521 f kernel32:KERNEL32.dll
- 0002:00037527 QueryPerformanceFrequency 0000000180056527 f kernel32:KERNEL32.dll
- 0002:0003752d ReleaseSemaphore 000000018005652d f kernel32:KERNEL32.dll
- 0002:00037533 ReleaseMutex 0000000180056533 f kernel32:KERNEL32.dll
- 0002:00037539 CreateMutexA 0000000180056539 f kernel32:KERNEL32.dll
- 0002:0003753f Sleep 000000018005653f f kernel32:KERNEL32.dll
- 0002:00037545 CreateThread 0000000180056545 f kernel32:KERNEL32.dll
- 0002:0003754b GetModuleHandleA 000000018005654b f kernel32:KERNEL32.dll
- 0002:00037551 CreateSemaphoreA 0000000180056551 f kernel32:KERNEL32.dll
- 0002:00037557 GetCurrentProcess 0000000180056557 f kernel32:KERNEL32.dll
- 0002:0003755d CreateDirectoryA 000000018005655d f kernel32:KERNEL32.dll
- 0002:00037570 _CRT_RTC_INIT 0000000180056570 f MSVCRTD:_init_.obj
- 0002:00037580 _CRT_RTC_INITW 0000000180056580 f MSVCRTD:_init_.obj
- 0002:00037590 _RTC_InitBase 0000000180056590 f MSVCRTD:_init_.obj
- 0002:000375e0 _RTC_Shutdown 00000001800565e0 f MSVCRTD:_init_.obj
- 0002:00037610 __raise_securityfailure 0000000180056610 f MSVCRTD:gs_report.obj
- 0002:00037660 __report_gsfailure 0000000180056660 f MSVCRTD:gs_report.obj
- 0002:00037770 __report_rangecheckfailure 0000000180056770 f MSVCRTD:gs_report.obj
- 0002:00037790 __report_securityfailure 0000000180056790 f MSVCRTD:gs_report.obj
- 0002:00037860 __report_securityfailureEx 0000000180056860 f MSVCRTD:gs_report.obj
- 0002:00037b60 _RTC_AllocaHelper 0000000180056b60 f MSVCRTD:_stack_.obj
- 0002:00037bb0 _RTC_CheckStackVars 0000000180056bb0 f MSVCRTD:_stack_.obj
- 0002:00037c60 _RTC_CheckStackVars2 0000000180056c60 f MSVCRTD:_stack_.obj
- 0002:00037db0 __GSHandlerCheck 0000000180056db0 f MSVCRTD:_gshandler_.obj
- 0002:00037e00 __GSHandlerCheckCommon 0000000180056e00 f MSVCRTD:_gshandler_.obj
- 0002:00037f50 __security_check_cookie 0000000180056f50 f MSVCRTD:_amdsecgs_.obj
- 0002:00037f90 __chkstk 0000000180056f90 f MSVCRTD:_chkstk_.obj
- 0002:00037f90 _alloca_probe 0000000180056f90 f MSVCRTD:_chkstk_.obj
- 0002:000384e0 _CRT_INIT 00000001800574e0 f MSVCRTD:dll_dllmain.obj
- 0002:00038520 _DllMainCRTStartup 0000000180057520 f MSVCRTD:dll_dllmain.obj
- 0002:00038570 ?_RTC_GetErrorFunc@@YAP6AHHPEBDH00ZZPEBX@Z 0000000180057570 f MSVCRTD:_userapi_.obj
- 0002:00038580 ?_RTC_GetErrorFuncW@@YAP6AHHPEB_WH00ZZPEBX@Z 0000000180057580 f MSVCRTD:_userapi_.obj
- 0002:00038590 _RTC_GetErrDesc 0000000180057590 f MSVCRTD:_userapi_.obj
- 0002:000385b0 _RTC_NumErrors 00000001800575b0 f MSVCRTD:_userapi_.obj
- 0002:000385c0 _RTC_SetErrorFunc 00000001800575c0 f MSVCRTD:_userapi_.obj
- 0002:000385e0 _RTC_SetErrorFuncW 00000001800575e0 f MSVCRTD:_userapi_.obj
- 0002:00038600 _RTC_SetErrorType 0000000180057600 f MSVCRTD:_userapi_.obj
- 0002:00038630 ??$__vcrt_va_start_verify_argument_type@QEBD@@YAXXZ 0000000180057630 f i MSVCRTD:_error_.obj
- 0002:000386f0 ?_RTC_AllocaFailure@@YAXPEAXPEAU_RTC_ALLOCA_NODE@@H@Z 00000001800576f0 f MSVCRTD:_error_.obj
- 0002:000388a0 ?_RTC_Failure@@YAXPEAXH@Z 00000001800578a0 f MSVCRTD:_error_.obj
- 0002:00038910 ?_RTC_StackFailure@@YAXPEAXPEBD@Z 0000000180057910 f MSVCRTD:_error_.obj
- 0002:00038e70 _RTC_UninitUse 0000000180057e70 f MSVCRTD:_error_.obj
- 0002:00038f70 _vsprintf_s_l 0000000180057f70 f i MSVCRTD:_error_.obj
- 0002:00038ff0 sprintf_s 0000000180057ff0 f i MSVCRTD:_error_.obj
- 0002:00039130 __security_init_cookie 0000000180058130 f MSVCRTD:gs_support.obj
- 0002:000391d0 DllMain 00000001800581d0 f MSVCRTD:dll_dllmain_stub.obj
- 0002:00039220 ?__scrt_initialize_type_info@@YAXXZ 0000000180058220 f MSVCRTD:tncleanup.obj
- 0002:00039240 ?__scrt_uninitialize_type_info@@YAXXZ 0000000180058240 f MSVCRTD:tncleanup.obj
- 0002:00039260 __scrt_initialize_default_local_stdio_options 0000000180058260 f MSVCRTD:default_local_stdio_options.obj
- 0002:000392c0 ??$__crt_fast_decode_pointer@PEAP6AXXZ@@YAPEAP6AXXZQEAP6AXXZ@Z 00000001800582c0 f i MSVCRTD:utility.obj
- 0002:00039310 ??$__crt_fast_encode_pointer@PEAP6AXXZ@@YAPEAP6AXXZQEAP6AXXZ@Z 0000000180058310 f i MSVCRTD:utility.obj
- 0002:00039360 ?__crt_rotate_pointer_value@@YA_K_KH@Z 0000000180058360 f i MSVCRTD:utility.obj
- 0002:00039380 ?configure_argv@__scrt_narrow_argv_policy@@SAHXZ 0000000180058380 f i MSVCRTD:utility.obj
- 0002:000394a0 ?initialize_environment@__scrt_narrow_environment_policy@@SAHXZ 00000001800584a0 f i MSVCRTD:utility.obj
- 0002:00039570 NtCurrentTeb 0000000180058570 f i MSVCRTD:utility.obj
- 0002:00039580 __scrt_acquire_startup_lock 0000000180058580 f MSVCRTD:utility.obj
- 0002:00039600 __scrt_dllmain_after_initialize_c 0000000180058600 f MSVCRTD:utility.obj
- 0002:00039640 __scrt_dllmain_before_initialize_c 0000000180058640 f MSVCRTD:utility.obj
- 0002:00039670 __scrt_dllmain_crt_thread_attach 0000000180058670 f MSVCRTD:utility.obj
- 0002:000396b0 __scrt_dllmain_crt_thread_detach 00000001800586b0 f MSVCRTD:utility.obj
- 0002:000396d0 __scrt_dllmain_exception_filter 00000001800586d0 f MSVCRTD:utility.obj
- 0002:00039750 __scrt_dllmain_uninitialize_c 0000000180058750 f MSVCRTD:utility.obj
- 0002:00039790 __scrt_dllmain_uninitialize_critical 0000000180058790 f MSVCRTD:utility.obj
- 0002:000397b0 __scrt_initialize_crt 00000001800587b0 f MSVCRTD:utility.obj
- 0002:00039810 __scrt_initialize_onexit_tables 0000000180058810 f MSVCRTD:utility.obj
- 0002:00039960 __scrt_is_nonwritable_in_current_image 0000000180058960 f MSVCRTD:utility.obj
- 0002:00039a10 __scrt_release_startup_lock 0000000180058a10 f MSVCRTD:utility.obj
- 0002:00039a50 __scrt_uninitialize_crt 0000000180058a50 f MSVCRTD:utility.obj
- 0002:00039aa0 _onexit 0000000180058aa0 f MSVCRTD:utility.obj
- 0002:00039b50 at_quick_exit 0000000180058b50 f MSVCRTD:utility.obj
- 0002:00039bc0 atexit 0000000180058bc0 f MSVCRTD:utility.obj
- 0002:00039c00 __scrt_get_dyn_tls_init_callback 0000000180058c00 f MSVCRTD:dyn_tls_init.obj
- 0002:00039c10 __crt_debugger_hook 0000000180058c10 f MSVCRTD:utility_desktop.obj
- 0002:00039c30 __scrt_fastfail 0000000180058c30 f MSVCRTD:utility_desktop.obj
- 0002:00039e30 __scrt_get_show_window_mode 0000000180058e30 f MSVCRTD:utility_desktop.obj
- 0002:00039ea0 __scrt_initialize_winrt 0000000180058ea0 f MSVCRTD:utility_desktop.obj
- 0002:00039eb0 __scrt_is_managed_app 0000000180058eb0 f MSVCRTD:utility_desktop.obj
- 0002:00039f80 __scrt_set_unhandled_exception_filter 0000000180058f80 f MSVCRTD:utility_desktop.obj
- 0002:00039fa0 __scrt_unhandled_exception_filter 0000000180058fa0 f MSVCRTD:utility_desktop.obj
- 0002:0003a030 _RTC_Initialize 0000000180059030 f MSVCRTD:_initsect_.obj
- 0002:0003a090 _RTC_Terminate 0000000180059090 f MSVCRTD:_initsect_.obj
- 0002:0003a0f0 _guard_check_icall 00000001800590f0 f i MSVCRTD:checkcfg.obj
- 0002:0003a780 ?_RTC_GetSrcLine@@YAHPEAEPEA_WKPEAH1K@Z 0000000180059780 f MSVCRTD:_pdblkup_.obj
- 0002:0003ad10 __isa_available_init 0000000180059d10 f MSVCRTD:_cpu_disp_.obj
- 0002:0003b160 _get_startup_argv_mode 000000018005a160 f MSVCRTD:argv_mode.obj
- 0002:0003b170 __scrt_is_ucrt_dll_in_use 000000018005a170 f MSVCRTD:ucrt_detection.obj
- 0002:0003b1a0 _guard_check_icall_nop 000000018005a1a0 f i MSVCRTD:guard_support.obj
- 0002:0003b1b0 ReadNoFence64 000000018005a1b0 f i MSVCRTD:guard_support.obj
- 0002:0003b1e0 ReadPointerNoFence 000000018005a1e0 f i MSVCRTD:guard_support.obj
- 0002:0003b200 __guard_ss_common_verify_stub 000000018005a200 f i MSVCRTD:guard_support.obj
- 0002:0003b210 _guard_icall_checks_enforced 000000018005a210 f i MSVCRTD:guard_support.obj
- 0002:0003b260 _guard_rf_checks_enforced 000000018005a260 f i MSVCRTD:guard_support.obj
- 0002:0003b2b0 memcpy 000000018005a2b0 f vcruntimed:VCRUNTIME140D.dll
- 0002:0003b2b6 memset 000000018005a2b6 f vcruntimed:VCRUNTIME140D.dll
- 0002:0003b2bc strstr 000000018005a2bc f vcruntimed:VCRUNTIME140D.dll
- 0002:0003b2c2 longjmp 000000018005a2c2 f vcruntimed:VCRUNTIME140D.dll
- 0002:0003b2c8 memcmp 000000018005a2c8 f vcruntimed:VCRUNTIME140D.dll
- 0002:0003b2ce _setjmp 000000018005a2ce f vcruntimed:VCRUNTIME140D.dll
- 0002:0003b2ce __intrinsic_setjmp 000000018005a2ce f vcruntimed:VCRUNTIME140D.dll
- 0002:0003b2d4 __C_specific_handler 000000018005a2d4 f vcruntimed:VCRUNTIME140D.dll
- 0002:0003b2da __std_type_info_destroy_list 000000018005a2da f vcruntimed:VCRUNTIME140D.dll
- 0002:0003b2e0 __vcrt_GetModuleFileNameW 000000018005a2e0 f vcruntimed:VCRUNTIME140D.dll
- 0002:0003b2e6 __vcrt_GetModuleHandleW 000000018005a2e6 f vcruntimed:VCRUNTIME140D.dll
- 0002:0003b2ec __vcrt_LoadLibraryExW 000000018005a2ec f vcruntimed:VCRUNTIME140D.dll
- 0002:0003b2f2 _wcsdup 000000018005a2f2 f ucrtd:ucrtbased.dll
- 0002:0003b2f8 wcscmp 000000018005a2f8 f ucrtd:ucrtbased.dll
- 0002:0003b2fe strcmp 000000018005a2fe f ucrtd:ucrtbased.dll
- 0002:0003b304 strlen 000000018005a304 f ucrtd:ucrtbased.dll
- 0002:0003b30a strncpy 000000018005a30a f ucrtd:ucrtbased.dll
- 0002:0003b310 calloc 000000018005a310 f ucrtd:ucrtbased.dll
- 0002:0003b316 free 000000018005a316 f ucrtd:ucrtbased.dll
- 0002:0003b31c malloc 000000018005a31c f ucrtd:ucrtbased.dll
- 0002:0003b322 strtol 000000018005a322 f ucrtd:ucrtbased.dll
- 0002:0003b328 fclose 000000018005a328 f ucrtd:ucrtbased.dll
- 0002:0003b32e fopen 000000018005a32e f ucrtd:ucrtbased.dll
- 0002:0003b334 fputs 000000018005a334 f ucrtd:ucrtbased.dll
- 0002:0003b33a fread 000000018005a33a f ucrtd:ucrtbased.dll
- 0002:0003b340 fseek 000000018005a340 f ucrtd:ucrtbased.dll
- 0002:0003b346 ftell 000000018005a346 f ucrtd:ucrtbased.dll
- 0002:0003b34c __stdio_common_vfprintf 000000018005a34c f ucrtd:ucrtbased.dll
- 0002:0003b352 __stdio_common_vsprintf 000000018005a352 f ucrtd:ucrtbased.dll
- 0002:0003b358 strtod 000000018005a358 f ucrtd:ucrtbased.dll
- 0002:0003b35e acos 000000018005a35e f ucrtd:ucrtbased.dll
- 0002:0003b364 asin 000000018005a364 f ucrtd:ucrtbased.dll
- 0002:0003b36a atan2 000000018005a36a f ucrtd:ucrtbased.dll
- 0002:0003b370 cos 000000018005a370 f ucrtd:ucrtbased.dll
- 0002:0003b376 fabs 000000018005a376 f ucrtd:ucrtbased.dll
- 0002:0003b37c sin 000000018005a37c f ucrtd:ucrtbased.dll
- 0002:0003b382 sqrt 000000018005a382 f ucrtd:ucrtbased.dll
- 0002:0003b388 __acrt_iob_func 000000018005a388 f ucrtd:ucrtbased.dll
- 0002:0003b38e tan 000000018005a38e f ucrtd:ucrtbased.dll
- 0002:0003b394 _dclass 000000018005a394 f ucrtd:ucrtbased.dll
- 0002:0003b39a qsort 000000018005a39a f ucrtd:ucrtbased.dll
- 0002:0003b3a0 atan 000000018005a3a0 f ucrtd:ucrtbased.dll
- 0002:0003b3a6 realloc 000000018005a3a6 f ucrtd:ucrtbased.dll
- 0002:0003b3ac exit 000000018005a3ac f ucrtd:ucrtbased.dll
- 0002:0003b3b2 strncmp 000000018005a3b2 f ucrtd:ucrtbased.dll
- 0002:0003b3b8 atof 000000018005a3b8 f ucrtd:ucrtbased.dll
- 0002:0003b3be atoi 000000018005a3be f ucrtd:ucrtbased.dll
- 0002:0003b3c4 _wassert 000000018005a3c4 f ucrtd:ucrtbased.dll
- 0002:0003b3ca strcpy 000000018005a3ca f ucrtd:ucrtbased.dll
- 0002:0003b3d0 roundf 000000018005a3d0 f ucrtd:ucrtbased.dll
- 0002:0003b3d6 feof 000000018005a3d6 f ucrtd:ucrtbased.dll
- 0002:0003b3dc ferror 000000018005a3dc f ucrtd:ucrtbased.dll
- 0002:0003b3e2 __stdio_common_vsscanf 000000018005a3e2 f ucrtd:ucrtbased.dll
- 0002:0003b3e8 abs 000000018005a3e8 f ucrtd:ucrtbased.dll
- 0002:0003b3ee sqrtf 000000018005a3ee f ucrtd:ucrtbased.dll
- 0002:0003b3f4 _errno 000000018005a3f4 f ucrtd:ucrtbased.dll
- 0002:0003b3fa __stdio_common_vfwprintf 000000018005a3fa f ucrtd:ucrtbased.dll
- 0002:0003b400 fwrite 000000018005a400 f ucrtd:ucrtbased.dll
- 0002:0003b406 getc 000000018005a406 f ucrtd:ucrtbased.dll
- 0002:0003b40c _CrtDbgReport 000000018005a40c f ucrtd:ucrtbased.dll
- 0002:0003b412 _CrtDbgReportW 000000018005a412 f ucrtd:ucrtbased.dll
- 0002:0003b418 _initterm 000000018005a418 f ucrtd:ucrtbased.dll
- 0002:0003b41e _initterm_e 000000018005a41e f ucrtd:ucrtbased.dll
- 0002:0003b424 strcpy_s 000000018005a424 f ucrtd:ucrtbased.dll
- 0002:0003b42a strcat_s 000000018005a42a f ucrtd:ucrtbased.dll
- 0002:0003b430 __stdio_common_vsprintf_s 000000018005a430 f ucrtd:ucrtbased.dll
- 0002:0003b436 _seh_filter_dll 000000018005a436 f ucrtd:ucrtbased.dll
- 0002:0003b43c _configure_narrow_argv 000000018005a43c f ucrtd:ucrtbased.dll
- 0002:0003b442 _initialize_narrow_environment 000000018005a442 f ucrtd:ucrtbased.dll
- 0002:0003b448 _initialize_onexit_table 000000018005a448 f ucrtd:ucrtbased.dll
- 0002:0003b44e _register_onexit_function 000000018005a44e f ucrtd:ucrtbased.dll
- 0002:0003b454 _execute_onexit_table 000000018005a454 f ucrtd:ucrtbased.dll
- 0002:0003b45a _crt_atexit 000000018005a45a f ucrtd:ucrtbased.dll
- 0002:0003b460 _crt_at_quick_exit 000000018005a460 f ucrtd:ucrtbased.dll
- 0002:0003b466 _cexit 000000018005a466 f ucrtd:ucrtbased.dll
- 0002:0003b46c terminate 000000018005a46c f ucrtd:ucrtbased.dll
- 0002:0003b472 _wmakepath_s 000000018005a472 f ucrtd:ucrtbased.dll
- 0002:0003b478 _wsplitpath_s 000000018005a478 f ucrtd:ucrtbased.dll
- 0002:0003b47e wcscpy_s 000000018005a47e f ucrtd:ucrtbased.dll
- 0002:0003b484 mkdir 000000018005a484 f ucrtd:ucrtbased.dll
- 0002:0003b484 _mkdir 000000018005a484 f ucrtd:ucrtbased.dll
- 0002:0003b48a RtlCaptureContext 000000018005a48a f kernel32:KERNEL32.dll
- 0002:0003b490 RtlLookupFunctionEntry 000000018005a490 f kernel32:KERNEL32.dll
- 0002:0003b496 RtlVirtualUnwind 000000018005a496 f kernel32:KERNEL32.dll
- 0002:0003b49c UnhandledExceptionFilter 000000018005a49c f kernel32:KERNEL32.dll
- 0002:0003b4a2 SetUnhandledExceptionFilter 000000018005a4a2 f kernel32:KERNEL32.dll
- 0002:0003b4a8 TerminateProcess 000000018005a4a8 f kernel32:KERNEL32.dll
- 0002:0003b4ae IsProcessorFeaturePresent 000000018005a4ae f kernel32:KERNEL32.dll
- 0002:0003b4b4 IsDebuggerPresent 000000018005a4b4 f kernel32:KERNEL32.dll
- 0002:0003b4ba RaiseException 000000018005a4ba f kernel32:KERNEL32.dll
- 0002:0003b4c0 MultiByteToWideChar 000000018005a4c0 f kernel32:KERNEL32.dll
- 0002:0003b4c6 WideCharToMultiByte 000000018005a4c6 f kernel32:KERNEL32.dll
- 0002:0003b4cc GetCurrentProcessId 000000018005a4cc f kernel32:KERNEL32.dll
- 0002:0003b4d2 GetCurrentThreadId 000000018005a4d2 f kernel32:KERNEL32.dll
- 0002:0003b4d8 GetSystemTimeAsFileTime 000000018005a4d8 f kernel32:KERNEL32.dll
- 0002:0003b4de DisableThreadLibraryCalls 000000018005a4de f kernel32:KERNEL32.dll
- 0002:0003b4e4 InitializeSListHead 000000018005a4e4 f kernel32:KERNEL32.dll
- 0002:0003b4ea GetStartupInfoW 000000018005a4ea f kernel32:KERNEL32.dll
- 0002:0003b4f0 GetModuleHandleW 000000018005a4f0 f kernel32:KERNEL32.dll
- 0002:0003b4f6 HeapAlloc 000000018005a4f6 f kernel32:KERNEL32.dll
- 0002:0003b4fc HeapFree 000000018005a4fc f kernel32:KERNEL32.dll
- 0002:0003b502 GetProcessHeap 000000018005a502 f kernel32:KERNEL32.dll
- 0002:0003b508 VirtualQuery 000000018005a508 f kernel32:KERNEL32.dll
- 0002:0003b510 __acrt_initialize 000000018005a510 f MSVCRTD:ucrt_stubs.obj
- 0002:0003b510 __scrt_stub_for_acrt_initialize 000000018005a510 f MSVCRTD:ucrt_stubs.obj
- 0002:0003b510 __vcrt_initialize 000000018005a510 f MSVCRTD:ucrt_stubs.obj
- 0002:0003b520 __acrt_thread_attach 000000018005a520 f MSVCRTD:ucrt_stubs.obj
- 0002:0003b520 __scrt_stub_for_acrt_thread_attach 000000018005a520 f MSVCRTD:ucrt_stubs.obj
- 0002:0003b520 __vcrt_thread_attach 000000018005a520 f MSVCRTD:ucrt_stubs.obj
- 0002:0003b530 __acrt_thread_detach 000000018005a530 f MSVCRTD:ucrt_stubs.obj
- 0002:0003b530 __vcrt_thread_detach 000000018005a530 f MSVCRTD:ucrt_stubs.obj
- 0002:0003b530 __scrt_stub_for_acrt_thread_detach 000000018005a530 f MSVCRTD:ucrt_stubs.obj
- 0002:0003b540 __acrt_uninitialize 000000018005a540 f MSVCRTD:ucrt_stubs.obj
- 0002:0003b540 __vcrt_uninitialize 000000018005a540 f MSVCRTD:ucrt_stubs.obj
- 0002:0003b540 __scrt_stub_for_acrt_uninitialize 000000018005a540 f MSVCRTD:ucrt_stubs.obj
- 0002:0003b550 __scrt_stub_for_acrt_uninitialize_critical 000000018005a550 f MSVCRTD:ucrt_stubs.obj
- 0002:0003b550 __vcrt_uninitialize_critical 000000018005a550 f MSVCRTD:ucrt_stubs.obj
- 0002:0003b550 __acrt_uninitialize_critical 000000018005a550 f MSVCRTD:ucrt_stubs.obj
- 0002:0003b560 _is_c_termination_complete 000000018005a560 f MSVCRTD:ucrt_stubs.obj
- 0002:0003b560 __scrt_stub_for_is_c_termination_complete 000000018005a560 f MSVCRTD:ucrt_stubs.obj
- 0002:0003cfa0 _guard_dispatch_icall_nop 000000018005bfa0 f MSVCRTD:_guard_dispatch_.obj
- 0002:0003cfc0 __guard_ss_verify_failure 000000018005bfc0 f MSVCRTD:_rfgfailure_.obj
- 0002:0003cfcb __guard_ss_verify_failure_rcx 000000018005bfcb MSVCRTD:_rfgfailure_.obj
- 0002:0003cfd1 __guard_ss_verify_failure_rdx 000000018005bfd1 MSVCRTD:_rfgfailure_.obj
- 0002:0003cfd7 __guard_ss_verify_failure_r8 000000018005bfd7 MSVCRTD:_rfgfailure_.obj
- 0002:0003cfdd __guard_ss_verify_failure_r9 000000018005bfdd MSVCRTD:_rfgfailure_.obj
- 0002:0003cfe3 __guard_ss_verify_failure_r10 000000018005bfe3 MSVCRTD:_rfgfailure_.obj
- 0002:0003cff0 __guard_ss_verify_failure_default 000000018005bff0 f MSVCRTD:_rfgfailure_.obj
- 0002:0003d050 __guard_ss_verify_sp 000000018005c050 f MSVCRTD:_rfgfailure_.obj
- 0002:0003d060 __guard_ss_verify_sp_default 000000018005c060 f MSVCRTD:_rfgfailure_.obj
- 0003:00000000 __xc_a 000000018005f000 MSVCRTD:initializers.obj
- 0003:00000110 __xc_z 000000018005f110 MSVCRTD:initializers.obj
- 0003:00000220 __xi_a 000000018005f220 MSVCRTD:initializers.obj
- 0003:00000330 __xi_z 000000018005f330 MSVCRTD:initializers.obj
- 0003:00000440 __xp_a 000000018005f440 MSVCRTD:initializers.obj
- 0003:00000550 __xp_z 000000018005f550 MSVCRTD:initializers.obj
- 0003:00000660 __xt_a 000000018005f660 MSVCRTD:initializers.obj
- 0003:00000770 __xt_z 000000018005f770 MSVCRTD:initializers.obj
- 0003:00000fb8 ??_C@_07FGKIDIDM@hid?4dll?$AA@ 000000018005ffb8 hid-windows.obj
- 0003:00000fc8 ??_C@_0BD@CBOMEPHA@HidD_GetAttributes?$AA@ 000000018005ffc8 hid-windows.obj
- 0003:00000fe0 ??_C@_0BL@OEJFEOIE@HidD_GetSerialNumberString?$AA@ 000000018005ffe0 hid-windows.obj
- 0003:00001000 ??_C@_0BL@NLNJBEKH@HidD_GetManufacturerString?$AA@ 0000000180060000 hid-windows.obj
- 0003:00001020 ??_C@_0BG@NNFFPJLB@HidD_GetProductString?$AA@ 0000000180060020 hid-windows.obj
- 0003:00001040 ??_C@_0BA@ENIKBGID@HidD_SetFeature?$AA@ 0000000180060040 hid-windows.obj
- 0003:00001058 ??_C@_0BA@FDKFKBMK@HidD_GetFeature?$AA@ 0000000180060058 hid-windows.obj
- 0003:00001070 ??_C@_0BG@HBEPJNGD@HidD_GetIndexedString?$AA@ 0000000180060070 hid-windows.obj
- 0003:00001090 ??_C@_0BG@NCCNKODK@HidD_GetPreparsedData?$AA@ 0000000180060090 hid-windows.obj
- 0003:000010b0 ??_C@_0BH@HPJNKOKM@HidD_FreePreparsedData?$AA@ 00000001800600b0 hid-windows.obj
- 0003:000010d0 ??_C@_0N@PAEDFHIM@HidP_GetCaps?$AA@ 00000001800600d0 hid-windows.obj
- 0003:000010e0 ??_C@_0BI@HGIMLKHJ@HidD_SetNumInputBuffers?$AA@ 00000001800600e0 hid-windows.obj
- 0003:00001100 ??_C@_08POBLEMDG@HIDClass?$AA@ 0000000180060100 hid-windows.obj
- 0003:0000110c ??_C@_04MEDFEMKM@?$CGmi_?$AA@ 000000018006010c hid-windows.obj
- 0003:00001118 ??_C@_0L@KLBPNCIB@CreateFile?$AA@ 0000000180060118 hid-windows.obj
- 0003:00001128 ??_C@_09NOIIIIGM@WriteFile?$AA@ 0000000180060128 hid-windows.obj
- 0003:00001138 ??_C@_0BE@LHCFOKBA@GetOverlappedResult?$AA@ 0000000180060138 hid-windows.obj
- 0003:00001150 ??_C@_0CE@GNMMJCPJ@Send?5Feature?5Report?5DeviceIoCont@ 0000000180060150 hid-windows.obj
- 0003:00001180 ??_C@_0CI@PDMBNDLH@Send?5Feature?5Report?5GetOverLappe@ 0000000180060180 hid-windows.obj
- 0003:000015e4 ??_C@_06KJCKIFMC@?$CC?$CFs?$CC?3?$FL?$AA@ 00000001800605e4 json_helpers.obj
- 0003:000015ec ??_C@_06LFKFJLAP@?$CFs?$CC?$CFf?$CC?$AA@ 00000001800605ec json_helpers.obj
- 0003:000015f8 ??_C@_07KJDLNDKE@?$CFs?$CC?$CFf?$CC?0?$AA@ 00000001800605f8 json_helpers.obj
- 0003:00001604 ??_C@_03BAPFIKPP@?$CFs?$FN?$AA@ 0000000180060604 json_helpers.obj
- 0003:00001608 ??_C@_09IECGBPDB@?$CC?$CFs?$CC?3?$CC?$CFd?$CC?$AA@ 0000000180060608 json_helpers.obj
- 0003:00001618 ??_C@_09IHKCMLFP@?$CC?$CFs?$CC?3?$CC?$CFf?$CC?$AA@ 0000000180060618 json_helpers.obj
- 0003:00001628 ??_C@_09JNEPKKME@?$CC?$CFs?$CC?3?$CC?$CFs?$CC?$AA@ 0000000180060628 json_helpers.obj
- 0003:00001634 ??_C@_01KDCPPGHE@r?$AA@ 0000000180060634 json_helpers.obj
- 0003:00001f08 __real@0000000000000000 0000000180060f08 linmath.obj
- 0003:00001f18 __real@38aa95a5c0000000 0000000180060f18 linmath.obj
- 0003:00001f28 __real@3e80000000000000 0000000180060f28 linmath.obj
- 0003:00001f38 __real@3f50624dd2f1a9fc 0000000180060f38 linmath.obj
- 0003:00001f48 __real@3fd0000000000000 0000000180060f48 linmath.obj
- 0003:00001f58 __real@3fe0000000000000 0000000180060f58 linmath.obj
- 0003:00001f68 __real@3fefffffca501acb 0000000180060f68 linmath.obj
- 0003:00001f78 __real@3ff0000000000000 0000000180060f78 linmath.obj
- 0003:00001f88 __real@4000000000000000 0000000180060f88 linmath.obj
- 0003:00001f98 __real@400921fb5444261e 0000000180060f98 linmath.obj
- 0003:00001fa8 __real@bfeffffde0000000 0000000180060fa8 linmath.obj
- 0003:00001fb8 __real@bfefffffca501acb 0000000180060fb8 linmath.obj
- 0003:00001fc8 __real@bff0000000000000 0000000180060fc8 linmath.obj
- 0003:00001fe0 __xmm@80000000000000008000000000000000 0000000180060fe0 linmath.obj
- 0003:00002178 ??_C@_0BB@IKGLGKED@NtQuerySemaphore?$AA@ 0000000180061178 os_generic.obj
- 0003:00002190 ??_C@_09FLKFJBLM@ntdll?4dll?$AA@ 0000000180061190 os_generic.obj
- 0003:000026f9 ??_C@_00CNPNBAHC@?$AA@ 00000001800616f9 symbol_enumerator.obj
- 0003:000026fc ??_C@_03EHNAIPEG@?$CK?$CB?$CK?$AA@ 00000001800616fc symbol_enumerator.obj
- 0003:00002900 ??_C@_0EN@MLPNKHEM@?7?$CFX?6?7?$CFX?6?7?$CFf?6?7?$CFf?6?7?$CFf?6?7?$CFf?6?7?$CFd?6?7?$CFd?6@ 0000000180061900 ootx_decoder.obj
- 0003:00002d38 __real@3ff921fb54442d18 0000000180061d38 poser.obj
- 0003:00003620 ??_C@_09MALOBAAJ@?$CFf?5?$CFf?5?$CFf?6?$AA@ 0000000180062620 poser_charlesslow.obj
- 0003:00003630 ??_C@_0BK@LDEHLEFM@calinfo?1?$CFd_lighthouse?4dat?$AA@ 0000000180062630 poser_charlesslow.obj
- 0003:00003650 ??_C@_02GMLFBBN@wb?$AA@ 0000000180062650 poser_charlesslow.obj
- 0003:00003654 ??_C@_02HAOIJKIC@?$CFc?$AA@ 0000000180062654 poser_charlesslow.obj
- 0003:00003658 ??_C@_0BE@GGBICEJG@?$CFf?5?$CFf?5?$CFf?5?$CI?$CFf?$CJ?5?$DN?5?$CFf?6?$AA@ 0000000180062658 poser_charlesslow.obj
- 0003:00003670 ??_C@_0CD@NDLIGHJL@LH?3?5?$CFd?5?1?5Best?5E?5?$CFf?5Error?5too?5hig@ 0000000180062670 poser_charlesslow.obj
- 0003:000036a0 ??_C@_0BB@LNALCBBN@PoserCharlesSlow?$AA@ 00000001800626a0 poser_charlesslow.obj
- 0003:000036b4 ??_C@_06PFFCCCHO@?5?$DN?5?$CFf?6?$AA@ 00000001800626b4 poser_charlesslow.obj
- 0003:000036c0 __real@3eb0c6f7a0b5ed8d 00000001800626c0 poser_charlesslow.obj
- 0003:000036d0 __real@3f1a36e2eb1c432d 00000001800626d0 poser_charlesslow.obj
- 0003:000036e0 __real@3fb999999999999a 00000001800626e0 poser_charlesslow.obj
- 0003:000036f0 __real@3feccccccccccccd 00000001800626f0 poser_charlesslow.obj
- 0003:00003700 __real@3fee147ae147ae14 0000000180062700 poser_charlesslow.obj
- 0003:00003710 __real@4010000000000000 0000000180062710 poser_charlesslow.obj
- 0003:00003720 __real@4014000000000000 0000000180062720 poser_charlesslow.obj
- 0003:00003730 __real@4020000000000000 0000000180062730 poser_charlesslow.obj
- 0003:00003740 __real@4024000000000000 0000000180062740 poser_charlesslow.obj
- 0003:00003750 __real@402a000000000000 0000000180062750 poser_charlesslow.obj
- 0003:00003760 __real@4040000000000000 0000000180062760 poser_charlesslow.obj
- 0003:00003770 __real@406fe00000000000 0000000180062770 poser_charlesslow.obj
- 0003:00003780 __real@408f400000000000 0000000180062780 poser_charlesslow.obj
- 0003:00003790 __real@4415af1d78b58c40 0000000180062790 poser_charlesslow.obj
- 0003:000037a0 __real@bf847ae147ae147b 00000001800627a0 poser_charlesslow.obj
- 0003:000049b0 ??_C@_0CF@KIPLGGHP@INQUAT?3?5?$CFf?5?$CFf?5?$CFf?5?$CFf?5?$DN?5?$CFf?5?$FL?$CFf?5?$CFf?5@ 00000001800639b0 poser_daveortho.obj
- 0003:000049e0 ??_C@_0CD@IDEDNI@QUAT?3?5?$CFf?5?$CFf?5?$CFf?5?$CFf?5?$DN?5?$CFf?5?$FL?$CFf?5?$CFf?5?$CFf@ 00000001800639e0 poser_daveortho.obj
- 0003:00004a10 ??_C@_0CF@HGAFKOHK@OUT?5?$CFf?5?$CFf?5?$CFf?5ANGLE?5?$CFf?5?$CFf?5AOUT?5?$CFf@ 0000000180063a10 poser_daveortho.obj
- 0003:00004a40 ??_C@_0CF@OJDILADD@OUQUAT?3?5?$CFf?5?$CFf?5?$CFf?5?$CFf?5?$DN?5?$CFf?5?$FL?$CFf?5?$CFf?5@ 0000000180063a40 poser_daveortho.obj
- 0003:00004a70 ??_C@_0P@DPGFNLNA@PoserDaveOrtho?$AA@ 0000000180063a70 poser_daveortho.obj
- 0003:00004a84 __real@00000000 0000000180063a84 poser_daveortho.obj
- 0003:00004a88 __real@3f800000 0000000180063a88 poser_daveortho.obj
- 0003:00004a90 __real@40092a550870110a 0000000180063a90 poser_daveortho.obj
- 0003:00004aa0 __real@40114d7c6fbd273d 0000000180063aa0 poser_daveortho.obj
- 0003:00004ab0 __real@40c3878000000000 0000000180063ab0 poser_daveortho.obj
- 0003:00004abc __real@bf800000 0000000180063abc poser_daveortho.obj
- 0003:00004ac0 __real@bff3c083126e978d 0000000180063ac0 poser_daveortho.obj
- 0003:00004ad0 ??_C@_0L@DELNMONA@PoserDummy?$AA@ 0000000180063ad0 poser_dummy.obj
- 0003:00005214 ??_C@_06JGNCCDOK@?5i?$DN?$CFd?5?$AA@ 0000000180064214 poser_octavioradii.obj
- 0003:00005220 ??_C@_0BA@KNDBDJPH@radius?$FL?$CFd?$FN?3?5?$CFf?6?$AA@ 0000000180064220 poser_octavioradii.obj
- 0003:00005238 ??_C@_0BC@BDNOMNPE@PoserOctavioRadii?$AA@ 0000000180064238 poser_octavioradii.obj
- 0003:00005250 __real@3ee4f8b588e368f1 0000000180064250 poser_octavioradii.obj
- 0003:00005260 __real@3fd999999999999a 0000000180064260 poser_octavioradii.obj
- 0003:00005270 __real@3fe6666666666666 0000000180064270 poser_octavioradii.obj
- 0003:00005280 __real@3fefff2e48e8a71e 0000000180064280 poser_octavioradii.obj
- 0003:00005290 __real@3ff0cccccccccccd 0000000180064290 poser_octavioradii.obj
- 0003:000052a0 __real@3ff921fb5444261e 00000001800642a0 poser_octavioradii.obj
- 0003:000052b0 __real@40030a3d70a3d70a 00000001800642b0 poser_octavioradii.obj
- 0003:000052c0 __real@4066800000000000 00000001800642c0 poser_octavioradii.obj
- 0003:00008920 ??_C@_0BA@ENHGELKH@?5?5?$FL?$CFd?0?5?$CFd?$FN?$CI?$CFf?$CJ?6?$AA@ 0000000180067920 poser_turveytori.obj
- 0003:00008938 ??_C@_07PEIEOPOA@?5i?$DN?$CF3d?5?$AA@ 0000000180067938 poser_turveytori.obj
- 0003:00008948 ??_C@_0BO@JDLCBPBP@?$HL?$CF?504?44f?0?5?$CF?504?44f?0?5?$CF?504?44f?$HN?5?5?$AA@ 0000000180067948 poser_turveytori.obj
- 0003:00008970 ??_C@_07OMBNIAKJ@?5Ri?$DN?$CFd?5?$AA@ 0000000180067970 poser_turveytori.obj
- 0003:00008980 ??_C@_0BF@BACOPEF@Ri?$DN?$CF3d?5?5Fitness?$DN?$CF3f?5?$AA@ 0000000180067980 poser_turveytori.obj
- 0003:000089a0 ??_C@_0BA@CGEEHMPE@pointcloud2?4pcd?$AA@ 00000001800679a0 poser_turveytori.obj
- 0003:000089c0 ??_C@_0EL@LBHPKJCE@?5la?$CI?$CF?504?44f?$CJ?5SnsrCnt?$CI?$CF2d?$CJ?5LhPos?3@ 00000001800679c0 poser_turveytori.obj
- 0003:00008a20 ??_C@_0DB@OBHHHCAB@Warning?3?5resetting?5base?5station?5@ 0000000180067a20 poser_turveytori.obj
- 0003:00008a60 ??_C@_0CA@FEEDGKE@?5?$DM?$CF?504?44f?0?5?$CF?504?44f?0?5?$CF?504?44f?5?$DO?5?5?$AA@ 0000000180067a60 poser_turveytori.obj
- 0003:00008a88 ??_C@_02MDNOOCLA@?$CB?6?$AA@ 0000000180067a88 poser_turveytori.obj
- 0003:00008a90 ??_C@_0BA@PBLFNIDJ@TurveyToriDebug?$AA@ 0000000180067a90 poser_turveytori.obj
- 0003:00008ab0 ??_C@_0FF@KJJPKMMM@Lighthouse?5Pose?3?5?$FL?$CF1?41x?$FN?$FL?$CF?508?48f@ 0000000180067ab0 poser_turveytori.obj
- 0003:00008b18 ??_C@_0M@FGHDCOGM@config?4json?$AA@ 0000000180067b18 poser_turveytori.obj
- 0003:00008b28 ??_C@_0BA@FEFKFEPD@PoserTurveyTori?$AA@ 0000000180067b28 poser_turveytori.obj
- 0003:00008b40 __real@3e112e0be826d695 0000000180067b40 poser_turveytori.obj
- 0003:00008b50 __real@3f947ae147ae147b 0000000180067b50 poser_turveytori.obj
- 0003:00008b60 __real@3fc999999999999a 0000000180067b60 poser_turveytori.obj
- 0003:00008b70 __real@3fef5c28f5c28f5c 0000000180067b70 poser_turveytori.obj
- 0003:00008b80 __real@3fefae147ae147ae 0000000180067b80 poser_turveytori.obj
- 0003:00008b90 __real@3ff051eb851eb852 0000000180067b90 poser_turveytori.obj
- 0003:00008ba0 __real@3ff0a3d70a3d70a4 0000000180067ba0 poser_turveytori.obj
- 0003:00008bb0 __real@400921fb54442d18 0000000180067bb0 poser_turveytori.obj
- 0003:00008bc0 __real@4034000000000000 0000000180067bc0 poser_turveytori.obj
- 0003:00008bd0 __real@40c3880000000000 0000000180067bd0 poser_turveytori.obj
- 0003:00008be0 __real@43e0000000000000 0000000180067be0 poser_turveytori.obj
- 0003:00008bf0 __real@43f0000000000000 0000000180067bf0 poser_turveytori.obj
- 0003:000091d0 ??_C@_08EINEADGI@REGISTER?$AA@ 00000001800681d0 survive.obj
- 0003:000091e0 ??_C@_0L@DCCGFMBN@Error?3?5?$CFs?6?$AA@ 00000001800681e0 survive.obj
- 0003:000091f0 ??_C@_09NOJFBOKF@Info?3?5?$CFs?6?$AA@ 00000001800681f0 survive.obj
- 0003:00009200 ??_C@_0DH@IAFMHCFK@ERROR?3?5Unpopulated?5ButtonQueueEn@ 0000000180068200 survive.obj
- 0003:00009250 ??_C@_0FK@CMGFFOJI@FLT?5type?5incompatible?$DL?5the?5share@ 0000000180068250 survive.obj
- 0003:000092bc ??_C@_06BNJCAIGJ@double?$AA@ 00000001800682bc survive.obj
- 0003:000092d0 ??_C@_0GN@NEOHEGOJ@Add?5?8?$CDdefine?5FLT?5?$CFs?8?5before?5incl@ 00000001800682d0 survive.obj
- 0003:00009358 ??_C@_0N@BHPMBGFO@defaultposer?$AA@ 0000000180068358 survive.obj
- 0003:00009368 ??_C@_0BA@GIKAOCAN@lighthousecount?$AA@ 0000000180068368 survive.obj
- 0003:00009380 ??_C@_0L@PNEDLDML@configfile?$AA@ 0000000180068380 survive.obj
- 0003:00009390 ??_C@_0BN@MMMFJPMH@Error?3?5unknown?5parameter?5?$CFs?6?$AA@ 0000000180068390 survive.obj
- 0003:000093b4 ??_C@_03GGODHGCB@no?9?$AA@ 00000001800683b4 survive.obj
- 0003:000093b8 ??_C@_0BF@NFAJMNGE@libsurvive?5?9?5usage?3?6?$AA@ 00000001800683b8 survive.obj
- 0003:000093d8 ??_C@_0CL@HHCDEINM@?5?9?9?$FLparameter?$FN?5?$FLvalue?$FN?5?5?5?9?5sets?5@ 00000001800683d8 survive.obj
- 0003:00009410 ??_C@_0CI@EEPNLDKK@?5?9h?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?9?5shows@ 0000000180068410 survive.obj
- 0003:00009440 ??_C@_0DJ@NPKCJDCO@?5?9p?5?$FLposer?$FN?5?5?5?5?5?5?5?5?5?5?5?5?5?5?9?5use?5a@ 0000000180068440 survive.obj
- 0003:00009490 ??_C@_0EB@HOBIKICD@?5?9l?5?$FLlighthouse?5count?$FN?5?5?5?9?5use?5a@ 0000000180068490 survive.obj
- 0003:000094e0 ??_C@_0CM@EMCOHGIM@?5?9c?5?$FLconfig?5file?$FN?5?5?5?5?5?5?5?5?9?5set?5c@ 00000001800684e0 survive.obj
- 0003:00009520 ??_C@_0EH@CDGHBJKP@?5?9?9record?5?$FLlog?5file?$FN?5?5?5?5?5?9?5Write@ 0000000180068520 survive.obj
- 0003:00009580 ??_C@_0FE@KKKDAGHI@?5?9?9playback?5?$FLlog?5file?$FN?5?5?5?9?5Read?5@ 0000000180068580 survive.obj
- 0003:000095f0 ??_C@_0HO@IMALNKJE@?5?9?9playback?9factor?5?$FLf?$FN?5?5?5?9?5Time?5@ 00000001800685f0 survive.obj
- 0003:00009688 ??_C@_0O@FDJMKNOD@Available?5?$CFs?3?$AA@ 0000000180068688 survive.obj
- 0003:00009698 ??_C@_05HDBEFJDD@?7?$CFc?$CFs?$AA@ 0000000180068698 survive.obj
- 0003:000096a0 ??_C@_0CC@JPNLBBCH@Error?4?5?5Cannot?5find?5any?5valid?5?$CFs@ 00000001800686a0 survive.obj
- 0003:000096c8 ??_C@_0P@BOKDLJPF@Totals?5?$CFd?5?$CFss?4?$AA@ 00000001800686c8 survive.obj
- 0003:000096e0 ??_C@_0BA@CLPBJOPH@Using?5?$CFs?5for?5?$CFs?$AA@ 00000001800686e0 survive.obj
- 0003:000096f8 ??_C@_0L@EACKAAOI@TurveyTori?$AA@ 00000001800686f8 survive.obj
- 0003:00009708 ??_C@_05HDEOKLPK@Poser?$AA@ 0000000180068708 survive.obj
- 0003:00009710 ??_C@_06JDEBPGMM@Turvey?$AA@ 0000000180068710 survive.obj
- 0003:00009718 ??_C@_0O@GCIGMBHE@disambiguator?$AA@ 0000000180068718 survive.obj
- 0003:00009728 ??_C@_0O@KPOCLJKM@Disambiguator?$AA@ 0000000180068728 survive.obj
- 0003:00009738 ??_C@_09MLOCJLEF@DriverReg?$AA@ 0000000180068738 survive.obj
- 0003:00009748 ??_C@_0BM@HIBDFKGH@Loading?5driver?5?$CFs?5?$CI?$CFp?$CJ?5?$CI?$CFd?$CJ?$AA@ 0000000180068748 survive.obj
- 0003:00009770 ??_C@_0BM@KPEAMBNP@Driver?5?$CFs?5reports?5status?5?$CFd?$AA@ 0000000180068770 survive.obj
- 0003:00009798 ??_C@_09PKBBNDCJ@calibrate?$AA@ 0000000180068798 survive.obj
- 0003:000097b0 ??_C@_0FP@JHJMECHL@Contradictory?5settings?5?9?9calibra@ 00000001800687b0 survive.obj
- 0003:00009830 ??_C@_0KJ@CJOJCMDD@Uncalibrated?5configuration?5detec@ 0000000180068830 survive.obj
- 0003:00009900 ??_C@_0EB@PNKBHHLA@Calibration?5requested?4?5Previous?5@ 0000000180068900 survive.obj
- 0003:00009950 ??_C@_0M@IDGBGIMB@DriverUnreg?$AA@ 0000000180068950 survive.obj
- 0003:00009960 ??_C@_0BO@FLGDPFB@De?9registering?5driver?5?$CFs?5?$CI?$CFp?$CJ?$AA@ 0000000180068960 survive.obj
- 0003:00009988 ??_C@_0BN@FGDCGOPP@puff?5returned?5error?5code?5?$CFd?6?$AA@ 0000000180068988 survive.obj
- 0003:0000a0b0 ??_C@_0BG@KFMFACMG@Got?5OOTX?5packet?5?$CFd?5?$CFp?$AA@ 00000001800690b0 survive_cal.obj
- 0003:0000a0d0 ??_C@_0BC@GAMAGMBC@0?5Not?5calibrating?$AA@ 00000001800690d0 survive_cal.obj
- 0003:0000a0e8 ??_C@_0BP@NHDHJDMF@1?5Collecting?5OOTX?5Data?5?$CI?$CFd?3?$CFd?$CJ?$AA@ 00000001800690e8 survive_cal.obj
- 0003:0000a110 ??_C@_0BP@KMCMJDPB@?$CFd?5Collecting?5Sweep?5Data?5?$CFd?1?$CFd?$AA@ 0000000180069110 survive_cal.obj
- 0003:0000a138 ??_C@_0DD@EMHFAAPD@?$CFd?5Searching?5for?5common?5watchman@ 0000000180069138 survive_cal.obj
- 0003:0000a178 ??_C@_0BF@OLBJOIHL@?$CFd?5LH?5Find?5complete?4?$AA@ 0000000180069178 survive_cal.obj
- 0003:0000a198 ??_C@_0BM@PDBOOFIA@?$CFd?5Unkown?5calibration?5state?$AA@ 0000000180069198 survive_cal.obj
- 0003:0000a1c0 ??_C@_0EE@GENMPMIB@Error?3?5You?5cannot?5install?5a?5cali@ 00000001800691c0 survive_cal.obj
- 0003:0000a218 ??_C@_0BH@KHPKFBGE@requiredtrackersforcal?$AA@ 0000000180069218 survive_cal.obj
- 0003:0000a238 ??_C@_0BH@HLFPIMAF@allowalltrackersforcal?$AA@ 0000000180069238 survive_cal.obj
- 0003:0000a258 ??_C@_0BI@KIFKOBMI@Calibration?5is?5using?5?$CFs?$AA@ 0000000180069258 survive_cal.obj
- 0003:0000a280 ??_C@_0EF@KOABCDHO@Calibration?5is?5NOT?5using?5?$CFs?$DL?5dev@ 0000000180069280 survive_cal.obj
- 0003:0000a2d8 ??_C@_0DK@DDAJLGNL@Error?3?5Did?5not?5find?5all?5devices?5@ 00000001800692d8 survive_cal.obj
- 0003:0000a320 ??_C@_0M@EDPHBABA@configposer?$AA@ 0000000180069320 survive_cal.obj
- 0003:0000a330 ??_C@_0CE@GJBPMKNN@Stage?52?5moving?5to?5stage?53?4?5?$CFd?5?$CFd@ 0000000180069330 survive_cal.obj
- 0003:0000a360 ??_C@_0CE@IONDCGBK@Stage?52?5good?5?9?5continuing?4?5?$CFd?5?$CFd@ 0000000180069360 survive_cal.obj
- 0003:0000a390 ??_C@_0CA@KFOHGJCB@Stage?52?5bad?5?9?5redoing?4?5?$CFd?5?$CFd?5?$CFd?$AA@ 0000000180069390 survive_cal.obj
- 0003:0000a3b8 ??_C@_07HHKKFKEI@calinfo?$AA@ 00000001800693b8 survive_cal.obj
- 0003:0000a3c4 ??_C@_01NOFIACDB@w?$AA@ 00000001800693c4 survive_cal.obj
- 0003:0000a3c8 ??_C@_0BF@IDNJLCLO@calinfo?1synctime?4csv?$AA@ 00000001800693c8 survive_cal.obj
- 0003:0000a3e8 ??_C@_0BA@OJJOEMFE@?$CFd?5?$CFd?5?$CFf?5?$CFd?5?$CFf?6?$AA@ 00000001800693e8 survive_cal.obj
- 0003:0000a400 ??_C@_0BH@LCCICMPC@calinfo?1histograms?4csv?$AA@ 0000000180069400 survive_cal.obj
- 0003:0000a420 ??_C@_0BD@CCFCMNJP@calinfo?1ptinfo?4csv?$AA@ 0000000180069420 survive_cal.obj
- 0003:0000a438 ??_C@_09KNAFKOHB@DPAVG?5?$CFd?6?$AA@ 0000000180069438 survive_cal.obj
- 0003:0000a448 ??_C@_0DO@PMCDGBGI@DROPPED?3?5?$CF02d?3?$CFd?3?$CFd?5dropped?5beca@ 0000000180069448 survive_cal.obj
- 0003:0000a498 ??_C@_0N@GFBDEKAP@?$CF02d_?$CFd_?$CFd?0?5?$AA@ 0000000180069498 survive_cal.obj
- 0003:0000a4a8 ??_C@_03JDANDILB@?$CFd?5?$AA@ 00000001800694a8 survive_cal.obj
- 0003:0000a4ac ??_C@_01EEMJAFIK@?6?$AA@ 00000001800694ac survive_cal.obj
- 0003:0000a4b0 ??_C@_0BP@GCAFAGNO@?$CFd?5?$CFd?5?$CFd?5?$CFd?5?$CFf?5?$CFf?5?$CFf?5?$CFf?5?$CFf?5?$CFf?6?$AA@ 00000001800694b0 survive_cal.obj
- 0003:0000a4d8 ??_C@_0BF@IJCAPDKK@calinfo?1objposes?4csv?$AA@ 00000001800694d8 survive_cal.obj
- 0003:0000a4f8 ??_C@_0BO@HLDAFIGC@Failed?5calibration?5on?5dev?5?$CFd?6?$AA@ 00000001800694f8 survive_cal.obj
- 0003:0000a520 ??_C@_0BG@FJPIFNFB@ComputeReprojectError?$AA@ 0000000180069520 survive_cal.obj
- 0003:0000a540 ??_C@_0N@MDOCIACE@?$CFf?5?$CFf?5?$CFf?5?$CFf?6?$AA@ 0000000180069540 survive_cal.obj
- 0003:0000a550 ??_C@_0CM@JOKMCDHA@Reproject?5error?5was?5?$CF?413g?5for?5li@ 0000000180069550 survive_cal.obj
- 0003:0000a588 ??_C@_0BD@KAPCDDML@Stage?54?5succeeded?4?$AA@ 0000000180069588 survive_cal.obj
- 0003:0000a5a0 __real@3ee078921ac6c11f 00000001800695a0 survive_cal.obj
- 0003:0000a5b0 __real@402f000000000000 00000001800695b0 survive_cal.obj
- 0003:0000a5c0 __real@412e848000000000 00000001800695c0 survive_cal.obj
- 0003:0000a5d0 __real@41cdcd6500000000 00000001800695d0 survive_cal.obj
- 0003:0000a720 ??_C@_0EF@CHFOKBJC@SEVERE?5WARNING?3?5Pulse?5codes?5for?5@ 0000000180069720 survive_charlesbiguator.obj
- 0003:0000a778 ??_C@_0DG@DJLMANJP@Warning?4?5?5Received?5an?5extra?0?5una@ 0000000180069778 survive_charlesbiguator.obj
- 0003:0000a7b8 ??_C@_0BF@JONNKFNC@DisambiguatorCharles?$AA@ 00000001800697b8 survive_charlesbiguator.obj
- 0003:0000aa20 ??_C@_1EK@DDDFAJGG@?$AAp?$AA?3?$AA?2?$AAc?$AA?2?$AAl?$AAi?$AAb?$AAs?$AAu?$AAr?$AAv?$AAi?$AAv?$AAe?$AA?2?$AAs?$AAr?$AAc?$AA?2?$AAs?$AAu?$AAr?$AAv?$AAi?$AAv?$AAe?$AA_?$AAc?$AAo?$AAn?$AAf@ 0000000180069a20 survive_config.obj
- 0003:0000aa78 ??_C@_1BI@JNDFFBDE@?$AAp?$AAt?$AAr?$AA?5?$AA?$CB?$AA?$DN?$AA?5?$AAN?$AAU?$AAL?$AAL?$AA?$AA@ 0000000180069a78 survive_config.obj
- 0003:0000aa94 ??_C@_05FKHKFDID@index?$AA@ 0000000180069a94 survive_config.obj
- 0003:0000aa9c ??_C@_02EGCJHIOB@id?$AA@ 0000000180069a9c survive_config.obj
- 0003:0000aaa0 ??_C@_04ONHHEGJD@pose?$AA@ 0000000180069aa0 survive_config.obj
- 0003:0000aaa8 ??_C@_09JKPCDAKL@fcalphase?$AA@ 0000000180069aa8 survive_config.obj
- 0003:0000aab8 ??_C@_08HKPOEMGH@fcaltilt?$AA@ 0000000180069ab8 survive_config.obj
- 0003:0000aac8 ??_C@_09MDKHCJDH@fcalcurve?$AA@ 0000000180069ac8 survive_config.obj
- 0003:0000aad8 ??_C@_0L@JJAOFDO@fcalgibpha?$AA@ 0000000180069ad8 survive_config.obj
- 0003:0000aae8 ??_C@_0L@PCGIPGHF@fcalgibmag?$AA@ 0000000180069ae8 survive_config.obj
- 0003:0000aaf8 ??_C@_0M@KDKAPPIM@PositionSet?$AA@ 0000000180069af8 survive_config.obj
- 0003:0000ab08 ??_C@_1BK@IGDBEDLK@?$AAd?$AAe?$AAs?$AAt?$AA?5?$AA?$CB?$AA?$DN?$AA?5?$AAN?$AAU?$AAL?$AAL?$AA?$AA@ 0000000180069b08 survive_config.obj
- 0003:0000ab28 ??_C@_07LHGBCHHD@?$CC?$CFs?$CC?3?$HL?6?$AA@ 0000000180069b28 survive_config.obj
- 0003:0000ab34 ??_C@_01IHBHIGKO@?0?$AA@ 0000000180069b34 survive_config.obj
- 0003:0000ab38 ??_C@_02KGHIDFGE@?$HN?6?$AA@ 0000000180069b38 survive_config.obj
- 0003:0000ab40 ??_C@_0M@OGGIPDID@lighthouse0?$AA@ 0000000180069b40 survive_config.obj
- 0003:0000ab50 ??_C@_0M@PPHDMCMC@lighthouse1?$AA@ 0000000180069b50 survive_config.obj
- 0003:0000ab60 ??_C@_07OBCDKDLF@?$CFs?3?$CFs?5?6?$AA@ 0000000180069b60 survive_config.obj
- 0003:0000afb0 ??_C@_03GMEMMEKD@HMD?$AA@ 0000000180069fb0 survive_default_devices.obj
- 0003:0000afb4 ??_C@_03CPGFDPJI@WM0?$AA@ 0000000180069fb4 survive_default_devices.obj
- 0003:0000afb8 ??_C@_03DGHOAONJ@WM1?$AA@ 0000000180069fb8 survive_default_devices.obj
- 0003:0000afbc ??_C@_03CKKKHEDL@TR0?$AA@ 0000000180069fbc survive_default_devices.obj
- 0003:0000afc0 ??_C@_03DONEBJDO@WW0?$AA@ 0000000180069fc0 survive_default_devices.obj
- 0003:0000afc8 ??_C@_0BF@IPEIPOCE@Parse?5error?5in?5JSON?6?$AA@ 0000000180069fc8 survive_default_devices.obj
- 0003:0000afe8 ??_C@_0CP@CPLEIJDA@Failed?5to?5parse?5JSON?5in?5HMD?5conf@ 0000000180069fe8 survive_default_devices.obj
- 0003:0000b020 ??_C@_0CG@JGALMBLM@Object?5expected?5in?5HMD?5configura@ 000000018006a020 survive_default_devices.obj
- 0003:0000b050 ??_C@_0M@HKABMIBA@modelPoints?$AA@ 000000018006a050 survive_default_devices.obj
- 0003:0000b060 ??_C@_0N@COOCNDOI@modelNormals?$AA@ 000000018006a060 survive_default_devices.obj
- 0003:0000b070 ??_C@_08KDNHCCDC@acc_bias?$AA@ 000000018006a070 survive_default_devices.obj
- 0003:0000b080 ??_C@_09EFLODEJC@acc_scale?$AA@ 000000018006a080 survive_default_devices.obj
- 0003:0000b090 ??_C@_09PFMGPKEL@gyro_bias?$AA@ 000000018006a090 survive_default_devices.obj
- 0003:0000b0a0 ??_C@_0L@GMDBOMNC@gyro_scale?$AA@ 000000018006a0a0 survive_default_devices.obj
- 0003:0000b0b0 ??_C@_0BG@NOPIFPMG@calinfo?1?$CFs_points?4csv?$AA@ 000000018006a0b0 survive_default_devices.obj
- 0003:0000b0d0 ??_C@_0BH@OLDKPIFP@calinfo?1?$CFs_normals?4csv?$AA@ 000000018006a0d0 survive_default_devices.obj
- 0003:0000b0f0 __real@3fc0000000000000 000000018006a0f0 survive_default_devices.obj
- 0003:0000b100 ??_C@_0BC@JCAJPOLD@Drivers?5?$CI?$CFd?1?$CFd?$CJ?3?6?$AA@ 000000018006a100 survive_driverman.obj
- 0003:0000b118 ??_C@_04MDKIEGGJ@?5?$CFs?6?$AA@ 000000018006a118 survive_driverman.obj
- 0003:0000bf38 ??_C@_06IJADJEDP@?$CF0?46f?5?$AA@ 000000018006af38 survive_playback.obj
- 0003:0000bf40 ??_C@_0BA@CFNOHJCL@?$CFs?5CONFIG?5?$CF?4?$CKs?6?$AA@ 000000018006af40 survive_playback.obj
- 0003:0000bf58 ??_C@_0DG@NPNKBGBD@?$CFd?5LH_POSE?5?$CF0?46f?5?$CF0?46f?5?$CF0?46f?5?$CF0?4@ 000000018006af58 survive_playback.obj
- 0003:0000bf98 ??_C@_0DD@HKKGMMLM@?$CFs?5POSE?5?$CF0?46f?5?$CF0?46f?5?$CF0?46f?5?$CF0?46f?5@ 000000018006af98 survive_playback.obj
- 0003:0000bfd8 ??_C@_0N@OECFONJP@INFO?5LOG?5?$CFs?6?$AA@ 000000018006afd8 survive_playback.obj
- 0003:0000bfe8 ??_C@_0BO@KOOLOIN@?$CFs?5A?5?$CFd?5?$CFd?5?$CFu?5?$CF0?46f?5?$CF0?46f?5?$CFu?6?$AA@ 000000018006afe8 survive_playback.obj
- 0003:0000c010 ??_C@_0P@BOGAIJKL@?$CFs?5C?5?$CFd?5?$CFu?5?$CFu?6?$AA@ 000000018006b010 survive_playback.obj
- 0003:0000c028 ??_C@_0BI@PLIBJGN@?$CFs?5S?5?$CFd?5?$CFd?5?$CFd?5?$CFu?5?$CFu?5?$CFu?6?$AA@ 000000018006b028 survive_playback.obj
- 0003:0000c044 ??_C@_01OCOKONAJ@L?$AA@ 000000018006b044 survive_playback.obj
- 0003:0000c048 ??_C@_01MMEEDKFM@X?$AA@ 000000018006b048 survive_playback.obj
- 0003:0000c04c ??_C@_01NFFPALBN@Y?$AA@ 000000018006b04c survive_playback.obj
- 0003:0000c050 ??_C@_01DGKLNCNG@R?$AA@ 000000018006b050 survive_playback.obj
- 0003:0000c058 ??_C@_0BM@MICFPCFN@?$CFs?5?$CFs?5?$CFs?5?$CFd?5?$CFd?5?$CFd?5?$CFu?5?$CFu?5?$CFu?6?$AA@ 000000018006b058 survive_playback.obj
- 0003:0000c080 ??_C@_0DD@MPHJPBDA@?$CFs?5I?5?$CFd?5?$CFu?5?$CF0?46f?5?$CF0?46f?5?$CF0?46f?5?$CF0?4@ 000000018006b080 survive_playback.obj
- 0003:0000c0c0 ??_C@_0CF@KAEKKPOM@?$CFs?5I?5?$CFd?5?$CFd?5?$CFlf?5?$CFlf?5?$CFlf?5?$CFlf?5?$CFlf?5?$CF@ 000000018006b0c0 survive_playback.obj
- 0003:0000c0f0 ??_C@_0DB@HADOADIB@Warning?3?5?5On?5line?5?$CFd?0?5only?5?$CFd?5va@ 000000018006b0f0 survive_playback.obj
- 0003:0000c130 ??_C@_0CP@IOOMEKIN@Could?5not?5find?5device?5named?5?$CFs?5f@ 000000018006b130 survive_playback.obj
- 0003:0000c168 ??_C@_0BD@CIBCCKLL@?$CFs?5?$CFs?5?$CFhhu?5?$CFu?5?$CFhu?6?$AA@ 000000018006b168 survive_playback.obj
- 0003:0000c180 ??_C@_0BP@LCPMFCLE@?$CF8s?5?$CF8s?5?$CF8s?5?$CFu?5?$CFd?5?$CFd?5?$CFd?5?$CFu?5?$CFu?6?$AA@ 000000018006b180 survive_playback.obj
- 0003:0000c1a8 ??_C@_03DLDNIBIK@?$CFlf?$AA@ 000000018006b1a8 survive_playback.obj
- 0003:0000c1b0 ??_C@_07EFDGDGOL@?$CF8s?5?$CF8s?$AA@ 000000018006b1b0 survive_playback.obj
- 0003:0000c1bc ??_C@_06KKGOIHDP@record?$AA@ 000000018006b1bc survive_playback.obj
- 0003:0000c1c8 ??_C@_0O@GAJEBDOB@record?9stdout?$AA@ 000000018006b1c8 survive_playback.obj
- 0003:0000c1d8 ??_C@_0BO@KIFNPJFO@Could?5not?5open?5?$CFs?5for?5writing?$AA@ 000000018006b1d8 survive_playback.obj
- 0003:0000c200 ??_C@_0BC@HBIFKMMJ@Recording?5to?5?8?$CFs?8?$AA@ 000000018006b200 survive_playback.obj
- 0003:0000c218 ??_C@_0BE@EABJMJLO@Recording?5to?5stdout?$AA@ 000000018006b218 survive_playback.obj
- 0003:0000c230 ??_C@_0BA@NKHCJIIO@record?9rawlight?$AA@ 000000018006b230 survive_playback.obj
- 0003:0000c248 ??_C@_08MDANPFHG@playback?$AA@ 000000018006b248 survive_playback.obj
- 0003:0000c258 ??_C@_0BA@HLHPJHHK@playback?9factor?$AA@ 000000018006b258 survive_playback.obj
- 0003:0000c270 ??_C@_0CH@EACECBPB@Could?5not?5open?5playback?5events?5f@ 000000018006b270 survive_playback.obj
- 0003:0000c2a0 ??_C@_0CP@HJAKMBHP@Using?5playback?5file?5?8?$CFs?8?5with?5ti@ 000000018006b2a0 survive_playback.obj
- 0003:0000c2d8 ??_C@_08EBPMHHNF@Playback?$AA@ 000000018006b2d8 survive_playback.obj
- 0003:0000c2e8 ??_C@_09KFNKLCJH@?$CFlf?5?$CFs?5?$CFs?$AA@ 000000018006b2e8 survive_playback.obj
- 0003:0000c2f4 ??_C@_06HALBHJJI@CONFIG?$AA@ 000000018006b2f4 survive_playback.obj
- 0003:0000c300 ??_C@_0BN@CNOJPLOI@Found?5?$CFs?5in?5playback?5file?4?4?4?$AA@ 000000018006b300 survive_playback.obj
- 0003:0000c328 ??_C@_0BC@BBPBBBII@DriverRegPlayback?$AA@ 000000018006b328 survive_playback.obj
- 0003:0000c4b8 __real@400921fb54442eea 000000018006b4b8 survive_process.obj
- 0003:0000c9d0 ??_C@_0CB@CKJGJFAK@Initializing?5Disambiguator?5Data?6@ 000000018006b9d0 survive_turveybiguator.obj
- 0003:0000c9f8 ??_C@_0BE@CMIJPOFD@DisambiguatorTurvey?$AA@ 000000018006b9f8 survive_turveybiguator.obj
- 0003:0000ca10 vidpids 000000018006ba10 survive_vive.obj
- 0003:0000ca68 ??_C@_0N@IJHOEBGN@HMD?5IMU?5?$CG?5LH?$AA@ 000000018006ba68 survive_vive.obj
- 0003:0000ca78 ??_C@_0L@IFHLFNOC@Watchman?51?$AA@ 000000018006ba78 survive_vive.obj
- 0003:0000ca88 ??_C@_0L@KOFGAOCB@Watchman?52?$AA@ 000000018006ba88 survive_vive.obj
- 0003:0000ca98 ??_C@_09MBBMLDBF@Tracker?50?$AA@ 000000018006ba98 survive_vive.obj
- 0003:0000caa8 ??_C@_0BB@NJHDPPGB@Wired?5Watchman?51?$AA@ 000000018006baa8 survive_vive.obj
- 0003:0000cac0 ??_C@_0N@IOFKFGME@HMD?5Lightcap?$AA@ 000000018006bac0 survive_vive.obj
- 0003:0000cad0 ??_C@_0BD@JFOGJMNN@Tracker?50?5Lightcap?$AA@ 000000018006bad0 survive_vive.obj
- 0003:0000cae8 ??_C@_0BK@NEOAGFFM@Wired?5Watchman?51?5Lightcap?$AA@ 000000018006bae8 survive_vive.obj
- 0003:0000cb08 ??_C@_0M@NGCOJBIB@HMD?5Buttons?$AA@ 000000018006bb08 survive_vive.obj
- 0003:0000cb18 ??_C@_0BC@GLEBPDNE@Tracker?50?5Buttons?$AA@ 000000018006bb18 survive_vive.obj
- 0003:0000cb30 ??_C@_0BJ@GJMCBCHP@Wired?5Watchman?51?5Buttons?$AA@ 000000018006bb30 survive_vive.obj
- 0003:0000dc30 ??_C@_0BO@GNDEFIGE@Vive?5starting?5in?5HIDAPI?5mode?4?$AA@ 000000018006cc30 survive_vive.obj
- 0003:0000dc58 ??_C@_0BI@HMFKJHBF@Could?5not?5setup?5hidapi?4?$AA@ 000000018006cc58 survive_vive.obj
- 0003:0000dc78 ??_C@_0CO@LGPNOFEN@Warning?3?5Could?5not?5find?5vive?5dev@ 000000018006cc78 survive_vive.obj
- 0003:0000dcb0 ??_C@_0L@FKJFHLNP@Found?5?$CFs?4?5?$AA@ 000000018006ccb0 survive_vive.obj
- 0003:0000dcc0 ??_C@_1HG@OMNBABAK@?$AAS?$AAe?$AAr?$AAi?$AAa?$AAl?$AA?5?$AAN?$AAu?$AAm?$AAb?$AAe?$AAr?$AA?5?$AAS?$AAt?$AAr?$AAi?$AAn?$AAg?$AA?3?$AA?5?$AA?$CI?$AA?$CF?$AAd?$AA?$CJ?$AA?5?$AA?$CF?$AAs?$AA?5?$AAf?$AAo@ 000000018006ccc0 survive_vive.obj
- 0003:0000dd50 ??_C@_09KDCEMOGA@Mainboard?$AA@ 000000018006cd50 survive_vive.obj
- 0003:0000dd60 ??_C@_0L@KLOKDNDE@Lighthouse?$AA@ 000000018006cd60 survive_vive.obj
- 0003:0000dd70 ??_C@_09NIAHICFE@Tracker?51?$AA@ 000000018006cd70 survive_vive.obj
- 0003:0000dd80 ??_C@_08HKJJJIN@Lightcap?$AA@ 000000018006cd80 survive_vive.obj
- 0003:0000dd90 ??_C@_0BD@FEGIEDBN@Tracker?51?5Lightcap?$AA@ 000000018006cd90 survive_vive.obj
- 0003:0000dda8 ??_C@_0BC@IEIDJIOK@Tracker?51?5Buttons?$AA@ 000000018006cda8 survive_vive.obj
- 0003:0000ddc0 ??_C@_0BJ@GNOJMMKN@Wired?5Watchman?51?5BUTTONS?$AA@ 000000018006cdc0 survive_vive.obj
- 0003:0000dde0 ??_C@_0CB@PEHHEGLK@All?5enumerated?5devices?5attached?4@ 000000018006cde0 survive_vive.obj
- 0003:0000de08 ??_C@_0BB@IBIEENJM@Powered?5unit?5on?4?$AA@ 000000018006ce08 survive_vive.obj
- 0003:0000de20 ??_C@_07MHAKDOJN@UCR?3?5?$CFd?$AA@ 000000018006ce20 survive_vive.obj
- 0003:0000de30 ??_C@_0CK@MKDBHBNJ@HAPTIC?5FAILED?5?$CK?$CK?$CK?$CK?$CK?$CK?$CK?$CK?$CK?$CK?$CK?$CK?$CK?$CK?$CK?$CK?$CK?$CK@ 000000018006ce30 survive_vive.obj
- 0003:0000de68 ??_C@_0DD@CJACFCOE@Could?5not?5get?5survive?5config?5dat@ 000000018006ce68 survive_vive.obj
- 0003:0000deb0 ??_C@_0EN@MNNBGJOI@Could?5not?5read?5config?5data?5?$CIafte@ 000000018006ceb0 survive_vive.obj
- 0003:0000df10 ??_C@_0EG@GAMFNDJM@Too?5much?5data?5?$CI?$CFd?$CJ?5on?5packet?5fro@ 000000018006cf10 survive_vive.obj
- 0003:0000df68 ??_C@_0DA@OGKLBGCL@Configuration?5length?5too?5long?5?$CFd@ 000000018006cf68 survive_vive.obj
- 0003:0000dfa8 ??_C@_0BO@KGIBCPAH@Empty?5configuration?5for?5?$CFd?3?$CFd?$AA@ 000000018006cfa8 survive_vive.obj
- 0003:0000dfd0 ??_C@_0BK@MAFELOBD@Got?5config?5data?5length?5?$CFd?$AA@ 000000018006cfd0 survive_vive.obj
- 0003:0000dff0 ??_C@_0BD@IBFNHCEF@calinfo?1?$CFd?4json?4gz?$AA@ 000000018006cff0 survive_vive.obj
- 0003:0000e008 ??_C@_0DF@EBMEFDHK@Error?3?5data?5for?5config?5descripto@ 000000018006d008 survive_vive.obj
- 0003:0000e048 ??_C@_0BJ@FCIOLMDO@Light?5decoding?5fault?3?5?$CFd?$AA@ 000000018006d048 survive_vive.obj
- 0003:0000e068 ??_C@_0BK@OMCGCPDF@Unknown?5watchman?5code?5?$CFd?6?$AA@ 000000018006d068 survive_vive.obj
- 0003:0000e088 ??_C@_0BD@IMJODLNK@Loading?5config?3?5?$CFd?$AA@ 000000018006d088 survive_vive.obj
- 0003:0000e0a0 ??_C@_0P@PJMDBPCL@?$CFs_config?4json?$AA@ 000000018006d0a0 survive_vive.obj
- 0003:0000e0b8 ??_C@_0CJ@IIFFGGFF@Playback?5is?5active?$DL?5disabling?5US@ 000000018006d0b8 survive_vive.obj
- 0003:0000e0ec ??_C@_03DAPKMKJL@HTC?$AA@ 000000018006d0ec survive_vive.obj
- 0003:0000e0f0 ??_C@_0BI@PHMHMBK@No?5USB?5devices?5detected?$AA@ 000000018006d0f0 survive_vive.obj
- 0003:0000e110 ??_C@_0BC@HAOBPHKB@HMD?5config?5issue?4?$AA@ 000000018006d110 survive_vive.obj
- 0003:0000e128 ??_C@_0BJ@KNAOLLDL@Watchman?50?5config?5issue?4?$AA@ 000000018006d128 survive_vive.obj
- 0003:0000e148 ??_C@_0BJ@DGGCKKK@Watchman?51?5config?5issue?4?$AA@ 000000018006d148 survive_vive.obj
- 0003:0000e168 ??_C@_0BI@GBJDMANO@Tracker?50?5config?5issue?4?$AA@ 000000018006d168 survive_vive.obj
- 0003:0000e188 ??_C@_0BP@FFPMJDLG@Wired?5Watchman?50?5config?5issue?4?$AA@ 000000018006d188 survive_vive.obj
- 0003:0000e1b0 ??_C@_0BB@IPGPCEDK@DriverRegHTCVive?$AA@ 000000018006d1b0 survive_vive.obj
- 0003:0000e1c8 __real@3f20000000000000 000000018006d1c8 survive_vive.obj
- 0003:0000e1d8 __real@3f41740a00000000 000000018006d1d8 survive_vive.obj
- 0003:0000e1e8 __real@3f70101020000000 000000018006d1e8 survive_vive.obj
- 0003:0000e210 _pDefaultRawDllMain 000000018006d210 MSVCRTD:dll_dllmain.obj
- 0003:0000e210 _pRawDllMain 000000018006d210 MSVCRTD:dll_dllmain.obj
- 0003:0000e250 ??_C@_0BJ@HEGAHDFO@Stack?5pointer?5corruption?$AA@ 000000018006d250 MSVCRTD:_userapi_.obj
- 0003:0000e270 ??_C@_0CK@FEGOIOPB@Cast?5to?5smaller?5type?5causing?5los@ 000000018006d270 MSVCRTD:_userapi_.obj
- 0003:0000e2a8 ??_C@_0BI@CIGMDCBH@Stack?5memory?5corruption?$AA@ 000000018006d2a8 MSVCRTD:_userapi_.obj
- 0003:0000e2c8 ??_C@_0CK@CNLNOEPB@Local?5variable?5used?5before?5initi@ 000000018006d2c8 MSVCRTD:_userapi_.obj
- 0003:0000e300 ??_C@_0BP@OGBCLIBO@Stack?5around?5_alloca?5corrupted?$AA@ 000000018006d300 MSVCRTD:_userapi_.obj
- 0003:0000e410 ??_C@_0NN@NGPKDKPD@The?5value?5of?5ESP?5was?5not?5properl@ 000000018006d410 MSVCRTD:_error_.obj
- 0003:0000e520 ??_C@_0BBN@GPMLNJCF@A?5cast?5to?5a?5smaller?5data?5type?5ha@ 000000018006d520 MSVCRTD:_error_.obj
- 0003:0000e678 ??_C@_0BN@FFOINMNJ@Stack?5memory?5was?5corrupted?6?$AN?$AA@ 000000018006d678 MSVCRTD:_error_.obj
- 0003:0000e6a0 ??_C@_0DG@HKJMLLLP@A?5local?5variable?5was?5used?5before@ 000000018006d6a0 MSVCRTD:_error_.obj
- 0003:0000e6e0 ??_C@_0CM@NGINOKPC@Stack?5memory?5around?5_alloca?5was?5@ 000000018006d6e0 MSVCRTD:_error_.obj
- 0003:0000e718 ??_C@_0BO@GNIAFIKK@Unknown?5Runtime?5Check?5Error?6?$AN?$AA@ 000000018006d718 MSVCRTD:_error_.obj
- 0003:0000e740 ??_C@_1GM@OLMCBDMB@?$AAR?$AAu?$AAn?$AAt?$AAi?$AAm?$AAe?$AA?5?$AAC?$AAh?$AAe?$AAc?$AAk?$AA?5?$AAE?$AAr?$AAr?$AAo?$AAr?$AA?4?$AA?6?$AA?$AN?$AA?5?$AAU?$AAn?$AAa?$AAb?$AAl?$AAe?$AA?5?$AAt?$AAo@ 000000018006d740 MSVCRTD:_error_.obj
- 0003:0000e7d0 ??_C@_1EA@NFKNIFJP@?$AAR?$AAu?$AAn?$AA?9?$AAT?$AAi?$AAm?$AAe?$AA?5?$AAC?$AAh?$AAe?$AAc?$AAk?$AA?5?$AAF?$AAa?$AAi?$AAl?$AAu?$AAr?$AAe?$AA?5?$AA?$CD?$AA?$CF?$AAd?$AA?5?$AA?9?$AA?5?$AA?$CF?$AAs?$AA?$AA@ 000000018006d7d0 MSVCRTD:_error_.obj
- 0003:0000e820 ??_C@_0BB@PFFGGCJP@Unknown?5Filename?$AA@ 000000018006d820 MSVCRTD:_error_.obj
- 0003:0000e838 ??_C@_0BE@GNBOBNCK@Unknown?5Module?5Name?$AA@ 000000018006d838 MSVCRTD:_error_.obj
- 0003:0000e850 ??_C@_0CA@IODNCDPG@Run?9Time?5Check?5Failure?5?$CD?$CFd?5?9?5?$CFs?$AA@ 000000018006d850 MSVCRTD:_error_.obj
- 0003:0000e878 ??_C@_0CG@IAFNJNEE@Stack?5corrupted?5near?5unknown?5var@ 000000018006d878 MSVCRTD:_error_.obj
- 0003:0000e8a8 ??_C@_05MKKEDADM@?$CF?42X?5?$AA@ 000000018006d8a8 MSVCRTD:_error_.obj
- 0003:0000e8b0 ??_C@_0EJ@LJKNEOLN@Stack?5area?5around?5_alloca?5memory@ 000000018006d8b0 MSVCRTD:_error_.obj
- 0003:0000e908 ??_C@_02LLMPMKNF@?$DO?5?$AA@ 000000018006d908 MSVCRTD:_error_.obj
- 0003:0000e910 ??_C@_08OMAHNMHJ@?6Data?3?5?$DM?$AA@ 000000018006d910 MSVCRTD:_error_.obj
- 0003:0000e920 ??_C@_0CK@DKGBICFE@?6Allocation?5number?5within?5this?5f@ 000000018006d920 MSVCRTD:_error_.obj
- 0003:0000e958 ??_C@_07DFDJCKFN@?6Size?3?5?$AA@ 000000018006d958 MSVCRTD:_error_.obj
- 0003:0000e968 ??_C@_0N@MHFFIMFG@?6Address?3?50x?$AA@ 000000018006d968 MSVCRTD:_error_.obj
- 0003:0000e980 ??_C@_0EI@CLEPFNGI@Stack?5area?5around?5_alloca?5memory@ 000000018006d980 MSVCRTD:_error_.obj
- 0003:0000e9d8 ??_C@_0BK@ODNDAGKB@?$CFs?$CFs?$CFp?$CFs?$CFzd?$CFs?$CFd?$CFs?$CFs?$CFs?$CFs?$CFs?$AA@ 000000018006d9d8 MSVCRTD:_error_.obj
- 0003:0000e9f8 ??_C@_0DE@OHJBPMBP@A?5variable?5is?5being?5used?5without@ 000000018006d9f8 MSVCRTD:_error_.obj
- 0003:0000eaa0 ??_C@_1EI@MLPKHBGE@?$AAa?$AAp?$AAi?$AA?9?$AAm?$AAs?$AA?9?$AAw?$AAi?$AAn?$AA?9?$AAc?$AAo?$AAr?$AAe?$AA?9?$AAr?$AAe?$AAg?$AAi?$AAs?$AAt?$AAr?$AAy?$AA?9?$AAl?$AA1?$AA?9?$AA1?$AA?9?$AA0?$AA?4@ 000000018006daa0 MSVCRTD:_pdblkup_.obj
- 0003:0000eaf8 ??_C@_1BK@JHLNAEJL@?$AAa?$AAd?$AAv?$AAa?$AAp?$AAi?$AA3?$AA2?$AA?4?$AAd?$AAl?$AAl?$AA?$AA@ 000000018006daf8 MSVCRTD:_pdblkup_.obj
- 0003:0000eb18 ??_C@_0O@COHOBMLB@RegOpenKeyExW?$AA@ 000000018006db18 MSVCRTD:_pdblkup_.obj
- 0003:0000eb28 ??_C@_0BB@GLNAEDBD@RegQueryValueExW?$AA@ 000000018006db28 MSVCRTD:_pdblkup_.obj
- 0003:0000eb40 ??_C@_0M@HLOHPNFA@RegCloseKey?$AA@ 000000018006db40 MSVCRTD:_pdblkup_.obj
- 0003:0000eb50 ??_C@_1HE@EBEAGLFB@?$AAS?$AAO?$AAF?$AAT?$AAW?$AAA?$AAR?$AAE?$AA?2?$AAW?$AAo?$AAw?$AA6?$AA4?$AA3?$AA2?$AAN?$AAo?$AAd?$AAe?$AA?2?$AAM?$AAi?$AAc?$AAr?$AAo?$AAs?$AAo?$AAf?$AAt?$AA?2?$AAV@ 000000018006db50 MSVCRTD:_pdblkup_.obj
- 0003:0000ebe0 ??_C@_1BG@EABPBLLF@?$AAP?$AAr?$AAo?$AAd?$AAu?$AAc?$AAt?$AAD?$AAi?$AAr?$AA?$AA@ 000000018006dbe0 MSVCRTD:_pdblkup_.obj
- 0003:0000ec28 ??_C@_1BC@JINFINNJ@?$AAM?$AAS?$AAP?$AAD?$AAB?$AA1?$AA4?$AA0?$AA?$AA@ 000000018006dc28 MSVCRTD:_pdblkup_.obj
- 0003:0000ec40 ??_C@_0BB@KCIACLNC@PDBOpenValidate5?$AA@ 000000018006dc40 MSVCRTD:_pdblkup_.obj
- 0003:0000eca0 _load_config_used 000000018006dca0 MSVCRTD:loadcfg.obj
- 0003:0000f308 __rtc_iaa 000000018006e308 MSVCRTD:_initsect_.obj
- 0003:0000f720 __rtc_izz 000000018006e720 MSVCRTD:_initsect_.obj
- 0003:0000f830 __rtc_taa 000000018006e830 MSVCRTD:_initsect_.obj
- 0003:0000fc48 __rtc_tzz 000000018006ec48 MSVCRTD:_initsect_.obj
- 0004:000004cc VendorID 00000001800724cc hid-windows.obj
- 0004:000004d0 ProductID 00000001800724d0 hid-windows.obj
- 0004:000004d8 LinmathQuat_Identity 00000001800724d8 linmath.obj
- 0004:000004f8 LinmathPose_Identity 00000001800724f8 linmath.obj
- 0004:00000548 LighthouseQuat 0000000180072548 poser_octavioradii.obj
- 0004:00000590 ?__LINE__Var@?0??resize_config_group@@9@9 0000000180072590 survive_config.obj
- 0004:00000594 ?__LINE__Var@?0??sstrcpy@@9@9 0000000180072594 survive_config.obj
- 0004:00000598 ?__LINE__Var@?0??config_set_float_a@@9@9 0000000180072598 survive_config.obj
- 0004:0000059c SurviveSensorActivations_default_tolerance 000000018007259c survive_sensor_activations.obj
- 0004:000005a0 devnames 00000001800725a0 survive_vive.obj
- 0004:00000750 __security_cookie 0000000180072750 MSVCRTD:gs_cookie.obj
- 0004:00000758 __security_cookie_complement 0000000180072758 MSVCRTD:gs_cookie.obj
- 0004:00000770 _fltused 0000000180072770 MSVCRTD:fltused.obj
- 0004:00000778 ?_RTC_ErrorLevels@@3PAHA 0000000180072778 MSVCRTD:_error_.obj
- 0004:00000790 __scrt_native_dllmain_reason 0000000180072790 MSVCRTD:utility.obj
- 0004:00000798 __isa_available 0000000180072798 MSVCRTD:_cpu_disp_.obj
- 0004:0000079c __isa_enabled 000000018007279c MSVCRTD:_cpu_disp_.obj
- 0004:000007a0 __memcpy_nt_iters 00000001800727a0 MSVCRTD:_cpu_disp_.obj
- 0004:000007b0 __scrt_ucrt_dll_is_in_use 00000001800727b0 MSVCRTD:ucrt_stubs.obj
- 0004:00000960 json_begin_object 0000000180072960 json_helpers.obj
- 0004:00000968 json_end_object 0000000180072968 json_helpers.obj
- 0004:00000970 json_tag_value 0000000180072970 json_helpers.obj
- 0004:00000d18 ootx_packet_clbk 0000000180072d18 ootx_decoder.obj
- 0004:00000d20 ootx_bad_crc_clbk 0000000180072d20 ootx_decoder.obj
- 0004:00000d30 best_hmd_target 0000000180072d30 poser_octavioradii.obj
- 0004:00000d38 LighthousePos 0000000180072d38 poser_octavioradii.obj
- 0004:00000d61 cg_stack_head 0000000180072d61 survive_config.obj
- 0004:000017e8 ?_OptionsStorage@?1??__local_stdio_printf_options@@9@4_KA 00000001800737e8 MSVCRTD:_error_.obj
- 0004:00001800 ?__type_info_root_node@@3U__type_info_node@@A 0000000180073800 MSVCRTD:tncleanup.obj
- 0004:00001818 ?_OptionsStorage@?1??__local_stdio_scanf_options@@9@4_KA 0000000180073818 MSVCRTD:default_local_stdio_options.obj
- 0004:00001828 __scrt_current_native_startup_state 0000000180073828 MSVCRTD:utility.obj
- 0004:00001830 __scrt_native_startup_lock 0000000180073830 MSVCRTD:utility.obj
- 0004:00001878 __scrt_debugger_hook_flag 0000000180073878 MSVCRTD:utility_desktop.obj
- 0004:0000188c __favor 000000018007388c MSVCRTD:_cpu_disp_.obj
- 0004:00001890 so 0000000180073890 <common>
- 0004:000018a6 axis2Val 00000001800738a6 <common>
- 0004:000018a8 axis2Id 00000001800738a8 <common>
- 0004:000018aa axis1Val 00000001800738aa <common>
- 0004:000018ac axis1Id 00000001800738ac <common>
- 0004:000018ad buttonId 00000001800738ad <common>
- 0004:000018ae eventType 00000001800738ae <common>
- 0004:000018af isPopulated 00000001800738af <common>
- 0004:000018b0 GlobalRXUSBMutx 00000001800738b0 <common>
- 0004:000018b8 ?_OptionsStorage@?1??__local_stdio_scanf_options@@9@9 00000001800738b8 <common>
- 0004:000018e0 cg_stack 00000001800738e0 <common>
- 0004:00001950 survive_context 0000000180073950 <common>
- 0004:00001960 hmd_point_counts 0000000180073960 <common>
- 0004:00001c40 hmd_point_angles 0000000180073c40 <common>
- 0004:00001e40 hmd_norms 0000000180073e40 <common>
- 0004:00002140 hmd_points 0000000180074140 <common>
- 0004:00002440 ?_OptionsStorage@?1??__local_stdio_printf_options@@9@9 0000000180074440 <common>
- 0004:00002454 JSON_STRING_LEN 0000000180074454 <common>
- 0004:00002458 __dyn_tls_init_callback 0000000180074458 <common>
- 0006:00000000 __imp_VirtualQuery 0000000180079000 kernel32:KERNEL32.dll
- 0006:00000008 __imp_RtlLookupFunctionEntry 0000000180079008 kernel32:KERNEL32.dll
- 0006:00000010 __imp_RtlVirtualUnwind 0000000180079010 kernel32:KERNEL32.dll
- 0006:00000018 __imp_GetProcessHeap 0000000180079018 kernel32:KERNEL32.dll
- 0006:00000020 __imp_UnhandledExceptionFilter 0000000180079020 kernel32:KERNEL32.dll
- 0006:00000028 __imp_SetUnhandledExceptionFilter 0000000180079028 kernel32:KERNEL32.dll
- 0006:00000030 __imp_TerminateProcess 0000000180079030 kernel32:KERNEL32.dll
- 0006:00000038 __imp_IsProcessorFeaturePresent 0000000180079038 kernel32:KERNEL32.dll
- 0006:00000040 __imp_IsDebuggerPresent 0000000180079040 kernel32:KERNEL32.dll
- 0006:00000048 __imp_RaiseException 0000000180079048 kernel32:KERNEL32.dll
- 0006:00000050 __imp_MultiByteToWideChar 0000000180079050 kernel32:KERNEL32.dll
- 0006:00000058 __imp_CreateFileA 0000000180079058 kernel32:KERNEL32.dll
- 0006:00000060 __imp_ReadFile 0000000180079060 kernel32:KERNEL32.dll
- 0006:00000068 __imp_WriteFile 0000000180079068 kernel32:KERNEL32.dll
- 0006:00000070 __imp_CloseHandle 0000000180079070 kernel32:KERNEL32.dll
- 0006:00000078 __imp_GetLastError 0000000180079078 kernel32:KERNEL32.dll
- 0006:00000080 __imp_DeviceIoControl 0000000180079080 kernel32:KERNEL32.dll
- 0006:00000088 __imp_GetOverlappedResult 0000000180079088 kernel32:KERNEL32.dll
- 0006:00000090 __imp_CancelIo 0000000180079090 kernel32:KERNEL32.dll
- 0006:00000098 __imp_ResetEvent 0000000180079098 kernel32:KERNEL32.dll
- 0006:000000a0 __imp_WaitForSingleObject 00000001800790a0 kernel32:KERNEL32.dll
- 0006:000000a8 __imp_CreateEventA 00000001800790a8 kernel32:KERNEL32.dll
- 0006:000000b0 __imp_FreeLibrary 00000001800790b0 kernel32:KERNEL32.dll
- 0006:000000b8 __imp_GetProcAddress 00000001800790b8 kernel32:KERNEL32.dll
- 0006:000000c0 __imp_LoadLibraryA 00000001800790c0 kernel32:KERNEL32.dll
- 0006:000000c8 __imp_LocalFree 00000001800790c8 kernel32:KERNEL32.dll
- 0006:000000d0 __imp_FormatMessageW 00000001800790d0 kernel32:KERNEL32.dll
- 0006:000000d8 __imp_GetFileTime 00000001800790d8 kernel32:KERNEL32.dll
- 0006:000000e0 __imp_QueryPerformanceCounter 00000001800790e0 kernel32:KERNEL32.dll
- 0006:000000e8 __imp_QueryPerformanceFrequency 00000001800790e8 kernel32:KERNEL32.dll
- 0006:000000f0 __imp_ReleaseSemaphore 00000001800790f0 kernel32:KERNEL32.dll
- 0006:000000f8 __imp_ReleaseMutex 00000001800790f8 kernel32:KERNEL32.dll
- 0006:00000100 __imp_CreateMutexA 0000000180079100 kernel32:KERNEL32.dll
- 0006:00000108 __imp_Sleep 0000000180079108 kernel32:KERNEL32.dll
- 0006:00000110 __imp_CreateThread 0000000180079110 kernel32:KERNEL32.dll
- 0006:00000118 __imp_GetModuleHandleA 0000000180079118 kernel32:KERNEL32.dll
- 0006:00000120 __imp_CreateSemaphoreA 0000000180079120 kernel32:KERNEL32.dll
- 0006:00000128 __imp_GetCurrentProcess 0000000180079128 kernel32:KERNEL32.dll
- 0006:00000130 __imp_CreateDirectoryA 0000000180079130 kernel32:KERNEL32.dll
- 0006:00000138 __imp_WideCharToMultiByte 0000000180079138 kernel32:KERNEL32.dll
- 0006:00000140 __imp_GetCurrentProcessId 0000000180079140 kernel32:KERNEL32.dll
- 0006:00000148 __imp_GetCurrentThreadId 0000000180079148 kernel32:KERNEL32.dll
- 0006:00000150 __imp_GetSystemTimeAsFileTime 0000000180079150 kernel32:KERNEL32.dll
- 0006:00000158 __imp_DisableThreadLibraryCalls 0000000180079158 kernel32:KERNEL32.dll
- 0006:00000160 __imp_InitializeSListHead 0000000180079160 kernel32:KERNEL32.dll
- 0006:00000168 __imp_GetStartupInfoW 0000000180079168 kernel32:KERNEL32.dll
- 0006:00000170 __imp_GetModuleHandleW 0000000180079170 kernel32:KERNEL32.dll
- 0006:00000178 __imp_HeapAlloc 0000000180079178 kernel32:KERNEL32.dll
- 0006:00000180 __imp_HeapFree 0000000180079180 kernel32:KERNEL32.dll
- 0006:00000188 __imp_RtlCaptureContext 0000000180079188 kernel32:KERNEL32.dll
- 0006:00000190 \177KERNEL32_NULL_THUNK_DATA 0000000180079190 kernel32:KERNEL32.dll
- 0006:00000238 __imp_SetupDiDestroyDeviceInfoList 0000000180079238 SetupAPI:SETUPAPI.dll
- 0006:00000240 __imp_SetupDiEnumDeviceInterfaces 0000000180079240 SetupAPI:SETUPAPI.dll
- 0006:00000248 __imp_SetupDiGetDeviceInterfaceDetailA 0000000180079248 SetupAPI:SETUPAPI.dll
- 0006:00000250 __imp_SetupDiGetClassDevsA 0000000180079250 SetupAPI:SETUPAPI.dll
- 0006:00000258 __imp_SetupDiGetDeviceRegistryPropertyA 0000000180079258 SetupAPI:SETUPAPI.dll
- 0006:00000260 __imp_SetupDiEnumDeviceInfo 0000000180079260 SetupAPI:SETUPAPI.dll
- 0006:00000268 \177SETUPAPI_NULL_THUNK_DATA 0000000180079268 SetupAPI:SETUPAPI.dll
- 0006:000002c8 __imp_strstr 00000001800792c8 vcruntimed:VCRUNTIME140D.dll
- 0006:000002d0 __imp_memset 00000001800792d0 vcruntimed:VCRUNTIME140D.dll
- 0006:000002d8 __imp_longjmp 00000001800792d8 vcruntimed:VCRUNTIME140D.dll
- 0006:000002e0 __imp___vcrt_LoadLibraryExW 00000001800792e0 vcruntimed:VCRUNTIME140D.dll
- 0006:000002e8 __imp___vcrt_GetModuleHandleW 00000001800792e8 vcruntimed:VCRUNTIME140D.dll
- 0006:000002f0 __imp_memcmp 00000001800792f0 vcruntimed:VCRUNTIME140D.dll
- 0006:000002f8 __imp___intrinsic_setjmp 00000001800792f8 vcruntimed:VCRUNTIME140D.dll
- 0006:00000300 __imp___C_specific_handler 0000000180079300 vcruntimed:VCRUNTIME140D.dll
- 0006:00000308 __imp___std_type_info_destroy_list 0000000180079308 vcruntimed:VCRUNTIME140D.dll
- 0006:00000310 __imp___vcrt_GetModuleFileNameW 0000000180079310 vcruntimed:VCRUNTIME140D.dll
- 0006:00000318 __imp_memcpy 0000000180079318 vcruntimed:VCRUNTIME140D.dll
- 0006:00000320 \177VCRUNTIME140D_NULL_THUNK_DATA 0000000180079320 vcruntimed:VCRUNTIME140D.dll
- 0006:00000388 __imp_SymEnumSymbols 0000000180079388 DbgHelp:dbghelp.dll
- 0006:00000390 __imp_SymInitialize 0000000180079390 DbgHelp:dbghelp.dll
- 0006:00000398 __imp_SymCleanup 0000000180079398 DbgHelp:dbghelp.dll
- 0006:000003a0 \177dbghelp_NULL_THUNK_DATA 00000001800793a0 DbgHelp:dbghelp.dll
- 0006:000003f8 __imp_fabs 00000001800793f8 ucrtd:ucrtbased.dll
- 0006:00000400 __imp_sin 0000000180079400 ucrtd:ucrtbased.dll
- 0006:00000408 __imp_sqrt 0000000180079408 ucrtd:ucrtbased.dll
- 0006:00000410 __imp___acrt_iob_func 0000000180079410 ucrtd:ucrtbased.dll
- 0006:00000418 __imp_tan 0000000180079418 ucrtd:ucrtbased.dll
- 0006:00000420 __imp__dclass 0000000180079420 ucrtd:ucrtbased.dll
- 0006:00000428 __imp_qsort 0000000180079428 ucrtd:ucrtbased.dll
- 0006:00000430 __imp_atan 0000000180079430 ucrtd:ucrtbased.dll
- 0006:00000438 __imp_realloc 0000000180079438 ucrtd:ucrtbased.dll
- 0006:00000440 __imp_exit 0000000180079440 ucrtd:ucrtbased.dll
- 0006:00000448 __imp_strncmp 0000000180079448 ucrtd:ucrtbased.dll
- 0006:00000450 __imp_atof 0000000180079450 ucrtd:ucrtbased.dll
- 0006:00000458 __imp_atoi 0000000180079458 ucrtd:ucrtbased.dll
- 0006:00000460 __imp__wassert 0000000180079460 ucrtd:ucrtbased.dll
- 0006:00000468 __imp_strcpy 0000000180079468 ucrtd:ucrtbased.dll
- 0006:00000470 __imp_roundf 0000000180079470 ucrtd:ucrtbased.dll
- 0006:00000478 __imp_feof 0000000180079478 ucrtd:ucrtbased.dll
- 0006:00000480 __imp_ferror 0000000180079480 ucrtd:ucrtbased.dll
- 0006:00000488 __imp___stdio_common_vsscanf 0000000180079488 ucrtd:ucrtbased.dll
- 0006:00000490 __imp_abs 0000000180079490 ucrtd:ucrtbased.dll
- 0006:00000498 __imp_sqrtf 0000000180079498 ucrtd:ucrtbased.dll
- 0006:000004a0 __imp__errno 00000001800794a0 ucrtd:ucrtbased.dll
- 0006:000004a8 __imp___stdio_common_vfwprintf 00000001800794a8 ucrtd:ucrtbased.dll
- 0006:000004b0 __imp_fwrite 00000001800794b0 ucrtd:ucrtbased.dll
- 0006:000004b8 __imp_getc 00000001800794b8 ucrtd:ucrtbased.dll
- 0006:000004c0 __imp__CrtDbgReport 00000001800794c0 ucrtd:ucrtbased.dll
- 0006:000004c8 __imp__CrtDbgReportW 00000001800794c8 ucrtd:ucrtbased.dll
- 0006:000004d0 __imp__initterm 00000001800794d0 ucrtd:ucrtbased.dll
- 0006:000004d8 __imp__initterm_e 00000001800794d8 ucrtd:ucrtbased.dll
- 0006:000004e0 __imp_strcpy_s 00000001800794e0 ucrtd:ucrtbased.dll
- 0006:000004e8 __imp_strcat_s 00000001800794e8 ucrtd:ucrtbased.dll
- 0006:000004f0 __imp___stdio_common_vsprintf_s 00000001800794f0 ucrtd:ucrtbased.dll
- 0006:000004f8 __imp__seh_filter_dll 00000001800794f8 ucrtd:ucrtbased.dll
- 0006:00000500 __imp__configure_narrow_argv 0000000180079500 ucrtd:ucrtbased.dll
- 0006:00000508 __imp__initialize_narrow_environment 0000000180079508 ucrtd:ucrtbased.dll
- 0006:00000510 __imp__initialize_onexit_table 0000000180079510 ucrtd:ucrtbased.dll
- 0006:00000518 __imp__register_onexit_function 0000000180079518 ucrtd:ucrtbased.dll
- 0006:00000520 __imp__execute_onexit_table 0000000180079520 ucrtd:ucrtbased.dll
- 0006:00000528 __imp__crt_atexit 0000000180079528 ucrtd:ucrtbased.dll
- 0006:00000530 __imp__crt_at_quick_exit 0000000180079530 ucrtd:ucrtbased.dll
- 0006:00000538 __imp__cexit 0000000180079538 ucrtd:ucrtbased.dll
- 0006:00000540 __imp_terminate 0000000180079540 ucrtd:ucrtbased.dll
- 0006:00000548 __imp__wmakepath_s 0000000180079548 ucrtd:ucrtbased.dll
- 0006:00000550 __imp__wsplitpath_s 0000000180079550 ucrtd:ucrtbased.dll
- 0006:00000558 __imp_wcscpy_s 0000000180079558 ucrtd:ucrtbased.dll
- 0006:00000560 __imp__mkdir 0000000180079560 ucrtd:ucrtbased.dll
- 0006:00000568 __imp_cos 0000000180079568 ucrtd:ucrtbased.dll
- 0006:00000570 __imp_atan2 0000000180079570 ucrtd:ucrtbased.dll
- 0006:00000578 __imp_acos 0000000180079578 ucrtd:ucrtbased.dll
- 0006:00000580 __imp_strtod 0000000180079580 ucrtd:ucrtbased.dll
- 0006:00000588 __imp___stdio_common_vsprintf 0000000180079588 ucrtd:ucrtbased.dll
- 0006:00000590 __imp___stdio_common_vfprintf 0000000180079590 ucrtd:ucrtbased.dll
- 0006:00000598 __imp_ftell 0000000180079598 ucrtd:ucrtbased.dll
- 0006:000005a0 __imp_fseek 00000001800795a0 ucrtd:ucrtbased.dll
- 0006:000005a8 __imp_fread 00000001800795a8 ucrtd:ucrtbased.dll
- 0006:000005b0 __imp_fputs 00000001800795b0 ucrtd:ucrtbased.dll
- 0006:000005b8 __imp_fopen 00000001800795b8 ucrtd:ucrtbased.dll
- 0006:000005c0 __imp_fclose 00000001800795c0 ucrtd:ucrtbased.dll
- 0006:000005c8 __imp_strtol 00000001800795c8 ucrtd:ucrtbased.dll
- 0006:000005d0 __imp_malloc 00000001800795d0 ucrtd:ucrtbased.dll
- 0006:000005d8 __imp_free 00000001800795d8 ucrtd:ucrtbased.dll
- 0006:000005e0 __imp_calloc 00000001800795e0 ucrtd:ucrtbased.dll
- 0006:000005e8 __imp_strncpy 00000001800795e8 ucrtd:ucrtbased.dll
- 0006:000005f0 __imp_strlen 00000001800795f0 ucrtd:ucrtbased.dll
- 0006:000005f8 __imp_strcmp 00000001800795f8 ucrtd:ucrtbased.dll
- 0006:00000600 __imp_wcscmp 0000000180079600 ucrtd:ucrtbased.dll
- 0006:00000608 __imp__wcsdup 0000000180079608 ucrtd:ucrtbased.dll
- 0006:00000610 __imp_asin 0000000180079610 ucrtd:ucrtbased.dll
- 0006:00000618 \177ucrtbased_NULL_THUNK_DATA 0000000180079618 ucrtd:ucrtbased.dll
- 0006:000006d8 __IMPORT_DESCRIPTOR_dbghelp 00000001800796d8 DbgHelp:dbghelp.dll
- 0006:000006ec __IMPORT_DESCRIPTOR_SETUPAPI 00000001800796ec SetupAPI:SETUPAPI.dll
- 0006:00000700 __IMPORT_DESCRIPTOR_KERNEL32 0000000180079700 kernel32:KERNEL32.dll
- 0006:00000714 __IMPORT_DESCRIPTOR_VCRUNTIME140D 0000000180079714 vcruntimed:VCRUNTIME140D.dll
- 0006:00000728 __IMPORT_DESCRIPTOR_ucrtbased 0000000180079728 ucrtd:ucrtbased.dll
- 0006:0000073c __NULL_IMPORT_DESCRIPTOR 000000018007973c DbgHelp:dbghelp.dll
- 0007:00000000 __guard_check_icall_fptr 000000018007b000 MSVCRTD:guard_support.obj
- 0007:00000010 __guard_dispatch_icall_fptr 000000018007b010 MSVCRTD:guard_support.obj
- 0007:00000020 __guard_ss_verify_failure_fptr 000000018007b020 MSVCRTD:guard_support.obj
- 0007:00000030 __guard_ss_verify_sp_fptr 000000018007b030 MSVCRTD:guard_support.obj
-
- entry point at 0002:00000a0f
-
- Static symbols
-
- 0003:fffa1000 printf$rtcName$0 0000000180000000 survive_cal.obj
- 0005:fff8b000 $pdata$fprintf 0000000180000000 survive_turveybiguator.obj
- 0003:fffa1000 $unwind$__local_stdio_printf_options 0000000180000000 poser_daveortho.obj
- 0005:fff8b000 $pdata$__local_stdio_printf_options 0000000180000000 poser_daveortho.obj
- 0003:fffa1000 $unwind$_vfprintf_l 0000000180000000 poser_daveortho.obj
- 0005:fff8b000 $pdata$_vfprintf_l 0000000180000000 poser_daveortho.obj
- 0003:fffa1000 fprintf$rtcName$0 0000000180000000 poser_daveortho.obj
- 0005:fff8b000 $pdata$_vsprintf_l 0000000180000000 survive_cal.obj
- 0003:fffa1000 $unwind$fprintf 0000000180000000 survive_turveybiguator.obj
- 0003:fffa1000 $unwind$fprintf 0000000180000000 poser_daveortho.obj
- 0005:fff8b000 $pdata$fprintf 0000000180000000 poser_daveortho.obj
- 0003:fffa1000 printf$rtcName$0 0000000180000000 poser_daveortho.obj
- 0003:fffa1000 sprintf$rtcName$0 0000000180000000 survive_cal.obj
- 0005:fff8b000 $pdata$_vsnprintf_l 0000000180000000 survive_cal.obj
- 0003:fffa1000 $unwind$printf 0000000180000000 poser_daveortho.obj
- 0005:fff8b000 $pdata$printf 0000000180000000 poser_daveortho.obj
- 0003:fffa1000 $unwind$__local_stdio_printf_options 0000000180000000 survive_vive.obj
- 0005:fff8b000 $pdata$__local_stdio_printf_options 0000000180000000 survive_vive.obj
- 0003:fffa1000 fprintf$rtcName$0 0000000180000000 survive_turveybiguator.obj
- 0005:fff8b000 $pdata$_vfprintf_l 0000000180000000 survive_turveybiguator.obj
- 0003:fffa1000 $unwind$_vfprintf_l 0000000180000000 survive_turveybiguator.obj
- 0005:fff8b000 $pdata$__local_stdio_printf_options 0000000180000000 survive_turveybiguator.obj
- 0003:fffa1000 $unwind$__local_stdio_printf_options 0000000180000000 survive_turveybiguator.obj
- 0003:fffa1000 $unwind$_vfprintf_l 0000000180000000 survive_vive.obj
- 0005:fff8b000 $pdata$_vfprintf_l 0000000180000000 survive_vive.obj
- 0003:fffa1000 printf$rtcName$0 0000000180000000 survive_vive.obj
- 0003:fffa1000 $unwind$_vsnprintf_l 0000000180000000 survive_cal.obj
- 0003:fffa1000 $unwind$printf 0000000180000000 survive_vive.obj
- 0005:fff8b000 $pdata$printf 0000000180000000 survive_vive.obj
- 0003:fffa1000 $unwind$_vsnprintf_l 0000000180000000 survive_vive.obj
- 0003:fffa1000 $unwind$__local_stdio_printf_options 0000000180000000 poser_octavioradii.obj
- 0005:fff8b000 $pdata$__local_stdio_printf_options 0000000180000000 poser_octavioradii.obj
- 0000:fff82000 .debug$S 0000000180000000 libsurvive.exp
- 0003:fffa1000 $unwind$_vfprintf_l 0000000180000000 poser_octavioradii.obj
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0005:fff8b000 $pdata$_vfprintf_l 0000000180000000 poser_octavioradii.obj
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0000:fff82000 .debug$S 0000000180000000 ucrtd:ucrtbased.dll
- 0003:fffa1000 printf$rtcName$0 0000000180000000 poser_octavioradii.obj
- 0000:fff82000 .debug$S 0000000180000000 vcruntimed:VCRUNTIME140D.dll
- 0000:fff82000 .debug$S 0000000180000000 vcruntimed:VCRUNTIME140D.dll
- 0000:fff82000 .debug$S 0000000180000000 vcruntimed:VCRUNTIME140D.dll
- 0000:fff82000 .debug$S 0000000180000000 vcruntimed:VCRUNTIME140D.dll
- 0000:fff82000 .debug$S 0000000180000000 vcruntimed:VCRUNTIME140D.dll
- 0000:fff82000 .debug$S 0000000180000000 vcruntimed:VCRUNTIME140D.dll
- 0000:fff82000 .debug$S 0000000180000000 vcruntimed:VCRUNTIME140D.dll
- 0000:fff82000 .debug$S 0000000180000000 vcruntimed:VCRUNTIME140D.dll
- 0000:fff82000 .debug$S 0000000180000000 vcruntimed:VCRUNTIME140D.dll
- 0000:fff82000 .debug$S 0000000180000000 vcruntimed:VCRUNTIME140D.dll
- 0000:fff82000 .debug$S 0000000180000000 vcruntimed:VCRUNTIME140D.dll
- 0005:fff8b000 $pdata$_vsnprintf_l 0000000180000000 survive_vive.obj
- 0005:fff8b000 $pdata$printf 0000000180000000 survive_cal.obj
- 0003:fffa1000 $unwind$_vsprintf_l 0000000180000000 survive_vive.obj
- 0005:fff8b000 $pdata$_vsprintf_l 0000000180000000 survive_vive.obj
- 0003:fffa1000 $unwind$printf 0000000180000000 poser_octavioradii.obj
- 0005:fff8b000 $pdata$printf 0000000180000000 poser_octavioradii.obj
- 0003:fffa1000 sprintf$rtcName$0 0000000180000000 survive_vive.obj
- 0003:fffa1000 $unwind$printf 0000000180000000 survive_cal.obj
- 0000:fff85000 __guard_fids__guard_icall_checks_enforced 0000000180000000 MSVCRTD:guard_support.obj
- 0003:fffa1000 $unwind$sprintf 0000000180000000 survive_vive.obj
- 0005:fff8b000 $pdata$sprintf 0000000180000000 survive_vive.obj
- 0005:fff8b000 $pdata$sprintf 0000000180000000 survive_playback.obj
- 0003:fffa1000 $unwind$sprintf 0000000180000000 survive_playback.obj
- 0000:fff85000 __guard_fids__ 0000000180000000 MSVCRTD:guard_support.obj
- 0003:fffa1000 $unwind$sprintf 0000000180000000 survive_cal.obj
- 0003:fffa1000 sprintf$rtcName$0 0000000180000000 survive_playback.obj
- 0005:fff8b000 $pdata$_vsprintf_l 0000000180000000 survive_playback.obj
- 0003:fffa1000 $unwind$_vsprintf_l 0000000180000000 survive_playback.obj
- 0005:fff8b000 $pdata$_vsnprintf_l 0000000180000000 survive_playback.obj
- 0003:fffa1000 $unwind$_vsnprintf_l 0000000180000000 survive_playback.obj
- 0005:fff8b000 $pdata$fprintf 0000000180000000 survive_playback.obj
- 0003:fffa1000 $unwind$fprintf 0000000180000000 survive_playback.obj
- 0005:fff8b000 $pdata$sprintf 0000000180000000 survive_cal.obj
- 0003:fffa1000 fprintf$rtcName$0 0000000180000000 survive_playback.obj
- 0005:fff8b000 $pdata$_vfprintf_l 0000000180000000 survive_playback.obj
- 0005:fff8b000 $pdata$_vsnprintf_l 0000000180000000 poser_charlesslow.obj
- 0003:fffa1000 $unwind$_vfprintf_l 0000000180000000 survive_playback.obj
- 0003:fffa1000 $unwind$_vsnprintf_l 0000000180000000 poser_charlesslow.obj
- 0005:fff8b000 $pdata$__local_stdio_printf_options 0000000180000000 survive_playback.obj
- 0005:fff8b000 $pdata$printf 0000000180000000 poser_charlesslow.obj
- 0003:fffa1000 $unwind$__local_stdio_printf_options 0000000180000000 survive_playback.obj
- 0003:fffa1000 $unwind$printf 0000000180000000 poser_charlesslow.obj
- 0005:fff8b000 $pdata$printf 0000000180000000 survive_driverman.obj
- 0003:fffa1000 $unwind$printf 0000000180000000 survive_driverman.obj
- 0005:fff8b000 $pdata$fprintf 0000000180000000 survive_cal.obj
- 0003:fffa1000 printf$rtcName$0 0000000180000000 survive_driverman.obj
- 0005:fff8b000 $pdata$_vfprintf_l 0000000180000000 survive_driverman.obj
- 0003:fffa1000 $unwind$_vfprintf_l 0000000180000000 survive_driverman.obj
- 0005:fff8b000 $pdata$__local_stdio_printf_options 0000000180000000 survive_driverman.obj
- 0003:fffa1000 $unwind$__local_stdio_printf_options 0000000180000000 survive_driverman.obj
- 0005:fff8b000 $pdata$sprintf 0000000180000000 survive_default_devices.obj
- 0003:fffa1000 $unwind$sprintf 0000000180000000 survive_default_devices.obj
- 0003:fffa1000 $unwind$fprintf 0000000180000000 survive_cal.obj
- 0003:fffa1000 sprintf$rtcName$0 0000000180000000 survive_default_devices.obj
- 0005:fff8b000 $pdata$_vsprintf_l 0000000180000000 survive_default_devices.obj
- 0003:fffa1000 $unwind$_vsprintf_l 0000000180000000 survive_default_devices.obj
- 0005:fff8b000 $pdata$_vsnprintf_l 0000000180000000 survive_default_devices.obj
- 0003:fffa1000 $unwind$__local_stdio_printf_options 0000000180000000 poser_turveytori.obj
- 0005:fff8b000 $pdata$__local_stdio_printf_options 0000000180000000 poser_turveytori.obj
- 0003:fffa1000 $unwind$_vfprintf_l 0000000180000000 poser_turveytori.obj
- 0003:fffa1000 $unwind$_vsnprintf_l 0000000180000000 survive_default_devices.obj
- 0005:fff8b000 $pdata$fprintf 0000000180000000 survive_default_devices.obj
- 0003:fffa1000 $unwind$fprintf 0000000180000000 survive_default_devices.obj
- 0005:fff8b000 $pdata$_vfprintf_l 0000000180000000 poser_turveytori.obj
- 0003:fffa1000 printf$rtcName$0 0000000180000000 poser_turveytori.obj
- 0000:fff85000 __guard_fids_?dllmain_dispatch@@YAHQEAUHINSTANCE__@@KQEAX@Z 0000000180000000 MSVCRTD:dll_dllmain.obj
- 0003:fffa1000 fprintf$rtcName$0 0000000180000000 survive_cal.obj
- 0003:fffa1000 fprintf$rtcName$0 0000000180000000 survive_default_devices.obj
- 0005:fff8b000 $pdata$_vfprintf_l 0000000180000000 survive_default_devices.obj
- 0003:fffa1000 $unwind$printf 0000000180000000 poser_turveytori.obj
- 0003:fffa1000 $unwind$_vfprintf_l 0000000180000000 survive_default_devices.obj
- 0005:fff8b000 $pdata$printf 0000000180000000 poser_turveytori.obj
- 0005:fff8b000 $pdata$__local_stdio_printf_options 0000000180000000 survive_default_devices.obj
- 0005:fff8b000 $pdata$_vfprintf_l 0000000180000000 survive_cal.obj
- 0003:fffa1000 printf$rtcName$0 0000000180000000 poser_charlesslow.obj
- 0005:fff8b000 $pdata$fprintf 0000000180000000 poser_charlesslow.obj
- 0003:fffa1000 $unwind$__local_stdio_printf_options 0000000180000000 survive_default_devices.obj
- 0003:fffa1000 $unwind$fprintf 0000000180000000 poser_charlesslow.obj
- 0000:fff82000 .debug$S 0000000180000000 DbgHelp:dbghelp.dll
- 0000:fff82000 .debug$S 0000000180000000 DbgHelp:dbghelp.dll
- 0000:fff82000 .debug$S 0000000180000000 DbgHelp:dbghelp.dll
- 0003:fffa1000 $unwind$_vfprintf_l 0000000180000000 survive_cal.obj
- 0000:fff82000 .debug$S 0000000180000000 SetupAPI:SETUPAPI.dll
- 0003:fffa1000 fprintf$rtcName$0 0000000180000000 poser_charlesslow.obj
- 0005:fff8b000 $pdata$_vfprintf_l 0000000180000000 poser_charlesslow.obj
- 0003:fffa1000 $unwind$_vfprintf_l 0000000180000000 poser_charlesslow.obj
- 0000:fff85000 __guard_fids___scrt_set_unhandled_exception_filter 0000000180000000 MSVCRTD:utility_desktop.obj
- 0000:fff82000 .debug$S 0000000180000000 SetupAPI:SETUPAPI.dll
- 0005:fff8b000 $pdata$__local_stdio_printf_options 0000000180000000 poser_charlesslow.obj
- 0000:fff82000 .debug$S 0000000180000000 SetupAPI:SETUPAPI.dll
- 0003:fffa1000 $unwind$__local_stdio_printf_options 0000000180000000 poser_charlesslow.obj
- 0000:fff82000 .debug$S 0000000180000000 SetupAPI:SETUPAPI.dll
- 0000:fff82000 .debug$S 0000000180000000 SetupAPI:SETUPAPI.dll
- 0000:fff82000 .debug$S 0000000180000000 SetupAPI:SETUPAPI.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0003:fffa1000 $unwind$__local_stdio_printf_options 0000000180000000 survive.obj
- 0005:fff8b000 $pdata$__local_stdio_printf_options 0000000180000000 survive.obj
- 0003:fffa1000 $unwind$_vfprintf_l 0000000180000000 survive.obj
- 0005:fff8b000 $pdata$_vfprintf_l 0000000180000000 survive.obj
- 0003:fffa1000 fprintf$rtcName$0 0000000180000000 survive.obj
- 0005:fff8b000 $pdata$__local_stdio_printf_options 0000000180000000 survive_cal.obj
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0003:fffa1000 $unwind$fprintf 0000000180000000 survive.obj
- 0005:fff8b000 $pdata$fprintf 0000000180000000 survive.obj
- 0003:fffa1000 printf$rtcName$0 0000000180000000 survive.obj
- 0003:fffa1000 $unwind$__local_stdio_printf_options 0000000180000000 survive_cal.obj
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0003:fffa1000 $unwind$printf 0000000180000000 survive.obj
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0005:fff8b000 $pdata$printf 0000000180000000 survive.obj
- 0003:fffa1000 $unwind$_vsnprintf_l 0000000180000000 survive.obj
- 0005:fff8b000 $pdata$_vsnprintf_l 0000000180000000 survive.obj
- 0003:fffa1000 $unwind$_vsprintf_l 0000000180000000 survive.obj
- 0005:fff8b000 $pdata$_vsprintf_l 0000000180000000 survive.obj
- 0003:fffa1000 sprintf$rtcName$0 0000000180000000 survive.obj
- 0003:fffa1000 $unwind$__local_stdio_printf_options 0000000180000000 survive_charlesbiguator.obj
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff82000 .debug$S 0000000180000000 kernel32:KERNEL32.dll
- 0000:fff85000 __guard_fids__CRT_RTC_INIT 0000000180000000 MSVCRTD:_init_.obj
- 0000:fff85000 __guard_fids__CRT_RTC_INITW 0000000180000000 MSVCRTD:_init_.obj
- 0003:fffa1000 $unwind$sprintf 0000000180000000 survive.obj
- 0005:fff8b000 $pdata$printf 0000000180000000 survive_config.obj
- 0003:fffa1000 $unwind$printf 0000000180000000 survive_config.obj
- 0005:fff8b000 $pdata$sprintf 0000000180000000 survive.obj
- 0005:fff8b000 $pdata$__local_stdio_printf_options 0000000180000000 survive_charlesbiguator.obj
- 0003:fffa1000 printf$rtcName$0 0000000180000000 survive_config.obj
- 0005:fff8b000 $pdata$fprintf 0000000180000000 survive_config.obj
- 0003:fffa1000 $unwind$fprintf 0000000180000000 survive_config.obj
- 0003:fffa1000 $unwind$__local_stdio_printf_options 0000000180000000 ootx_decoder.obj
- 0003:fffa1000 fprintf$rtcName$0 0000000180000000 survive_config.obj
- 0005:fff8b000 $pdata$_vfprintf_l 0000000180000000 survive_config.obj
- 0003:fffa1000 $unwind$_vfprintf_l 0000000180000000 survive_config.obj
- 0005:fff8b000 $pdata$__local_stdio_printf_options 0000000180000000 survive_config.obj
- 0003:fffa1000 $unwind$__local_stdio_printf_options 0000000180000000 survive_config.obj
- 0005:fff8b000 $pdata$sprintf 0000000180000000 survive_charlesbiguator.obj
- 0003:fffa1000 $unwind$sprintf 0000000180000000 survive_charlesbiguator.obj
- 0005:fff8b000 $pdata$__local_stdio_printf_options 0000000180000000 ootx_decoder.obj
- 0003:fffa1000 sprintf$rtcName$0 0000000180000000 survive_charlesbiguator.obj
- 0005:fff8b000 $pdata$_vsprintf_l 0000000180000000 survive_charlesbiguator.obj
- 0003:fffa1000 $unwind$_vsprintf_l 0000000180000000 survive_charlesbiguator.obj
- 0005:fff8b000 $pdata$_vsnprintf_l 0000000180000000 survive_charlesbiguator.obj
- 0003:fffa1000 $unwind$_vsnprintf_l 0000000180000000 survive_charlesbiguator.obj
- 0005:fff8b000 $pdata$_vfprintf_l 0000000180000000 ootx_decoder.obj
- 0003:fffa1000 $unwind$_vfprintf_l 0000000180000000 ootx_decoder.obj
- 0003:fffa1000 $unwind$_vsprintf_l 0000000180000000 survive_cal.obj
- 0003:fffa1010 fprintf$rtcVarDesc 0000000180000010 survive_config.obj
- 0003:fffa1010 printf$rtcVarDesc 0000000180000010 survive_config.obj
- 0003:fffa1010 sprintf$rtcVarDesc 0000000180000010 survive.obj
- 0003:fffa1010 printf$rtcVarDesc 0000000180000010 survive.obj
- 0003:fffa1010 fprintf$rtcVarDesc 0000000180000010 survive.obj
- 0003:fffa1010 fprintf$rtcVarDesc 0000000180000010 poser_charlesslow.obj
- 0003:fffa1010 printf$rtcVarDesc 0000000180000010 poser_charlesslow.obj
- 0003:fffa1010 fprintf$rtcVarDesc 0000000180000010 survive_default_devices.obj
- 0003:fffa1010 fprintf$rtcVarDesc 0000000180000010 survive_cal.obj
- 0003:fffa1010 printf$rtcVarDesc 0000000180000010 poser_turveytori.obj
- 0003:fffa1010 sprintf$rtcVarDesc 0000000180000010 survive_default_devices.obj
- 0003:fffa1010 printf$rtcVarDesc 0000000180000010 survive_driverman.obj
- 0003:fffa1010 fprintf$rtcVarDesc 0000000180000010 survive_playback.obj
- 0003:fffa1010 printf$rtcVarDesc 0000000180000010 survive_cal.obj
- 0003:fffa1010 sprintf$rtcVarDesc 0000000180000010 survive_playback.obj
- 0003:fffa1010 sprintf$rtcVarDesc 0000000180000010 survive_cal.obj
- 0003:fffa1010 sprintf$rtcVarDesc 0000000180000010 survive_vive.obj
- 0003:fffa1010 printf$rtcVarDesc 0000000180000010 poser_octavioradii.obj
- 0003:fffa1010 printf$rtcVarDesc 0000000180000010 survive_vive.obj
- 0003:fffa1010 fprintf$rtcVarDesc 0000000180000010 survive_turveybiguator.obj
- 0003:fffa1010 printf$rtcVarDesc 0000000180000010 poser_daveortho.obj
- 0003:fffa1010 fprintf$rtcVarDesc 0000000180000010 poser_daveortho.obj
- 0003:fffa1010 sprintf$rtcVarDesc 0000000180000010 survive_charlesbiguator.obj
- 0003:fffa1050 sprintf$rtcFrameData 0000000180000050 survive_vive.obj
- 0003:fffa1050 fprintf$rtcFrameData 0000000180000050 survive_config.obj
- 0003:fffa1050 printf$rtcFrameData 0000000180000050 poser_charlesslow.obj
- 0003:fffa1050 printf$rtcFrameData 0000000180000050 survive_driverman.obj
- 0003:fffa1050 printf$rtcFrameData 0000000180000050 survive_vive.obj
- 0003:fffa1050 sprintf$rtcFrameData 0000000180000050 survive.obj
- 0003:fffa1050 sprintf$rtcFrameData 0000000180000050 survive_charlesbiguator.obj
- 0003:fffa1050 printf$rtcFrameData 0000000180000050 survive_cal.obj
- 0003:fffa1050 sprintf$rtcFrameData 0000000180000050 survive_cal.obj
- 0003:fffa1050 printf$rtcFrameData 0000000180000050 survive.obj
- 0003:fffa1050 fprintf$rtcFrameData 0000000180000050 survive.obj
- 0003:fffa1050 sprintf$rtcFrameData 0000000180000050 survive_default_devices.obj
- 0003:fffa1050 printf$rtcFrameData 0000000180000050 poser_octavioradii.obj
- 0003:fffa1050 printf$rtcFrameData 0000000180000050 survive_config.obj
- 0003:fffa1050 sprintf$rtcFrameData 0000000180000050 survive_playback.obj
- 0003:fffa1050 fprintf$rtcFrameData 0000000180000050 poser_daveortho.obj
- 0003:fffa1050 fprintf$rtcFrameData 0000000180000050 survive_turveybiguator.obj
- 0003:fffa1050 fprintf$rtcFrameData 0000000180000050 poser_charlesslow.obj
- 0003:fffa1050 fprintf$rtcFrameData 0000000180000050 survive_default_devices.obj
- 0003:fffa1050 fprintf$rtcFrameData 0000000180000050 survive_cal.obj
- 0003:fffa1050 printf$rtcFrameData 0000000180000050 poser_turveytori.obj
- 0003:fffa1050 printf$rtcFrameData 0000000180000050 poser_daveortho.obj
- 0003:fffa1050 fprintf$rtcFrameData 0000000180000050 survive_playback.obj
- 0002:000015d0 free_hid_device 00000001800205d0 f hid-windows.obj
- 0002:00003200 lookup_functions 0000000180022200 f hid-windows.obj
- 0002:000034f0 new_hid_device 00000001800224f0 f hid-windows.obj
- 0002:000035f0 open_device 00000001800225f0 f hid-windows.obj
- 0002:000036c0 register_error 00000001800226c0 f hid-windows.obj
- 0002:000037d0 jsmn_alloc_token 00000001800227d0 f jsmn.obj
- 0002:000038b0 jsmn_fill_token 00000001800228b0 f jsmn.obj
- 0002:00003f74 $LN50 0000000180022f74 jsmn.obj
- 0002:00003f90 $LN49 0000000180022f90 jsmn.obj
- 0002:000041a0 jsmn_parse_primitive 00000001800231a0 f jsmn.obj
- 0002:00004368 $LN14 0000000180023368 jsmn.obj
- 0002:00004370 $LN13 0000000180023370 jsmn.obj
- 0002:00004480 jsmn_parse_string 0000000180023480 f jsmn.obj
- 0002:000047b8 $LN23 00000001800237b8 jsmn.obj
- 0002:000047c4 $LN22 00000001800237c4 jsmn.obj
- 0002:00004e60 json_load_array 0000000180023e60 f json_helpers.obj
- 0002:00005cd0 substr 0000000180024cd0 f json_helpers.obj
- 0002:0000cc40 bits 000000018002bc40 f puff.obj
- 0002:0000cde0 codes 000000018002bde0 f puff.obj
- 0002:0000d100 construct 000000018002c100 f puff.obj
- 0002:0000d410 decode 000000018002c410 f puff.obj
- 0002:0000d6e0 dynamic 000000018002c6e0 f puff.obj
- 0002:0000dc00 fixed 000000018002cc00 f puff.obj
- 0002:0000e070 stored 000000018002d070 f puff.obj
- 0002:000109c0 RunOpti 000000018002f9c0 f poser_charlesslow.obj
- 0002:00018e30 QuickPose 0000000180037e30 f poser_octavioradii.obj
- 0002:00019470 RefineEstimateUsingGradientDescentRadii 0000000180038470 f poser_octavioradii.obj
- 0002:000199b0 SolveForLighthouseRadii 00000001800389b0 f poser_octavioradii.obj
- 0002:00019d60 angleBetweenSensors 0000000180038d60 f poser_octavioradii.obj
- 0002:00019e20 calculateFitness 0000000180038e20 f poser_octavioradii.obj
- 0002:0001a280 distance 0000000180039280 f poser_octavioradii.obj
- 0002:0001a370 getGradient 0000000180039370 f poser_octavioradii.obj
- 0002:0001a500 normalizeAndMultiplyVector 0000000180039500 f poser_octavioradii.obj
- 0002:0001bb60 QuickPose 000000018003ab60 f poser_turveytori.obj
- 0002:0001c210 RefineEstimateUsingModifiedGradientDescent1 000000018003b210 f poser_turveytori.obj
- 0002:0001c830 RefineRotationEstimateAxisAngle 000000018003b830 f poser_turveytori.obj
- 0002:0001cc40 RefineRotationEstimateQuaternion 000000018003bc40 f poser_turveytori.obj
- 0002:0001e3f0 SolveForLighthouse 000000018003d3f0 f poser_turveytori.obj
- 0002:0001fd40 WhereIsTheTrackedObjectAxisAngle 000000018003ed40 f poser_turveytori.obj
- 0002:00020700 distance 000000018003f700 f poser_turveytori.obj
- 0002:00022b00 button_servicer 0000000180041b00 f survive.obj
- 0002:00024c50 survivefault 0000000180043c50 f survive.obj
- 0002:00024cd0 survivenote 0000000180043cd0 f survive.obj
- 0002:00024d60 handle_calibration 0000000180043d60 f survive_cal.obj
- 0002:00026b80 reset_calibration 0000000180045b80 f survive_cal.obj
- 0002:00028a10 HandleOOTX 0000000180047a10 f survive_charlesbiguator.obj
- 0002:00028d10 decode_acode 0000000180047d10 f survive_charlesbiguator.obj
- 0002:00028e30 config_entry_as_FLT 0000000180047e30 f survive_config.obj
- 0002:00028f10 config_entry_as_uint32_t 0000000180047f10 f survive_config.obj
- 0002:0002ac50 sc_search 0000000180049c50 f survive_config.obj
- 0002:0002b510 ParsePoints 000000018004a510 f survive_default_devices.obj
- 0002:0002b800 jsoneq 000000018004a800 f survive_default_devices.obj
- 0002:0002b8f0 survive_create_device 000000018004a8f0 f survive_default_devices.obj
- 0002:0002d250 parse_and_run_imu 000000018004c250 f survive_playback.obj
- 0002:0002d500 parse_and_run_lightcode 000000018004c500 f survive_playback.obj
- 0002:0002d7d0 parse_and_run_rawlight 000000018004c7d0 f survive_playback.obj
- 0002:0002d980 playback_close 000000018004c980 f survive_playback.obj
- 0002:0002da10 playback_poll 000000018004ca10 f survive_playback.obj
- 0002:0002e74c $LN11 000000018004d74c survive_playback.obj
- 0002:0002ec10 timestamp_in_us 000000018004dc10 f survive_playback.obj
- 0002:0002ed00 write_to_output 000000018004dd00 f survive_playback.obj
- 0002:0002f9b0 gibf 000000018004e9b0 f survive_reproject.obj
- 0002:0002ffa0 survive_calibration_options_config_normalize 000000018004efa0 f survive_reproject.obj
- 0002:00030cc0 handle_lightcap2_getAcodeFromSyncPulse 000000018004fcc0 f survive_turveybiguator.obj
- 0002:00030e60 handle_lightcap2_process_sweep_data 000000018004fe60 f survive_turveybiguator.obj
- 0002:00031390 handle_lightcap2_sweep 0000000180050390 f survive_turveybiguator.obj
- 0002:00031540 handle_lightcap2_sync 0000000180050540 f survive_turveybiguator.obj
- 0002:000318d0 remove_outliers 00000001800508d0 f survive_turveybiguator.obj
- 0002:00031cd0 AttachInterface 0000000180050cd0 f survive_vive.obj
- 0002:000325c0 LoadConfig 00000001800515c0 f survive_vive.obj
- 0002:00032d90 getupdate_feature_report 0000000180051d90 f survive_vive.obj
- 0002:00032e20 handle_watchman 0000000180051e20 f survive_vive.obj
- 0002:00033f40 hid_get_feature_report_timeout 0000000180052f40 f survive_vive.obj
- 0002:00035138 $LN35 0000000180054138 survive_vive.obj
- 0002:00037010 update_feature_report 0000000180056010 f survive_vive.obj
- 0002:000379c0 capture_current_context 00000001800569c0 f MSVCRTD:gs_report.obj
- 0002:00037a80 capture_previous_context 0000000180056a80 f MSVCRTD:gs_report.obj
- 0002:00037f40 $$000000 0000000180056f40 MSVCRTD:_amdsecgs_.obj
- 0002:00037f80 $$000000 0000000180056f80 MSVCRTD:_chkstk_.obj
- 0002:00038000 ?dllmain_crt_dispatch@@YAHQEAUHINSTANCE__@@KQEAX@Z 0000000180057000 f MSVCRTD:dll_dllmain.obj
- 0002:000380b0 ?dllmain_crt_process_attach@@YAHQEAUHINSTANCE__@@QEAX@Z 00000001800570b0 f MSVCRTD:dll_dllmain.obj
- 0002:00038230 ?dllmain_crt_process_detach@@YAH_N@Z 0000000180057230 f MSVCRTD:dll_dllmain.obj
- 0002:000382e0 ?dllmain_dispatch@@YAHQEAUHINSTANCE__@@KQEAX@Z 00000001800572e0 f MSVCRTD:dll_dllmain.obj
- 0002:00038470 ?dllmain_raw@@YAHQEAUHINSTANCE__@@KQEAX@Z 0000000180057470 f MSVCRTD:dll_dllmain.obj
- 0002:00038640 ?DebuggerProbe@@YA_NK@Z 0000000180057640 f MSVCRTD:_error_.obj
- 0002:00038690 ?DebuggerRuntime@@YA_NKHPEAXPEB_W@Z 0000000180057690 f MSVCRTD:_error_.obj
- 0002:00038a20 ?_getMemBlockDataString@@YAXPEAD0PEBD_K@Z 0000000180057a20 f MSVCRTD:_error_.obj
- 0002:00038b00 ?_strlen_priv@@YA_KPEBD@Z 0000000180057b00 f MSVCRTD:_error_.obj
- 0002:00038b20 ?failwithmessage@@YAXPEAXHHPEBD@Z 0000000180057b20 f MSVCRTD:_error_.obj
- 0002:00038e40 ?notify_debugger@@YAXAEBUtagEXCEPTION_VISUALCPP_DEBUG_INFO@@@Z 0000000180057e40 f MSVCRTD:_error_.obj
- 0002:00039040 __get_entropy 0000000180058040 f MSVCRTD:gs_support.obj
- 0002:000393a0 ?find_pe_section@@YAPEAU_IMAGE_SECTION_HEADER@@QEAE_K@Z 00000001800583a0 f MSVCRTD:utility.obj
- 0002:000394c0 ?is_potentially_valid_image_base@@YA_NQEAX@Z 00000001800584c0 f MSVCRTD:utility.obj
- 0002:0003a110 ?GetPdbDll@@YAPEAUHINSTANCE__@@XZ 0000000180059110 f MSVCRTD:_pdblkup_.obj
- 0002:0003a2b0 ?GetPdbDllFromInstallPath@@YAPEAUHINSTANCE__@@XZ 00000001800592b0 f MSVCRTD:_pdblkup_.obj
- 0002:0003a630 ?GetPdbDllPathFromFilePath@@YAHPEB_WPEA_W_K@Z 0000000180059630 f MSVCRTD:_pdblkup_.obj
- 0002:0003cf90 $$000000 000000018005bf90 MSVCRTD:_guard_dispatch_.obj
- 0002:0003cfb0 $$000000 000000018005bfb0 MSVCRTD:_rfgfailure_.obj
- 0002:0003e0a0 ?fin$0@?0??dllmain_crt_process_attach@@YAHQEAUHINSTANCE__@@QEAX@Z@4HA 000000018005d0a0 f MSVCRTD:dll_dllmain.obj
- 0002:0003e0c0 ?fin$0@?0??dllmain_crt_process_detach@@YAH_N@Z@4HA 000000018005d0c0 f MSVCRTD:dll_dllmain.obj
- 0002:0003e0f0 ?filt$0@?0??dllmain_dispatch@@YAHQEAUHINSTANCE__@@KQEAX@Z@4HA 000000018005d0f0 f MSVCRTD:dll_dllmain.obj
- 0002:0003e150 ?filt$0@?0??notify_debugger@@YAXAEBUtagEXCEPTION_VISUALCPP_DEBUG_INFO@@@Z@4HA 000000018005d150 f MSVCRTD:_error_.obj
- 0002:0003e180 __scrt_is_nonwritable_in_current_image$filt$0 000000018005d180 f MSVCRTD:utility.obj
- 0003:00000880 hid_enumerate$rtcName$0 000000018005f880 hid-windows.obj
- 0003:00000898 hid_enumerate$rtcName$1 000000018005f898 hid-windows.obj
- 0003:000008a8 hid_enumerate$rtcName$2 000000018005f8a8 hid-windows.obj
- 0003:000008c0 hid_enumerate$rtcName$3 000000018005f8c0 hid-windows.obj
- 0003:000008d0 hid_enumerate$rtcName$4 000000018005f8d0 hid-windows.obj
- 0003:000008d8 hid_enumerate$rtcName$5 000000018005f8d8 hid-windows.obj
- 0003:000008e8 hid_enumerate$rtcName$6 000000018005f8e8 hid-windows.obj
- 0003:000008f0 hid_enumerate$rtcName$7 000000018005f8f0 hid-windows.obj
- 0003:000008f8 hid_enumerate$rtcName$8 000000018005f8f8 hid-windows.obj
- 0003:00000900 hid_enumerate$rtcName$9 000000018005f900 hid-windows.obj
- 0003:00000908 hid_enumerate$rtcFrameData 000000018005f908 hid-windows.obj
- 0003:00000920 hid_enumerate$rtcVarDesc 000000018005f920 hid-windows.obj
- 0003:00000c40 hid_open_path$rtcName$0 000000018005fc40 hid-windows.obj
- 0003:00000c48 hid_open_path$rtcName$1 000000018005fc48 hid-windows.obj
- 0003:00000c50 hid_open_path$rtcVarDesc 000000018005fc50 hid-windows.obj
- 0003:00000cd0 hid_open_path$rtcFrameData 000000018005fcd0 hid-windows.obj
- 0003:00000d00 hid_write$rtcName$0 000000018005fd00 hid-windows.obj
- 0003:00000d10 hid_write$rtcName$1 000000018005fd10 hid-windows.obj
- 0003:00000d20 hid_write$rtcVarDesc 000000018005fd20 hid-windows.obj
- 0003:00000da0 hid_write$rtcFrameData 000000018005fda0 hid-windows.obj
- 0003:00000de0 hid_read_timeout$rtcName$0 000000018005fde0 hid-windows.obj
- 0003:00000df0 hid_read_timeout$rtcVarDesc 000000018005fdf0 hid-windows.obj
- 0003:00000e30 hid_read_timeout$rtcFrameData 000000018005fe30 hid-windows.obj
- 0003:00000e60 hid_get_feature_report$rtcName$0 000000018005fe60 hid-windows.obj
- 0003:00000e70 hid_get_feature_report$rtcName$1 000000018005fe70 hid-windows.obj
- 0003:00000e80 hid_get_feature_report$rtcVarDesc 000000018005fe80 hid-windows.obj
- 0003:00000f00 hid_get_feature_report$rtcFrameData 000000018005ff00 hid-windows.obj
- 0003:00000f40 register_error$rtcName$0 000000018005ff40 hid-windows.obj
- 0003:00000f50 register_error$rtcVarDesc 000000018005ff50 hid-windows.obj
- 0003:00000f90 register_error$rtcFrameData 000000018005ff90 hid-windows.obj
- 0003:000011b0 fprintf$rtcName$0 00000001800601b0 json_helpers.obj
- 0003:000011c0 fprintf$rtcVarDesc 00000001800601c0 json_helpers.obj
- 0003:00001200 fprintf$rtcFrameData 0000000180060200 json_helpers.obj
- 0003:00001230 json_write_float_array$rtcName$0 0000000180060230 json_helpers.obj
- 0003:00001238 json_write_float_array$rtcName$1 0000000180060238 json_helpers.obj
- 0003:00001240 json_write_float_array$rtcVarDesc 0000000180060240 json_helpers.obj
- 0003:000012c0 json_write_float_array$rtcFrameData 00000001800602c0 json_helpers.obj
- 0003:000012f0 json_write_double_array$rtcName$0 00000001800602f0 json_helpers.obj
- 0003:000012f8 json_write_double_array$rtcName$1 00000001800602f8 json_helpers.obj
- 0003:00001300 json_write_double_array$rtcVarDesc 0000000180060300 json_helpers.obj
- 0003:00001380 json_write_double_array$rtcFrameData 0000000180060380 json_helpers.obj
- 0003:000013b0 parse_float_array$rtcName$0 00000001800603b0 json_helpers.obj
- 0003:000013c0 parse_float_array$rtcVarDesc 00000001800603c0 json_helpers.obj
- 0003:00001400 parse_float_array$rtcFrameData 0000000180060400 json_helpers.obj
- 0003:00001430 json_load_file$rtcName$0 0000000180060430 json_helpers.obj
- 0003:00001438 json_load_file$rtcName$1 0000000180060438 json_helpers.obj
- 0003:00001440 json_load_file$rtcVarDesc 0000000180060440 json_helpers.obj
- 0003:000014c0 json_load_file$rtcFrameData 00000001800604c0 json_helpers.obj
- 0003:000014f0 asprintf$rtcName$0 00000001800604f0 json_helpers.obj
- 0003:00001500 asprintf$rtcVarDesc 0000000180060500 json_helpers.obj
- 0003:00001540 asprintf$rtcFrameData 0000000180060540 json_helpers.obj
- 0003:00001570 json_load_array$rtcName$0 0000000180060570 json_helpers.obj
- 0003:00001580 json_load_array$rtcVarDesc 0000000180060580 json_helpers.obj
- 0003:000015c0 json_load_array$rtcFrameData 00000001800605c0 json_helpers.obj
- 0003:00001640 anglebetween3d$rtcName$0 0000000180060640 linmath.obj
- 0003:00001644 anglebetween3d$rtcName$1 0000000180060644 linmath.obj
- 0003:00001650 anglebetween3d$rtcVarDesc 0000000180060650 linmath.obj
- 0003:000016d0 anglebetween3d$rtcFrameData 00000001800606d0 linmath.obj
- 0003:00001700 angleaxisfrom2vect$rtcName$0 0000000180060700 linmath.obj
- 0003:00001704 angleaxisfrom2vect$rtcName$1 0000000180060704 linmath.obj
- 0003:00001710 angleaxisfrom2vect$rtcVarDesc 0000000180060710 linmath.obj
- 0003:00001790 angleaxisfrom2vect$rtcFrameData 0000000180060790 linmath.obj
- 0003:000017c0 axisanglefromquat$rtcName$0 00000001800607c0 linmath.obj
- 0003:000017d0 axisanglefromquat$rtcVarDesc 00000001800607d0 linmath.obj
- 0003:00001810 axisanglefromquat$rtcFrameData 0000000180060810 linmath.obj
- 0003:00001840 quatfromaxisangle$rtcName$0 0000000180060840 linmath.obj
- 0003:00001850 quatfromaxisangle$rtcVarDesc 0000000180060850 linmath.obj
- 0003:00001890 quatfromaxisangle$rtcFrameData 0000000180060890 linmath.obj
- 0003:000018c0 quattomatrix$rtcName$0 00000001800608c0 linmath.obj
- 0003:000018d0 quattomatrix$rtcVarDesc 00000001800608d0 linmath.obj
- 0003:00001910 quattomatrix$rtcFrameData 0000000180060910 linmath.obj
- 0003:00001940 quatslerp$rtcName$0 0000000180060940 linmath.obj
- 0003:00001944 quatslerp$rtcName$1 0000000180060944 linmath.obj
- 0003:00001948 quatslerp$rtcName$2 0000000180060948 linmath.obj
- 0003:00001950 quatslerp$rtcName$3 0000000180060950 linmath.obj
- 0003:00001958 quatslerp$rtcFrameData 0000000180060958 linmath.obj
- 0003:00001970 quatslerp$rtcVarDesc 0000000180060970 linmath.obj
- 0003:00001ab0 quatrotatevector$rtcName$0 0000000180060ab0 linmath.obj
- 0003:00001ab4 quatrotatevector$rtcName$1 0000000180060ab4 linmath.obj
- 0003:00001ac0 quatrotatevector$rtcVarDesc 0000000180060ac0 linmath.obj
- 0003:00001b40 quatrotatevector$rtcFrameData 0000000180060b40 linmath.obj
- 0003:00001b70 quatfrom2vectors$rtcName$0 0000000180060b70 linmath.obj
- 0003:00001b74 quatfrom2vectors$rtcName$1 0000000180060b74 linmath.obj
- 0003:00001b78 quatfrom2vectors$rtcName$2 0000000180060b78 linmath.obj
- 0003:00001b80 quatfrom2vectors$rtcName$3 0000000180060b80 linmath.obj
- 0003:00001b88 quatfrom2vectors$rtcName$4 0000000180060b88 linmath.obj
- 0003:00001b90 quatfrom2vectors$rtcName$5 0000000180060b90 linmath.obj
- 0003:00001b98 quatfrom2vectors$rtcFrameData 0000000180060b98 linmath.obj
- 0003:00001bb0 quatfrom2vectors$rtcVarDesc 0000000180060bb0 linmath.obj
- 0003:00001d90 rotation_between_vecs_to_m3$rtcName$0 0000000180060d90 linmath.obj
- 0003:00001da0 rotation_between_vecs_to_m3$rtcVarDesc 0000000180060da0 linmath.obj
- 0003:00001de0 rotation_between_vecs_to_m3$rtcFrameData 0000000180060de0 linmath.obj
- 0003:00001e10 inverseM33$rtcName$0 0000000180060e10 linmath.obj
- 0003:00001e20 inverseM33$rtcVarDesc 0000000180060e20 linmath.obj
- 0003:00001e60 inverseM33$rtcFrameData 0000000180060e60 linmath.obj
- 0003:00001e90 quattomatrix33$rtcName$0 0000000180060e90 linmath.obj
- 0003:00001ea0 quattomatrix33$rtcVarDesc 0000000180060ea0 linmath.obj
- 0003:00001ee0 quattomatrix33$rtcFrameData 0000000180060ee0 linmath.obj
- 0003:00002000 OGGetAbsoluteTime$rtcName$0 0000000180061000 os_generic.obj
- 0003:00002010 OGGetAbsoluteTime$rtcVarDesc 0000000180061010 os_generic.obj
- 0003:00002050 OGGetAbsoluteTime$rtcFrameData 0000000180061050 os_generic.obj
- 0003:00002080 OGGetFileTime$rtcName$0 0000000180061080 os_generic.obj
- 0003:00002090 OGGetFileTime$rtcVarDesc 0000000180061090 os_generic.obj
- 0003:000020d0 OGGetFileTime$rtcFrameData 00000001800610d0 os_generic.obj
- 0003:00002100 OGGetSema$rtcName$0 0000000180061100 os_generic.obj
- 0003:00002110 OGGetSema$rtcVarDesc 0000000180061110 os_generic.obj
- 0003:00002150 OGGetSema$rtcFrameData 0000000180061150 os_generic.obj
- 0003:000021a0 ?lens@?1??codes@@9@9 00000001800611a0 puff.obj
- 0003:000021e0 ?lext@?1??codes@@9@9 00000001800611e0 puff.obj
- 0003:00002220 ?dists@?1??codes@@9@9 0000000180061220 puff.obj
- 0003:00002260 ?dext@?1??codes@@9@9 0000000180061260 puff.obj
- 0003:000022a0 ?order@?1??dynamic@@9@9 00000001800612a0 puff.obj
- 0003:00002300 puff$rtcName$0 0000000180061300 puff.obj
- 0003:00002310 puff$rtcVarDesc 0000000180061310 puff.obj
- 0003:00002350 puff$rtcFrameData 0000000180061350 puff.obj
- 0003:00002380 construct$rtcName$0 0000000180061380 puff.obj
- 0003:00002390 construct$rtcVarDesc 0000000180061390 puff.obj
- 0003:000023d0 construct$rtcFrameData 00000001800613d0 puff.obj
- 0003:00002400 fixed$rtcName$0 0000000180061400 puff.obj
- 0003:00002410 fixed$rtcVarDesc 0000000180061410 puff.obj
- 0003:00002450 fixed$rtcFrameData 0000000180061450 puff.obj
- 0003:00002480 dynamic$rtcName$0 0000000180061480 puff.obj
- 0003:00002488 dynamic$rtcName$1 0000000180061488 puff.obj
- 0003:00002490 dynamic$rtcName$2 0000000180061490 puff.obj
- 0003:00002498 dynamic$rtcName$3 0000000180061498 puff.obj
- 0003:000024a0 dynamic$rtcName$4 00000001800614a0 puff.obj
- 0003:000024a8 dynamic$rtcName$5 00000001800614a8 puff.obj
- 0003:000024b0 dynamic$rtcName$6 00000001800614b0 puff.obj
- 0003:000024c0 dynamic$rtcVarDesc 00000001800614c0 puff.obj
- 0003:00002680 dynamic$rtcFrameData 0000000180061680 puff.obj
- 0003:00002700 printf$rtcName$0 0000000180061700 ootx_decoder.obj
- 0003:00002710 printf$rtcVarDesc 0000000180061710 ootx_decoder.obj
- 0003:00002750 printf$rtcFrameData 0000000180061750 ootx_decoder.obj
- 0003:00002780 init_lighthouse_info_v6$rtcName$0 0000000180061780 ootx_decoder.obj
- 0003:00002790 init_lighthouse_info_v6$rtcVarDesc 0000000180061790 ootx_decoder.obj
- 0003:000027d0 init_lighthouse_info_v6$rtcFrameData 00000001800617d0 ootx_decoder.obj
- 0003:00002800 ootx_pump_bit$rtcName$0 0000000180061800 ootx_decoder.obj
- 0003:00002810 ootx_pump_bit$rtcVarDesc 0000000180061810 ootx_decoder.obj
- 0003:00002850 ootx_pump_bit$rtcFrameData 0000000180061850 ootx_decoder.obj
- 0003:00002880 _half_to_float$rtcName$0 0000000180061880 ootx_decoder.obj
- 0003:00002890 _half_to_float$rtcVarDesc 0000000180061890 ootx_decoder.obj
- 0003:000028d0 _half_to_float$rtcFrameData 00000001800618d0 ootx_decoder.obj
- 0003:00002960 PoserData_lighthouse_pose_func$rtcName$0 0000000180061960 poser.obj
- 0003:00002968 PoserData_lighthouse_pose_func$rtcName$1 0000000180061968 poser.obj
- 0003:00002978 PoserData_lighthouse_pose_func$rtcName$2 0000000180061978 poser.obj
- 0003:00002988 PoserData_lighthouse_pose_func$rtcName$3 0000000180061988 poser.obj
- 0003:00002998 PoserData_lighthouse_pose_func$rtcName$4 0000000180061998 poser.obj
- 0003:000029a8 PoserData_lighthouse_pose_func$rtcName$5 00000001800619a8 poser.obj
- 0003:000029bc PoserData_lighthouse_pose_func$rtcName$7 00000001800619bc poser.obj
- 0003:000029c8 PoserData_lighthouse_pose_func$rtcName$6 00000001800619c8 poser.obj
- 0003:000029d8 PoserData_lighthouse_pose_func$rtcName$8 00000001800619d8 poser.obj
- 0003:000029e8 PoserData_lighthouse_pose_func$rtcName$9 00000001800619e8 poser.obj
- 0003:00002a00 PoserData_lighthouse_pose_func$rtcVarDesc 0000000180061a00 poser.obj
- 0003:00002c80 PoserData_lighthouse_pose_func$rtcFrameData 0000000180061c80 poser.obj
- 0003:00002d50 sprintf$rtcName$0 0000000180061d50 poser_charlesslow.obj
- 0003:00002d60 sprintf$rtcVarDesc 0000000180061d60 poser_charlesslow.obj
- 0003:00002da0 sprintf$rtcFrameData 0000000180061da0 poser_charlesslow.obj
- 0003:00002dd0 RunOpti$rtcName$0 0000000180061dd0 poser_charlesslow.obj
- 0003:00002de0 RunOpti$rtcName$1 0000000180061de0 poser_charlesslow.obj
- 0003:00002df0 RunOpti$rtcName$2 0000000180061df0 poser_charlesslow.obj
- 0003:00002e00 RunOpti$rtcName$3 0000000180061e00 poser_charlesslow.obj
- 0003:00002e10 RunOpti$rtcName$4 0000000180061e10 poser_charlesslow.obj
- 0003:00002e24 RunOpti$rtcName$8 0000000180061e24 poser_charlesslow.obj
- 0003:00002e30 RunOpti$rtcName$5 0000000180061e30 poser_charlesslow.obj
- 0003:00002e40 RunOpti$rtcName$6 0000000180061e40 poser_charlesslow.obj
- 0003:00002e50 RunOpti$rtcName$7 0000000180061e50 poser_charlesslow.obj
- 0003:00002e60 RunOpti$rtcName$9 0000000180061e60 poser_charlesslow.obj
- 0003:00002e68 RunOpti$rtcName$10 0000000180061e68 poser_charlesslow.obj
- 0003:00002e78 RunOpti$rtcName$11 0000000180061e78 poser_charlesslow.obj
- 0003:00002e88 RunOpti$rtcFrameData 0000000180061e88 poser_charlesslow.obj
- 0003:00002ea0 RunOpti$rtcVarDesc 0000000180061ea0 poser_charlesslow.obj
- 0003:00003270 PoserCharlesSlow$rtcName$0 0000000180062270 poser_charlesslow.obj
- 0003:00003280 PoserCharlesSlow$rtcName$1 0000000180062280 poser_charlesslow.obj
- 0003:00003290 PoserCharlesSlow$rtcName$2 0000000180062290 poser_charlesslow.obj
- 0003:000032a0 PoserCharlesSlow$rtcName$3 00000001800622a0 poser_charlesslow.obj
- 0003:000032a8 PoserCharlesSlow$rtcName$4 00000001800622a8 poser_charlesslow.obj
- 0003:000032b8 PoserCharlesSlow$rtcName$5 00000001800622b8 poser_charlesslow.obj
- 0003:000032c4 PoserCharlesSlow$rtcName$6 00000001800622c4 poser_charlesslow.obj
- 0003:000032cc PoserCharlesSlow$rtcName$8 00000001800622cc poser_charlesslow.obj
- 0003:000032d0 PoserCharlesSlow$rtcName$7 00000001800622d0 poser_charlesslow.obj
- 0003:000032e0 PoserCharlesSlow$rtcName$9 00000001800622e0 poser_charlesslow.obj
- 0003:000032f0 PoserCharlesSlow$rtcVarDesc 00000001800622f0 poser_charlesslow.obj
- 0003:00003570 PoserCharlesSlow$rtcFrameData 0000000180062570 poser_charlesslow.obj
- 0003:000037b0 OrthoSolve$rtcName$0 00000001800627b0 poser_daveortho.obj
- 0003:000037b4 OrthoSolve$rtcName$1 00000001800627b4 poser_daveortho.obj
- 0003:000037bc OrthoSolve$rtcName$2 00000001800627bc poser_daveortho.obj
- 0003:000037c4 OrthoSolve$rtcName$3 00000001800627c4 poser_daveortho.obj
- 0003:000037cc OrthoSolve$rtcName$4 00000001800627cc poser_daveortho.obj
- 0003:000037d0 OrthoSolve$rtcName$5 00000001800627d0 poser_daveortho.obj
- 0003:000037d4 OrthoSolve$rtcName$6 00000001800627d4 poser_daveortho.obj
- 0003:000037d8 OrthoSolve$rtcName$7 00000001800627d8 poser_daveortho.obj
- 0003:000037dc OrthoSolve$rtcName$8 00000001800627dc poser_daveortho.obj
- 0003:000037e4 OrthoSolve$rtcName$9 00000001800627e4 poser_daveortho.obj
- 0003:000037e8 OrthoSolve$rtcName$10 00000001800627e8 poser_daveortho.obj
- 0003:000037ec OrthoSolve$rtcName$11 00000001800627ec poser_daveortho.obj
- 0003:000037f4 OrthoSolve$rtcName$12 00000001800627f4 poser_daveortho.obj
- 0003:000037f8 OrthoSolve$rtcName$13 00000001800627f8 poser_daveortho.obj
- 0003:000037fc OrthoSolve$rtcName$14 00000001800627fc poser_daveortho.obj
- 0003:00003800 OrthoSolve$rtcName$15 0000000180062800 poser_daveortho.obj
- 0003:00003804 OrthoSolve$rtcName$16 0000000180062804 poser_daveortho.obj
- 0003:00003808 OrthoSolve$rtcName$17 0000000180062808 poser_daveortho.obj
- 0003:00003810 OrthoSolve$rtcName$18 0000000180062810 poser_daveortho.obj
- 0003:00003814 OrthoSolve$rtcName$19 0000000180062814 poser_daveortho.obj
- 0003:00003818 OrthoSolve$rtcName$20 0000000180062818 poser_daveortho.obj
- 0003:00003820 OrthoSolve$rtcName$21 0000000180062820 poser_daveortho.obj
- 0003:00003824 OrthoSolve$rtcName$22 0000000180062824 poser_daveortho.obj
- 0003:0000382c OrthoSolve$rtcName$23 000000018006282c poser_daveortho.obj
- 0003:00003830 OrthoSolve$rtcName$24 0000000180062830 poser_daveortho.obj
- 0003:00003834 OrthoSolve$rtcName$25 0000000180062834 poser_daveortho.obj
- 0003:00003838 OrthoSolve$rtcName$26 0000000180062838 poser_daveortho.obj
- 0003:0000383c OrthoSolve$rtcName$27 000000018006283c poser_daveortho.obj
- 0003:00003840 OrthoSolve$rtcName$28 0000000180062840 poser_daveortho.obj
- 0003:00003844 OrthoSolve$rtcName$29 0000000180062844 poser_daveortho.obj
- 0003:00003848 OrthoSolve$rtcName$30 0000000180062848 poser_daveortho.obj
- 0003:0000384c OrthoSolve$rtcName$31 000000018006284c poser_daveortho.obj
- 0003:00003854 OrthoSolve$rtcName$32 0000000180062854 poser_daveortho.obj
- 0003:0000385c OrthoSolve$rtcName$33 000000018006285c poser_daveortho.obj
- 0003:00003864 OrthoSolve$rtcName$34 0000000180062864 poser_daveortho.obj
- 0003:00003868 OrthoSolve$rtcName$35 0000000180062868 poser_daveortho.obj
- 0003:0000386c OrthoSolve$rtcName$36 000000018006286c poser_daveortho.obj
- 0003:00003870 OrthoSolve$rtcVarDesc 0000000180062870 poser_daveortho.obj
- 0003:000041b0 OrthoSolve$rtcFrameData 00000001800631b0 poser_daveortho.obj
- 0003:000043d0 PoserDaveOrtho$rtcName$0 00000001800633d0 poser_daveortho.obj
- 0003:000043d8 PoserDaveOrtho$rtcName$1 00000001800633d8 poser_daveortho.obj
- 0003:000043e0 PoserDaveOrtho$rtcName$2 00000001800633e0 poser_daveortho.obj
- 0003:000043e8 PoserDaveOrtho$rtcName$3 00000001800633e8 poser_daveortho.obj
- 0003:000043f0 PoserDaveOrtho$rtcName$4 00000001800633f0 poser_daveortho.obj
- 0003:000043f8 PoserDaveOrtho$rtcName$5 00000001800633f8 poser_daveortho.obj
- 0003:000043fc PoserDaveOrtho$rtcName$14 00000001800633fc poser_daveortho.obj
- 0003:00004400 PoserDaveOrtho$rtcName$6 0000000180063400 poser_daveortho.obj
- 0003:0000440c PoserDaveOrtho$rtcName$12 000000018006340c poser_daveortho.obj
- 0003:00004414 PoserDaveOrtho$rtcName$15 0000000180063414 poser_daveortho.obj
- 0003:00004418 PoserDaveOrtho$rtcName$7 0000000180063418 poser_daveortho.obj
- 0003:00004428 PoserDaveOrtho$rtcName$8 0000000180063428 poser_daveortho.obj
- 0003:00004438 PoserDaveOrtho$rtcName$9 0000000180063438 poser_daveortho.obj
- 0003:00004440 PoserDaveOrtho$rtcName$10 0000000180063440 poser_daveortho.obj
- 0003:00004448 PoserDaveOrtho$rtcName$11 0000000180063448 poser_daveortho.obj
- 0003:00004450 PoserDaveOrtho$rtcName$13 0000000180063450 poser_daveortho.obj
- 0003:00004458 PoserDaveOrtho$rtcName$16 0000000180063458 poser_daveortho.obj
- 0003:00004460 PoserDaveOrtho$rtcVarDesc 0000000180063460 poser_daveortho.obj
- 0003:000048a0 PoserDaveOrtho$rtcFrameData 00000001800638a0 poser_daveortho.obj
- 0003:00004ae0 getGradient$rtcName$0 0000000180063ae0 poser_octavioradii.obj
- 0003:00004af0 getGradient$rtcVarDesc 0000000180063af0 poser_octavioradii.obj
- 0003:00004b30 getGradient$rtcFrameData 0000000180063b30 poser_octavioradii.obj
- 0003:00004b60 RefineEstimateUsingGradientDescentRadii$rtcName$0 0000000180063b60 poser_octavioradii.obj
- 0003:00004b68 RefineEstimateUsingGradientDescentRadii$rtcName$1 0000000180063b68 poser_octavioradii.obj
- 0003:00004b74 RefineEstimateUsingGradientDescentRadii$rtcName$2 0000000180063b74 poser_octavioradii.obj
- 0003:00004b80 RefineEstimateUsingGradientDescentRadii$rtcName$3 0000000180063b80 poser_octavioradii.obj
- 0003:00004b8c RefineEstimateUsingGradientDescentRadii$rtcName$4 0000000180063b8c poser_octavioradii.obj
- 0003:00004b98 RefineEstimateUsingGradientDescentRadii$rtcName$5 0000000180063b98 poser_octavioradii.obj
- 0003:00004ba8 RefineEstimateUsingGradientDescentRadii$rtcName$6 0000000180063ba8 poser_octavioradii.obj
- 0003:00004bb0 RefineEstimateUsingGradientDescentRadii$rtcVarDesc 0000000180063bb0 poser_octavioradii.obj
- 0003:00004d70 RefineEstimateUsingGradientDescentRadii$rtcFrameData 0000000180063d70 poser_octavioradii.obj
- 0003:00004df0 SolveForLighthouseRadii$rtcName$0 0000000180063df0 poser_octavioradii.obj
- 0003:00004dfc SolveForLighthouseRadii$rtcName$1 0000000180063dfc poser_octavioradii.obj
- 0003:00004e04 SolveForLighthouseRadii$rtcName$2 0000000180063e04 poser_octavioradii.obj
- 0003:00004e10 SolveForLighthouseRadii$rtcVarDesc 0000000180063e10 poser_octavioradii.obj
- 0003:00004ed0 SolveForLighthouseRadii$rtcFrameData 0000000180063ed0 poser_octavioradii.obj
- 0003:00004f10 QuickPose$rtcName$0 0000000180063f10 poser_octavioradii.obj
- 0003:00004f18 QuickPose$rtcName$1 0000000180063f18 poser_octavioradii.obj
- 0003:00004f20 QuickPose$rtcName$2 0000000180063f20 poser_octavioradii.obj
- 0003:00004f24 QuickPose$rtcName$3 0000000180063f24 poser_octavioradii.obj
- 0003:00004f30 QuickPose$rtcVarDesc 0000000180063f30 poser_octavioradii.obj
- 0003:00005030 QuickPose$rtcFrameData 0000000180064030 poser_octavioradii.obj
- 0003:00005080 PoserOctavioRadii$rtcName$0 0000000180064080 poser_octavioradii.obj
- 0003:00005090 PoserOctavioRadii$rtcName$1 0000000180064090 poser_octavioradii.obj
- 0003:000050a0 PoserOctavioRadii$rtcName$2 00000001800640a0 poser_octavioradii.obj
- 0003:000050b0 PoserOctavioRadii$rtcName$3 00000001800640b0 poser_octavioradii.obj
- 0003:000050c0 PoserOctavioRadii$rtcVarDesc 00000001800640c0 poser_octavioradii.obj
- 0003:000051c0 PoserOctavioRadii$rtcFrameData 00000001800641c0 poser_octavioradii.obj
- 0003:000052d0 WORLD_BOUNDS 00000001800642d0 poser_turveytori.obj
- 0003:000052d8 DefaultPointsPerOuterDiameter 00000001800642d8 poser_turveytori.obj
- 0003:000052e0 GetRotationMatrixForTorus$rtcName$0 00000001800642e0 poser_turveytori.obj
- 0003:000052e8 GetRotationMatrixForTorus$rtcName$1 00000001800642e8 poser_turveytori.obj
- 0003:000052ec GetRotationMatrixForTorus$rtcName$2 00000001800642ec poser_turveytori.obj
- 0003:000052f0 GetRotationMatrixForTorus$rtcVarDesc 00000001800642f0 poser_turveytori.obj
- 0003:000053b0 GetRotationMatrixForTorus$rtcFrameData 00000001800643b0 poser_turveytori.obj
- 0003:000053f0 RotateAndTranslatePoint$rtcName$0 00000001800643f0 poser_turveytori.obj
- 0003:000053f4 RotateAndTranslatePoint$rtcName$1 00000001800643f4 poser_turveytori.obj
- 0003:00005400 RotateAndTranslatePoint$rtcVarDesc 0000000180064400 poser_turveytori.obj
- 0003:00005480 RotateAndTranslatePoint$rtcFrameData 0000000180064480 poser_turveytori.obj
- 0003:000054b0 angleFromPoints$rtcName$0 00000001800644b0 poser_turveytori.obj
- 0003:000054b4 angleFromPoints$rtcName$1 00000001800644b4 poser_turveytori.obj
- 0003:000054b8 angleFromPoints$rtcName$2 00000001800644b8 poser_turveytori.obj
- 0003:000054c0 angleFromPoints$rtcName$3 00000001800644c0 poser_turveytori.obj
- 0003:000054c8 angleFromPoints$rtcFrameData 00000001800644c8 poser_turveytori.obj
- 0003:000054e0 angleFromPoints$rtcVarDesc 00000001800644e0 poser_turveytori.obj
- 0003:00005620 midpoint$rtcName$0 0000000180064620 poser_turveytori.obj
- 0003:00005630 midpoint$rtcVarDesc 0000000180064630 poser_turveytori.obj
- 0003:00005670 midpoint$rtcFrameData 0000000180064670 poser_turveytori.obj
- 0003:000056a0 estimateToroidalAndPoloidalAngleOfPoint$rtcName$0 00000001800646a0 poser_turveytori.obj
- 0003:000056a4 estimateToroidalAndPoloidalAngleOfPoint$rtcName$1 00000001800646a4 poser_turveytori.obj
- 0003:000056ac estimateToroidalAndPoloidalAngleOfPoint$rtcName$2 00000001800646ac poser_turveytori.obj
- 0003:000056b0 estimateToroidalAndPoloidalAngleOfPoint$rtcName$3 00000001800646b0 poser_turveytori.obj
- 0003:000056b8 estimateToroidalAndPoloidalAngleOfPoint$rtcName$4 00000001800646b8 poser_turveytori.obj
- 0003:000056c0 estimateToroidalAndPoloidalAngleOfPoint$rtcName$5 00000001800646c0 poser_turveytori.obj
- 0003:000056c8 estimateToroidalAndPoloidalAngleOfPoint$rtcFrameData 00000001800646c8 poser_turveytori.obj
- 0003:000056e0 estimateToroidalAndPoloidalAngleOfPoint$rtcVarDesc 00000001800646e0 poser_turveytori.obj
- 0003:000058c0 calculateTorusPointFromAngles$rtcName$0 00000001800648c0 poser_turveytori.obj
- 0003:000058c8 calculateTorusPointFromAngles$rtcName$1 00000001800648c8 poser_turveytori.obj
- 0003:000058cc calculateTorusPointFromAngles$rtcName$2 00000001800648cc poser_turveytori.obj
- 0003:000058d0 calculateTorusPointFromAngles$rtcVarDesc 00000001800648d0 poser_turveytori.obj
- 0003:00005990 calculateTorusPointFromAngles$rtcFrameData 0000000180064990 poser_turveytori.obj
- 0003:000059d0 getPointFitnessForPna$rtcName$0 00000001800649d0 poser_turveytori.obj
- 0003:000059e0 getPointFitnessForPna$rtcName$1 00000001800649e0 poser_turveytori.obj
- 0003:000059f0 getPointFitnessForPna$rtcName$2 00000001800649f0 poser_turveytori.obj
- 0003:00005a00 getPointFitnessForPna$rtcName$3 0000000180064a00 poser_turveytori.obj
- 0003:00005a10 getPointFitnessForPna$rtcName$4 0000000180064a10 poser_turveytori.obj
- 0003:00005a20 getPointFitnessForPna$rtcVarDesc 0000000180064a20 poser_turveytori.obj
- 0003:00005b60 getPointFitnessForPna$rtcFrameData 0000000180064b60 poser_turveytori.obj
- 0003:00005bd0 getPointFitness$rtcName$0 0000000180064bd0 poser_turveytori.obj
- 0003:00005be0 getPointFitness$rtcVarDesc 0000000180064be0 poser_turveytori.obj
- 0003:00005c20 getPointFitness$rtcFrameData 0000000180064c20 poser_turveytori.obj
- 0003:00005c50 getGradient$rtcName$0 0000000180064c50 poser_turveytori.obj
- 0003:00005c58 getGradient$rtcName$1 0000000180064c58 poser_turveytori.obj
- 0003:00005c68 getGradient$rtcName$2 0000000180064c68 poser_turveytori.obj
- 0003:00005c78 getGradient$rtcName$3 0000000180064c78 poser_turveytori.obj
- 0003:00005c88 getGradient$rtcName$4 0000000180064c88 poser_turveytori.obj
- 0003:00005c98 getGradient$rtcName$5 0000000180064c98 poser_turveytori.obj
- 0003:00005ca8 getGradient$rtcName$6 0000000180064ca8 poser_turveytori.obj
- 0003:00005cc0 getGradient$rtcVarDesc 0000000180064cc0 poser_turveytori.obj
- 0003:00005e80 getGradient$rtcFrameData 0000000180064e80 poser_turveytori.obj
- 0003:00005f10 getNormalizedAndScaledVector$rtcName$0 0000000180064f10 poser_turveytori.obj
- 0003:00005f20 getNormalizedAndScaledVector$rtcVarDesc 0000000180064f20 poser_turveytori.obj
- 0003:00005f60 getNormalizedAndScaledVector$rtcFrameData 0000000180064f60 poser_turveytori.obj
- 0003:00005f90 getAvgPoints$rtcName$0 0000000180064f90 poser_turveytori.obj
- 0003:00005fa0 getAvgPoints$rtcVarDesc 0000000180064fa0 poser_turveytori.obj
- 0003:00005fe0 getAvgPoints$rtcFrameData 0000000180064fe0 poser_turveytori.obj
- 0003:00006010 RefineEstimateUsingModifiedGradientDescent1$rtcName$0 0000000180065010 poser_turveytori.obj
- 0003:0000601c RefineEstimateUsingModifiedGradientDescent1$rtcName$1 000000018006501c poser_turveytori.obj
- 0003:00006028 RefineEstimateUsingModifiedGradientDescent1$rtcName$2 0000000180065028 poser_turveytori.obj
- 0003:00006038 RefineEstimateUsingModifiedGradientDescent1$rtcName$3 0000000180065038 poser_turveytori.obj
- 0003:00006044 RefineEstimateUsingModifiedGradientDescent1$rtcName$4 0000000180065044 poser_turveytori.obj
- 0003:00006050 RefineEstimateUsingModifiedGradientDescent1$rtcName$5 0000000180065050 poser_turveytori.obj
- 0003:00006060 RefineEstimateUsingModifiedGradientDescent1$rtcName$6 0000000180065060 poser_turveytori.obj
- 0003:0000606c RefineEstimateUsingModifiedGradientDescent1$rtcName$7 000000018006506c poser_turveytori.obj
- 0003:00006078 RefineEstimateUsingModifiedGradientDescent1$rtcName$8 0000000180065078 poser_turveytori.obj
- 0003:00006088 RefineEstimateUsingModifiedGradientDescent1$rtcName$9 0000000180065088 poser_turveytori.obj
- 0003:00006090 RefineEstimateUsingModifiedGradientDescent1$rtcVarDesc 0000000180065090 poser_turveytori.obj
- 0003:00006310 RefineEstimateUsingModifiedGradientDescent1$rtcFrameData 0000000180065310 poser_turveytori.obj
- 0003:000063c0 RotationEstimateFitnessOld$rtcName$0 00000001800653c0 poser_turveytori.obj
- 0003:000063c4 RotationEstimateFitnessOld$rtcName$1 00000001800653c4 poser_turveytori.obj
- 0003:000063c8 RotationEstimateFitnessOld$rtcName$2 00000001800653c8 poser_turveytori.obj
- 0003:000063d0 RotationEstimateFitnessOld$rtcName$3 00000001800653d0 poser_turveytori.obj
- 0003:000063d4 RotationEstimateFitnessOld$rtcName$4 00000001800653d4 poser_turveytori.obj
- 0003:000063d8 RotationEstimateFitnessOld$rtcName$5 00000001800653d8 poser_turveytori.obj
- 0003:000063e0 RotationEstimateFitnessOld$rtcName$6 00000001800653e0 poser_turveytori.obj
- 0003:00006400 RotationEstimateFitnessOld$rtcName$7 0000000180065400 poser_turveytori.obj
- 0003:00006420 RotationEstimateFitnessOld$rtcName$8 0000000180065420 poser_turveytori.obj
- 0003:00006430 RotationEstimateFitnessOld$rtcVarDesc 0000000180065430 poser_turveytori.obj
- 0003:00006670 RotationEstimateFitnessOld$rtcFrameData 0000000180065670 poser_turveytori.obj
- 0003:00006710 RotationEstimateFitnessAxisAngle$rtcName$0 0000000180065710 poser_turveytori.obj
- 0003:00006720 RotationEstimateFitnessAxisAngle$rtcName$1 0000000180065720 poser_turveytori.obj
- 0003:00006730 RotationEstimateFitnessAxisAngle$rtcName$2 0000000180065730 poser_turveytori.obj
- 0003:00006740 RotationEstimateFitnessAxisAngle$rtcVarDesc 0000000180065740 poser_turveytori.obj
- 0003:00006800 RotationEstimateFitnessAxisAngle$rtcFrameData 0000000180065800 poser_turveytori.obj
- 0003:00006850 RotationEstimateFitnessAxisAngleOriginal$rtcName$0 0000000180065850 poser_turveytori.obj
- 0003:00006854 RotationEstimateFitnessAxisAngleOriginal$rtcName$1 0000000180065854 poser_turveytori.obj
- 0003:00006858 RotationEstimateFitnessAxisAngleOriginal$rtcName$2 0000000180065858 poser_turveytori.obj
- 0003:00006860 RotationEstimateFitnessAxisAngleOriginal$rtcName$3 0000000180065860 poser_turveytori.obj
- 0003:00006864 RotationEstimateFitnessAxisAngleOriginal$rtcName$4 0000000180065864 poser_turveytori.obj
- 0003:00006868 RotationEstimateFitnessAxisAngleOriginal$rtcName$5 0000000180065868 poser_turveytori.obj
- 0003:00006870 RotationEstimateFitnessAxisAngleOriginal$rtcName$6 0000000180065870 poser_turveytori.obj
- 0003:00006890 RotationEstimateFitnessAxisAngleOriginal$rtcName$7 0000000180065890 poser_turveytori.obj
- 0003:000068b0 RotationEstimateFitnessAxisAngleOriginal$rtcName$8 00000001800658b0 poser_turveytori.obj
- 0003:000068c0 RotationEstimateFitnessAxisAngleOriginal$rtcVarDesc 00000001800658c0 poser_turveytori.obj
- 0003:00006b00 RotationEstimateFitnessAxisAngleOriginal$rtcFrameData 0000000180065b00 poser_turveytori.obj
- 0003:00006ba0 RotationEstimateFitnessQuaternion$rtcName$0 0000000180065ba0 poser_turveytori.obj
- 0003:00006bac RotationEstimateFitnessQuaternion$rtcName$1 0000000180065bac poser_turveytori.obj
- 0003:00006bb0 RotationEstimateFitnessQuaternion$rtcName$2 0000000180065bb0 poser_turveytori.obj
- 0003:00006bb4 RotationEstimateFitnessQuaternion$rtcName$3 0000000180065bb4 poser_turveytori.obj
- 0003:00006bbc RotationEstimateFitnessQuaternion$rtcName$4 0000000180065bbc poser_turveytori.obj
- 0003:00006bc0 RotationEstimateFitnessQuaternion$rtcName$5 0000000180065bc0 poser_turveytori.obj
- 0003:00006bc4 RotationEstimateFitnessQuaternion$rtcName$6 0000000180065bc4 poser_turveytori.obj
- 0003:00006bcc RotationEstimateFitnessQuaternion$rtcName$9 0000000180065bcc poser_turveytori.obj
- 0003:00006bd0 RotationEstimateFitnessQuaternion$rtcName$7 0000000180065bd0 poser_turveytori.obj
- 0003:00006bf0 RotationEstimateFitnessQuaternion$rtcName$8 0000000180065bf0 poser_turveytori.obj
- 0003:00006c10 RotationEstimateFitnessQuaternion$rtcVarDesc 0000000180065c10 poser_turveytori.obj
- 0003:00006e90 RotationEstimateFitnessQuaternion$rtcFrameData 0000000180065e90 poser_turveytori.obj
- 0003:00006f40 getRotationGradientQuaternion$rtcName$0 0000000180065f40 poser_turveytori.obj
- 0003:00006f4c getRotationGradientQuaternion$rtcName$1 0000000180065f4c poser_turveytori.obj
- 0003:00006f50 getRotationGradientQuaternion$rtcName$2 0000000180065f50 poser_turveytori.obj
- 0003:00006f5c getRotationGradientQuaternion$rtcName$3 0000000180065f5c poser_turveytori.obj
- 0003:00006f60 getRotationGradientQuaternion$rtcName$4 0000000180065f60 poser_turveytori.obj
- 0003:00006f6c getRotationGradientQuaternion$rtcName$5 0000000180065f6c poser_turveytori.obj
- 0003:00006f70 getRotationGradientQuaternion$rtcName$6 0000000180065f70 poser_turveytori.obj
- 0003:00006f7c getRotationGradientQuaternion$rtcName$7 0000000180065f7c poser_turveytori.obj
- 0003:00006f80 getRotationGradientQuaternion$rtcVarDesc 0000000180065f80 poser_turveytori.obj
- 0003:00007180 getRotationGradientQuaternion$rtcFrameData 0000000180066180 poser_turveytori.obj
- 0003:00007210 getRotationGradientAxisAngle$rtcName$0 0000000180066210 poser_turveytori.obj
- 0003:0000721c getRotationGradientAxisAngle$rtcName$1 000000018006621c poser_turveytori.obj
- 0003:00007220 getRotationGradientAxisAngle$rtcName$2 0000000180066220 poser_turveytori.obj
- 0003:0000722c getRotationGradientAxisAngle$rtcName$3 000000018006622c poser_turveytori.obj
- 0003:00007230 getRotationGradientAxisAngle$rtcName$4 0000000180066230 poser_turveytori.obj
- 0003:0000723c getRotationGradientAxisAngle$rtcName$5 000000018006623c poser_turveytori.obj
- 0003:00007248 getRotationGradientAxisAngle$rtcName$6 0000000180066248 poser_turveytori.obj
- 0003:00007254 getRotationGradientAxisAngle$rtcName$7 0000000180066254 poser_turveytori.obj
- 0003:00007260 getRotationGradientAxisAngle$rtcVarDesc 0000000180066260 poser_turveytori.obj
- 0003:00007460 getRotationGradientAxisAngle$rtcFrameData 0000000180066460 poser_turveytori.obj
- 0003:000074f0 RefineRotationEstimateAxisAngle$rtcName$0 00000001800664f0 poser_turveytori.obj
- 0003:000074f8 RefineRotationEstimateAxisAngle$rtcName$1 00000001800664f8 poser_turveytori.obj
- 0003:00007504 RefineRotationEstimateAxisAngle$rtcName$2 0000000180066504 poser_turveytori.obj
- 0003:00007510 RefineRotationEstimateAxisAngle$rtcName$3 0000000180066510 poser_turveytori.obj
- 0003:0000751c RefineRotationEstimateAxisAngle$rtcName$4 000000018006651c poser_turveytori.obj
- 0003:00007528 RefineRotationEstimateAxisAngle$rtcName$5 0000000180066528 poser_turveytori.obj
- 0003:00007538 RefineRotationEstimateAxisAngle$rtcName$6 0000000180066538 poser_turveytori.obj
- 0003:00007540 RefineRotationEstimateAxisAngle$rtcVarDesc 0000000180066540 poser_turveytori.obj
- 0003:00007700 RefineRotationEstimateAxisAngle$rtcFrameData 0000000180066700 poser_turveytori.obj
- 0003:00007780 RefineRotationEstimateQuaternion$rtcName$0 0000000180066780 poser_turveytori.obj
- 0003:00007788 RefineRotationEstimateQuaternion$rtcName$1 0000000180066788 poser_turveytori.obj
- 0003:00007794 RefineRotationEstimateQuaternion$rtcName$2 0000000180066794 poser_turveytori.obj
- 0003:000077a0 RefineRotationEstimateQuaternion$rtcName$3 00000001800667a0 poser_turveytori.obj
- 0003:000077ac RefineRotationEstimateQuaternion$rtcName$4 00000001800667ac poser_turveytori.obj
- 0003:000077b8 RefineRotationEstimateQuaternion$rtcName$5 00000001800667b8 poser_turveytori.obj
- 0003:000077c8 RefineRotationEstimateQuaternion$rtcName$6 00000001800667c8 poser_turveytori.obj
- 0003:000077d0 RefineRotationEstimateQuaternion$rtcVarDesc 00000001800667d0 poser_turveytori.obj
- 0003:00007990 RefineRotationEstimateQuaternion$rtcFrameData 0000000180066990 poser_turveytori.obj
- 0003:00007a10 SolveForRotation$rtcName$0 0000000180066a10 poser_turveytori.obj
- 0003:00007a18 SolveForRotation$rtcName$1 0000000180066a18 poser_turveytori.obj
- 0003:00007a20 SolveForRotation$rtcVarDesc 0000000180066a20 poser_turveytori.obj
- 0003:00007aa0 SolveForRotation$rtcFrameData 0000000180066aa0 poser_turveytori.obj
- 0003:00007ad0 SolveForRotationQuat$rtcName$0 0000000180066ad0 poser_turveytori.obj
- 0003:00007ae8 SolveForRotationQuat$rtcName$1 0000000180066ae8 poser_turveytori.obj
- 0003:00007af0 SolveForRotationQuat$rtcName$2 0000000180066af0 poser_turveytori.obj
- 0003:00007af8 SolveForRotationQuat$rtcFrameData 0000000180066af8 poser_turveytori.obj
- 0003:00007b10 SolveForRotationQuat$rtcVarDesc 0000000180066b10 poser_turveytori.obj
- 0003:00007c10 SolveForLighthouse$rtcName$0 0000000180066c10 poser_turveytori.obj
- 0003:00007c14 SolveForLighthouse$rtcName$3 0000000180066c14 poser_turveytori.obj
- 0003:00007c18 SolveForLighthouse$rtcName$1 0000000180066c18 poser_turveytori.obj
- 0003:00007c20 SolveForLighthouse$rtcName$2 0000000180066c20 poser_turveytori.obj
- 0003:00007c2c SolveForLighthouse$rtcName$5 0000000180066c2c poser_turveytori.obj
- 0003:00007c30 SolveForLighthouse$rtcName$4 0000000180066c30 poser_turveytori.obj
- 0003:00007c44 SolveForLighthouse$rtcName$6 0000000180066c44 poser_turveytori.obj
- 0003:00007c48 SolveForLighthouse$rtcName$7 0000000180066c48 poser_turveytori.obj
- 0003:00007c50 SolveForLighthouse$rtcName$8 0000000180066c50 poser_turveytori.obj
- 0003:00007c58 SolveForLighthouse$rtcName$9 0000000180066c58 poser_turveytori.obj
- 0003:00007c60 SolveForLighthouse$rtcName$10 0000000180066c60 poser_turveytori.obj
- 0003:00007c6c SolveForLighthouse$rtcName$11 0000000180066c6c poser_turveytori.obj
- 0003:00007c78 SolveForLighthouse$rtcName$12 0000000180066c78 poser_turveytori.obj
- 0003:00007c88 SolveForLighthouse$rtcName$13 0000000180066c88 poser_turveytori.obj
- 0003:00007c90 SolveForLighthouse$rtcName$14 0000000180066c90 poser_turveytori.obj
- 0003:00007c9c SolveForLighthouse$rtcName$15 0000000180066c9c poser_turveytori.obj
- 0003:00007ca4 SolveForLighthouse$rtcName$16 0000000180066ca4 poser_turveytori.obj
- 0003:00007cb0 SolveForLighthouse$rtcName$17 0000000180066cb0 poser_turveytori.obj
- 0003:00007cc0 SolveForLighthouse$rtcName$18 0000000180066cc0 poser_turveytori.obj
- 0003:00007cc8 SolveForLighthouse$rtcName$19 0000000180066cc8 poser_turveytori.obj
- 0003:00007cd8 SolveForLighthouse$rtcFrameData 0000000180066cd8 poser_turveytori.obj
- 0003:00007cf0 SolveForLighthouse$rtcVarDesc 0000000180066cf0 poser_turveytori.obj
- 0003:00008320 QuickPose$rtcName$0 0000000180067320 poser_turveytori.obj
- 0003:00008328 QuickPose$rtcName$1 0000000180067328 poser_turveytori.obj
- 0003:00008330 QuickPose$rtcName$2 0000000180067330 poser_turveytori.obj
- 0003:00008338 QuickPose$rtcFrameData 0000000180067338 poser_turveytori.obj
- 0003:00008350 QuickPose$rtcVarDesc 0000000180067350 poser_turveytori.obj
- 0003:00008440 PoserTurveyTori$rtcName$0 0000000180067440 poser_turveytori.obj
- 0003:00008450 PoserTurveyTori$rtcName$1 0000000180067450 poser_turveytori.obj
- 0003:0000845c PoserTurveyTori$rtcName$2 000000018006745c poser_turveytori.obj
- 0003:00008464 PoserTurveyTori$rtcName$3 0000000180067464 poser_turveytori.obj
- 0003:0000846c PoserTurveyTori$rtcName$4 000000018006746c poser_turveytori.obj
- 0003:00008474 PoserTurveyTori$rtcName$7 0000000180067474 poser_turveytori.obj
- 0003:0000847c PoserTurveyTori$rtcName$8 000000018006747c poser_turveytori.obj
- 0003:00008480 PoserTurveyTori$rtcName$5 0000000180067480 poser_turveytori.obj
- 0003:00008490 PoserTurveyTori$rtcName$6 0000000180067490 poser_turveytori.obj
- 0003:00008498 PoserTurveyTori$rtcName$9 0000000180067498 poser_turveytori.obj
- 0003:000084a0 PoserTurveyTori$rtcName$10 00000001800674a0 poser_turveytori.obj
- 0003:000084a8 PoserTurveyTori$rtcName$11 00000001800674a8 poser_turveytori.obj
- 0003:000084b0 PoserTurveyTori$rtcName$12 00000001800674b0 poser_turveytori.obj
- 0003:000084b4 PoserTurveyTori$rtcName$13 00000001800674b4 poser_turveytori.obj
- 0003:000084c0 PoserTurveyTori$rtcVarDesc 00000001800674c0 poser_turveytori.obj
- 0003:00008840 PoserTurveyTori$rtcFrameData 0000000180067840 poser_turveytori.obj
- 0003:00008c00 survive_startup$rtcName$0 0000000180067c00 survive.obj
- 0003:00008c08 survive_startup$rtcName$1 0000000180067c08 survive.obj
- 0003:00008c10 survive_startup$rtcName$2 0000000180067c10 survive.obj
- 0003:00008c18 survive_startup$rtcName$3 0000000180067c18 survive.obj
- 0003:00008c20 survive_startup$rtcName$4 0000000180067c20 survive.obj
- 0003:00008c28 survive_startup$rtcFrameData 0000000180067c28 survive.obj
- 0003:00008c40 survive_startup$rtcVarDesc 0000000180067c40 survive.obj
- 0003:00008dd0 survive_close$rtcName$0 0000000180067dd0 survive.obj
- 0003:00008dd8 survive_close$rtcName$1 0000000180067dd8 survive.obj
- 0003:00008de0 survive_close$rtcName$2 0000000180067de0 survive.obj
- 0003:00008de8 survive_close$rtcFrameData 0000000180067de8 survive.obj
- 0003:00008e00 survive_close$rtcVarDesc 0000000180067e00 survive.obj
- 0003:00008ef0 survive_simple_inflate$rtcName$0 0000000180067ef0 survive.obj
- 0003:00008ef4 survive_simple_inflate$rtcName$1 0000000180067ef4 survive.obj
- 0003:00008ef8 survive_simple_inflate$rtcName$2 0000000180067ef8 survive.obj
- 0003:00008f00 survive_simple_inflate$rtcVarDesc 0000000180067f00 survive.obj
- 0003:00008fc0 survive_simple_inflate$rtcFrameData 0000000180067fc0 survive.obj
- 0003:00009000 GetDriverByConfig$rtcName$0 0000000180068000 survive.obj
- 0003:00009008 GetDriverByConfig$rtcName$1 0000000180068008 survive.obj
- 0003:00009010 GetDriverByConfig$rtcName$2 0000000180068010 survive.obj
- 0003:00009018 GetDriverByConfig$rtcName$3 0000000180068018 survive.obj
- 0003:00009020 GetDriverByConfig$rtcName$4 0000000180068020 survive.obj
- 0003:00009028 GetDriverByConfig$rtcFrameData 0000000180068028 survive.obj
- 0003:00009040 GetDriverByConfig$rtcVarDesc 0000000180068040 survive.obj
- 0003:000099b0 snprintf$rtcName$0 00000001800689b0 survive_cal.obj
- 0003:000099c0 snprintf$rtcVarDesc 00000001800689c0 survive_cal.obj
- 0003:00009a00 snprintf$rtcFrameData 0000000180068a00 survive_cal.obj
- 0003:00009a30 survive_cal_install$rtcName$0 0000000180068a30 survive_cal.obj
- 0003:00009a38 survive_cal_install$rtcName$1 0000000180068a38 survive_cal.obj
- 0003:00009a40 survive_cal_install$rtcName$2 0000000180068a40 survive_cal.obj
- 0003:00009a48 survive_cal_install$rtcName$3 0000000180068a48 survive_cal.obj
- 0003:00009a50 survive_cal_install$rtcVarDesc 0000000180068a50 survive_cal.obj
- 0003:00009b50 survive_cal_install$rtcFrameData 0000000180068b50 survive_cal.obj
- 0003:00009ba0 survive_cal_angle$rtcName$0 0000000180068ba0 survive_cal.obj
- 0003:00009ba8 survive_cal_angle$rtcName$1 0000000180068ba8 survive_cal.obj
- 0003:00009bb0 survive_cal_angle$rtcName$2 0000000180068bb0 survive_cal.obj
- 0003:00009bb8 survive_cal_angle$rtcFrameData 0000000180068bb8 survive_cal.obj
- 0003:00009bd0 survive_cal_angle$rtcVarDesc 0000000180068bd0 survive_cal.obj
- 0003:00009cc0 handle_calibration$rtcName$0 0000000180068cc0 survive_cal.obj
- 0003:00009ccc handle_calibration$rtcName$1 0000000180068ccc survive_cal.obj
- 0003:00009cd4 handle_calibration$rtcName$2 0000000180068cd4 survive_cal.obj
- 0003:00009cdc handle_calibration$rtcName$3 0000000180068cdc survive_cal.obj
- 0003:00009ce4 handle_calibration$rtcName$4 0000000180068ce4 survive_cal.obj
- 0003:00009ce8 handle_calibration$rtcName$5 0000000180068ce8 survive_cal.obj
- 0003:00009cf0 handle_calibration$rtcName$6 0000000180068cf0 survive_cal.obj
- 0003:00009cfc handle_calibration$rtcName$7 0000000180068cfc survive_cal.obj
- 0003:00009d04 handle_calibration$rtcName$8 0000000180068d04 survive_cal.obj
- 0003:00009d10 handle_calibration$rtcVarDesc 0000000180068d10 survive_cal.obj
- 0003:00009f50 handle_calibration$rtcFrameData 0000000180068f50 survive_cal.obj
- 0003:00009ff0 ootx_packet_clbk_d$rtcName$0 0000000180068ff0 survive_cal.obj
- 0003:00009ff8 ootx_packet_clbk_d$rtcName$1 0000000180068ff8 survive_cal.obj
- 0003:0000a000 ootx_packet_clbk_d$rtcVarDesc 0000000180069000 survive_cal.obj
- 0003:0000a080 ootx_packet_clbk_d$rtcFrameData 0000000180069080 survive_cal.obj
- 0003:0000a5e0 HandleOOTX$rtcName$0 00000001800695e0 survive_charlesbiguator.obj
- 0003:0000a5f0 HandleOOTX$rtcVarDesc 00000001800695f0 survive_charlesbiguator.obj
- 0003:0000a630 HandleOOTX$rtcFrameData 0000000180069630 survive_charlesbiguator.obj
- 0003:0000a660 DisambiguatorCharles$rtcName$0 0000000180069660 survive_charlesbiguator.obj
- 0003:0000a668 DisambiguatorCharles$rtcName$1 0000000180069668 survive_charlesbiguator.obj
- 0003:0000a670 DisambiguatorCharles$rtcVarDesc 0000000180069670 survive_charlesbiguator.obj
- 0003:0000a6f0 DisambiguatorCharles$rtcFrameData 00000001800696f0 survive_charlesbiguator.obj
- 0003:0000a7e0 config_read_lighthouse$rtcName$0 00000001800697e0 survive_config.obj
- 0003:0000a7f0 config_read_lighthouse$rtcVarDesc 00000001800697f0 survive_config.obj
- 0003:0000a830 config_read_lighthouse$rtcFrameData 0000000180069830 survive_config.obj
- 0003:0000a860 parse_floats$rtcName$0 0000000180069860 survive_config.obj
- 0003:0000a868 parse_floats$rtcName$1 0000000180069868 survive_config.obj
- 0003:0000a880 parse_floats$rtcVarDesc 0000000180069880 survive_config.obj
- 0003:0000a900 parse_floats$rtcFrameData 0000000180069900 survive_config.obj
- 0003:0000a940 parse_uint32$rtcName$0 0000000180069940 survive_config.obj
- 0003:0000a948 parse_uint32$rtcName$1 0000000180069948 survive_config.obj
- 0003:0000a960 parse_uint32$rtcVarDesc 0000000180069960 survive_config.obj
- 0003:0000a9e0 parse_uint32$rtcFrameData 00000001800699e0 survive_config.obj
- 0003:0000ab70 survive_load_htc_config_format$rtcName$0 0000000180069b70 survive_default_devices.obj
- 0003:0000ab74 survive_load_htc_config_format$rtcName$1 0000000180069b74 survive_default_devices.obj
- 0003:0000ab78 survive_load_htc_config_format$rtcName$2 0000000180069b78 survive_default_devices.obj
- 0003:0000ab80 survive_load_htc_config_format$rtcName$3 0000000180069b80 survive_default_devices.obj
- 0003:0000ab88 survive_load_htc_config_format$rtcName$4 0000000180069b88 survive_default_devices.obj
- 0003:0000ab90 survive_load_htc_config_format$rtcName$5 0000000180069b90 survive_default_devices.obj
- 0003:0000ab98 survive_load_htc_config_format$rtcName$6 0000000180069b98 survive_default_devices.obj
- 0003:0000aba0 survive_load_htc_config_format$rtcName$7 0000000180069ba0 survive_default_devices.obj
- 0003:0000aba8 survive_load_htc_config_format$rtcName$8 0000000180069ba8 survive_default_devices.obj
- 0003:0000abb0 survive_load_htc_config_format$rtcName$9 0000000180069bb0 survive_default_devices.obj
- 0003:0000abb8 survive_load_htc_config_format$rtcFrameData 0000000180069bb8 survive_default_devices.obj
- 0003:0000abd0 survive_load_htc_config_format$rtcVarDesc 0000000180069bd0 survive_default_devices.obj
- 0003:0000aef0 ParsePoints$rtcName$0 0000000180069ef0 survive_default_devices.obj
- 0003:0000aef4 ParsePoints$rtcName$1 0000000180069ef4 survive_default_devices.obj
- 0003:0000af00 ParsePoints$rtcVarDesc 0000000180069f00 survive_default_devices.obj
- 0003:0000af80 ParsePoints$rtcFrameData 0000000180069f80 survive_default_devices.obj
- 0003:0000b120 sscanf$rtcName$0 000000018006a120 survive_playback.obj
- 0003:0000b130 sscanf$rtcVarDesc 000000018006a130 survive_playback.obj
- 0003:0000b170 sscanf$rtcFrameData 000000018006a170 survive_playback.obj
- 0003:0000b1a0 write_to_output$rtcName$0 000000018006a1a0 survive_playback.obj
- 0003:0000b1a8 write_to_output$rtcName$1 000000018006a1a8 survive_playback.obj
- 0003:0000b1b0 write_to_output$rtcVarDesc 000000018006a1b0 survive_playback.obj
- 0003:0000b230 write_to_output$rtcFrameData 000000018006a230 survive_playback.obj
- 0003:0000b260 parse_and_run_imu$rtcName$0 000000018006a260 survive_playback.obj
- 0003:0000b264 parse_and_run_imu$rtcName$4 000000018006a264 survive_playback.obj
- 0003:0000b268 parse_and_run_imu$rtcName$1 000000018006a268 survive_playback.obj
- 0003:0000b278 parse_and_run_imu$rtcName$2 000000018006a278 survive_playback.obj
- 0003:0000b284 parse_and_run_imu$rtcName$3 000000018006a284 survive_playback.obj
- 0003:0000b28c parse_and_run_imu$rtcName$5 000000018006a28c survive_playback.obj
- 0003:0000b298 parse_and_run_imu$rtcFrameData 000000018006a298 survive_playback.obj
- 0003:0000b2b0 parse_and_run_imu$rtcVarDesc 000000018006a2b0 survive_playback.obj
- 0003:0000b490 parse_and_run_rawlight$rtcName$0 000000018006a490 survive_playback.obj
- 0003:0000b494 parse_and_run_rawlight$rtcName$1 000000018006a494 survive_playback.obj
- 0003:0000b498 parse_and_run_rawlight$rtcName$2 000000018006a498 survive_playback.obj
- 0003:0000b49c parse_and_run_rawlight$rtcName$3 000000018006a49c survive_playback.obj
- 0003:0000b4a8 parse_and_run_rawlight$rtcFrameData 000000018006a4a8 survive_playback.obj
- 0003:0000b4c0 parse_and_run_rawlight$rtcVarDesc 000000018006a4c0 survive_playback.obj
- 0003:0000b600 parse_and_run_lightcode$rtcName$0 000000018006a600 survive_playback.obj
- 0003:0000b604 parse_and_run_lightcode$rtcName$1 000000018006a604 survive_playback.obj
- 0003:0000b608 parse_and_run_lightcode$rtcName$2 000000018006a608 survive_playback.obj
- 0003:0000b60c parse_and_run_lightcode$rtcName$8 000000018006a60c survive_playback.obj
- 0003:0000b610 parse_and_run_lightcode$rtcName$3 000000018006a610 survive_playback.obj
- 0003:0000b61c parse_and_run_lightcode$rtcName$5 000000018006a61c survive_playback.obj
- 0003:0000b628 parse_and_run_lightcode$rtcName$4 000000018006a628 survive_playback.obj
- 0003:0000b638 parse_and_run_lightcode$rtcName$6 000000018006a638 survive_playback.obj
- 0003:0000b644 parse_and_run_lightcode$rtcName$7 000000018006a644 survive_playback.obj
- 0003:0000b64c parse_and_run_lightcode$rtcName$9 000000018006a64c survive_playback.obj
- 0003:0000b658 parse_and_run_lightcode$rtcFrameData 000000018006a658 survive_playback.obj
- 0003:0000b670 parse_and_run_lightcode$rtcVarDesc 000000018006a670 survive_playback.obj
- 0003:0000b990 playback_poll$rtcName$0 000000018006a990 survive_playback.obj
- 0003:0000b998 playback_poll$rtcName$1 000000018006a998 survive_playback.obj
- 0003:0000b99c playback_poll$rtcName$2 000000018006a99c survive_playback.obj
- 0003:0000b9a0 playback_poll$rtcName$3 000000018006a9a0 survive_playback.obj
- 0003:0000b9a4 playback_poll$rtcName$4 000000018006a9a4 survive_playback.obj
- 0003:0000b9a8 playback_poll$rtcFrameData 000000018006a9a8 survive_playback.obj
- 0003:0000b9c0 playback_poll$rtcVarDesc 000000018006a9c0 survive_playback.obj
- 0003:0000bb50 survive_install_recording$rtcName$0 000000018006ab50 survive_playback.obj
- 0003:0000bb58 survive_install_recording$rtcName$1 000000018006ab58 survive_playback.obj
- 0003:0000bb60 survive_install_recording$rtcName$2 000000018006ab60 survive_playback.obj
- 0003:0000bb68 survive_install_recording$rtcFrameData 000000018006ab68 survive_playback.obj
- 0003:0000bb80 survive_install_recording$rtcVarDesc 000000018006ab80 survive_playback.obj
- 0003:0000bc70 DriverRegPlayback$rtcName$0 000000018006ac70 survive_playback.obj
- 0003:0000bc78 DriverRegPlayback$rtcName$1 000000018006ac78 survive_playback.obj
- 0003:0000bc80 DriverRegPlayback$rtcName$2 000000018006ac80 survive_playback.obj
- 0003:0000bc88 DriverRegPlayback$rtcName$3 000000018006ac88 survive_playback.obj
- 0003:0000bc90 DriverRegPlayback$rtcName$4 000000018006ac90 survive_playback.obj
- 0003:0000bc94 DriverRegPlayback$rtcName$5 000000018006ac94 survive_playback.obj
- 0003:0000bc98 DriverRegPlayback$rtcName$6 000000018006ac98 survive_playback.obj
- 0003:0000bca0 DriverRegPlayback$rtcName$7 000000018006aca0 survive_playback.obj
- 0003:0000bca8 DriverRegPlayback$rtcFrameData 000000018006aca8 survive_playback.obj
- 0003:0000bcc0 DriverRegPlayback$rtcVarDesc 000000018006acc0 survive_playback.obj
- 0003:0000c340 survive_default_light_process$rtcName$0 000000018006b340 survive_process.obj
- 0003:0000c350 survive_default_light_process$rtcVarDesc 000000018006b350 survive_process.obj
- 0003:0000c390 survive_default_light_process$rtcFrameData 000000018006b390 survive_process.obj
- 0003:0000c3c0 survive_default_imu_process$rtcName$0 000000018006b3c0 survive_process.obj
- 0003:0000c3d0 survive_default_imu_process$rtcVarDesc 000000018006b3d0 survive_process.obj
- 0003:0000c410 survive_default_imu_process$rtcFrameData 000000018006b410 survive_process.obj
- 0003:0000c440 survive_default_angle_process$rtcName$0 000000018006b440 survive_process.obj
- 0003:0000c450 survive_default_angle_process$rtcVarDesc 000000018006b450 survive_process.obj
- 0003:0000c490 survive_default_angle_process$rtcFrameData 000000018006b490 survive_process.obj
- 0003:0000c4d0 survive_calibration_options_config_apply$rtcName$0 000000018006b4d0 survive_reproject.obj
- 0003:0000c4e0 survive_calibration_options_config_apply$rtcVarDesc 000000018006b4e0 survive_reproject.obj
- 0003:0000c520 survive_calibration_options_config_apply$rtcFrameData 000000018006b520 survive_reproject.obj
- 0003:0000c550 survive_calibration_config_max_idx$rtcName$0 000000018006b550 survive_reproject.obj
- 0003:0000c560 survive_calibration_config_max_idx$rtcVarDesc 000000018006b560 survive_reproject.obj
- 0003:0000c5a0 survive_calibration_config_max_idx$rtcFrameData 000000018006b5a0 survive_reproject.obj
- 0003:0000c5d0 survive_calibration_config_create_from_idx$rtcName$0 000000018006b5d0 survive_reproject.obj
- 0003:0000c5e0 survive_calibration_config_create_from_idx$rtcVarDesc 000000018006b5e0 survive_reproject.obj
- 0003:0000c620 survive_calibration_config_create_from_idx$rtcFrameData 000000018006b620 survive_reproject.obj
- 0003:0000c650 survive_reproject_from_pose_with_config$rtcName$0 000000018006b650 survive_reproject.obj
- 0003:0000c658 survive_reproject_from_pose_with_config$rtcName$1 000000018006b658 survive_reproject.obj
- 0003:0000c660 survive_reproject_from_pose_with_config$rtcName$2 000000018006b660 survive_reproject.obj
- 0003:0000c668 survive_reproject_from_pose_with_config$rtcName$3 000000018006b668 survive_reproject.obj
- 0003:0000c670 survive_reproject_from_pose_with_config$rtcName$4 000000018006b670 survive_reproject.obj
- 0003:0000c678 survive_reproject_from_pose_with_config$rtcName$5 000000018006b678 survive_reproject.obj
- 0003:0000c680 survive_reproject_from_pose_with_config$rtcName$6 000000018006b680 survive_reproject.obj
- 0003:0000c68c survive_reproject_from_pose_with_config$rtcName$7 000000018006b68c survive_reproject.obj
- 0003:0000c698 survive_reproject_from_pose_with_config$rtcFrameData 000000018006b698 survive_reproject.obj
- 0003:0000c6b0 survive_reproject_from_pose_with_config$rtcVarDesc 000000018006b6b0 survive_reproject.obj
- 0003:0000c930 tau_table 000000018006b930 survive_turveybiguator.obj
- 0003:0000cb50 wprintf$rtcName$0 000000018006bb50 survive_vive.obj
- 0003:0000cb60 wprintf$rtcVarDesc 000000018006bb60 survive_vive.obj
- 0003:0000cba0 wprintf$rtcFrameData 000000018006bba0 survive_vive.obj
- 0003:0000cbd0 survive_data_cb$rtcName$0 000000018006bbd0 survive_vive.obj
- 0003:0000cbd4 survive_data_cb$rtcName$1 000000018006bbd4 survive_vive.obj
- 0003:0000cbdc survive_data_cb$rtcName$2 000000018006bbdc survive_vive.obj
- 0003:0000cbe0 survive_data_cb$rtcName$3 000000018006bbe0 survive_vive.obj
- 0003:0000cbe4 survive_data_cb$rtcName$4 000000018006bbe4 survive_vive.obj
- 0003:0000cbf0 survive_data_cb$rtcVarDesc 000000018006bbf0 survive_vive.obj
- 0003:0000cd30 survive_data_cb$rtcFrameData 000000018006bd30 survive_vive.obj
- 0003:0000cd90 survive_usb_init$rtcName$0 000000018006bd90 survive_vive.obj
- 0003:0000cd98 survive_usb_init$rtcName$1 000000018006bd98 survive_vive.obj
- 0003:0000cda0 survive_usb_init$rtcName$2 000000018006bda0 survive_vive.obj
- 0003:0000cda8 survive_usb_init$rtcName$3 000000018006bda8 survive_vive.obj
- 0003:0000cdb0 survive_usb_init$rtcName$4 000000018006bdb0 survive_vive.obj
- 0003:0000cdb8 survive_usb_init$rtcFrameData 000000018006bdb8 survive_vive.obj
- 0003:0000cdd0 survive_usb_init$rtcVarDesc 000000018006bdd0 survive_vive.obj
- 0003:0000cf60 survive_get_config$rtcName$0 000000018006bf60 survive_vive.obj
- 0003:0000cf68 survive_get_config$rtcName$1 000000018006bf68 survive_vive.obj
- 0003:0000cf78 survive_get_config$rtcName$2 000000018006bf78 survive_vive.obj
- 0003:0000cf90 survive_get_config$rtcName$3 000000018006bf90 survive_vive.obj
- 0003:0000cfa0 survive_get_config$rtcName$4 000000018006bfa0 survive_vive.obj
- 0003:0000cfb0 survive_get_config$rtcName$5 000000018006bfb0 survive_vive.obj
- 0003:0000cfb8 survive_get_config$rtcName$6 000000018006bfb8 survive_vive.obj
- 0003:0000cfc0 survive_get_config$rtcName$7 000000018006bfc0 survive_vive.obj
- 0003:0000cfc8 survive_get_config$rtcName$8 000000018006bfc8 survive_vive.obj
- 0003:0000cfd0 survive_get_config$rtcName$9 000000018006bfd0 survive_vive.obj
- 0003:0000cfd8 survive_get_config$rtcName$10 000000018006bfd8 survive_vive.obj
- 0003:0000cfe0 survive_get_config$rtcName$11 000000018006bfe0 survive_vive.obj
- 0003:0000cfe8 survive_get_config$rtcName$12 000000018006bfe8 survive_vive.obj
- 0003:0000cff0 survive_get_config$rtcVarDesc 000000018006bff0 survive_vive.obj
- 0003:0000d330 survive_get_config$rtcFrameData 000000018006c330 survive_vive.obj
- 0003:0000d410 survive_vive_send_magic$rtcName$0 000000018006c410 survive_vive.obj
- 0003:0000d418 survive_vive_send_magic$rtcName$1 000000018006c418 survive_vive.obj
- 0003:0000d420 survive_vive_send_magic$rtcVarDesc 000000018006c420 survive_vive.obj
- 0003:0000d4a0 survive_vive_send_magic$rtcFrameData 000000018006c4a0 survive_vive.obj
- 0003:0000d4d0 survive_vive_send_haptic$rtcName$0 000000018006c4d0 survive_vive.obj
- 0003:0000d4f0 survive_vive_send_haptic$rtcName$1 000000018006c4f0 survive_vive.obj
- 0003:0000d500 survive_vive_send_haptic$rtcVarDesc 000000018006c500 survive_vive.obj
- 0003:0000d580 survive_vive_send_haptic$rtcFrameData 000000018006c580 survive_vive.obj
- 0003:0000d5c0 handle_watchman$rtcName$0 000000018006c5c0 survive_vive.obj
- 0003:0000d5cc handle_watchman$rtcName$1 000000018006c5cc survive_vive.obj
- 0003:0000d5d4 handle_watchman$rtcName$2 000000018006c5d4 survive_vive.obj
- 0003:0000d5d8 handle_watchman$rtcName$3 000000018006c5d8 survive_vive.obj
- 0003:0000d5e0 handle_watchman$rtcName$4 000000018006c5e0 survive_vive.obj
- 0003:0000d5e4 handle_watchman$rtcName$5 000000018006c5e4 survive_vive.obj
- 0003:0000d5e8 handle_watchman$rtcName$6 000000018006c5e8 survive_vive.obj
- 0003:0000d5f0 handle_watchman$rtcName$7 000000018006c5f0 survive_vive.obj
- 0003:0000d600 handle_watchman$rtcVarDesc 000000018006c600 survive_vive.obj
- 0003:0000d800 handle_watchman$rtcFrameData 000000018006c800 survive_vive.obj
- 0003:0000d890 LoadConfig$rtcName$0 000000018006c890 survive_vive.obj
- 0003:0000d898 LoadConfig$rtcName$1 000000018006c898 survive_vive.obj
- 0003:0000d8a0 LoadConfig$rtcName$2 000000018006c8a0 survive_vive.obj
- 0003:0000d8b0 LoadConfig$rtcVarDesc 000000018006c8b0 survive_vive.obj
- 0003:0000d970 LoadConfig$rtcFrameData 000000018006c970 survive_vive.obj
- 0003:0000d9b0 DriverRegHTCVive$rtcName$0 000000018006c9b0 survive_vive.obj
- 0003:0000d9b8 DriverRegHTCVive$rtcName$1 000000018006c9b8 survive_vive.obj
- 0003:0000d9c0 DriverRegHTCVive$rtcName$2 000000018006c9c0 survive_vive.obj
- 0003:0000d9c8 DriverRegHTCVive$rtcName$3 000000018006c9c8 survive_vive.obj
- 0003:0000d9d0 DriverRegHTCVive$rtcName$4 000000018006c9d0 survive_vive.obj
- 0003:0000d9d8 DriverRegHTCVive$rtcName$5 000000018006c9d8 survive_vive.obj
- 0003:0000d9e0 DriverRegHTCVive$rtcName$6 000000018006c9e0 survive_vive.obj
- 0003:0000d9e8 DriverRegHTCVive$rtcFrameData 000000018006c9e8 survive_vive.obj
- 0003:0000da00 DriverRegHTCVive$rtcVarDesc 000000018006ca00 survive_vive.obj
- 0003:0000e1f8 GS_ExceptionPointers 000000018006d1f8 MSVCRTD:gs_report.obj
- 0003:0000e220 ?_RTC_errlist@@3QBQEBDB 000000018006d220 MSVCRTD:_userapi_.obj
- 0003:0000e328 ?_RTC_ErrorMessages@@3QBQEBDB 000000018006d328 MSVCRTD:_error_.obj
- 0003:0000e358 ?_RTC_NoFalsePositives@@3QBHB 000000018006d358 MSVCRTD:_error_.obj
- 0003:0000e370 ?stack_premsg@@3QBDB 000000018006d370 MSVCRTD:_error_.obj
- 0003:0000e390 ?stack_postmsg@@3QBDB 000000018006d390 MSVCRTD:_error_.obj
- 0003:0000e3a8 ?uninit_premsg@@3QBDB 000000018006d3a8 MSVCRTD:_error_.obj
- 0003:0000e3b8 ?uninit_postmsg@@3QBDB 000000018006d3b8 MSVCRTD:_error_.obj
- 0003:0000ea38 ?mspdbName@@3QB_WB 000000018006da38 MSVCRTD:_pdblkup_.obj
- 0003:0000ea68 ?debugCrtFileName@@3QB_WB 000000018006da68 MSVCRTD:_pdblkup_.obj
- 0003:0000ec00 ?dllExt@?1??GetPdbDllPathFromFilePath@@YAHPEB_WPEA_W_K@Z@4QB_WB 000000018006dc00 MSVCRTD:_pdblkup_.obj
- 0003:0000ec10 ?mspdbFilename@?1??GetPdbDllPathFromFilePath@@YAHPEB_WPEA_W_K@Z@4QB_WB 000000018006dc10 MSVCRTD:_pdblkup_.obj
- 0003:0000f418 _RTC_InitBase.rtc$IMZ 000000018006e418 crc32.obj
- 0003:0000f428 _RTC_InitBase.rtc$IMZ 000000018006e428 hid-windows.obj
- 0003:0000f438 _RTC_InitBase.rtc$IMZ 000000018006e438 jsmn.obj
- 0003:0000f448 _RTC_InitBase.rtc$IMZ 000000018006e448 json_helpers.obj
- 0003:0000f458 _RTC_InitBase.rtc$IMZ 000000018006e458 linmath.obj
- 0003:0000f468 _RTC_InitBase.rtc$IMZ 000000018006e468 os_generic.obj
- 0003:0000f478 _RTC_InitBase.rtc$IMZ 000000018006e478 puff.obj
- 0003:0000f488 _RTC_InitBase.rtc$IMZ 000000018006e488 symbol_enumerator.obj
- 0003:0000f498 _RTC_InitBase.rtc$IMZ 000000018006e498 ootx_decoder.obj
- 0003:0000f4a8 _RTC_InitBase.rtc$IMZ 000000018006e4a8 poser.obj
- 0003:0000f4b8 _RTC_InitBase.rtc$IMZ 000000018006e4b8 poser_charlesslow.obj
- 0003:0000f4c8 _RTC_InitBase.rtc$IMZ 000000018006e4c8 poser_daveortho.obj
- 0003:0000f4d8 _RTC_InitBase.rtc$IMZ 000000018006e4d8 poser_dummy.obj
- 0003:0000f4e8 _RTC_InitBase.rtc$IMZ 000000018006e4e8 poser_octavioradii.obj
- 0003:0000f4f8 _RTC_InitBase.rtc$IMZ 000000018006e4f8 poser_turveytori.obj
- 0003:0000f508 _RTC_InitBase.rtc$IMZ 000000018006e508 survive.obj
- 0003:0000f518 _RTC_InitBase.rtc$IMZ 000000018006e518 survive_cal.obj
- 0003:0000f528 _RTC_InitBase.rtc$IMZ 000000018006e528 survive_charlesbiguator.obj
- 0003:0000f538 _RTC_InitBase.rtc$IMZ 000000018006e538 survive_config.obj
- 0003:0000f548 _RTC_InitBase.rtc$IMZ 000000018006e548 survive_default_devices.obj
- 0003:0000f558 _RTC_InitBase.rtc$IMZ 000000018006e558 survive_disambiguator.obj
- 0003:0000f568 _RTC_InitBase.rtc$IMZ 000000018006e568 survive_driverman.obj
- 0003:0000f578 _RTC_InitBase.rtc$IMZ 000000018006e578 survive_playback.obj
- 0003:0000f588 _RTC_InitBase.rtc$IMZ 000000018006e588 survive_process.obj
- 0003:0000f598 _RTC_InitBase.rtc$IMZ 000000018006e598 survive_reproject.obj
- 0003:0000f5a8 _RTC_InitBase.rtc$IMZ 000000018006e5a8 survive_sensor_activations.obj
- 0003:0000f5b8 _RTC_InitBase.rtc$IMZ 000000018006e5b8 survive_turveybiguator.obj
- 0003:0000f5c8 _RTC_InitBase.rtc$IMZ 000000018006e5c8 survive_vive.obj
- 0003:0000f5d8 _RTC_InitBase.rtc$IMZ 000000018006e5d8 getdelim.obj
- 0003:0000f940 _RTC_Shutdown.rtc$TMZ 000000018006e940 crc32.obj
- 0003:0000f950 _RTC_Shutdown.rtc$TMZ 000000018006e950 hid-windows.obj
- 0003:0000f960 _RTC_Shutdown.rtc$TMZ 000000018006e960 jsmn.obj
- 0003:0000f970 _RTC_Shutdown.rtc$TMZ 000000018006e970 json_helpers.obj
- 0003:0000f980 _RTC_Shutdown.rtc$TMZ 000000018006e980 linmath.obj
- 0003:0000f990 _RTC_Shutdown.rtc$TMZ 000000018006e990 os_generic.obj
- 0003:0000f9a0 _RTC_Shutdown.rtc$TMZ 000000018006e9a0 puff.obj
- 0003:0000f9b0 _RTC_Shutdown.rtc$TMZ 000000018006e9b0 symbol_enumerator.obj
- 0003:0000f9c0 _RTC_Shutdown.rtc$TMZ 000000018006e9c0 ootx_decoder.obj
- 0003:0000f9d0 _RTC_Shutdown.rtc$TMZ 000000018006e9d0 poser.obj
- 0003:0000f9e0 _RTC_Shutdown.rtc$TMZ 000000018006e9e0 poser_charlesslow.obj
- 0003:0000f9f0 _RTC_Shutdown.rtc$TMZ 000000018006e9f0 poser_daveortho.obj
- 0003:0000fa00 _RTC_Shutdown.rtc$TMZ 000000018006ea00 poser_dummy.obj
- 0003:0000fa10 _RTC_Shutdown.rtc$TMZ 000000018006ea10 poser_octavioradii.obj
- 0003:0000fa20 _RTC_Shutdown.rtc$TMZ 000000018006ea20 poser_turveytori.obj
- 0003:0000fa30 _RTC_Shutdown.rtc$TMZ 000000018006ea30 survive.obj
- 0003:0000fa40 _RTC_Shutdown.rtc$TMZ 000000018006ea40 survive_cal.obj
- 0003:0000fa50 _RTC_Shutdown.rtc$TMZ 000000018006ea50 survive_charlesbiguator.obj
- 0003:0000fa60 _RTC_Shutdown.rtc$TMZ 000000018006ea60 survive_config.obj
- 0003:0000fa70 _RTC_Shutdown.rtc$TMZ 000000018006ea70 survive_default_devices.obj
- 0003:0000fa80 _RTC_Shutdown.rtc$TMZ 000000018006ea80 survive_disambiguator.obj
- 0003:0000fa90 _RTC_Shutdown.rtc$TMZ 000000018006ea90 survive_driverman.obj
- 0003:0000faa0 _RTC_Shutdown.rtc$TMZ 000000018006eaa0 survive_playback.obj
- 0003:0000fab0 _RTC_Shutdown.rtc$TMZ 000000018006eab0 survive_process.obj
- 0003:0000fac0 _RTC_Shutdown.rtc$TMZ 000000018006eac0 survive_reproject.obj
- 0003:0000fad0 _RTC_Shutdown.rtc$TMZ 000000018006ead0 survive_sensor_activations.obj
- 0003:0000fae0 _RTC_Shutdown.rtc$TMZ 000000018006eae0 survive_turveybiguator.obj
- 0003:0000faf0 _RTC_Shutdown.rtc$TMZ 000000018006eaf0 survive_vive.obj
- 0003:0000fb00 _RTC_Shutdown.rtc$TMZ 000000018006eb00 getdelim.obj
- 0003:0000fd58 $unwind$crc32 000000018006ed58 crc32.obj
- 0003:0000fd6c $unwind$hid_init 000000018006ed6c hid-windows.obj
- 0003:0000fd80 $unwind$hid_exit 000000018006ed80 hid-windows.obj
- 0003:0000fd94 $unwind$hid_enumerate 000000018006ed94 hid-windows.obj
- 0003:0000fdb0 $unwind$hid_free_enumeration 000000018006edb0 hid-windows.obj
- 0003:0000fdc4 $unwind$hid_open 000000018006edc4 hid-windows.obj
- 0003:0000fdd8 $unwind$hid_open_path 000000018006edd8 hid-windows.obj
- 0003:0000fdf4 $unwind$hid_write 000000018006edf4 hid-windows.obj
- 0003:0000fe08 $unwind$hid_read_timeout 000000018006ee08 hid-windows.obj
- 0003:0000fe1c $unwind$hid_read 000000018006ee1c hid-windows.obj
- 0003:0000fe30 $unwind$hid_set_nonblocking 000000018006ee30 hid-windows.obj
- 0003:0000fe44 $unwind$hid_send_feature_report 000000018006ee44 hid-windows.obj
- 0003:0000fe58 $unwind$hid_get_feature_report 000000018006ee58 hid-windows.obj
- 0003:0000fe6c $unwind$hid_close 000000018006ee6c hid-windows.obj
- 0003:0000fe80 $unwind$hid_get_manufacturer_string 000000018006ee80 hid-windows.obj
- 0003:0000fe94 $unwind$hid_get_product_string 000000018006ee94 hid-windows.obj
- 0003:0000fea8 $unwind$hid_get_serial_number_string 000000018006eea8 hid-windows.obj
- 0003:0000febc $unwind$hid_get_indexed_string 000000018006eebc hid-windows.obj
- 0003:0000fed0 $unwind$hid_error 000000018006eed0 hid-windows.obj
- 0003:0000fee4 $unwind$new_hid_device 000000018006eee4 hid-windows.obj
- 0003:0000fef8 $unwind$free_hid_device 000000018006eef8 hid-windows.obj
- 0003:0000ff0c $unwind$register_error 000000018006ef0c hid-windows.obj
- 0003:0000ff20 $unwind$lookup_functions 000000018006ef20 hid-windows.obj
- 0003:0000ff34 $unwind$open_device 000000018006ef34 hid-windows.obj
- 0003:0000ff48 $unwind$jsmn_init 000000018006ef48 jsmn.obj
- 0003:0000ff5c $unwind$jsmn_parse 000000018006ef5c jsmn.obj
- 0003:0000ff70 $unwind$jsmn_alloc_token 000000018006ef70 jsmn.obj
- 0003:0000ff84 $unwind$jsmn_fill_token 000000018006ef84 jsmn.obj
- 0003:0000ff98 $unwind$jsmn_parse_primitive 000000018006ef98 jsmn.obj
- 0003:0000ffac $unwind$jsmn_parse_string 000000018006efac jsmn.obj
- 0003:0000ffc0 $unwind$__local_stdio_printf_options 000000018006efc0 json_helpers.obj
- 0003:0000ffd4 $unwind$_vfprintf_l 000000018006efd4 json_helpers.obj
- 0003:0000ffe8 $unwind$fprintf 000000018006efe8 json_helpers.obj
- 0003:0000fffc $unwind$_vsnprintf_l 000000018006effc json_helpers.obj
- 0003:00010010 $unwind$_vsnprintf 000000018006f010 json_helpers.obj
- 0003:00010024 $unwind$_vscprintf_l 000000018006f024 json_helpers.obj
- 0003:00010038 $unwind$_vscprintf 000000018006f038 json_helpers.obj
- 0003:0001004c $unwind$json_write_float_array 000000018006f04c json_helpers.obj
- 0003:00010060 $unwind$json_write_double_array 000000018006f060 json_helpers.obj
- 0003:00010074 $unwind$json_write_uint32 000000018006f074 json_helpers.obj
- 0003:00010088 $unwind$json_write_float 000000018006f088 json_helpers.obj
- 0003:0001009c $unwind$json_write_str 000000018006f09c json_helpers.obj
- 0003:000100b0 $unwind$parse_float_array 000000018006f0b0 json_helpers.obj
- 0003:000100c4 $unwind$json_load_file 000000018006f0c4 json_helpers.obj
- 0003:000100e0 $unwind$asprintf 000000018006f0e0 json_helpers.obj
- 0003:000100f4 $unwind$load_file_to_mem 000000018006f0f4 json_helpers.obj
- 0003:00010108 $unwind$substr 000000018006f108 json_helpers.obj
- 0003:0001011c $unwind$json_load_array 000000018006f11c json_helpers.obj
- 0003:00010138 $unwind$cross3d 000000018006f138 linmath.obj
- 0003:0001014c $unwind$sub3d 000000018006f14c linmath.obj
- 0003:00010160 $unwind$add3d 000000018006f160 linmath.obj
- 0003:00010174 $unwind$scale3d 000000018006f174 linmath.obj
- 0003:00010188 $unwind$normalize3d 000000018006f188 linmath.obj
- 0003:0001019c $unwind$dot3d 000000018006f19c linmath.obj
- 0003:000101b0 $unwind$compare3d 000000018006f1b0 linmath.obj
- 0003:000101c4 $unwind$copy3d 000000018006f1c4 linmath.obj
- 0003:000101d8 $unwind$magnitude3d 000000018006f1d8 linmath.obj
- 0003:000101ec $unwind$anglebetween3d 000000018006f1ec linmath.obj
- 0003:00010208 $unwind$rotatearoundaxis 000000018006f208 linmath.obj
- 0003:0001021c $unwind$angleaxisfrom2vect 000000018006f21c linmath.obj
- 0003:00010238 $unwind$axisanglefromquat 000000018006f238 linmath.obj
- 0003:00010254 $unwind$quatsetnone 000000018006f254 linmath.obj
- 0003:00010268 $unwind$quatcopy 000000018006f268 linmath.obj
- 0003:0001027c $unwind$quatfromeuler 000000018006f27c linmath.obj
- 0003:00010290 $unwind$quattoeuler 000000018006f290 linmath.obj
- 0003:000102a4 $unwind$quatfromaxisangle 000000018006f2a4 linmath.obj
- 0003:000102c0 $unwind$quatmagnitude 000000018006f2c0 linmath.obj
- 0003:000102d4 $unwind$quatinvsqmagnitude 000000018006f2d4 linmath.obj
- 0003:000102e8 $unwind$quatnormalize 000000018006f2e8 linmath.obj
- 0003:000102fc $unwind$quattomatrix 000000018006f2fc linmath.obj
- 0003:00010318 $unwind$quatfrommatrix 000000018006f318 linmath.obj
- 0003:0001032c $unwind$quatfrommatrix33 000000018006f32c linmath.obj
- 0003:00010340 $unwind$quatgetconjugate 000000018006f340 linmath.obj
- 0003:00010354 $unwind$quatgetreciprocal 000000018006f354 linmath.obj
- 0003:00010368 $unwind$quatsub 000000018006f368 linmath.obj
- 0003:0001037c $unwind$quatadd 000000018006f37c linmath.obj
- 0003:00010390 $unwind$quatrotateabout 000000018006f390 linmath.obj
- 0003:000103a4 $unwind$quatscale 000000018006f3a4 linmath.obj
- 0003:000103b8 $unwind$quatinnerproduct 000000018006f3b8 linmath.obj
- 0003:000103cc $unwind$quatouterproduct 000000018006f3cc linmath.obj
- 0003:000103e0 $unwind$quatevenproduct 000000018006f3e0 linmath.obj
- 0003:000103f4 $unwind$quatoddproduct 000000018006f3f4 linmath.obj
- 0003:00010408 $unwind$quatslerp 000000018006f408 linmath.obj
- 0003:00010424 $unwind$quatrotatevector 000000018006f424 linmath.obj
- 0003:00010440 $unwind$quatfrom2vectors 000000018006f440 linmath.obj
- 0003:0001045c $unwind$ApplyPoseToPoint 000000018006f45c linmath.obj
- 0003:00010470 $unwind$ApplyPoseToPose 000000018006f470 linmath.obj
- 0003:00010484 $unwind$InvertPose 000000018006f484 linmath.obj
- 0003:00010498 $unwind$rotate_vec 000000018006f498 linmath.obj
- 0003:000104ac $unwind$rotation_between_vecs_to_m3 000000018006f4ac linmath.obj
- 0003:000104c8 $unwind$inverseM33 000000018006f4c8 linmath.obj
- 0003:000104e4 $unwind$matrix44copy 000000018006f4e4 linmath.obj
- 0003:000104f8 $unwind$matrix44transpose 000000018006f4f8 linmath.obj
- 0003:0001050c $unwind$quattomatrix33 000000018006f50c linmath.obj
- 0003:00010528 $unwind$OGGetAbsoluteTime 000000018006f528 os_generic.obj
- 0003:0001053c $unwind$OGSleep 000000018006f53c os_generic.obj
- 0003:00010550 $unwind$OGUSleep 000000018006f550 os_generic.obj
- 0003:00010564 $unwind$OGGetFileTime 000000018006f564 os_generic.obj
- 0003:00010578 $unwind$OGCreateThread 000000018006f578 os_generic.obj
- 0003:0001058c $unwind$OGJoinThread 000000018006f58c os_generic.obj
- 0003:000105a0 $unwind$OGCancelThread 000000018006f5a0 os_generic.obj
- 0003:000105b4 $unwind$OGCreateMutex 000000018006f5b4 os_generic.obj
- 0003:000105c8 $unwind$OGLockMutex 000000018006f5c8 os_generic.obj
- 0003:000105dc $unwind$OGUnlockMutex 000000018006f5dc os_generic.obj
- 0003:000105f0 $unwind$OGDeleteMutex 000000018006f5f0 os_generic.obj
- 0003:00010604 $unwind$OGCreateSema 000000018006f604 os_generic.obj
- 0003:00010618 $unwind$OGLockSema 000000018006f618 os_generic.obj
- 0003:0001062c $unwind$OGGetSema 000000018006f62c os_generic.obj
- 0003:00010640 $unwind$OGUnlockSema 000000018006f640 os_generic.obj
- 0003:00010654 $unwind$OGDeleteSema 000000018006f654 os_generic.obj
- 0003:00010668 $unwind$puff 000000018006f668 puff.obj
- 0003:00010684 $unwind$bits 000000018006f684 puff.obj
- 0003:00010698 $unwind$stored 000000018006f698 puff.obj
- 0003:000106ac $unwind$decode 000000018006f6ac puff.obj
- 0003:000106c0 $unwind$construct 000000018006f6c0 puff.obj
- 0003:000106dc $unwind$codes 000000018006f6dc puff.obj
- 0003:000106f0 $unwind$fixed 000000018006f6f0 puff.obj
- 0003:0001070c $unwind$dynamic 000000018006f70c puff.obj
- 0003:00010728 $unwind$EnumerateSymbols 000000018006f728 symbol_enumerator.obj
- 0003:0001073c $unwind$mycb 000000018006f73c symbol_enumerator.obj
- 0003:00010750 $unwind$printf 000000018006f750 ootx_decoder.obj
- 0003:00010764 $unwind$init_lighthouse_info_v6 000000018006f764 ootx_decoder.obj
- 0003:00010778 $unwind$print_lighthouse_info_v6 000000018006f778 ootx_decoder.obj
- 0003:0001079c $unwind$ootx_init_decoder_context 000000018006f79c ootx_decoder.obj
- 0003:000107b0 $unwind$ootx_free_decoder_context 000000018006f7b0 ootx_decoder.obj
- 0003:000107c4 $unwind$ootx_process_bit 000000018006f7c4 ootx_decoder.obj
- 0003:000107d8 $unwind$ootx_pump_bit 000000018006f7d8 ootx_decoder.obj
- 0003:000107ec $unwind$ootx_decode_bit 000000018006f7ec ootx_decoder.obj
- 0003:00010800 $unwind$ootx_detect_preamble 000000018006f800 ootx_decoder.obj
- 0003:00010814 $unwind$ootx_reset_buffer 000000018006f814 ootx_decoder.obj
- 0003:00010828 $unwind$ootx_inc_buffer_offset 000000018006f828 ootx_decoder.obj
- 0003:0001083c $unwind$ootx_write_to_buffer 000000018006f83c ootx_decoder.obj
- 0003:00010850 $unwind$get_ptr 000000018006f850 ootx_decoder.obj
- 0003:00010864 $unwind$_half_to_float 000000018006f864 ootx_decoder.obj
- 0003:00010878 $unwind$PoserData_poser_raw_pose_func 000000018006f878 poser.obj
- 0003:0001088c $unwind$PoserData_lighthouse_pose_func 000000018006f88c poser.obj
- 0003:000108a8 $unwind$_vsprintf_l 000000018006f8a8 poser_charlesslow.obj
- 0003:000108bc $unwind$sprintf 000000018006f8bc poser_charlesslow.obj
- 0003:000108d0 $unwind$RunOpti 000000018006f8d0 poser_charlesslow.obj
- 0003:000108ec $unwind$PoserCharlesSlow 000000018006f8ec poser_charlesslow.obj
- 0003:00010908 $unwind$REGISTERPoserCharlesSlow 000000018006f908 poser_charlesslow.obj
- 0003:0001091c $unwind$OrthoSolve 000000018006f91c poser_daveortho.obj
- 0003:00010938 $unwind$PoserDaveOrtho 000000018006f938 poser_daveortho.obj
- 0003:00010954 $unwind$REGISTERPoserDaveOrtho 000000018006f954 poser_daveortho.obj
- 0003:00010968 $unwind$PoserDummy 000000018006f968 poser_dummy.obj
- 0003:0001097c $unwind$REGISTERPoserDummy 000000018006f97c poser_dummy.obj
- 0003:00010990 $unwind$distance 000000018006f990 poser_octavioradii.obj
- 0003:000109a4 $unwind$angleBetweenSensors 000000018006f9a4 poser_octavioradii.obj
- 0003:000109b8 $unwind$calculateFitness 000000018006f9b8 poser_octavioradii.obj
- 0003:000109cc $unwind$getGradient 000000018006f9cc poser_octavioradii.obj
- 0003:000109e8 $unwind$normalizeAndMultiplyVector 000000018006f9e8 poser_octavioradii.obj
- 0003:000109fc $unwind$RefineEstimateUsingGradientDescentRadii 000000018006f9fc poser_octavioradii.obj
- 0003:00010a18 $unwind$SolveForLighthouseRadii 000000018006fa18 poser_octavioradii.obj
- 0003:00010a34 $unwind$QuickPose 000000018006fa34 poser_octavioradii.obj
- 0003:00010a50 $unwind$PoserOctavioRadii 000000018006fa50 poser_octavioradii.obj
- 0003:00010a6c $unwind$REGISTERPoserOctavioRadii 000000018006fa6c poser_octavioradii.obj
- 0003:00010a80 $unwind$writePoint 000000018006fa80 poser_turveytori.obj
- 0003:00010a94 $unwind$updateHeader 000000018006fa94 poser_turveytori.obj
- 0003:00010aa8 $unwind$writeAxes 000000018006faa8 poser_turveytori.obj
- 0003:00010abc $unwind$drawLineBetweenPoints 000000018006fabc poser_turveytori.obj
- 0003:00010ad0 $unwind$writePcdHeader 000000018006fad0 poser_turveytori.obj
- 0003:00010ae4 $unwind$writePointCloud 000000018006fae4 poser_turveytori.obj
- 0003:00010af8 $unwind$markPointWithStar 000000018006faf8 poser_turveytori.obj
- 0003:00010b0c $unwind$distance 000000018006fb0c poser_turveytori.obj
- 0003:00010b20 $unwind$GetRotationMatrixForTorus 000000018006fb20 poser_turveytori.obj
- 0003:00010b3c $unwind$RotateAndTranslatePoint 000000018006fb3c poser_turveytori.obj
- 0003:00010b58 $unwind$angleFromPoints 000000018006fb58 poser_turveytori.obj
- 0003:00010b74 $unwind$midpoint 000000018006fb74 poser_turveytori.obj
- 0003:00010b90 $unwind$estimateToroidalAndPoloidalAngleOfPoint 000000018006fb90 poser_turveytori.obj
- 0003:00010bac $unwind$angleBetweenSensors 000000018006fbac poser_turveytori.obj
- 0003:00010bc0 $unwind$pythAngleBetweenSensors2 000000018006fbc0 poser_turveytori.obj
- 0003:00010bd4 $unwind$calculateTorusPointFromAngles 000000018006fbd4 poser_turveytori.obj
- 0003:00010bf0 $unwind$getPointFitnessForPna 000000018006fbf0 poser_turveytori.obj
- 0003:00010c0c $unwind$compareFlts 000000018006fc0c poser_turveytori.obj
- 0003:00010c20 $unwind$getPointFitness 000000018006fc20 poser_turveytori.obj
- 0003:00010c3c $unwind$getGradient 000000018006fc3c poser_turveytori.obj
- 0003:00010c58 $unwind$getNormalizedAndScaledVector 000000018006fc58 poser_turveytori.obj
- 0003:00010c74 $unwind$getAvgPoints 000000018006fc74 poser_turveytori.obj
- 0003:00010c90 $unwind$RefineEstimateUsingModifiedGradientDescent1 000000018006fc90 poser_turveytori.obj
- 0003:00010cac $unwind$RotationEstimateFitnessOld 000000018006fcac poser_turveytori.obj
- 0003:00010cc8 $unwind$RotationEstimateFitnessAxisAngle 000000018006fcc8 poser_turveytori.obj
- 0003:00010ce4 $unwind$RotationEstimateFitnessAxisAngleOriginal 000000018006fce4 poser_turveytori.obj
- 0003:00010d00 $unwind$RotationEstimateFitnessQuaternion 000000018006fd00 poser_turveytori.obj
- 0003:00010d1c $unwind$getRotationGradientQuaternion 000000018006fd1c poser_turveytori.obj
- 0003:00010d38 $unwind$getRotationGradientAxisAngle 000000018006fd38 poser_turveytori.obj
- 0003:00010d54 $unwind$getNormalizedAndScaledRotationGradient 000000018006fd54 poser_turveytori.obj
- 0003:00010d68 $unwind$WhereIsTheTrackedObjectAxisAngle 000000018006fd68 poser_turveytori.obj
- 0003:00010d7c $unwind$RefineRotationEstimateAxisAngle 000000018006fd7c poser_turveytori.obj
- 0003:00010d98 $unwind$RefineRotationEstimateQuaternion 000000018006fd98 poser_turveytori.obj
- 0003:00010db4 $unwind$SolveForRotation 000000018006fdb4 poser_turveytori.obj
- 0003:00010dd0 $unwind$SolveForRotationQuat 000000018006fdd0 poser_turveytori.obj
- 0003:00010dec $unwind$SolveForLighthouse 000000018006fdec poser_turveytori.obj
- 0003:00010e08 $unwind$QuickPose 000000018006fe08 poser_turveytori.obj
- 0003:00010e24 $unwind$PoserTurveyTori 000000018006fe24 poser_turveytori.obj
- 0003:00010e4c $unwind$REGISTERPoserTurveyTori 000000018006fe4c poser_turveytori.obj
- 0003:00010e60 $unwind$survive_verify_FLT_size 000000018006fe60 survive.obj
- 0003:00010e74 $unwind$survive_init_internal 000000018006fe74 survive.obj
- 0003:00010e88 $unwind$survive_install_htc_config_fn 000000018006fe88 survive.obj
- 0003:00010e9c $unwind$survive_install_info_fn 000000018006fe9c survive.obj
- 0003:00010eb0 $unwind$survive_install_error_fn 000000018006feb0 survive.obj
- 0003:00010ec4 $unwind$survive_install_light_fn 000000018006fec4 survive.obj
- 0003:00010ed8 $unwind$survive_install_imu_fn 000000018006fed8 survive.obj
- 0003:00010eec $unwind$survive_install_angle_fn 000000018006feec survive.obj
- 0003:00010f00 $unwind$survive_install_button_fn 000000018006ff00 survive.obj
- 0003:00010f14 $unwind$survive_install_raw_pose_fn 000000018006ff14 survive.obj
- 0003:00010f28 $unwind$survive_install_lighthouse_pose_fn 000000018006ff28 survive.obj
- 0003:00010f3c $unwind$survive_startup 000000018006ff3c survive.obj
- 0003:00010f58 $unwind$survive_poll 000000018006ff58 survive.obj
- 0003:00010f6c $unwind$survive_close 000000018006ff6c survive.obj
- 0003:00010f88 $unwind$survive_get_so_by_name 000000018006ff88 survive.obj
- 0003:00010f9c $unwind$survive_simple_inflate 000000018006ff9c survive.obj
- 0003:00010fb8 $unwind$survive_send_magic 000000018006ffb8 survive.obj
- 0003:00010fcc $unwind$survive_haptic 000000018006ffcc survive.obj
- 0003:00010fe0 $unwind$survive_add_object 000000018006ffe0 survive.obj
- 0003:00010ff4 $unwind$survive_add_driver 000000018006fff4 survive.obj
- 0003:00011008 $unwind$GetDriverByConfig 0000000180070008 survive.obj
- 0003:00011024 $unwind$SymnumCheck 0000000180070024 survive.obj
- 0003:00011038 $unwind$survivefault 0000000180070038 survive.obj
- 0003:0001104c $unwind$survivenote 000000018007004c survive.obj
- 0003:00011060 $unwind$button_servicer 0000000180070060 survive.obj
- 0003:00011074 $unwind$vsnprintf 0000000180070074 survive_cal.obj
- 0003:00011088 $unwind$snprintf 0000000180070088 survive_cal.obj
- 0003:0001109c $unwind$survive_cal_install 000000018007009c survive_cal.obj
- 0003:000110b8 $unwind$survive_cal_get_status 00000001800700b8 survive_cal.obj
- 0003:000110cc $unwind$survive_cal_light 00000001800700cc survive_cal.obj
- 0003:000110e0 $unwind$survive_cal_angle 00000001800700e0 survive_cal.obj
- 0003:000110fc $unwind$handle_calibration 00000001800700fc survive_cal.obj
- 0003:00011118 $unwind$reset_calibration 0000000180070118 survive_cal.obj
- 0003:0001112c $unwind$ootx_packet_clbk_d 000000018007012c survive_cal.obj
- 0003:00011148 $unwind$decode_acode 0000000180070148 survive_charlesbiguator.obj
- 0003:0001115c $unwind$HandleOOTX 000000018007015c survive_charlesbiguator.obj
- 0003:00011170 $unwind$DisambiguatorCharles 0000000180070170 survive_charlesbiguator.obj
- 0003:0001118c $unwind$REGISTERDisambiguatorCharles 000000018007018c survive_charlesbiguator.obj
- 0003:000111a0 $unwind$survive_configf 00000001800701a0 survive_config.obj
- 0003:000111b4 $unwind$survive_configi 00000001800701b4 survive_config.obj
- 0003:000111c8 $unwind$survive_configs 00000001800701c8 survive_config.obj
- 0003:000111dc $unwind$init_config_group 00000001800701dc survive_config.obj
- 0003:000111f0 $unwind$destroy_config_group 00000001800701f0 survive_config.obj
- 0003:00011204 $unwind$config_set_lighthouse 0000000180070204 survive_config.obj
- 0003:00011218 $unwind$config_read_lighthouse 0000000180070218 survive_config.obj
- 0003:00011234 $unwind$config_read 0000000180070234 survive_config.obj
- 0003:00011248 $unwind$config_save 0000000180070248 survive_config.obj
- 0003:0001125c $unwind$config_set_float 000000018007025c survive_config.obj
- 0003:00011270 $unwind$config_set_uint32 0000000180070270 survive_config.obj
- 0003:00011284 $unwind$config_set_str 0000000180070284 survive_config.obj
- 0003:00011298 $unwind$config_read_float 0000000180070298 survive_config.obj
- 0003:000112ac $unwind$config_read_float_array 00000001800702ac survive_config.obj
- 0003:000112c0 $unwind$config_read_uint32 00000001800702c0 survive_config.obj
- 0003:000112d4 $unwind$config_read_str 00000001800702d4 survive_config.obj
- 0003:000112e8 $unwind$config_set_float_a 00000001800702e8 survive_config.obj
- 0003:000112fc $unwind$init_config_entry 00000001800702fc survive_config.obj
- 0003:00011310 $unwind$destroy_config_entry 0000000180070310 survive_config.obj
- 0003:00011324 $unwind$resize_config_group 0000000180070324 survive_config.obj
- 0003:00011338 $unwind$sstrcpy 0000000180070338 survive_config.obj
- 0003:0001134c $unwind$find_config_entry 000000018007034c survive_config.obj
- 0003:00011360 $unwind$next_unused_entry 0000000180070360 survive_config.obj
- 0003:00011374 $unwind$_json_write_float_array 0000000180070374 survive_config.obj
- 0003:00011388 $unwind$write_config_group 0000000180070388 survive_config.obj
- 0003:0001139c $unwind$print_json_value 000000018007039c survive_config.obj
- 0003:000113b0 $unwind$handle_config_group 00000001800703b0 survive_config.obj
- 0003:000113c4 $unwind$pop_config_group 00000001800703c4 survive_config.obj
- 0003:000113d8 $unwind$parse_floats 00000001800703d8 survive_config.obj
- 0003:000113f4 $unwind$parse_uint32 00000001800703f4 survive_config.obj
- 0003:00011410 $unwind$handle_tag_value 0000000180070410 survive_config.obj
- 0003:00011424 $unwind$sc_search 0000000180070424 survive_config.obj
- 0003:00011438 $unwind$config_entry_as_FLT 0000000180070438 survive_config.obj
- 0003:0001144c $unwind$config_entry_as_uint32_t 000000018007044c survive_config.obj
- 0003:00011460 $unwind$survive_create_hmd 0000000180070460 survive_default_devices.obj
- 0003:00011474 $unwind$survive_create_wm0 0000000180070474 survive_default_devices.obj
- 0003:00011488 $unwind$survive_create_wm1 0000000180070488 survive_default_devices.obj
- 0003:0001149c $unwind$survive_create_tr0 000000018007049c survive_default_devices.obj
- 0003:000114b0 $unwind$survive_create_ww0 00000001800704b0 survive_default_devices.obj
- 0003:000114c4 $unwind$survive_load_htc_config_format 00000001800704c4 survive_default_devices.obj
- 0003:000114e0 $unwind$survive_create_device 00000001800704e0 survive_default_devices.obj
- 0003:000114f4 $unwind$jsoneq 00000001800704f4 survive_default_devices.obj
- 0003:00011508 $unwind$ParsePoints 0000000180070508 survive_default_devices.obj
- 0003:00011524 $unwind$handle_lightcap 0000000180070524 survive_disambiguator.obj
- 0003:00011538 $unwind$RegisterDriver 0000000180070538 survive_driverman.obj
- 0003:0001154c $unwind$GetDriver 000000018007054c survive_driverman.obj
- 0003:00011560 $unwind$GetDriverNameMatching 0000000180070560 survive_driverman.obj
- 0003:00011574 $unwind$ListDrivers 0000000180070574 survive_driverman.obj
- 0003:00011588 $unwind$__local_stdio_scanf_options 0000000180070588 survive_playback.obj
- 0003:0001159c $unwind$vfprintf 000000018007059c survive_playback.obj
- 0003:000115b0 $unwind$_vsscanf_l 00000001800705b0 survive_playback.obj
- 0003:000115c4 $unwind$sscanf 00000001800705c4 survive_playback.obj
- 0003:000115d8 $unwind$timestamp_in_us 00000001800705d8 survive_playback.obj
- 0003:000115ec $unwind$write_to_output 00000001800705ec survive_playback.obj
- 0003:00011600 $unwind$survive_recording_config_process 0000000180070600 survive_playback.obj
- 0003:00011614 $unwind$survive_recording_lighthouse_process 0000000180070614 survive_playback.obj
- 0003:00011628 $unwind$survive_recording_raw_pose_process 0000000180070628 survive_playback.obj
- 0003:0001163c $unwind$survive_recording_info_process 000000018007063c survive_playback.obj
- 0003:00011650 $unwind$survive_recording_angle_process 0000000180070650 survive_playback.obj
- 0003:00011664 $unwind$survive_recording_lightcap 0000000180070664 survive_playback.obj
- 0003:00011678 $unwind$survive_recording_light_process 0000000180070678 survive_playback.obj
- 0003:0001168c $unwind$survive_recording_imu_process 000000018007068c survive_playback.obj
- 0003:000116a0 $unwind$parse_and_run_imu 00000001800706a0 survive_playback.obj
- 0003:000116bc $unwind$parse_and_run_rawlight 00000001800706bc survive_playback.obj
- 0003:000116d8 $unwind$parse_and_run_lightcode 00000001800706d8 survive_playback.obj
- 0003:000116f4 $unwind$playback_poll 00000001800706f4 survive_playback.obj
- 0003:00011710 $unwind$playback_close 0000000180070710 survive_playback.obj
- 0003:00011724 $unwind$survive_install_recording 0000000180070724 survive_playback.obj
- 0003:00011740 $unwind$DriverRegPlayback 0000000180070740 survive_playback.obj
- 0003:0001175c $unwind$REGISTERDriverRegPlayback 000000018007075c survive_playback.obj
- 0003:00011770 $unwind$survive_default_light_process 0000000180070770 survive_process.obj
- 0003:00011784 $unwind$survive_default_imu_process 0000000180070784 survive_process.obj
- 0003:000117a0 $unwind$survive_default_angle_process 00000001800707a0 survive_process.obj
- 0003:000117b4 $unwind$survive_default_button_process 00000001800707b4 survive_process.obj
- 0003:000117c8 $unwind$survive_default_raw_pose_process 00000001800707c8 survive_process.obj
- 0003:000117dc $unwind$survive_default_lighthouse_pose_process 00000001800707dc survive_process.obj
- 0003:000117f0 $unwind$survive_default_htc_config_process 00000001800707f0 survive_process.obj
- 0003:00011804 $unwind$survive_calibration_options_config_apply 0000000180070804 survive_reproject.obj
- 0003:00011818 $unwind$survive_calibration_default_config 0000000180070818 survive_reproject.obj
- 0003:0001182c $unwind$survive_calibration_config_max_idx 000000018007082c survive_reproject.obj
- 0003:00011848 $unwind$survive_calibration_config_create_from_idx 0000000180070848 survive_reproject.obj
- 0003:00011864 $unwind$survive_calibration_config_index 0000000180070864 survive_reproject.obj
- 0003:00011878 $unwind$survive_reproject 0000000180070878 survive_reproject.obj
- 0003:0001188c $unwind$survive_reproject_from_pose 000000018007088c survive_reproject.obj
- 0003:000118a0 $unwind$survive_reproject_from_pose_with_config 00000001800708a0 survive_reproject.obj
- 0003:000118bc $unwind$survive_calibration_options_config_normalize 00000001800708bc survive_reproject.obj
- 0003:000118d0 $unwind$gibf 00000001800708d0 survive_reproject.obj
- 0003:000118e4 $unwind$SurviveSensorActivations_add 00000001800708e4 survive_sensor_activations.obj
- 0003:000118f8 $unwind$SurviveSensorActivations_add_imu 00000001800708f8 survive_sensor_activations.obj
- 0003:0001190c $unwind$SurviveSensorActivations_isPairValid 000000018007090c survive_sensor_activations.obj
- 0003:00011920 $unwind$handle_lightcap2_getAcodeFromSyncPulse 0000000180070920 survive_turveybiguator.obj
- 0003:00011934 $unwind$remove_outliers 0000000180070934 survive_turveybiguator.obj
- 0003:00011948 $unwind$handle_lightcap2_process_sweep_data 0000000180070948 survive_turveybiguator.obj
- 0003:0001195c $unwind$handle_lightcap2_sync 000000018007095c survive_turveybiguator.obj
- 0003:00011970 $unwind$handle_lightcap2_sweep 0000000180070970 survive_turveybiguator.obj
- 0003:00011984 $unwind$DisambiguatorTurvey 0000000180070984 survive_turveybiguator.obj
- 0003:00011998 $unwind$REGISTERDisambiguatorTurvey 0000000180070998 survive_turveybiguator.obj
- 0003:000119ac $unwind$_vfwprintf_l 00000001800709ac survive_vive.obj
- 0003:000119c0 $unwind$wprintf 00000001800709c0 survive_vive.obj
- 0003:000119d4 $unwind$survive_data_cb 00000001800709d4 survive_vive.obj
- 0003:000119f0 $unwind$survive_usb_init 00000001800709f0 survive_vive.obj
- 0003:00011a0c $unwind$survive_get_config 0000000180070a0c survive_vive.obj
- 0003:00011a28 $unwind$survive_vive_send_magic 0000000180070a28 survive_vive.obj
- 0003:00011a44 $unwind$HAPIReceiver 0000000180070a44 survive_vive.obj
- 0003:00011a58 $unwind$AttachInterface 0000000180070a58 survive_vive.obj
- 0003:00011a6c $unwind$update_feature_report 0000000180070a6c survive_vive.obj
- 0003:00011a80 $unwind$getupdate_feature_report 0000000180070a80 survive_vive.obj
- 0003:00011a94 $unwind$hid_get_feature_report_timeout 0000000180070a94 survive_vive.obj
- 0003:00011aa8 $unwind$survive_vive_send_haptic 0000000180070aa8 survive_vive.obj
- 0003:00011ac4 $unwind$survive_vive_usb_close 0000000180070ac4 survive_vive.obj
- 0003:00011ad8 $unwind$survive_vive_usb_poll 0000000180070ad8 survive_vive.obj
- 0003:00011aec $unwind$calibrate_acc 0000000180070aec survive_vive.obj
- 0003:00011b00 $unwind$calibrate_gyro 0000000180070b00 survive_vive.obj
- 0003:00011b14 $unwind$incrementAndPostButtonQueue 0000000180070b14 survive_vive.obj
- 0003:00011b28 $unwind$registerButtonEvent 0000000180070b28 survive_vive.obj
- 0003:00011b3c $unwind$handle_watchman 0000000180070b3c survive_vive.obj
- 0003:00011b58 $unwind$LoadConfig 0000000180070b58 survive_vive.obj
- 0003:00011b74 $unwind$survive_vive_close 0000000180070b74 survive_vive.obj
- 0003:00011b88 $unwind$init_SurviveObject 0000000180070b88 survive_vive.obj
- 0003:00011b9c $unwind$DriverRegHTCVive 0000000180070b9c survive_vive.obj
- 0003:00011bb8 $unwind$REGISTERDriverRegHTCVive 0000000180070bb8 survive_vive.obj
- 0003:00011bcc $unwind$getdelim 0000000180070bcc getdelim.obj
- 0003:00011be0 $unwind$getline 0000000180070be0 getdelim.obj
- 0003:00011bf4 $unwind$_RTC_Shutdown 0000000180070bf4 MSVCRTD:_init_.obj
- 0003:00011bfc $unwind$_RTC_InitBase 0000000180070bfc MSVCRTD:_init_.obj
- 0003:00011c04 $unwind$__report_securityfailure 0000000180070c04 MSVCRTD:gs_report.obj
- 0003:00011c0c $unwind$__report_securityfailureEx 0000000180070c0c MSVCRTD:gs_report.obj
- 0003:00011c14 $unwind$__report_rangecheckfailure 0000000180070c14 MSVCRTD:gs_report.obj
- 0003:00011c1c $unwind$__report_gsfailure 0000000180070c1c MSVCRTD:gs_report.obj
- 0003:00011c24 $unwind$capture_current_context 0000000180070c24 MSVCRTD:gs_report.obj
- 0003:00011c2c $unwind$capture_previous_context 0000000180070c2c MSVCRTD:gs_report.obj
- 0003:00011c34 $unwind$__raise_securityfailure 0000000180070c34 MSVCRTD:gs_report.obj
- 0003:00011c3c $unwind$_RTC_CheckStackVars 0000000180070c3c MSVCRTD:_stack_.obj
- 0003:00011c50 $chain$0$_RTC_CheckStackVars 0000000180070c50 MSVCRTD:_stack_.obj
- 0003:00011c68 $chain$1$_RTC_CheckStackVars 0000000180070c68 MSVCRTD:_stack_.obj
- 0003:00011c7c $unwind$_RTC_CheckStackVars2 0000000180070c7c MSVCRTD:_stack_.obj
- 0003:00011c8c $chain$1$_RTC_CheckStackVars2 0000000180070c8c MSVCRTD:_stack_.obj
- 0003:00011ca8 $chain$2$_RTC_CheckStackVars2 0000000180070ca8 MSVCRTD:_stack_.obj
- 0003:00011cc0 $chain$3$_RTC_CheckStackVars2 0000000180070cc0 MSVCRTD:_stack_.obj
- 0003:00011cd8 $chain$4$_RTC_CheckStackVars2 0000000180070cd8 MSVCRTD:_stack_.obj
- 0003:00011cec $chain$5$_RTC_CheckStackVars2 0000000180070cec MSVCRTD:_stack_.obj
- 0003:00011d00 $chain$6$_RTC_CheckStackVars2 0000000180070d00 MSVCRTD:_stack_.obj
- 0003:00011d14 $unwind$_RTC_AllocaHelper 0000000180070d14 MSVCRTD:_stack_.obj
- 0003:00011d1c $chain$0$_RTC_AllocaHelper 0000000180070d1c MSVCRTD:_stack_.obj
- 0003:00011d34 $chain$1$_RTC_AllocaHelper 0000000180070d34 MSVCRTD:_stack_.obj
- 0003:00011d48 $unwind$__GSHandlerCheckCommon 0000000180070d48 MSVCRTD:_gshandler_.obj
- 0003:00011d50 $unwind$__GSHandlerCheck 0000000180070d50 MSVCRTD:_gshandler_.obj
- 0003:00011d58 $xdatasym 0000000180070d58 MSVCRTD:_amdsecgs_.obj
- 0003:00011d60 $xdatasym 0000000180070d60 MSVCRTD:_chkstk_.obj
- 0003:00011d68 $unwind$?dllmain_crt_process_attach@@YAHQEAUHINSTANCE__@@QEAX@Z 0000000180070d68 MSVCRTD:dll_dllmain.obj
- 0003:00011d8c $unwind$?fin$0@?0??dllmain_crt_process_attach@@YAHQEAUHINSTANCE__@@QEAX@Z@4HA 0000000180070d8c MSVCRTD:dll_dllmain.obj
- 0003:00011d94 $unwind$?dllmain_crt_process_detach@@YAH_N@Z 0000000180070d94 MSVCRTD:dll_dllmain.obj
- 0003:00011db8 $unwind$?fin$0@?0??dllmain_crt_process_detach@@YAH_N@Z@4HA 0000000180070db8 MSVCRTD:dll_dllmain.obj
- 0003:00011dc0 $unwind$?dllmain_crt_dispatch@@YAHQEAUHINSTANCE__@@KQEAX@Z 0000000180070dc0 MSVCRTD:dll_dllmain.obj
- 0003:00011dc8 $unwind$_CRT_INIT 0000000180070dc8 MSVCRTD:dll_dllmain.obj
- 0003:00011dd0 $unwind$?dllmain_raw@@YAHQEAUHINSTANCE__@@KQEAX@Z 0000000180070dd0 MSVCRTD:dll_dllmain.obj
- 0003:00011dd8 $unwind$?dllmain_dispatch@@YAHQEAUHINSTANCE__@@KQEAX@Z 0000000180070dd8 MSVCRTD:dll_dllmain.obj
- 0003:00011dfc $unwind$?filt$0@?0??dllmain_dispatch@@YAHQEAUHINSTANCE__@@KQEAX@Z@4HA 0000000180070dfc MSVCRTD:dll_dllmain.obj
- 0003:00011e04 $unwind$_DllMainCRTStartup 0000000180070e04 MSVCRTD:dll_dllmain.obj
- 0003:00011e0c $unwind$_RTC_UninitUse 0000000180070e0c MSVCRTD:_error_.obj
- 0003:00011e28 $unwind$?_RTC_StackFailure@@YAXPEAXPEBD@Z 0000000180070e28 MSVCRTD:_error_.obj
- 0003:00011e48 $unwind$?_RTC_AllocaFailure@@YAXPEAXPEAU_RTC_ALLOCA_NODE@@H@Z 0000000180070e48 MSVCRTD:_error_.obj
- 0003:00011e64 $chain$0$?_RTC_AllocaFailure@@YAXPEAXPEAU_RTC_ALLOCA_NODE@@H@Z 0000000180070e64 MSVCRTD:_error_.obj
- 0003:00011e7c $chain$1$?_RTC_AllocaFailure@@YAXPEAXPEAU_RTC_ALLOCA_NODE@@H@Z 0000000180070e7c MSVCRTD:_error_.obj
- 0003:00011e90 $unwind$_vsprintf_s_l 0000000180070e90 MSVCRTD:_error_.obj
- 0003:00011ea8 $unwind$sprintf_s 0000000180070ea8 MSVCRTD:_error_.obj
- 0003:00011eb8 $unwind$?notify_debugger@@YAXAEBUtagEXCEPTION_VISUALCPP_DEBUG_INFO@@@Z 0000000180070eb8 MSVCRTD:_error_.obj
- 0003:00011edc $unwind$?filt$0@?0??notify_debugger@@YAXAEBUtagEXCEPTION_VISUALCPP_DEBUG_INFO@@@Z@4HA 0000000180070edc MSVCRTD:_error_.obj
- 0003:00011ee4 $unwind$?DebuggerProbe@@YA_NK@Z 0000000180070ee4 MSVCRTD:_error_.obj
- 0003:00011eec $unwind$?DebuggerRuntime@@YA_NKHPEAXPEB_W@Z 0000000180070eec MSVCRTD:_error_.obj
- 0003:00011ef4 $unwind$?failwithmessage@@YAXPEAXHHPEBD@Z 0000000180070ef4 MSVCRTD:_error_.obj
- 0003:00011f1c $unwind$?_getMemBlockDataString@@YAXPEAD0PEBD_K@Z 0000000180070f1c MSVCRTD:_error_.obj
- 0003:00011f30 $chain$3$?_getMemBlockDataString@@YAXPEAD0PEBD_K@Z 0000000180070f30 MSVCRTD:_error_.obj
- 0003:00011f54 $chain$4$?_getMemBlockDataString@@YAXPEAD0PEBD_K@Z 0000000180070f54 MSVCRTD:_error_.obj
- 0003:00011f68 $unwind$__security_init_cookie 0000000180070f68 MSVCRTD:gs_support.obj
- 0003:00011f70 $unwind$__get_entropy 0000000180070f70 MSVCRTD:gs_support.obj
- 0003:00011f78 $unwind$DllMain 0000000180070f78 MSVCRTD:dll_dllmain_stub.obj
- 0003:00011f80 $unwind$?__scrt_initialize_type_info@@YAXXZ 0000000180070f80 MSVCRTD:tncleanup.obj
- 0003:00011f88 $unwind$?__scrt_uninitialize_type_info@@YAXXZ 0000000180070f88 MSVCRTD:tncleanup.obj
- 0003:00011f90 $unwind$__scrt_initialize_default_local_stdio_options 0000000180070f90 MSVCRTD:default_local_stdio_options.obj
- 0003:00011f98 $unwind$atexit 0000000180070f98 MSVCRTD:utility.obj
- 0003:00011fa0 $unwind$_onexit 0000000180070fa0 MSVCRTD:utility.obj
- 0003:00011fa8 $unwind$at_quick_exit 0000000180070fa8 MSVCRTD:utility.obj
- 0003:00011fb0 $unwind$__scrt_is_nonwritable_in_current_image 0000000180070fb0 MSVCRTD:utility.obj
- 0003:00011fd4 $unwind$__scrt_is_nonwritable_in_current_image$filt$0 0000000180070fd4 MSVCRTD:utility.obj
- 0003:00011fdc $unwind$__scrt_acquire_startup_lock 0000000180070fdc MSVCRTD:utility.obj
- 0003:00011fe4 $unwind$__scrt_release_startup_lock 0000000180070fe4 MSVCRTD:utility.obj
- 0003:00011fec $unwind$__scrt_initialize_crt 0000000180070fec MSVCRTD:utility.obj
- 0003:00011ff4 $unwind$__scrt_uninitialize_crt 0000000180070ff4 MSVCRTD:utility.obj
- 0003:00011ffc $unwind$__scrt_initialize_onexit_tables 0000000180070ffc MSVCRTD:utility.obj
- 0003:0001200c $unwind$__scrt_dllmain_exception_filter 000000018007100c MSVCRTD:utility.obj
- 0003:00012014 $unwind$__scrt_dllmain_before_initialize_c 0000000180071014 MSVCRTD:utility.obj
- 0003:0001201c $unwind$__scrt_dllmain_after_initialize_c 000000018007101c MSVCRTD:utility.obj
- 0003:00012024 $unwind$__scrt_dllmain_uninitialize_c 0000000180071024 MSVCRTD:utility.obj
- 0003:0001202c $unwind$__scrt_dllmain_uninitialize_critical 000000018007102c MSVCRTD:utility.obj
- 0003:00012034 $unwind$__scrt_dllmain_crt_thread_attach 0000000180071034 MSVCRTD:utility.obj
- 0003:0001203c $unwind$__scrt_dllmain_crt_thread_detach 000000018007103c MSVCRTD:utility.obj
- 0003:00012044 $unwind$?configure_argv@__scrt_narrow_argv_policy@@SAHXZ 0000000180071044 MSVCRTD:utility.obj
- 0003:0001204c $unwind$?initialize_environment@__scrt_narrow_environment_policy@@SAHXZ 000000018007104c MSVCRTD:utility.obj
- 0003:00012054 $unwind$?is_potentially_valid_image_base@@YA_NQEAX@Z 0000000180071054 MSVCRTD:utility.obj
- 0003:0001205c $unwind$?find_pe_section@@YAPEAU_IMAGE_SECTION_HEADER@@QEAE_K@Z 000000018007105c MSVCRTD:utility.obj
- 0003:00012064 $unwind$??$__crt_fast_decode_pointer@PEAP6AXXZ@@YAPEAP6AXXZQEAP6AXXZ@Z 0000000180071064 MSVCRTD:utility.obj
- 0003:0001206c $unwind$??$__crt_fast_encode_pointer@PEAP6AXXZ@@YAPEAP6AXXZQEAP6AXXZ@Z 000000018007106c MSVCRTD:utility.obj
- 0003:00012074 $unwind$__scrt_get_show_window_mode 0000000180071074 MSVCRTD:utility_desktop.obj
- 0003:00012084 $unwind$__scrt_is_managed_app 0000000180071084 MSVCRTD:utility_desktop.obj
- 0003:0001208c $unwind$__scrt_set_unhandled_exception_filter 000000018007108c MSVCRTD:utility_desktop.obj
- 0003:00012094 $unwind$__scrt_fastfail 0000000180071094 MSVCRTD:utility_desktop.obj
- 0003:000120a4 $unwind$__scrt_unhandled_exception_filter 00000001800710a4 MSVCRTD:utility_desktop.obj
- 0003:000120ac $unwind$_RTC_Initialize 00000001800710ac MSVCRTD:_initsect_.obj
- 0003:000120bc $chain$0$_RTC_Initialize 00000001800710bc MSVCRTD:_initsect_.obj
- 0003:000120d4 $chain$1$_RTC_Initialize 00000001800710d4 MSVCRTD:_initsect_.obj
- 0003:000120e8 $unwind$_RTC_Terminate 00000001800710e8 MSVCRTD:_initsect_.obj
- 0003:000120f8 $chain$0$_RTC_Terminate 00000001800710f8 MSVCRTD:_initsect_.obj
- 0003:00012110 $chain$1$_RTC_Terminate 0000000180071110 MSVCRTD:_initsect_.obj
- 0003:00012124 $unwind$_guard_check_icall 0000000180071124 MSVCRTD:checkcfg.obj
- 0003:0001212c $unwind$?_RTC_GetSrcLine@@YAHPEAEPEA_WKPEAH1K@Z 000000018007112c MSVCRTD:_pdblkup_.obj
- 0003:00012144 $chain$2$?_RTC_GetSrcLine@@YAHPEAEPEA_WKPEAH1K@Z 0000000180071144 MSVCRTD:_pdblkup_.obj
- 0003:00012160 $chain$3$?_RTC_GetSrcLine@@YAHPEAEPEA_WKPEAH1K@Z 0000000180071160 MSVCRTD:_pdblkup_.obj
- 0003:00012178 $chain$4$?_RTC_GetSrcLine@@YAHPEAEPEA_WKPEAH1K@Z 0000000180071178 MSVCRTD:_pdblkup_.obj
- 0003:0001218c $chain$5$?_RTC_GetSrcLine@@YAHPEAEPEA_WKPEAH1K@Z 000000018007118c MSVCRTD:_pdblkup_.obj
- 0003:000121a0 $unwind$?GetPdbDllFromInstallPath@@YAPEAUHINSTANCE__@@XZ 00000001800711a0 MSVCRTD:_pdblkup_.obj
- 0003:000121bc $chain$0$?GetPdbDllFromInstallPath@@YAPEAUHINSTANCE__@@XZ 00000001800711bc MSVCRTD:_pdblkup_.obj
- 0003:000121d4 $chain$1$?GetPdbDllFromInstallPath@@YAPEAUHINSTANCE__@@XZ 00000001800711d4 MSVCRTD:_pdblkup_.obj
- 0003:000121ec $chain$2$?GetPdbDllFromInstallPath@@YAPEAUHINSTANCE__@@XZ 00000001800711ec MSVCRTD:_pdblkup_.obj
- 0003:00012204 $chain$3$?GetPdbDllFromInstallPath@@YAPEAUHINSTANCE__@@XZ 0000000180071204 MSVCRTD:_pdblkup_.obj
- 0003:00012218 $chain$4$?GetPdbDllFromInstallPath@@YAPEAUHINSTANCE__@@XZ 0000000180071218 MSVCRTD:_pdblkup_.obj
- 0003:0001222c $chain$5$?GetPdbDllFromInstallPath@@YAPEAUHINSTANCE__@@XZ 000000018007122c MSVCRTD:_pdblkup_.obj
- 0003:00012240 $unwind$?GetPdbDllPathFromFilePath@@YAHPEB_WPEA_W_K@Z 0000000180071240 MSVCRTD:_pdblkup_.obj
- 0003:0001225c $unwind$?GetPdbDll@@YAPEAUHINSTANCE__@@XZ 000000018007125c MSVCRTD:_pdblkup_.obj
- 0003:00012270 $unwind$__isa_available_init 0000000180071270 MSVCRTD:_cpu_disp_.obj
- 0003:00012284 $unwind$__scrt_is_ucrt_dll_in_use 0000000180071284 MSVCRTD:ucrt_detection.obj
- 0003:0001228c $unwind$ReadNoFence64 000000018007128c MSVCRTD:guard_support.obj
- 0003:00012294 $unwind$ReadPointerNoFence 0000000180071294 MSVCRTD:guard_support.obj
- 0003:0001229c $unwind$_guard_icall_checks_enforced 000000018007129c MSVCRTD:guard_support.obj
- 0003:000122a4 $unwind$_guard_rf_checks_enforced 00000001800712a4 MSVCRTD:guard_support.obj
- 0003:000122b0 $xdatasym 00000001800712b0 MSVCRTD:_guard_dispatch_.obj
- 0003:000122b8 $xdatasym 00000001800712b8 MSVCRTD:_rfgfailure_.obj
- 0003:00012640 .edata 0000000180071640 libsurvive.exp
- 0003:00012668 rgpv 0000000180071668 libsurvive.exp
- 0003:000126d4 rgszName 00000001800716d4 libsurvive.exp
- 0003:00012740 rgwOrd 0000000180071740 libsurvive.exp
- 0003:00012776 szName 0000000180071776 libsurvive.exp
- 0003:00012785 $N00001 0000000180071785 libsurvive.exp
- 0003:000127a2 $N00002 00000001800717a2 libsurvive.exp
- 0003:000127be $N00003 00000001800717be libsurvive.exp
- 0003:000127d7 $N00004 00000001800717d7 libsurvive.exp
- 0003:000127f1 $N00005 00000001800717f1 libsurvive.exp
- 0003:0001280a $N00006 000000018007180a libsurvive.exp
- 0003:00012821 $N00007 0000000180071821 libsurvive.exp
- 0003:00012834 $N00008 0000000180071834 libsurvive.exp
- 0003:0001284e $N00009 000000018007184e libsurvive.exp
- 0003:00012866 $N00010 0000000180071866 libsurvive.exp
- 0003:00012870 $N00011 0000000180071870 libsurvive.exp
- 0003:0001287e $N00012 000000018007187e libsurvive.exp
- 0003:00012888 $N00013 0000000180071888 libsurvive.exp
- 0003:00012891 $N00014 0000000180071891 libsurvive.exp
- 0003:000128a6 $N00015 00000001800718a6 libsurvive.exp
- 0003:000128bd $N00016 00000001800718bd libsurvive.exp
- 0003:000128d4 $N00017 00000001800718d4 libsurvive.exp
- 0003:000128f0 $N00018 00000001800718f0 libsurvive.exp
- 0003:00012907 $N00019 0000000180071907 libsurvive.exp
- 0003:00012924 $N00020 0000000180071924 libsurvive.exp
- 0003:0001292d $N00021 000000018007192d libsurvive.exp
- 0003:00012936 $N00022 0000000180071936 libsurvive.exp
- 0003:00012944 $N00023 0000000180071944 libsurvive.exp
- 0003:0001294d $N00024 000000018007194d libsurvive.exp
- 0003:0001295e $N00025 000000018007195e libsurvive.exp
- 0003:00012976 $N00026 0000000180071976 libsurvive.exp
- 0003:0001298a $N00027 000000018007198a libsurvive.exp
- 0004:00000000 crc32_tab 0000000180072000 crc32.obj
- 0004:00000544 ?virgin@?1??fixed@@9@9 0000000180072544 puff.obj
- 0004:00000568 ?counter@?O@??PoserOctavioRadii@@9@9 0000000180072568 poser_octavioradii.obj
- 0004:00000574 RED 0000000180072574 poser_turveytori.obj
- 0004:00000578 GREEN 0000000180072578 poser_turveytori.obj
- 0004:0000057c BLUE 000000018007257c poser_turveytori.obj
- 0004:00000580 ?firstRun@?1??PoserTurveyTori@@9@9 0000000180072580 poser_turveytori.obj
- 0004:00000584 ?counter@?L@??PoserTurveyTori@@9@9 0000000180072584 poser_turveytori.obj
- 0004:00000588 ?counter@?M@??PoserTurveyTori@@9@9 0000000180072588 poser_turveytori.obj
- 0004:00000600 ?vive_magic_power_on@?3??survive_vive_send_magic@@9@9 0000000180072600 survive_vive.obj
- 0004:00000640 ?vive_magic_enable_lighthouse@?4??survive_vive_send_magic@@9@9 0000000180072640 survive_vive.obj
- 0004:00000648 ?vive_magic_enable_lighthouse2@?4??survive_vive_send_magic@@9@9 0000000180072648 survive_vive.obj
- 0004:00000650 ?vive_magic_power_on@?5??survive_vive_send_magic@@9@9 0000000180072650 survive_vive.obj
- 0004:00000658 ?vive_magic_enable_lighthouse@?6??survive_vive_send_magic@@9@9 0000000180072658 survive_vive.obj
- 0004:00000660 ?vive_magic_enable_lighthouse2@?6??survive_vive_send_magic@@9@9 0000000180072660 survive_vive.obj
- 0004:00000668 ?vive_magic_power_on@?7??survive_vive_send_magic@@9@9 0000000180072668 survive_vive.obj
- 0004:00000670 ?vive_magic_enable_lighthouse@?8??survive_vive_send_magic@@9@9 0000000180072670 survive_vive.obj
- 0004:00000678 ?vive_magic_enable_lighthouse2@?8??survive_vive_send_magic@@9@9 0000000180072678 survive_vive.obj
- 0004:00000680 ?vive_magic_power_off1@?L@??survive_vive_send_magic@@9@9 0000000180072680 survive_vive.obj
- 0004:000006c0 ?vive_magic_power_off2@?L@??survive_vive_send_magic@@9@9 00000001800726c0 survive_vive.obj
- 0004:000008e0 lib_handle 00000001800728e0 hid-windows.obj
- 0004:000008e8 initialized 00000001800728e8 hid-windows.obj
- 0004:000008f0 HidD_GetAttributes 00000001800728f0 hid-windows.obj
- 0004:000008f8 HidD_GetSerialNumberString 00000001800728f8 hid-windows.obj
- 0004:00000900 HidD_GetManufacturerString 0000000180072900 hid-windows.obj
- 0004:00000908 HidD_GetProductString 0000000180072908 hid-windows.obj
- 0004:00000910 HidD_SetFeature 0000000180072910 hid-windows.obj
- 0004:00000918 HidD_GetFeature 0000000180072918 hid-windows.obj
- 0004:00000920 HidD_GetIndexedString 0000000180072920 hid-windows.obj
- 0004:00000928 HidD_GetPreparsedData 0000000180072928 hid-windows.obj
- 0004:00000930 HidD_FreePreparsedData 0000000180072930 hid-windows.obj
- 0004:00000938 HidP_GetCaps 0000000180072938 hid-windows.obj
- 0004:00000940 HidD_SetNumInputBuffers 0000000180072940 hid-windows.obj
- 0004:00000980 ?lpf@?1??OGGetAbsoluteTime@@9@9 0000000180072980 os_generic.obj
- 0004:00000988 ?NtQuerySemaphore@?1??OGGetSema@@9@9 0000000180072988 os_generic.obj
- 0004:000009a0 ?lencnt@?1??fixed@@9@9 00000001800729a0 puff.obj
- 0004:000009c0 ?lensym@?1??fixed@@9@9 00000001800729c0 puff.obj
- 0004:00000c00 ?distcnt@?1??fixed@@9@9 0000000180072c00 puff.obj
- 0004:00000c20 ?distsym@?1??fixed@@9@9 0000000180072c20 puff.obj
- 0004:00000c60 ?lencode@?1??fixed@@9@9 0000000180072c60 puff.obj
- 0004:00000c70 ?distcode@?1??fixed@@9@9 0000000180072c70 puff.obj
- 0004:00000d58 ttDebug 0000000180072d58 poser_turveytori.obj
- 0004:00000d5c did_runtime_symnum 0000000180072d5c survive.obj
- 0004:00000d60 ?lighthouses_completed@?1??ootx_packet_clbk_d@@9@9 0000000180072d60 survive_cal.obj
- 0004:00000d70 Drivers 0000000180072d70 survive_driverman.obj
- 0004:00000e70 DriverNames 0000000180072e70 survive_driverman.obj
- 0004:00000f70 NrDrivers 0000000180072f70 survive_driverman.obj
- 0004:00000fe0 ?start_time_us@?1??timestamp_in_us@@9@9 0000000180072fe0 survive_playback.obj
- 0004:00000fe8 ?display_once@?3??parse_and_run_imu@@9@9 0000000180072fe8 survive_playback.obj
- 0004:00000fe9 ?display_once@?2??parse_and_run_rawlight@@9@9 0000000180072fe9 survive_playback.obj
- 0004:00000fea ?display_once@?3??parse_and_run_lightcode@@9@9 0000000180072fea survive_playback.obj
- 0004:00000ff0 ?def@?1??survive_calibration_default_config@@9@9 0000000180072ff0 survive_reproject.obj
- 0004:00001000 ?counts@?9??handle_lightcap2_process_sweep_data@@9@9 0000000180073000 survive_turveybiguator.obj
- 0004:00001133 ?init@?1??_RTC_InitBase@@9@4_NA 0000000180073133 MSVCRTD:_init_.obj
- 0004:00001140 GS_ExceptionRecord 0000000180073140 MSVCRTD:gs_report.obj
- 0004:000011e0 GS_ContextRecord 00000001800731e0 MSVCRTD:gs_report.obj
- 0004:000017c8 ?__proc_attached@@3HA 00000001800737c8 MSVCRTD:dll_dllmain.obj
- 0004:000017d0 ?_RTC_ErrorReportFunc@@3P6AHHPEBDH00ZZEA 00000001800737d0 MSVCRTD:_userapi_.obj
- 0004:000017d8 ?_RTC_ErrorReportFuncW@@3P6AHHPEB_WH00ZZEA 00000001800737d8 MSVCRTD:_userapi_.obj
- 0004:0000182c ?module_local_atexit_table_initialized@@3_NA 000000018007382c MSVCRTD:utility.obj
- 0004:00001838 ?module_local_atexit_table@@3U_onexit_table_t@@A 0000000180073838 MSVCRTD:utility.obj
- 0004:00001850 ?module_local_at_quick_exit_table@@3U_onexit_table_t@@A 0000000180073850 MSVCRTD:utility.obj
- 0004:00001868 ?is_initialized_as_dll@@3_NA 0000000180073868 MSVCRTD:utility.obj
- 0004:00001880 ?mspdb@@3PEAUHINSTANCE__@@EA 0000000180073880 MSVCRTD:_pdblkup_.obj
- 0004:00001889 ?alreadyTried@?1??GetPdbDll@@YAPEAUHINSTANCE__@@XZ@4_NA 0000000180073889 MSVCRTD:_pdblkup_.obj
- 0004:0000188a ?PDBOK@?1??_RTC_GetSrcLine@@YAHPEAEPEA_WKPEAH1K@Z@4_NA 000000018007388a MSVCRTD:_pdblkup_.obj
- 0005:00001800 $pdata$crc32 0000000180076800 crc32.obj
- 0005:0000180c $pdata$free_hid_device 000000018007680c hid-windows.obj
- 0005:00001818 $pdata$hid_close 0000000180076818 hid-windows.obj
- 0005:00001824 $pdata$hid_enumerate 0000000180076824 hid-windows.obj
- 0005:00001830 $pdata$hid_error 0000000180076830 hid-windows.obj
- 0005:0000183c $pdata$hid_exit 000000018007683c hid-windows.obj
- 0005:00001848 $pdata$hid_free_enumeration 0000000180076848 hid-windows.obj
- 0005:00001854 $pdata$hid_get_feature_report 0000000180076854 hid-windows.obj
- 0005:00001860 $pdata$hid_get_indexed_string 0000000180076860 hid-windows.obj
- 0005:0000186c $pdata$hid_get_manufacturer_string 000000018007686c hid-windows.obj
- 0005:00001878 $pdata$hid_get_product_string 0000000180076878 hid-windows.obj
- 0005:00001884 $pdata$hid_get_serial_number_string 0000000180076884 hid-windows.obj
- 0005:00001890 $pdata$hid_init 0000000180076890 hid-windows.obj
- 0005:0000189c $pdata$hid_open 000000018007689c hid-windows.obj
- 0005:000018a8 $pdata$hid_open_path 00000001800768a8 hid-windows.obj
- 0005:000018b4 $pdata$hid_read 00000001800768b4 hid-windows.obj
- 0005:000018c0 $pdata$hid_read_timeout 00000001800768c0 hid-windows.obj
- 0005:000018cc $pdata$hid_send_feature_report 00000001800768cc hid-windows.obj
- 0005:000018d8 $pdata$hid_set_nonblocking 00000001800768d8 hid-windows.obj
- 0005:000018e4 $pdata$hid_write 00000001800768e4 hid-windows.obj
- 0005:000018f0 $pdata$lookup_functions 00000001800768f0 hid-windows.obj
- 0005:000018fc $pdata$new_hid_device 00000001800768fc hid-windows.obj
- 0005:00001908 $pdata$open_device 0000000180076908 hid-windows.obj
- 0005:00001914 $pdata$register_error 0000000180076914 hid-windows.obj
- 0005:00001920 $pdata$jsmn_alloc_token 0000000180076920 jsmn.obj
- 0005:0000192c $pdata$jsmn_fill_token 000000018007692c jsmn.obj
- 0005:00001938 $pdata$jsmn_init 0000000180076938 jsmn.obj
- 0005:00001944 $pdata$jsmn_parse 0000000180076944 jsmn.obj
- 0005:00001950 $pdata$jsmn_parse_primitive 0000000180076950 jsmn.obj
- 0005:0000195c $pdata$jsmn_parse_string 000000018007695c jsmn.obj
- 0005:00001968 $pdata$__local_stdio_printf_options 0000000180076968 json_helpers.obj
- 0005:00001974 $pdata$_vfprintf_l 0000000180076974 json_helpers.obj
- 0005:00001980 $pdata$_vscprintf 0000000180076980 json_helpers.obj
- 0005:0000198c $pdata$_vscprintf_l 000000018007698c json_helpers.obj
- 0005:00001998 $pdata$_vsnprintf 0000000180076998 json_helpers.obj
- 0005:000019a4 $pdata$_vsnprintf_l 00000001800769a4 json_helpers.obj
- 0005:000019b0 $pdata$asprintf 00000001800769b0 json_helpers.obj
- 0005:000019bc $pdata$fprintf 00000001800769bc json_helpers.obj
- 0005:000019c8 $pdata$json_load_array 00000001800769c8 json_helpers.obj
- 0005:000019d4 $pdata$json_load_file 00000001800769d4 json_helpers.obj
- 0005:000019e0 $pdata$json_write_double_array 00000001800769e0 json_helpers.obj
- 0005:000019ec $pdata$json_write_float 00000001800769ec json_helpers.obj
- 0005:000019f8 $pdata$json_write_float_array 00000001800769f8 json_helpers.obj
- 0005:00001a04 $pdata$json_write_str 0000000180076a04 json_helpers.obj
- 0005:00001a10 $pdata$json_write_uint32 0000000180076a10 json_helpers.obj
- 0005:00001a1c $pdata$load_file_to_mem 0000000180076a1c json_helpers.obj
- 0005:00001a28 $pdata$parse_float_array 0000000180076a28 json_helpers.obj
- 0005:00001a34 $pdata$substr 0000000180076a34 json_helpers.obj
- 0005:00001a40 $pdata$ApplyPoseToPoint 0000000180076a40 linmath.obj
- 0005:00001a4c $pdata$ApplyPoseToPose 0000000180076a4c linmath.obj
- 0005:00001a58 $pdata$InvertPose 0000000180076a58 linmath.obj
- 0005:00001a64 $pdata$add3d 0000000180076a64 linmath.obj
- 0005:00001a70 $pdata$angleaxisfrom2vect 0000000180076a70 linmath.obj
- 0005:00001a7c $pdata$anglebetween3d 0000000180076a7c linmath.obj
- 0005:00001a88 $pdata$axisanglefromquat 0000000180076a88 linmath.obj
- 0005:00001a94 $pdata$compare3d 0000000180076a94 linmath.obj
- 0005:00001aa0 $pdata$copy3d 0000000180076aa0 linmath.obj
- 0005:00001aac $pdata$cross3d 0000000180076aac linmath.obj
- 0005:00001ab8 $pdata$dot3d 0000000180076ab8 linmath.obj
- 0005:00001ac4 $pdata$inverseM33 0000000180076ac4 linmath.obj
- 0005:00001ad0 $pdata$magnitude3d 0000000180076ad0 linmath.obj
- 0005:00001adc $pdata$matrix44copy 0000000180076adc linmath.obj
- 0005:00001ae8 $pdata$matrix44transpose 0000000180076ae8 linmath.obj
- 0005:00001af4 $pdata$normalize3d 0000000180076af4 linmath.obj
- 0005:00001b00 $pdata$quatadd 0000000180076b00 linmath.obj
- 0005:00001b0c $pdata$quatcopy 0000000180076b0c linmath.obj
- 0005:00001b18 $pdata$quatevenproduct 0000000180076b18 linmath.obj
- 0005:00001b24 $pdata$quatfrom2vectors 0000000180076b24 linmath.obj
- 0005:00001b30 $pdata$quatfromaxisangle 0000000180076b30 linmath.obj
- 0005:00001b3c $pdata$quatfromeuler 0000000180076b3c linmath.obj
- 0005:00001b48 $pdata$quatfrommatrix 0000000180076b48 linmath.obj
- 0005:00001b54 $pdata$quatfrommatrix33 0000000180076b54 linmath.obj
- 0005:00001b60 $pdata$quatgetconjugate 0000000180076b60 linmath.obj
- 0005:00001b6c $pdata$quatgetreciprocal 0000000180076b6c linmath.obj
- 0005:00001b78 $pdata$quatinnerproduct 0000000180076b78 linmath.obj
- 0005:00001b84 $pdata$quatinvsqmagnitude 0000000180076b84 linmath.obj
- 0005:00001b90 $pdata$quatmagnitude 0000000180076b90 linmath.obj
- 0005:00001b9c $pdata$quatnormalize 0000000180076b9c linmath.obj
- 0005:00001ba8 $pdata$quatoddproduct 0000000180076ba8 linmath.obj
- 0005:00001bb4 $pdata$quatouterproduct 0000000180076bb4 linmath.obj
- 0005:00001bc0 $pdata$quatrotateabout 0000000180076bc0 linmath.obj
- 0005:00001bcc $pdata$quatrotatevector 0000000180076bcc linmath.obj
- 0005:00001bd8 $pdata$quatscale 0000000180076bd8 linmath.obj
- 0005:00001be4 $pdata$quatsetnone 0000000180076be4 linmath.obj
- 0005:00001bf0 $pdata$quatslerp 0000000180076bf0 linmath.obj
- 0005:00001bfc $pdata$quatsub 0000000180076bfc linmath.obj
- 0005:00001c08 $pdata$quattoeuler 0000000180076c08 linmath.obj
- 0005:00001c14 $pdata$quattomatrix 0000000180076c14 linmath.obj
- 0005:00001c20 $pdata$quattomatrix33 0000000180076c20 linmath.obj
- 0005:00001c2c $pdata$rotate_vec 0000000180076c2c linmath.obj
- 0005:00001c38 $pdata$rotatearoundaxis 0000000180076c38 linmath.obj
- 0005:00001c44 $pdata$rotation_between_vecs_to_m3 0000000180076c44 linmath.obj
- 0005:00001c50 $pdata$scale3d 0000000180076c50 linmath.obj
- 0005:00001c5c $pdata$sub3d 0000000180076c5c linmath.obj
- 0005:00001c68 $pdata$OGCancelThread 0000000180076c68 os_generic.obj
- 0005:00001c74 $pdata$OGCreateMutex 0000000180076c74 os_generic.obj
- 0005:00001c80 $pdata$OGCreateSema 0000000180076c80 os_generic.obj
- 0005:00001c8c $pdata$OGCreateThread 0000000180076c8c os_generic.obj
- 0005:00001c98 $pdata$OGDeleteMutex 0000000180076c98 os_generic.obj
- 0005:00001ca4 $pdata$OGDeleteSema 0000000180076ca4 os_generic.obj
- 0005:00001cb0 $pdata$OGGetAbsoluteTime 0000000180076cb0 os_generic.obj
- 0005:00001cbc $pdata$OGGetFileTime 0000000180076cbc os_generic.obj
- 0005:00001cc8 $pdata$OGGetSema 0000000180076cc8 os_generic.obj
- 0005:00001cd4 $pdata$OGJoinThread 0000000180076cd4 os_generic.obj
- 0005:00001ce0 $pdata$OGLockMutex 0000000180076ce0 os_generic.obj
- 0005:00001cec $pdata$OGLockSema 0000000180076cec os_generic.obj
- 0005:00001cf8 $pdata$OGSleep 0000000180076cf8 os_generic.obj
- 0005:00001d04 $pdata$OGUSleep 0000000180076d04 os_generic.obj
- 0005:00001d10 $pdata$OGUnlockMutex 0000000180076d10 os_generic.obj
- 0005:00001d1c $pdata$OGUnlockSema 0000000180076d1c os_generic.obj
- 0005:00001d28 $pdata$bits 0000000180076d28 puff.obj
- 0005:00001d34 $pdata$codes 0000000180076d34 puff.obj
- 0005:00001d40 $pdata$construct 0000000180076d40 puff.obj
- 0005:00001d4c $pdata$decode 0000000180076d4c puff.obj
- 0005:00001d58 $pdata$dynamic 0000000180076d58 puff.obj
- 0005:00001d64 $pdata$fixed 0000000180076d64 puff.obj
- 0005:00001d70 $pdata$puff 0000000180076d70 puff.obj
- 0005:00001d7c $pdata$stored 0000000180076d7c puff.obj
- 0005:00001d88 $pdata$EnumerateSymbols 0000000180076d88 symbol_enumerator.obj
- 0005:00001d94 $pdata$mycb 0000000180076d94 symbol_enumerator.obj
- 0005:00001da0 $pdata$_half_to_float 0000000180076da0 ootx_decoder.obj
- 0005:00001dac $pdata$get_ptr 0000000180076dac ootx_decoder.obj
- 0005:00001db8 $pdata$init_lighthouse_info_v6 0000000180076db8 ootx_decoder.obj
- 0005:00001dc4 $pdata$ootx_decode_bit 0000000180076dc4 ootx_decoder.obj
- 0005:00001dd0 $pdata$ootx_detect_preamble 0000000180076dd0 ootx_decoder.obj
- 0005:00001ddc $pdata$ootx_free_decoder_context 0000000180076ddc ootx_decoder.obj
- 0005:00001de8 $pdata$ootx_inc_buffer_offset 0000000180076de8 ootx_decoder.obj
- 0005:00001df4 $pdata$ootx_init_decoder_context 0000000180076df4 ootx_decoder.obj
- 0005:00001e00 $pdata$ootx_process_bit 0000000180076e00 ootx_decoder.obj
- 0005:00001e0c $pdata$ootx_pump_bit 0000000180076e0c ootx_decoder.obj
- 0005:00001e18 $pdata$ootx_reset_buffer 0000000180076e18 ootx_decoder.obj
- 0005:00001e24 $pdata$ootx_write_to_buffer 0000000180076e24 ootx_decoder.obj
- 0005:00001e30 $pdata$print_lighthouse_info_v6 0000000180076e30 ootx_decoder.obj
- 0005:00001e3c $pdata$printf 0000000180076e3c ootx_decoder.obj
- 0005:00001e48 $pdata$PoserData_lighthouse_pose_func 0000000180076e48 poser.obj
- 0005:00001e54 $pdata$PoserData_poser_raw_pose_func 0000000180076e54 poser.obj
- 0005:00001e60 $pdata$PoserCharlesSlow 0000000180076e60 poser_charlesslow.obj
- 0005:00001e6c $pdata$REGISTERPoserCharlesSlow 0000000180076e6c poser_charlesslow.obj
- 0005:00001e78 $pdata$RunOpti 0000000180076e78 poser_charlesslow.obj
- 0005:00001e84 $pdata$_vsprintf_l 0000000180076e84 poser_charlesslow.obj
- 0005:00001e90 $pdata$sprintf 0000000180076e90 poser_charlesslow.obj
- 0005:00001e9c $pdata$OrthoSolve 0000000180076e9c poser_daveortho.obj
- 0005:00001ea8 $pdata$PoserDaveOrtho 0000000180076ea8 poser_daveortho.obj
- 0005:00001eb4 $pdata$REGISTERPoserDaveOrtho 0000000180076eb4 poser_daveortho.obj
- 0005:00001ec0 $pdata$PoserDummy 0000000180076ec0 poser_dummy.obj
- 0005:00001ecc $pdata$REGISTERPoserDummy 0000000180076ecc poser_dummy.obj
- 0005:00001ed8 $pdata$PoserOctavioRadii 0000000180076ed8 poser_octavioradii.obj
- 0005:00001ee4 $pdata$QuickPose 0000000180076ee4 poser_octavioradii.obj
- 0005:00001ef0 $pdata$REGISTERPoserOctavioRadii 0000000180076ef0 poser_octavioradii.obj
- 0005:00001efc $pdata$RefineEstimateUsingGradientDescentRadii 0000000180076efc poser_octavioradii.obj
- 0005:00001f08 $pdata$SolveForLighthouseRadii 0000000180076f08 poser_octavioradii.obj
- 0005:00001f14 $pdata$angleBetweenSensors 0000000180076f14 poser_octavioradii.obj
- 0005:00001f20 $pdata$calculateFitness 0000000180076f20 poser_octavioradii.obj
- 0005:00001f2c $pdata$distance 0000000180076f2c poser_octavioradii.obj
- 0005:00001f38 $pdata$getGradient 0000000180076f38 poser_octavioradii.obj
- 0005:00001f44 $pdata$normalizeAndMultiplyVector 0000000180076f44 poser_octavioradii.obj
- 0005:00001f50 $pdata$GetRotationMatrixForTorus 0000000180076f50 poser_turveytori.obj
- 0005:00001f5c $pdata$PoserTurveyTori 0000000180076f5c poser_turveytori.obj
- 0005:00001f68 $pdata$QuickPose 0000000180076f68 poser_turveytori.obj
- 0005:00001f74 $pdata$REGISTERPoserTurveyTori 0000000180076f74 poser_turveytori.obj
- 0005:00001f80 $pdata$RefineEstimateUsingModifiedGradientDescent1 0000000180076f80 poser_turveytori.obj
- 0005:00001f8c $pdata$RefineRotationEstimateAxisAngle 0000000180076f8c poser_turveytori.obj
- 0005:00001f98 $pdata$RefineRotationEstimateQuaternion 0000000180076f98 poser_turveytori.obj
- 0005:00001fa4 $pdata$RotateAndTranslatePoint 0000000180076fa4 poser_turveytori.obj
- 0005:00001fb0 $pdata$RotationEstimateFitnessAxisAngle 0000000180076fb0 poser_turveytori.obj
- 0005:00001fbc $pdata$RotationEstimateFitnessAxisAngleOriginal 0000000180076fbc poser_turveytori.obj
- 0005:00001fc8 $pdata$RotationEstimateFitnessOld 0000000180076fc8 poser_turveytori.obj
- 0005:00001fd4 $pdata$RotationEstimateFitnessQuaternion 0000000180076fd4 poser_turveytori.obj
- 0005:00001fe0 $pdata$SolveForLighthouse 0000000180076fe0 poser_turveytori.obj
- 0005:00001fec $pdata$SolveForRotation 0000000180076fec poser_turveytori.obj
- 0005:00001ff8 $pdata$SolveForRotationQuat 0000000180076ff8 poser_turveytori.obj
- 0005:00002004 $pdata$WhereIsTheTrackedObjectAxisAngle 0000000180077004 poser_turveytori.obj
- 0005:00002010 $pdata$angleBetweenSensors 0000000180077010 poser_turveytori.obj
- 0005:0000201c $pdata$angleFromPoints 000000018007701c poser_turveytori.obj
- 0005:00002028 $pdata$calculateTorusPointFromAngles 0000000180077028 poser_turveytori.obj
- 0005:00002034 $pdata$compareFlts 0000000180077034 poser_turveytori.obj
- 0005:00002040 $pdata$distance 0000000180077040 poser_turveytori.obj
- 0005:0000204c $pdata$drawLineBetweenPoints 000000018007704c poser_turveytori.obj
- 0005:00002058 $pdata$estimateToroidalAndPoloidalAngleOfPoint 0000000180077058 poser_turveytori.obj
- 0005:00002064 $pdata$getAvgPoints 0000000180077064 poser_turveytori.obj
- 0005:00002070 $pdata$getGradient 0000000180077070 poser_turveytori.obj
- 0005:0000207c $pdata$getNormalizedAndScaledRotationGradient 000000018007707c poser_turveytori.obj
- 0005:00002088 $pdata$getNormalizedAndScaledVector 0000000180077088 poser_turveytori.obj
- 0005:00002094 $pdata$getPointFitness 0000000180077094 poser_turveytori.obj
- 0005:000020a0 $pdata$getPointFitnessForPna 00000001800770a0 poser_turveytori.obj
- 0005:000020ac $pdata$getRotationGradientAxisAngle 00000001800770ac poser_turveytori.obj
- 0005:000020b8 $pdata$getRotationGradientQuaternion 00000001800770b8 poser_turveytori.obj
- 0005:000020c4 $pdata$markPointWithStar 00000001800770c4 poser_turveytori.obj
- 0005:000020d0 $pdata$midpoint 00000001800770d0 poser_turveytori.obj
- 0005:000020dc $pdata$pythAngleBetweenSensors2 00000001800770dc poser_turveytori.obj
- 0005:000020e8 $pdata$updateHeader 00000001800770e8 poser_turveytori.obj
- 0005:000020f4 $pdata$writeAxes 00000001800770f4 poser_turveytori.obj
- 0005:00002100 $pdata$writePcdHeader 0000000180077100 poser_turveytori.obj
- 0005:0000210c $pdata$writePoint 000000018007710c poser_turveytori.obj
- 0005:00002118 $pdata$writePointCloud 0000000180077118 poser_turveytori.obj
- 0005:00002124 $pdata$GetDriverByConfig 0000000180077124 survive.obj
- 0005:00002130 $pdata$SymnumCheck 0000000180077130 survive.obj
- 0005:0000213c $pdata$button_servicer 000000018007713c survive.obj
- 0005:00002148 $pdata$survive_add_driver 0000000180077148 survive.obj
- 0005:00002154 $pdata$survive_add_object 0000000180077154 survive.obj
- 0005:00002160 $pdata$survive_close 0000000180077160 survive.obj
- 0005:0000216c $pdata$survive_get_so_by_name 000000018007716c survive.obj
- 0005:00002178 $pdata$survive_haptic 0000000180077178 survive.obj
- 0005:00002184 $pdata$survive_init_internal 0000000180077184 survive.obj
- 0005:00002190 $pdata$survive_install_angle_fn 0000000180077190 survive.obj
- 0005:0000219c $pdata$survive_install_button_fn 000000018007719c survive.obj
- 0005:000021a8 $pdata$survive_install_error_fn 00000001800771a8 survive.obj
- 0005:000021b4 $pdata$survive_install_htc_config_fn 00000001800771b4 survive.obj
- 0005:000021c0 $pdata$survive_install_imu_fn 00000001800771c0 survive.obj
- 0005:000021cc $pdata$survive_install_info_fn 00000001800771cc survive.obj
- 0005:000021d8 $pdata$survive_install_light_fn 00000001800771d8 survive.obj
- 0005:000021e4 $pdata$survive_install_lighthouse_pose_fn 00000001800771e4 survive.obj
- 0005:000021f0 $pdata$survive_install_raw_pose_fn 00000001800771f0 survive.obj
- 0005:000021fc $pdata$survive_poll 00000001800771fc survive.obj
- 0005:00002208 $pdata$survive_send_magic 0000000180077208 survive.obj
- 0005:00002214 $pdata$survive_simple_inflate 0000000180077214 survive.obj
- 0005:00002220 $pdata$survive_startup 0000000180077220 survive.obj
- 0005:0000222c $pdata$survive_verify_FLT_size 000000018007722c survive.obj
- 0005:00002238 $pdata$survivefault 0000000180077238 survive.obj
- 0005:00002244 $pdata$survivenote 0000000180077244 survive.obj
- 0005:00002250 $pdata$handle_calibration 0000000180077250 survive_cal.obj
- 0005:0000225c $pdata$ootx_packet_clbk_d 000000018007725c survive_cal.obj
- 0005:00002268 $pdata$reset_calibration 0000000180077268 survive_cal.obj
- 0005:00002274 $pdata$snprintf 0000000180077274 survive_cal.obj
- 0005:00002280 $pdata$survive_cal_angle 0000000180077280 survive_cal.obj
- 0005:0000228c $pdata$survive_cal_get_status 000000018007728c survive_cal.obj
- 0005:00002298 $pdata$survive_cal_install 0000000180077298 survive_cal.obj
- 0005:000022a4 $pdata$survive_cal_light 00000001800772a4 survive_cal.obj
- 0005:000022b0 $pdata$vsnprintf 00000001800772b0 survive_cal.obj
- 0005:000022bc $pdata$DisambiguatorCharles 00000001800772bc survive_charlesbiguator.obj
- 0005:000022c8 $pdata$HandleOOTX 00000001800772c8 survive_charlesbiguator.obj
- 0005:000022d4 $pdata$REGISTERDisambiguatorCharles 00000001800772d4 survive_charlesbiguator.obj
- 0005:000022e0 $pdata$decode_acode 00000001800772e0 survive_charlesbiguator.obj
- 0005:000022ec $pdata$_json_write_float_array 00000001800772ec survive_config.obj
- 0005:000022f8 $pdata$config_entry_as_FLT 00000001800772f8 survive_config.obj
- 0005:00002304 $pdata$config_entry_as_uint32_t 0000000180077304 survive_config.obj
- 0005:00002310 $pdata$config_read 0000000180077310 survive_config.obj
- 0005:0000231c $pdata$config_read_float 000000018007731c survive_config.obj
- 0005:00002328 $pdata$config_read_float_array 0000000180077328 survive_config.obj
- 0005:00002334 $pdata$config_read_lighthouse 0000000180077334 survive_config.obj
- 0005:00002340 $pdata$config_read_str 0000000180077340 survive_config.obj
- 0005:0000234c $pdata$config_read_uint32 000000018007734c survive_config.obj
- 0005:00002358 $pdata$config_save 0000000180077358 survive_config.obj
- 0005:00002364 $pdata$config_set_float 0000000180077364 survive_config.obj
- 0005:00002370 $pdata$config_set_float_a 0000000180077370 survive_config.obj
- 0005:0000237c $pdata$config_set_lighthouse 000000018007737c survive_config.obj
- 0005:00002388 $pdata$config_set_str 0000000180077388 survive_config.obj
- 0005:00002394 $pdata$config_set_uint32 0000000180077394 survive_config.obj
- 0005:000023a0 $pdata$destroy_config_entry 00000001800773a0 survive_config.obj
- 0005:000023ac $pdata$destroy_config_group 00000001800773ac survive_config.obj
- 0005:000023b8 $pdata$find_config_entry 00000001800773b8 survive_config.obj
- 0005:000023c4 $pdata$handle_config_group 00000001800773c4 survive_config.obj
- 0005:000023d0 $pdata$handle_tag_value 00000001800773d0 survive_config.obj
- 0005:000023dc $pdata$init_config_entry 00000001800773dc survive_config.obj
- 0005:000023e8 $pdata$init_config_group 00000001800773e8 survive_config.obj
- 0005:000023f4 $pdata$next_unused_entry 00000001800773f4 survive_config.obj
- 0005:00002400 $pdata$parse_floats 0000000180077400 survive_config.obj
- 0005:0000240c $pdata$parse_uint32 000000018007740c survive_config.obj
- 0005:00002418 $pdata$pop_config_group 0000000180077418 survive_config.obj
- 0005:00002424 $pdata$print_json_value 0000000180077424 survive_config.obj
- 0005:00002430 $pdata$resize_config_group 0000000180077430 survive_config.obj
- 0005:0000243c $pdata$sc_search 000000018007743c survive_config.obj
- 0005:00002448 $pdata$sstrcpy 0000000180077448 survive_config.obj
- 0005:00002454 $pdata$survive_configf 0000000180077454 survive_config.obj
- 0005:00002460 $pdata$survive_configi 0000000180077460 survive_config.obj
- 0005:0000246c $pdata$survive_configs 000000018007746c survive_config.obj
- 0005:00002478 $pdata$write_config_group 0000000180077478 survive_config.obj
- 0005:00002484 $pdata$ParsePoints 0000000180077484 survive_default_devices.obj
- 0005:00002490 $pdata$jsoneq 0000000180077490 survive_default_devices.obj
- 0005:0000249c $pdata$survive_create_device 000000018007749c survive_default_devices.obj
- 0005:000024a8 $pdata$survive_create_hmd 00000001800774a8 survive_default_devices.obj
- 0005:000024b4 $pdata$survive_create_tr0 00000001800774b4 survive_default_devices.obj
- 0005:000024c0 $pdata$survive_create_wm0 00000001800774c0 survive_default_devices.obj
- 0005:000024cc $pdata$survive_create_wm1 00000001800774cc survive_default_devices.obj
- 0005:000024d8 $pdata$survive_create_ww0 00000001800774d8 survive_default_devices.obj
- 0005:000024e4 $pdata$survive_load_htc_config_format 00000001800774e4 survive_default_devices.obj
- 0005:000024f0 $pdata$handle_lightcap 00000001800774f0 survive_disambiguator.obj
- 0005:000024fc $pdata$GetDriver 00000001800774fc survive_driverman.obj
- 0005:00002508 $pdata$GetDriverNameMatching 0000000180077508 survive_driverman.obj
- 0005:00002514 $pdata$ListDrivers 0000000180077514 survive_driverman.obj
- 0005:00002520 $pdata$RegisterDriver 0000000180077520 survive_driverman.obj
- 0005:0000252c $pdata$DriverRegPlayback 000000018007752c survive_playback.obj
- 0005:00002538 $pdata$REGISTERDriverRegPlayback 0000000180077538 survive_playback.obj
- 0005:00002544 $pdata$__local_stdio_scanf_options 0000000180077544 survive_playback.obj
- 0005:00002550 $pdata$_vsscanf_l 0000000180077550 survive_playback.obj
- 0005:0000255c $pdata$parse_and_run_imu 000000018007755c survive_playback.obj
- 0005:00002568 $pdata$parse_and_run_lightcode 0000000180077568 survive_playback.obj
- 0005:00002574 $pdata$parse_and_run_rawlight 0000000180077574 survive_playback.obj
- 0005:00002580 $pdata$playback_close 0000000180077580 survive_playback.obj
- 0005:0000258c $pdata$playback_poll 000000018007758c survive_playback.obj
- 0005:00002598 $pdata$sscanf 0000000180077598 survive_playback.obj
- 0005:000025a4 $pdata$survive_install_recording 00000001800775a4 survive_playback.obj
- 0005:000025b0 $pdata$survive_recording_angle_process 00000001800775b0 survive_playback.obj
- 0005:000025bc $pdata$survive_recording_config_process 00000001800775bc survive_playback.obj
- 0005:000025c8 $pdata$survive_recording_imu_process 00000001800775c8 survive_playback.obj
- 0005:000025d4 $pdata$survive_recording_info_process 00000001800775d4 survive_playback.obj
- 0005:000025e0 $pdata$survive_recording_light_process 00000001800775e0 survive_playback.obj
- 0005:000025ec $pdata$survive_recording_lightcap 00000001800775ec survive_playback.obj
- 0005:000025f8 $pdata$survive_recording_lighthouse_process 00000001800775f8 survive_playback.obj
- 0005:00002604 $pdata$survive_recording_raw_pose_process 0000000180077604 survive_playback.obj
- 0005:00002610 $pdata$timestamp_in_us 0000000180077610 survive_playback.obj
- 0005:0000261c $pdata$vfprintf 000000018007761c survive_playback.obj
- 0005:00002628 $pdata$write_to_output 0000000180077628 survive_playback.obj
- 0005:00002634 $pdata$survive_default_angle_process 0000000180077634 survive_process.obj
- 0005:00002640 $pdata$survive_default_button_process 0000000180077640 survive_process.obj
- 0005:0000264c $pdata$survive_default_htc_config_process 000000018007764c survive_process.obj
- 0005:00002658 $pdata$survive_default_imu_process 0000000180077658 survive_process.obj
- 0005:00002664 $pdata$survive_default_light_process 0000000180077664 survive_process.obj
- 0005:00002670 $pdata$survive_default_lighthouse_pose_process 0000000180077670 survive_process.obj
- 0005:0000267c $pdata$survive_default_raw_pose_process 000000018007767c survive_process.obj
- 0005:00002688 $pdata$gibf 0000000180077688 survive_reproject.obj
- 0005:00002694 $pdata$survive_calibration_config_create_from_idx 0000000180077694 survive_reproject.obj
- 0005:000026a0 $pdata$survive_calibration_config_index 00000001800776a0 survive_reproject.obj
- 0005:000026ac $pdata$survive_calibration_config_max_idx 00000001800776ac survive_reproject.obj
- 0005:000026b8 $pdata$survive_calibration_default_config 00000001800776b8 survive_reproject.obj
- 0005:000026c4 $pdata$survive_calibration_options_config_apply 00000001800776c4 survive_reproject.obj
- 0005:000026d0 $pdata$survive_calibration_options_config_normalize 00000001800776d0 survive_reproject.obj
- 0005:000026dc $pdata$survive_reproject 00000001800776dc survive_reproject.obj
- 0005:000026e8 $pdata$survive_reproject_from_pose 00000001800776e8 survive_reproject.obj
- 0005:000026f4 $pdata$survive_reproject_from_pose_with_config 00000001800776f4 survive_reproject.obj
- 0005:00002700 $pdata$SurviveSensorActivations_add 0000000180077700 survive_sensor_activations.obj
- 0005:0000270c $pdata$SurviveSensorActivations_add_imu 000000018007770c survive_sensor_activations.obj
- 0005:00002718 $pdata$SurviveSensorActivations_isPairValid 0000000180077718 survive_sensor_activations.obj
- 0005:00002724 $pdata$DisambiguatorTurvey 0000000180077724 survive_turveybiguator.obj
- 0005:00002730 $pdata$REGISTERDisambiguatorTurvey 0000000180077730 survive_turveybiguator.obj
- 0005:0000273c $pdata$handle_lightcap2_getAcodeFromSyncPulse 000000018007773c survive_turveybiguator.obj
- 0005:00002748 $pdata$handle_lightcap2_process_sweep_data 0000000180077748 survive_turveybiguator.obj
- 0005:00002754 $pdata$handle_lightcap2_sweep 0000000180077754 survive_turveybiguator.obj
- 0005:00002760 $pdata$handle_lightcap2_sync 0000000180077760 survive_turveybiguator.obj
- 0005:0000276c $pdata$remove_outliers 000000018007776c survive_turveybiguator.obj
- 0005:00002778 $pdata$AttachInterface 0000000180077778 survive_vive.obj
- 0005:00002784 $pdata$DriverRegHTCVive 0000000180077784 survive_vive.obj
- 0005:00002790 $pdata$HAPIReceiver 0000000180077790 survive_vive.obj
- 0005:0000279c $pdata$LoadConfig 000000018007779c survive_vive.obj
- 0005:000027a8 $pdata$REGISTERDriverRegHTCVive 00000001800777a8 survive_vive.obj
- 0005:000027b4 $pdata$_vfwprintf_l 00000001800777b4 survive_vive.obj
- 0005:000027c0 $pdata$calibrate_acc 00000001800777c0 survive_vive.obj
- 0005:000027cc $pdata$calibrate_gyro 00000001800777cc survive_vive.obj
- 0005:000027d8 $pdata$getupdate_feature_report 00000001800777d8 survive_vive.obj
- 0005:000027e4 $pdata$handle_watchman 00000001800777e4 survive_vive.obj
- 0005:000027f0 $pdata$hid_get_feature_report_timeout 00000001800777f0 survive_vive.obj
- 0005:000027fc $pdata$incrementAndPostButtonQueue 00000001800777fc survive_vive.obj
- 0005:00002808 $pdata$init_SurviveObject 0000000180077808 survive_vive.obj
- 0005:00002814 $pdata$registerButtonEvent 0000000180077814 survive_vive.obj
- 0005:00002820 $pdata$survive_data_cb 0000000180077820 survive_vive.obj
- 0005:0000282c $pdata$survive_get_config 000000018007782c survive_vive.obj
- 0005:00002838 $pdata$survive_usb_init 0000000180077838 survive_vive.obj
- 0005:00002844 $pdata$survive_vive_close 0000000180077844 survive_vive.obj
- 0005:00002850 $pdata$survive_vive_send_haptic 0000000180077850 survive_vive.obj
- 0005:0000285c $pdata$survive_vive_send_magic 000000018007785c survive_vive.obj
- 0005:00002868 $pdata$survive_vive_usb_close 0000000180077868 survive_vive.obj
- 0005:00002874 $pdata$survive_vive_usb_poll 0000000180077874 survive_vive.obj
- 0005:00002880 $pdata$update_feature_report 0000000180077880 survive_vive.obj
- 0005:0000288c $pdata$wprintf 000000018007788c survive_vive.obj
- 0005:00002898 $pdata$getdelim 0000000180077898 getdelim.obj
- 0005:000028a4 $pdata$getline 00000001800778a4 getdelim.obj
- 0005:000028b0 $pdata$_RTC_InitBase 00000001800778b0 MSVCRTD:_init_.obj
- 0005:000028bc $pdata$_RTC_Shutdown 00000001800778bc MSVCRTD:_init_.obj
- 0005:000028c8 $pdata$__raise_securityfailure 00000001800778c8 MSVCRTD:gs_report.obj
- 0005:000028d4 $pdata$__report_gsfailure 00000001800778d4 MSVCRTD:gs_report.obj
- 0005:000028e0 $pdata$__report_rangecheckfailure 00000001800778e0 MSVCRTD:gs_report.obj
- 0005:000028ec $pdata$__report_securityfailure 00000001800778ec MSVCRTD:gs_report.obj
- 0005:000028f8 $pdata$__report_securityfailureEx 00000001800778f8 MSVCRTD:gs_report.obj
- 0005:00002904 $pdata$capture_current_context 0000000180077904 MSVCRTD:gs_report.obj
- 0005:00002910 $pdata$capture_previous_context 0000000180077910 MSVCRTD:gs_report.obj
- 0005:0000291c $pdata$_RTC_AllocaHelper 000000018007791c MSVCRTD:_stack_.obj
- 0005:00002928 $pdata$0$_RTC_AllocaHelper 0000000180077928 MSVCRTD:_stack_.obj
- 0005:00002934 $pdata$1$_RTC_AllocaHelper 0000000180077934 MSVCRTD:_stack_.obj
- 0005:00002940 $pdata$_RTC_CheckStackVars 0000000180077940 MSVCRTD:_stack_.obj
- 0005:0000294c $pdata$0$_RTC_CheckStackVars 000000018007794c MSVCRTD:_stack_.obj
- 0005:00002958 $pdata$1$_RTC_CheckStackVars 0000000180077958 MSVCRTD:_stack_.obj
- 0005:00002964 $pdata$_RTC_CheckStackVars2 0000000180077964 MSVCRTD:_stack_.obj
- 0005:00002970 $pdata$1$_RTC_CheckStackVars2 0000000180077970 MSVCRTD:_stack_.obj
- 0005:0000297c $pdata$2$_RTC_CheckStackVars2 000000018007797c MSVCRTD:_stack_.obj
- 0005:00002988 $pdata$3$_RTC_CheckStackVars2 0000000180077988 MSVCRTD:_stack_.obj
- 0005:00002994 $pdata$4$_RTC_CheckStackVars2 0000000180077994 MSVCRTD:_stack_.obj
- 0005:000029a0 $pdata$5$_RTC_CheckStackVars2 00000001800779a0 MSVCRTD:_stack_.obj
- 0005:000029ac $pdata$6$_RTC_CheckStackVars2 00000001800779ac MSVCRTD:_stack_.obj
- 0005:000029b8 $pdata$__GSHandlerCheck 00000001800779b8 MSVCRTD:_gshandler_.obj
- 0005:000029c4 $pdata$__GSHandlerCheckCommon 00000001800779c4 MSVCRTD:_gshandler_.obj
- 0005:000029e8 $pdata$?dllmain_crt_dispatch@@YAHQEAUHINSTANCE__@@KQEAX@Z 00000001800779e8 MSVCRTD:dll_dllmain.obj
- 0005:000029f4 $pdata$?dllmain_crt_process_attach@@YAHQEAUHINSTANCE__@@QEAX@Z 00000001800779f4 MSVCRTD:dll_dllmain.obj
- 0005:00002a00 $pdata$?dllmain_crt_process_detach@@YAH_N@Z 0000000180077a00 MSVCRTD:dll_dllmain.obj
- 0005:00002a0c $pdata$?dllmain_dispatch@@YAHQEAUHINSTANCE__@@KQEAX@Z 0000000180077a0c MSVCRTD:dll_dllmain.obj
- 0005:00002a18 $pdata$?dllmain_raw@@YAHQEAUHINSTANCE__@@KQEAX@Z 0000000180077a18 MSVCRTD:dll_dllmain.obj
- 0005:00002a24 $pdata$_CRT_INIT 0000000180077a24 MSVCRTD:dll_dllmain.obj
- 0005:00002a30 $pdata$_DllMainCRTStartup 0000000180077a30 MSVCRTD:dll_dllmain.obj
- 0005:00002a3c $pdata$?DebuggerProbe@@YA_NK@Z 0000000180077a3c MSVCRTD:_error_.obj
- 0005:00002a48 $pdata$?DebuggerRuntime@@YA_NKHPEAXPEB_W@Z 0000000180077a48 MSVCRTD:_error_.obj
- 0005:00002a54 $pdata$?_RTC_AllocaFailure@@YAXPEAXPEAU_RTC_ALLOCA_NODE@@H@Z 0000000180077a54 MSVCRTD:_error_.obj
- 0005:00002a60 $pdata$0$?_RTC_AllocaFailure@@YAXPEAXPEAU_RTC_ALLOCA_NODE@@H@Z 0000000180077a60 MSVCRTD:_error_.obj
- 0005:00002a6c $pdata$1$?_RTC_AllocaFailure@@YAXPEAXPEAU_RTC_ALLOCA_NODE@@H@Z 0000000180077a6c MSVCRTD:_error_.obj
- 0005:00002a78 $pdata$?_RTC_StackFailure@@YAXPEAXPEBD@Z 0000000180077a78 MSVCRTD:_error_.obj
- 0005:00002a84 $pdata$?_getMemBlockDataString@@YAXPEAD0PEBD_K@Z 0000000180077a84 MSVCRTD:_error_.obj
- 0005:00002a90 $pdata$3$?_getMemBlockDataString@@YAXPEAD0PEBD_K@Z 0000000180077a90 MSVCRTD:_error_.obj
- 0005:00002a9c $pdata$4$?_getMemBlockDataString@@YAXPEAD0PEBD_K@Z 0000000180077a9c MSVCRTD:_error_.obj
- 0005:00002aa8 $pdata$?failwithmessage@@YAXPEAXHHPEBD@Z 0000000180077aa8 MSVCRTD:_error_.obj
- 0005:00002ab4 $pdata$?notify_debugger@@YAXAEBUtagEXCEPTION_VISUALCPP_DEBUG_INFO@@@Z 0000000180077ab4 MSVCRTD:_error_.obj
- 0005:00002ac0 $pdata$_RTC_UninitUse 0000000180077ac0 MSVCRTD:_error_.obj
- 0005:00002acc $pdata$_vsprintf_s_l 0000000180077acc MSVCRTD:_error_.obj
- 0005:00002ad8 $pdata$sprintf_s 0000000180077ad8 MSVCRTD:_error_.obj
- 0005:00002ae4 $pdata$__get_entropy 0000000180077ae4 MSVCRTD:gs_support.obj
- 0005:00002af0 $pdata$__security_init_cookie 0000000180077af0 MSVCRTD:gs_support.obj
- 0005:00002afc $pdata$DllMain 0000000180077afc MSVCRTD:dll_dllmain_stub.obj
- 0005:00002b08 $pdata$?__scrt_initialize_type_info@@YAXXZ 0000000180077b08 MSVCRTD:tncleanup.obj
- 0005:00002b14 $pdata$?__scrt_uninitialize_type_info@@YAXXZ 0000000180077b14 MSVCRTD:tncleanup.obj
- 0005:00002b20 $pdata$__scrt_initialize_default_local_stdio_options 0000000180077b20 MSVCRTD:default_local_stdio_options.obj
- 0005:00002b2c $pdata$??$__crt_fast_decode_pointer@PEAP6AXXZ@@YAPEAP6AXXZQEAP6AXXZ@Z 0000000180077b2c MSVCRTD:utility.obj
- 0005:00002b38 $pdata$??$__crt_fast_encode_pointer@PEAP6AXXZ@@YAPEAP6AXXZQEAP6AXXZ@Z 0000000180077b38 MSVCRTD:utility.obj
- 0005:00002b44 $pdata$?configure_argv@__scrt_narrow_argv_policy@@SAHXZ 0000000180077b44 MSVCRTD:utility.obj
- 0005:00002b50 $pdata$?find_pe_section@@YAPEAU_IMAGE_SECTION_HEADER@@QEAE_K@Z 0000000180077b50 MSVCRTD:utility.obj
- 0005:00002b5c $pdata$?initialize_environment@__scrt_narrow_environment_policy@@SAHXZ 0000000180077b5c MSVCRTD:utility.obj
- 0005:00002b68 $pdata$?is_potentially_valid_image_base@@YA_NQEAX@Z 0000000180077b68 MSVCRTD:utility.obj
- 0005:00002b74 $pdata$__scrt_acquire_startup_lock 0000000180077b74 MSVCRTD:utility.obj
- 0005:00002b80 $pdata$__scrt_dllmain_after_initialize_c 0000000180077b80 MSVCRTD:utility.obj
- 0005:00002b8c $pdata$__scrt_dllmain_before_initialize_c 0000000180077b8c MSVCRTD:utility.obj
- 0005:00002b98 $pdata$__scrt_dllmain_crt_thread_attach 0000000180077b98 MSVCRTD:utility.obj
- 0005:00002ba4 $pdata$__scrt_dllmain_crt_thread_detach 0000000180077ba4 MSVCRTD:utility.obj
- 0005:00002bb0 $pdata$__scrt_dllmain_exception_filter 0000000180077bb0 MSVCRTD:utility.obj
- 0005:00002bbc $pdata$__scrt_dllmain_uninitialize_c 0000000180077bbc MSVCRTD:utility.obj
- 0005:00002bc8 $pdata$__scrt_dllmain_uninitialize_critical 0000000180077bc8 MSVCRTD:utility.obj
- 0005:00002bd4 $pdata$__scrt_initialize_crt 0000000180077bd4 MSVCRTD:utility.obj
- 0005:00002be0 $pdata$__scrt_initialize_onexit_tables 0000000180077be0 MSVCRTD:utility.obj
- 0005:00002bec $pdata$__scrt_is_nonwritable_in_current_image 0000000180077bec MSVCRTD:utility.obj
- 0005:00002bf8 $pdata$__scrt_release_startup_lock 0000000180077bf8 MSVCRTD:utility.obj
- 0005:00002c04 $pdata$__scrt_uninitialize_crt 0000000180077c04 MSVCRTD:utility.obj
- 0005:00002c10 $pdata$_onexit 0000000180077c10 MSVCRTD:utility.obj
- 0005:00002c1c $pdata$at_quick_exit 0000000180077c1c MSVCRTD:utility.obj
- 0005:00002c28 $pdata$atexit 0000000180077c28 MSVCRTD:utility.obj
- 0005:00002c34 $pdata$__scrt_fastfail 0000000180077c34 MSVCRTD:utility_desktop.obj
- 0005:00002c40 $pdata$__scrt_get_show_window_mode 0000000180077c40 MSVCRTD:utility_desktop.obj
- 0005:00002c4c $pdata$__scrt_is_managed_app 0000000180077c4c MSVCRTD:utility_desktop.obj
- 0005:00002c58 $pdata$__scrt_set_unhandled_exception_filter 0000000180077c58 MSVCRTD:utility_desktop.obj
- 0005:00002c64 $pdata$__scrt_unhandled_exception_filter 0000000180077c64 MSVCRTD:utility_desktop.obj
- 0005:00002c70 $pdata$_RTC_Initialize 0000000180077c70 MSVCRTD:_initsect_.obj
- 0005:00002c7c $pdata$0$_RTC_Initialize 0000000180077c7c MSVCRTD:_initsect_.obj
- 0005:00002c88 $pdata$1$_RTC_Initialize 0000000180077c88 MSVCRTD:_initsect_.obj
- 0005:00002c94 $pdata$_RTC_Terminate 0000000180077c94 MSVCRTD:_initsect_.obj
- 0005:00002ca0 $pdata$0$_RTC_Terminate 0000000180077ca0 MSVCRTD:_initsect_.obj
- 0005:00002cac $pdata$1$_RTC_Terminate 0000000180077cac MSVCRTD:_initsect_.obj
- 0005:00002cb8 $pdata$_guard_check_icall 0000000180077cb8 MSVCRTD:checkcfg.obj
- 0005:00002cc4 $pdata$?GetPdbDll@@YAPEAUHINSTANCE__@@XZ 0000000180077cc4 MSVCRTD:_pdblkup_.obj
- 0005:00002cd0 $pdata$?GetPdbDllFromInstallPath@@YAPEAUHINSTANCE__@@XZ 0000000180077cd0 MSVCRTD:_pdblkup_.obj
- 0005:00002cdc $pdata$0$?GetPdbDllFromInstallPath@@YAPEAUHINSTANCE__@@XZ 0000000180077cdc MSVCRTD:_pdblkup_.obj
- 0005:00002ce8 $pdata$1$?GetPdbDllFromInstallPath@@YAPEAUHINSTANCE__@@XZ 0000000180077ce8 MSVCRTD:_pdblkup_.obj
- 0005:00002cf4 $pdata$2$?GetPdbDllFromInstallPath@@YAPEAUHINSTANCE__@@XZ 0000000180077cf4 MSVCRTD:_pdblkup_.obj
- 0005:00002d00 $pdata$3$?GetPdbDllFromInstallPath@@YAPEAUHINSTANCE__@@XZ 0000000180077d00 MSVCRTD:_pdblkup_.obj
- 0005:00002d0c $pdata$4$?GetPdbDllFromInstallPath@@YAPEAUHINSTANCE__@@XZ 0000000180077d0c MSVCRTD:_pdblkup_.obj
- 0005:00002d18 $pdata$5$?GetPdbDllFromInstallPath@@YAPEAUHINSTANCE__@@XZ 0000000180077d18 MSVCRTD:_pdblkup_.obj
- 0005:00002d24 $pdata$?GetPdbDllPathFromFilePath@@YAHPEB_WPEA_W_K@Z 0000000180077d24 MSVCRTD:_pdblkup_.obj
- 0005:00002d30 $pdata$?_RTC_GetSrcLine@@YAHPEAEPEA_WKPEAH1K@Z 0000000180077d30 MSVCRTD:_pdblkup_.obj
- 0005:00002d3c $pdata$2$?_RTC_GetSrcLine@@YAHPEAEPEA_WKPEAH1K@Z 0000000180077d3c MSVCRTD:_pdblkup_.obj
- 0005:00002d48 $pdata$3$?_RTC_GetSrcLine@@YAHPEAEPEA_WKPEAH1K@Z 0000000180077d48 MSVCRTD:_pdblkup_.obj
- 0005:00002d54 $pdata$4$?_RTC_GetSrcLine@@YAHPEAEPEA_WKPEAH1K@Z 0000000180077d54 MSVCRTD:_pdblkup_.obj
- 0005:00002d60 $pdata$5$?_RTC_GetSrcLine@@YAHPEAEPEA_WKPEAH1K@Z 0000000180077d60 MSVCRTD:_pdblkup_.obj
- 0005:00002d6c $pdata$__isa_available_init 0000000180077d6c MSVCRTD:_cpu_disp_.obj
- 0005:00002d78 $pdata$__scrt_is_ucrt_dll_in_use 0000000180077d78 MSVCRTD:ucrt_detection.obj
- 0005:00002d84 $pdata$ReadNoFence64 0000000180077d84 MSVCRTD:guard_support.obj
- 0005:00002d90 $pdata$ReadPointerNoFence 0000000180077d90 MSVCRTD:guard_support.obj
- 0005:00002d9c $pdata$_guard_icall_checks_enforced 0000000180077d9c MSVCRTD:guard_support.obj
- 0005:00002da8 $pdata$_guard_rf_checks_enforced 0000000180077da8 MSVCRTD:guard_support.obj
- 0005:00002df0 $pdata$?fin$0@?0??dllmain_crt_process_attach@@YAHQEAUHINSTANCE__@@QEAX@Z@4HA 0000000180077df0 MSVCRTD:dll_dllmain.obj
- 0005:00002dfc $pdata$?fin$0@?0??dllmain_crt_process_detach@@YAH_N@Z@4HA 0000000180077dfc MSVCRTD:dll_dllmain.obj
- 0005:00002e08 $pdata$?filt$0@?0??dllmain_dispatch@@YAHQEAUHINSTANCE__@@KQEAX@Z@4HA 0000000180077e08 MSVCRTD:dll_dllmain.obj
- 0005:00002e14 $pdata$?filt$0@?0??notify_debugger@@YAXAEBUtagEXCEPTION_VISUALCPP_DEBUG_INFO@@@Z@4HA 0000000180077e14 MSVCRTD:_error_.obj
- 0005:00002e20 $pdata$__scrt_is_nonwritable_in_current_image$filt$0 0000000180077e20 MSVCRTD:utility.obj
- 0006:00000e58 .idata$6 0000000180079e58 DbgHelp:dbghelp.dll
- 0006:00000f1a .idata$6 0000000180079f1a SetupAPI:SETUPAPI.dll
- 0006:00001102 .idata$6 000000018007a102 kernel32:KERNEL32.dll
- 0006:000011de .idata$6 000000018007a1de vcruntimed:VCRUNTIME140D.dll
- 0006:0000155a .idata$6 000000018007a55a ucrtd:ucrtbased.dll
- 0008:00000170 $R000000 000000018007c170 * linker generated manifest res *
-
- Exports
-
- ordinal name
-
- 1 REGISTERDisambiguatorCharles
- 2 REGISTERDisambiguatorTurvey
- 3 REGISTERDriverRegHTCVive
- 4 REGISTERDriverRegPlayback
- 5 REGISTERPoserCharlesSlow
- 6 REGISTERPoserDaveOrtho
- 7 REGISTERPoserDummy
- 8 REGISTERPoserOctavioRadii
- 9 REGISTERPoserTurveyTori
- 10 hid_close
- 11 hid_enumerate
- 12 hid_error
- 13 hid_exit
- 14 hid_free_enumeration
- 15 hid_get_feature_report
- 16 hid_get_indexed_string
- 17 hid_get_manufacturer_string
- 18 hid_get_product_string
- 19 hid_get_serial_number_string
- 20 hid_init
- 21 hid_open
- 22 hid_open_path
- 23 hid_read
- 24 hid_read_timeout
- 25 hid_send_feature_report
- 26 hid_set_nonblocking
- 27 hid_write