├── .github └── workflows │ └── autobuild.yml ├── .gitignore ├── .gitmodules ├── AH Externals.sln ├── AH Externals.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── AH Externals.xccheckout │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ └── xcschemes │ ├── AH Externals.xcscheme │ ├── Release.xcscheme │ ├── conversion.xcscheme │ ├── convolution.xcscheme │ ├── descriptors.xcscheme │ ├── dynamic suite.xcscheme │ ├── gesture suite.xcscheme │ ├── ibuffer suite.xcscheme │ ├── miscellaneous.xcscheme │ ├── random numbers.xcscheme │ ├── sample accurate library.xcscheme │ ├── threading.xcscheme │ ├── utility.xcscheme │ └── vMSP.xcscheme ├── CMakeLists.txt ├── LICENSE ├── README.md ├── dependencies ├── CMakeLists.txt └── ibuffer_access │ ├── ibuffer.hpp │ ├── ibuffer_access.cpp │ └── ibuffer_access.hpp ├── include ├── AH_Containers.hpp ├── AH_Int_Handler.hpp ├── AH_Lifecycle.hpp ├── AH_Locks.hpp ├── AH_Private_Object.hpp ├── SIMDExtended.hpp └── dynamic~.hpp ├── package ├── AHarker_Externals │ ├── Icon.png │ ├── docs │ │ └── refpages │ │ │ ├── _c74_ref_modules.xml │ │ │ └── aharker-ref │ │ │ ├── ahnoise~.maxref.xml │ │ │ ├── chebyshape~.maxref.xml │ │ │ ├── denormkiller~.maxref.xml │ │ │ ├── depack.maxref.xml │ │ │ ├── dynamic.in~.maxref.xml │ │ │ ├── dynamic.out~.maxref.xml │ │ │ ├── dynamic.patch~.maxref.xml │ │ │ ├── dynamic.request~.maxref.xml │ │ │ ├── dynamic.this~.maxref.xml │ │ │ ├── dynamicdsp~.maxref.xml │ │ │ ├── dynamicserial~.maxref.xml │ │ │ ├── gesture_maker.maxref.xml │ │ │ ├── getthread.maxref.xml │ │ │ ├── ibufconcatedrive~.maxref.xml │ │ │ ├── ibufconcatenate~.maxref.xml │ │ │ ├── ibuffermulti~.maxref.xml │ │ │ ├── ibuffer~.maxref.xml │ │ │ ├── ibufinfo~.maxref.xml │ │ │ ├── ibufmultitable~.maxref.xml │ │ │ ├── ibufplayer~.maxref.xml │ │ │ ├── ibuftable~.maxref.xml │ │ │ ├── kernelmaker~.maxref.xml │ │ │ ├── macaddress.maxref.xml │ │ │ ├── meandev.maxref.xml │ │ │ ├── partconvolve~.maxref.xml │ │ │ ├── randfloats.maxref.xml │ │ │ ├── randomvals.maxref.xml │ │ │ ├── randomvals~.maxref.xml │ │ │ ├── rbiquad~.maxref.xml │ │ │ ├── rdcblock~.maxref.xml │ │ │ ├── recursivefolder.maxref.xml │ │ │ ├── schedulemessage.maxref.xml │ │ │ ├── threadfilter.maxref.xml │ │ │ ├── timeconvolve~.maxref.xml │ │ │ ├── timefilter.maxref.xml │ │ │ ├── timemap.maxref.xml │ │ │ ├── triggerlimit~.maxref.xml │ │ │ ├── tsah~.maxref.xml │ │ │ ├── vabs~.maxref.xml │ │ │ ├── vacosh~.maxref.xml │ │ │ ├── vacos~.maxref.xml │ │ │ ├── valconvert.maxref.xml │ │ │ ├── valconvert~.maxref.xml │ │ │ ├── vasinh~.maxref.xml │ │ │ ├── vasin~.maxref.xml │ │ │ ├── vatanh~.maxref.xml │ │ │ ├── vatan~.maxref.xml │ │ │ ├── vatodb~.maxref.xml │ │ │ ├── vcosh~.maxref.xml │ │ │ ├── vcosx~.maxref.xml │ │ │ ├── vdbtoa~.maxref.xml │ │ │ ├── vdiv~.maxref.xml │ │ │ ├── vequals~.maxref.xml │ │ │ ├── vftom~.maxref.xml │ │ │ ├── vgreaterthaneq~.maxref.xml │ │ │ ├── vgreaterthan~.maxref.xml │ │ │ ├── vlessthaneq~.maxref.xml │ │ │ ├── vlessthan~.maxref.xml │ │ │ ├── vlog~.maxref.xml │ │ │ ├── vmaximum~.maxref.xml │ │ │ ├── vminimum~.maxref.xml │ │ │ ├── vminus~.maxref.xml │ │ │ ├── vmtof~.maxref.xml │ │ │ ├── vnotequals~.maxref.xml │ │ │ ├── voicedrive~.maxref.xml │ │ │ ├── voicemanager~.maxref.xml │ │ │ ├── vplus~.maxref.xml │ │ │ ├── vpow~.maxref.xml │ │ │ ├── vrdiv~.maxref.xml │ │ │ ├── vrminus~.maxref.xml │ │ │ ├── vsinh~.maxref.xml │ │ │ ├── vsinx~.maxref.xml │ │ │ ├── vsqrt~.maxref.xml │ │ │ ├── vtanh~.maxref.xml │ │ │ ├── vtanx~.maxref.xml │ │ │ ├── vtimes~.maxref.xml │ │ │ └── vtrunc~.maxref.xml │ ├── help │ │ ├── conversion │ │ │ ├── valconvert.maxhelp │ │ │ └── valconvert~.maxhelp │ │ ├── convolution │ │ │ ├── convolvezerolatency.maxpat │ │ │ ├── ely_lady_chapel_impulse_response_44_1kHz.wav │ │ │ ├── kernelmaker~.maxhelp │ │ │ ├── partconvolve~.maxhelp │ │ │ ├── timeconvolve~.maxhelp │ │ │ └── zero_latency_convolution_demo.maxpat │ │ ├── descriptors │ │ │ ├── descriptorsrt~.maxhelp │ │ │ ├── descriptors~.maxhelp │ │ │ ├── entrymatcher.maxhelp │ │ │ └── entrymatcher~.maxhelp │ │ ├── dynamic suite │ │ │ ├── dynamic.in~.maxhelp │ │ │ ├── dynamic.in~_demo.maxpat │ │ │ ├── dynamic.out~.maxhelp │ │ │ ├── dynamic.out~_demo.maxpat │ │ │ ├── dynamic.patch~.maxhelp │ │ │ ├── dynamic.patch~_demo.maxpat │ │ │ ├── dynamic.patch~_demo2.maxpat │ │ │ ├── dynamic.request~.maxhelp │ │ │ ├── dynamic.request~_demo.maxpat │ │ │ ├── dynamic.this~.maxhelp │ │ │ ├── dynamic.this~_demo.maxpat │ │ │ ├── dynamic.this~_demo2.maxpat │ │ │ ├── dynamicdsp~.maxhelp │ │ │ ├── dynamicdsp~_demo.maxpat │ │ │ ├── dynamicserial~.maxhelp │ │ │ └── dynamicserial~_demo.maxpat │ │ ├── gesture suite │ │ │ ├── gesture_maker.maxhelp │ │ │ ├── timefilter.maxhelp │ │ │ └── timemap.maxhelp │ │ ├── ibuffer suite │ │ │ ├── ibufconcatedrive~.maxhelp │ │ │ ├── ibufconcatenate~.maxhelp │ │ │ ├── ibuffermulti~.maxhelp │ │ │ ├── ibuffer~.maxhelp │ │ │ ├── ibufinfo~.maxhelp │ │ │ ├── ibufmultitable~.maxhelp │ │ │ ├── ibufplayer~.maxhelp │ │ │ └── ibuftable~.maxhelp │ │ ├── miscellaneous │ │ │ └── meandev.maxhelp │ │ ├── random numbers │ │ │ ├── GaussEditor.js │ │ │ ├── GaussEditor_demo.maxpat │ │ │ ├── PlusMinusButton.js │ │ │ ├── ahnoise~.maxhelp │ │ │ ├── randfloats.maxhelp │ │ │ ├── randhelp_histo.maxpat │ │ │ ├── randomvals.maxhelp │ │ │ └── randomvals~.maxhelp │ │ ├── sample accurate suite │ │ │ ├── chebyshape~.maxhelp │ │ │ ├── chebyshape~_dynamic_demo.maxpat │ │ │ ├── rbiquad~.maxhelp │ │ │ ├── rdcblock~.maxhelp │ │ │ ├── triggerlimit~.maxhelp │ │ │ ├── tsah~.maxhelp │ │ │ ├── voice_demo_poly.maxpat │ │ │ ├── voice_management_demo.maxpat │ │ │ ├── voicedrive~.maxhelp │ │ │ └── voicemanager~.maxhelp │ │ ├── threading │ │ │ ├── getthread.maxhelp │ │ │ ├── old │ │ │ │ └── getthread_old.maxhelp │ │ │ ├── schedulemessage.maxhelp │ │ │ └── threadfilter.maxhelp │ │ ├── utility │ │ │ ├── denormkiller~.maxhelp │ │ │ ├── depack.maxhelp │ │ │ ├── macaddress.maxhelp │ │ │ └── recursivefolder.maxhelp │ │ └── vMSP │ │ │ ├── vabs~.maxhelp │ │ │ ├── vacosh~.maxhelp │ │ │ ├── vacos~.maxhelp │ │ │ ├── vasinh~.maxhelp │ │ │ ├── vasin~.maxhelp │ │ │ ├── vatanh~.maxhelp │ │ │ ├── vatan~.maxhelp │ │ │ ├── vatodb~.maxhelp │ │ │ ├── vcosh~.maxhelp │ │ │ ├── vcosx~.maxhelp │ │ │ ├── vdbtoa~.maxhelp │ │ │ ├── vdiv~.maxhelp │ │ │ ├── vequals~.maxhelp │ │ │ ├── vftom~.maxhelp │ │ │ ├── vgreaterthaneq~.maxhelp │ │ │ ├── vgreaterthan~.maxhelp │ │ │ ├── vlessthaneq~.maxhelp │ │ │ ├── vlessthan~.maxhelp │ │ │ ├── vlog~.maxhelp │ │ │ ├── vmaximum~.maxhelp │ │ │ ├── vminimum~.maxhelp │ │ │ ├── vminus~.maxhelp │ │ │ ├── vmtof~.maxhelp │ │ │ ├── vnotequals~.maxhelp │ │ │ ├── vplus~.maxhelp │ │ │ ├── vpow~.maxhelp │ │ │ ├── vrdiv~.maxhelp │ │ │ ├── vrminus~.maxhelp │ │ │ ├── vsinh~.maxhelp │ │ │ ├── vsinx~.maxhelp │ │ │ ├── vsqrt~.maxhelp │ │ │ ├── vtanh~.maxhelp │ │ │ ├── vtanx~.maxhelp │ │ │ ├── vtimes~.maxhelp │ │ │ └── vtrunc~.maxhelp │ ├── license.md │ ├── misc │ │ ├── ah.helpdetails.js │ │ └── ah.helpname.js │ ├── package-info.json │ └── readme.md └── legacy_items │ ├── _Notes.rtf │ ├── ajh.wiiremote.maxhelp │ └── vaudio-objectmappings.txt ├── projects ├── ah_projects_config │ ├── config_mac.xcconfig │ ├── config_one_mkl.props │ ├── config_win_debug.props │ ├── config_win_release.props │ └── info.plist ├── ahnoise~.vcxproj ├── ahnoise~.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── ahnoise~.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── ahnoise~.xcscheme ├── ajh.wiiremote.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── ajh.wiiremote.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── ajh.wiiremote.xcscheme ├── chebyshape~.vcxproj ├── chebyshape~.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── chebyshape~.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── chebyshape~.xcscheme ├── denormkiller~.vcxproj ├── denormkiller~.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── denormkiller~.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── denormkiller~.xcscheme ├── depack.vcxproj ├── depack.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── depack.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── depack.xcscheme ├── descriptorsrt~.vcxproj ├── descriptorsrt~.vcxproj.filters ├── descriptors~.vcxproj ├── descriptors~.vcxproj.filters ├── descriptors~.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── descriptors~.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ ├── descriptorsrt~.xcscheme │ │ └── descriptors~.xcscheme ├── dynamic.in~.vcxproj ├── dynamic.out~.vcxproj ├── dynamic.patch~.vcxproj ├── dynamic.request~.vcxproj ├── dynamic.this~.vcxproj ├── dynamicdsp~.vcxproj ├── dynamicserial~.vcxproj ├── dynamic~.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ ├── dynamicdsp~.xccheckout │ │ │ └── dynamicdsp~.xcscmblueprint │ └── xcshareddata │ │ └── xcschemes │ │ ├── dynamic.in~.xcscheme │ │ ├── dynamic.out~.xcscheme │ │ ├── dynamic.patch~.xcscheme │ │ ├── dynamic.request~.xcscheme │ │ ├── dynamic.this~.xcscheme │ │ ├── dynamicdsp~.xcscheme │ │ └── dynamicserial~.xcscheme ├── entrymatcher.vcxproj ├── entrymatcher.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── entrymatcher.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ ├── entrymatcher.xcscheme │ │ └── entrymatcher~.xcscheme ├── entrymatcher~.vcxproj ├── gesture_maker.vcxproj ├── gesture_maker.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── gesture_maker.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── gesture_maker.xcscheme ├── getthread.vcxproj ├── getthread.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── getthread.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── getthread.xcscheme ├── ibufconcatedrive~.vcxproj ├── ibufconcatenate~.vcxproj ├── ibufconcatenate~.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── ibufconcatenate~.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ ├── ibufconcatedrive~.xcscheme │ │ └── ibufconcatenate~.xcscheme ├── ibuffermulti~.vcxproj ├── ibuffermulti~.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── ibuffermulti~.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── ibuffermulti~.xcscheme ├── ibuffer~.vcxproj ├── ibuffer~.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── ibuffer~.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── ibuffer~.xcscheme ├── ibufinfo~.vcxproj ├── ibufinfo~.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── ibufinfo~.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── ibufinfo~.xcscheme ├── ibufmultitable~.vcxproj ├── ibufmultitable~.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── ibufmultitable~.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── ibufmultitable~.xcscheme ├── ibufplayer~.vcxproj ├── ibufplayer~.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── ibufplayer~.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── ibufplayer~.xcscheme ├── ibuftable~.vcxproj ├── ibuftable~.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── ibuftable~.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── ibuftable~.xcscheme ├── kernelmaker~.vcxproj ├── kernelmaker~.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── kernelmaker~.xcscheme ├── macaddress.vcxproj ├── macaddress.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── macaddress.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── macaddress.xcscheme ├── meandev.vcxproj ├── meandev.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── meandev.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── meandev.xcscheme ├── partconvolve~.vcxproj ├── partconvolve~.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── partconvolve~.xcscheme ├── randfloats.vcxproj ├── randfloats.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── randfloats.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── randfloats.xcscheme ├── randomvals.vcxproj ├── randomvals~.vcxproj ├── randomvals~.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── randomvals~.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ ├── randomvals.xcscheme │ │ └── randomvals~.xcscheme ├── rbiquad~.vcxproj ├── rbiquad~.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── rbiquad~.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── rbiquad~.xcscheme ├── rdcblock~.vcxproj ├── rdcblock~.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── rdcblock~.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── rdcblock~.xcscheme ├── recursivefolder.vcxproj ├── recursivefolder.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── recursivefolder.xcscheme ├── schedulemessage.vcxproj ├── schedulemessage.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── schedulemessage.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── schedulemessage.xcscheme ├── threadfilter.vcxproj ├── threadfilter.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── threadfilter.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── threadfilter.xcscheme ├── timeconvolve~.vcxproj ├── timeconvolve~.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── timeconvolve~.xcscheme ├── timefilter.vcxproj ├── timefilter.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── timefilter.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── timefilter.xcscheme ├── timemap.vcxproj ├── timemap.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── timemap.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── timemap.xcscheme ├── triggerlimit~.vcxproj ├── triggerlimit~.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── triggerlimit~.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── triggerlimit~.xcscheme ├── tsah~.vcxproj ├── tsah~.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── tsah~.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── tsah~.xcscheme ├── vMSP~.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── - vMSP~.xccheckout │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── vabs~.xcscheme │ │ ├── vacosh~.xcscheme │ │ ├── vacos~.xcscheme │ │ ├── vasinh~.xcscheme │ │ ├── vasin~.xcscheme │ │ ├── vatanh~.xcscheme │ │ ├── vatan~.xcscheme │ │ ├── vatodb~.xcscheme │ │ ├── vcosh~.xcscheme │ │ ├── vcosx~.xcscheme │ │ ├── vdbtoa~.xcscheme │ │ ├── vdiv~.xcscheme │ │ ├── vequals~.xcscheme │ │ ├── vftom~.xcscheme │ │ ├── vgreaterthaneq~.xcscheme │ │ ├── vgreaterthan~.xcscheme │ │ ├── vlessthaneq~.xcscheme │ │ ├── vlessthan~.xcscheme │ │ ├── vlog~.xcscheme │ │ ├── vmaximum~.xcscheme │ │ ├── vminimum~.xcscheme │ │ ├── vminus~.xcscheme │ │ ├── vmtof~.xcscheme │ │ ├── vnotequals~.xcscheme │ │ ├── vplus~.xcscheme │ │ ├── vpow~.xcscheme │ │ ├── vrdiv~.xcscheme │ │ ├── vrminus~.xcscheme │ │ ├── vsinh~.xcscheme │ │ ├── vsinx~.xcscheme │ │ ├── vsqrt~.xcscheme │ │ ├── vtanh~.xcscheme │ │ ├── vtanx~.xcscheme │ │ ├── vtimes~.xcscheme │ │ └── vtrunc~.xcscheme ├── vabs~.vcxproj ├── vacosh~.vcxproj ├── vacos~.vcxproj ├── valconvert.vcxproj ├── valconvert.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── valconvert.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ ├── valconvert.xcscheme │ │ └── valconvert~.xcscheme ├── valconvert~.vcxproj ├── vasinh~.vcxproj ├── vasin~.vcxproj ├── vatanh~.vcxproj ├── vatan~.vcxproj ├── vatodb~.vcxproj ├── vcosh~.vcxproj ├── vcosx~.vcxproj ├── vdbtoa~.vcxproj ├── vdiv~.vcxproj ├── vequals~.vcxproj ├── vftom~.vcxproj ├── vgreaterthaneq~.vcxproj ├── vgreaterthan~.vcxproj ├── vlessthaneq~.vcxproj ├── vlessthan~.vcxproj ├── vlog~.vcxproj ├── vmaximum~.vcxproj ├── vminimum~.vcxproj ├── vminus~.vcxproj ├── vmtof~.vcxproj ├── vnotequals~.vcxproj ├── voicedrive~.vcxproj ├── voicedrive~.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── voicedrive~.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── voicedrive~.xcscheme ├── voicemanager~.vcxproj ├── voicemanager~.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── voicemanager~.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── voicemanager~.xcscheme ├── vplus~.vcxproj ├── vpow~.vcxproj ├── vrdiv~.vcxproj ├── vrminus~.vcxproj ├── vsinh~.vcxproj ├── vsinx~.vcxproj ├── vsqrt~.vcxproj ├── vtanh~.vcxproj ├── vtanx~.vcxproj ├── vtimes~.vcxproj └── vtrunc~.vcxproj ├── scripts ├── cmake │ ├── fn_add_max_external.cmake │ └── fn_add_msp_external.cmake └── install_mkl.py └── source ├── conversion ├── valconvert │ ├── CMakeLists.txt │ └── valconvert.cpp └── valconvert~ │ └── CMakeLists.txt ├── convolution ├── kernelmaker~ │ ├── CMakeLists.txt │ └── kernelmaker~.cpp ├── partconvolve~ │ ├── CMakeLists.txt │ └── partconvolve~.cpp └── timeconvolve~ │ ├── CMakeLists.txt │ └── timeconvolve~.cpp ├── descriptors ├── descriptorsrt~ │ ├── CMakeLists.txt │ └── descriptors_rt.cpp ├── descriptors~ │ ├── CMakeLists.txt │ ├── Notes.md │ ├── descriptors_fft_params.hpp │ ├── descriptors_graph.cpp │ ├── descriptors_graph.hpp │ ├── descriptors_modules.hpp │ ├── descriptors_non_rt.cpp │ ├── descriptors_summary_graph.cpp │ ├── descriptors_summary_graph.hpp │ ├── descriptors_summary_modules.hpp │ ├── library │ │ ├── edges.hpp │ │ ├── median_filter.hpp │ │ ├── peak_finder.hpp │ │ └── sort.hpp │ └── modules │ │ ├── conversion_helpers.hpp │ │ ├── modules_change.cpp │ │ ├── modules_change.hpp │ │ ├── modules_content.cpp │ │ ├── modules_content.hpp │ │ ├── modules_core.cpp │ │ ├── modules_core.hpp │ │ ├── modules_level.cpp │ │ ├── modules_level.hpp │ │ ├── modules_pitch.cpp │ │ ├── modules_pitch.hpp │ │ ├── modules_spectral.cpp │ │ ├── modules_spectral.hpp │ │ ├── modules_summary.cpp │ │ ├── modules_summary.hpp │ │ ├── processing_containers.hpp │ │ └── utility_definitions.hpp ├── entrymatcher │ ├── CMakeLists.txt │ ├── TO DO │ ├── atom_types.hpp │ ├── database_view.cpp │ ├── database_view.hpp │ ├── entries.cpp │ ├── entries.hpp │ ├── entry_database.cpp │ ├── entry_database.hpp │ ├── entrymatcher_common.hpp │ ├── entrymatcher_message.cpp │ ├── matchers.cpp │ ├── matchers.hpp │ └── sort.hpp └── entrymatcher~ │ ├── CMakeLists.txt │ └── entrymatcher_audio.cpp ├── dynamic suite ├── Common │ ├── dynamic_host.hpp │ ├── patch_set.hpp │ ├── patch_slot.cpp │ ├── patch_slot.hpp │ ├── thread_set.cpp │ └── thread_set.hpp ├── dynamic.in~ │ ├── CMakeLists.txt │ └── dynamic.in~.cpp ├── dynamic.out~ │ ├── CMakeLists.txt │ └── dynamic.out~.cpp ├── dynamic.patch~ │ ├── CMakeLists.txt │ └── dynamic.patch~.cpp ├── dynamic.request~ │ ├── CMakeLists.txt │ └── dynamic.request~.cpp ├── dynamic.this~ │ ├── CMakeLists.txt │ └── dynamic.this~.cpp ├── dynamicdsp~ │ ├── CMakeLists.txt │ └── dynamicdsp~.cpp └── dynamicserial~ │ ├── CMakeLists.txt │ └── dynamicserial~.cpp ├── gesture suite ├── gesture_maker │ ├── CMakeLists.txt │ ├── gesture_convert.cpp │ ├── gesture_convert.hpp │ ├── gesture_curve.cpp │ ├── gesture_curve.hpp │ ├── gesture_kernel.cpp │ ├── gesture_kernel.hpp │ ├── gesture_maker.cpp │ ├── gesture_multipart.cpp │ ├── gesture_multipart.hpp │ ├── gesture_random.cpp │ └── gesture_random.hpp ├── timefilter │ ├── CMakeLists.txt │ └── timefilter.cpp └── timemap │ ├── CMakeLists.txt │ └── timemap.cpp ├── ibuffer suite ├── ibufconcatedrive~ │ ├── CMakeLists.txt │ └── ibufconcatedrive~.cpp ├── ibufconcatenate~ │ ├── CMakeLists.txt │ ├── ibufconcatenate_info.hpp │ └── ibufconcatenate~.cpp ├── ibuffermulti~ │ ├── CMakeLists.txt │ └── ibuffermulti~.cpp ├── ibuffer~ │ ├── CMakeLists.txt │ └── ibuffer~.cpp ├── ibufinfo~ │ ├── CMakeLists.txt │ └── ibufinfo~.cpp ├── ibufmultitable~ │ ├── CMakeLists.txt │ └── ibufmultitable~.cpp ├── ibufplayer~ │ ├── CMakeLists.txt │ └── ibufplayer~.cpp └── ibuftable~ │ ├── CMakeLists.txt │ └── ibuftable~.cpp ├── miscellaneous ├── ajh.wiiremote │ ├── CMakeLists.no │ ├── COPYRIGHT.txt │ ├── _License_Info_.rtf │ ├── ajh.wiiremote.c │ ├── wiiremote.c │ └── wiiremote.h └── meandev │ ├── CMakeLists.txt │ └── meandev.cpp ├── random numbers ├── ahnoise~ │ ├── CMakeLists.txt │ └── ahnoise~.cpp ├── randfloats │ ├── CMakeLists.txt │ └── randfloats.cpp ├── randomvals │ ├── CMakeLists.txt │ └── randomvals.cpp └── randomvals~ │ └── CMakeLists.txt ├── sample accurate suite ├── chebyshape~ │ ├── CMakeLists.txt │ └── chebyshape~.cpp ├── rbiquad~ │ ├── CMakeLists.txt │ └── rbiquad~.cpp ├── rdcblock~ │ ├── CMakeLists.txt │ └── rdcblock~.cpp ├── triggerlimit~ │ ├── CMakeLists.txt │ └── triggerlimit~.cpp ├── tsah~ │ ├── CMakeLists.txt │ └── tsah~.cpp ├── voicedrive~ │ ├── CMakeLists.txt │ └── voicedrive~.cpp └── voicemanager~ │ ├── CMakeLists.txt │ └── voicemanager~.cpp ├── threading ├── getthread │ ├── CMakeLists.txt │ └── getthread.cpp ├── schedulemessage │ ├── CMakeLists.txt │ └── schedulemessage.cpp └── threadfilter │ ├── CMakeLists.txt │ └── threadfilter.cpp ├── utility ├── denormkiller~ │ ├── CMakeLists.txt │ └── denormkiller~.cpp ├── depack │ ├── CMakeLists.txt │ └── depack.cpp ├── macaddress │ ├── CMakeLists.txt │ └── macaddress.cpp └── recursivefolder │ ├── CMakeLists.txt │ └── recursivefolder.cpp └── vMSP ├── Base ├── comparisons.hpp ├── conversions.hpp ├── nans.hpp ├── precision_handlers.hpp ├── v_binary.hpp ├── v_unary.hpp └── vector_loop.hpp ├── vabs~ ├── CMakeLists.txt └── vabs~.cpp ├── vacosh~ ├── CMakeLists.txt └── vacosh~.cpp ├── vacos~ ├── CMakeLists.txt └── vacos~.cpp ├── vasinh~ ├── CMakeLists.txt └── vasinh~.cpp ├── vasin~ ├── CMakeLists.txt └── vasin~.cpp ├── vatanh~ ├── CMakeLists.txt └── vatanh~.cpp ├── vatan~ ├── CMakeLists.txt └── vatan~.cpp ├── vatodb~ ├── CMakeLists.txt └── vatodb~.cpp ├── vcosh~ ├── CMakeLists.txt └── vcosh~.cpp ├── vcosx~ ├── CMakeLists.txt └── vcosx~.cpp ├── vdbtoa~ ├── CMakeLists.txt └── vdbtoa~.cpp ├── vdiv~ ├── CMakeLists.txt └── vdiv~.cpp ├── vequals~ ├── CMakeLists.txt └── vequals~.cpp ├── vftom~ ├── CMakeLists.txt └── vftom~.cpp ├── vgreaterthaneq~ ├── CMakeLists.txt └── vgreaterthaneq~.cpp ├── vgreaterthan~ ├── CMakeLists.txt └── vgreaterthan~.cpp ├── vlessthaneq~ ├── CMakeLists.txt └── vlessthaneq~.cpp ├── vlessthan~ ├── CMakeLists.txt └── vlessthan~.cpp ├── vlog~ ├── CMakeLists.txt └── vlog~.cpp ├── vmaximum~ ├── CMakeLists.txt └── vmaximum~.cpp ├── vminimum~ ├── CMakeLists.txt └── vminimum~.cpp ├── vminus~ ├── CMakeLists.txt └── vminus~.cpp ├── vmtof~ ├── CMakeLists.txt └── vmtof~.cpp ├── vnotequals~ ├── CMakeLists.txt └── vnotequals~.cpp ├── vplus~ ├── CMakeLists.txt └── vplus~.cpp ├── vpow~ ├── CMakeLists.txt └── vpow~.cpp ├── vrdiv~ ├── CMakeLists.txt └── vrdiv~.cpp ├── vrminus~ ├── CMakeLists.txt └── vrminus~.cpp ├── vsinh~ ├── CMakeLists.txt └── vsinh~.cpp ├── vsinx~ ├── CMakeLists.txt └── vsinx~.cpp ├── vsqrt~ ├── CMakeLists.txt └── vsqrt~.cpp ├── vtanh~ ├── CMakeLists.txt └── vtanh~.cpp ├── vtanx~ ├── CMakeLists.txt └── vtanx~.cpp ├── vtimes~ ├── CMakeLists.txt └── vtimes~.cpp └── vtrunc~ ├── CMakeLists.txt └── vtrunc~.cpp /.github/workflows/autobuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/.github/workflows/autobuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/.gitmodules -------------------------------------------------------------------------------- /AH Externals.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/AH Externals.sln -------------------------------------------------------------------------------- /AH Externals.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/AH Externals.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AH Externals.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/AH Externals.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AH Externals.xcodeproj/project.xcworkspace/xcshareddata/AH Externals.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/AH Externals.xcodeproj/project.xcworkspace/xcshareddata/AH Externals.xccheckout -------------------------------------------------------------------------------- /AH Externals.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/AH Externals.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AH Externals.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/AH Externals.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /AH Externals.xcodeproj/xcshareddata/xcschemes/AH Externals.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/AH Externals.xcodeproj/xcshareddata/xcschemes/AH Externals.xcscheme -------------------------------------------------------------------------------- /AH Externals.xcodeproj/xcshareddata/xcschemes/Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/AH Externals.xcodeproj/xcshareddata/xcschemes/Release.xcscheme -------------------------------------------------------------------------------- /AH Externals.xcodeproj/xcshareddata/xcschemes/conversion.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/AH Externals.xcodeproj/xcshareddata/xcschemes/conversion.xcscheme -------------------------------------------------------------------------------- /AH Externals.xcodeproj/xcshareddata/xcschemes/convolution.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/AH Externals.xcodeproj/xcshareddata/xcschemes/convolution.xcscheme -------------------------------------------------------------------------------- /AH Externals.xcodeproj/xcshareddata/xcschemes/descriptors.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/AH Externals.xcodeproj/xcshareddata/xcschemes/descriptors.xcscheme -------------------------------------------------------------------------------- /AH Externals.xcodeproj/xcshareddata/xcschemes/dynamic suite.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/AH Externals.xcodeproj/xcshareddata/xcschemes/dynamic suite.xcscheme -------------------------------------------------------------------------------- /AH Externals.xcodeproj/xcshareddata/xcschemes/gesture suite.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/AH Externals.xcodeproj/xcshareddata/xcschemes/gesture suite.xcscheme -------------------------------------------------------------------------------- /AH Externals.xcodeproj/xcshareddata/xcschemes/ibuffer suite.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/AH Externals.xcodeproj/xcshareddata/xcschemes/ibuffer suite.xcscheme -------------------------------------------------------------------------------- /AH Externals.xcodeproj/xcshareddata/xcschemes/miscellaneous.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/AH Externals.xcodeproj/xcshareddata/xcschemes/miscellaneous.xcscheme -------------------------------------------------------------------------------- /AH Externals.xcodeproj/xcshareddata/xcschemes/random numbers.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/AH Externals.xcodeproj/xcshareddata/xcschemes/random numbers.xcscheme -------------------------------------------------------------------------------- /AH Externals.xcodeproj/xcshareddata/xcschemes/sample accurate library.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/AH Externals.xcodeproj/xcshareddata/xcschemes/sample accurate library.xcscheme -------------------------------------------------------------------------------- /AH Externals.xcodeproj/xcshareddata/xcschemes/threading.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/AH Externals.xcodeproj/xcshareddata/xcschemes/threading.xcscheme -------------------------------------------------------------------------------- /AH Externals.xcodeproj/xcshareddata/xcschemes/utility.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/AH Externals.xcodeproj/xcshareddata/xcschemes/utility.xcscheme -------------------------------------------------------------------------------- /AH Externals.xcodeproj/xcshareddata/xcschemes/vMSP.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/AH Externals.xcodeproj/xcshareddata/xcschemes/vMSP.xcscheme -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/README.md -------------------------------------------------------------------------------- /dependencies/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/dependencies/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/ibuffer_access/ibuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/dependencies/ibuffer_access/ibuffer.hpp -------------------------------------------------------------------------------- /dependencies/ibuffer_access/ibuffer_access.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/dependencies/ibuffer_access/ibuffer_access.cpp -------------------------------------------------------------------------------- /dependencies/ibuffer_access/ibuffer_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/dependencies/ibuffer_access/ibuffer_access.hpp -------------------------------------------------------------------------------- /include/AH_Containers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/include/AH_Containers.hpp -------------------------------------------------------------------------------- /include/AH_Int_Handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/include/AH_Int_Handler.hpp -------------------------------------------------------------------------------- /include/AH_Lifecycle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/include/AH_Lifecycle.hpp -------------------------------------------------------------------------------- /include/AH_Locks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/include/AH_Locks.hpp -------------------------------------------------------------------------------- /include/AH_Private_Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/include/AH_Private_Object.hpp -------------------------------------------------------------------------------- /include/SIMDExtended.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/include/SIMDExtended.hpp -------------------------------------------------------------------------------- /include/dynamic~.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/include/dynamic~.hpp -------------------------------------------------------------------------------- /package/AHarker_Externals/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/Icon.png -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/_c74_ref_modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/_c74_ref_modules.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/ahnoise~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/ahnoise~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/chebyshape~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/chebyshape~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/denormkiller~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/denormkiller~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/depack.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/depack.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/dynamic.in~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/dynamic.in~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/dynamic.out~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/dynamic.out~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/dynamic.patch~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/dynamic.patch~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/dynamic.request~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/dynamic.request~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/dynamic.this~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/dynamic.this~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/dynamicdsp~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/dynamicdsp~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/dynamicserial~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/dynamicserial~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/gesture_maker.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/gesture_maker.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/getthread.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/getthread.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/ibufconcatedrive~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/ibufconcatedrive~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/ibufconcatenate~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/ibufconcatenate~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/ibuffermulti~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/ibuffermulti~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/ibuffer~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/ibuffer~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/ibufinfo~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/ibufinfo~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/ibufmultitable~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/ibufmultitable~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/ibufplayer~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/ibufplayer~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/ibuftable~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/ibuftable~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/kernelmaker~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/kernelmaker~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/macaddress.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/macaddress.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/meandev.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/meandev.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/partconvolve~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/partconvolve~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/randfloats.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/randfloats.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/randomvals.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/randomvals.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/randomvals~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/randomvals~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/rbiquad~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/rbiquad~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/rdcblock~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/rdcblock~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/recursivefolder.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/recursivefolder.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/schedulemessage.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/schedulemessage.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/threadfilter.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/threadfilter.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/timeconvolve~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/timeconvolve~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/timefilter.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/timefilter.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/timemap.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/timemap.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/triggerlimit~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/triggerlimit~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/tsah~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/tsah~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vabs~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vabs~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vacosh~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vacosh~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vacos~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vacos~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/valconvert.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/valconvert.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/valconvert~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/valconvert~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vasinh~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vasinh~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vasin~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vasin~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vatanh~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vatanh~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vatan~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vatan~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vatodb~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vatodb~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vcosh~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vcosh~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vcosx~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vcosx~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vdbtoa~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vdbtoa~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vdiv~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vdiv~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vequals~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vequals~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vftom~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vftom~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vgreaterthaneq~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vgreaterthaneq~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vgreaterthan~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vgreaterthan~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vlessthaneq~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vlessthaneq~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vlessthan~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vlessthan~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vlog~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vlog~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vmaximum~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vmaximum~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vminimum~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vminimum~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vminus~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vminus~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vmtof~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vmtof~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vnotequals~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vnotequals~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/voicedrive~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/voicedrive~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/voicemanager~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/voicemanager~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vplus~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vplus~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vpow~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vpow~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vrdiv~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vrdiv~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vrminus~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vrminus~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vsinh~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vsinh~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vsinx~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vsinx~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vsqrt~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vsqrt~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vtanh~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vtanh~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vtanx~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vtanx~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vtimes~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vtimes~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/docs/refpages/aharker-ref/vtrunc~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/docs/refpages/aharker-ref/vtrunc~.maxref.xml -------------------------------------------------------------------------------- /package/AHarker_Externals/help/conversion/valconvert.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/conversion/valconvert.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/conversion/valconvert~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/conversion/valconvert~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/convolution/convolvezerolatency.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/convolution/convolvezerolatency.maxpat -------------------------------------------------------------------------------- /package/AHarker_Externals/help/convolution/ely_lady_chapel_impulse_response_44_1kHz.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/convolution/ely_lady_chapel_impulse_response_44_1kHz.wav -------------------------------------------------------------------------------- /package/AHarker_Externals/help/convolution/kernelmaker~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/convolution/kernelmaker~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/convolution/partconvolve~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/convolution/partconvolve~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/convolution/timeconvolve~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/convolution/timeconvolve~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/convolution/zero_latency_convolution_demo.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/convolution/zero_latency_convolution_demo.maxpat -------------------------------------------------------------------------------- /package/AHarker_Externals/help/descriptors/descriptorsrt~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/descriptors/descriptorsrt~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/descriptors/descriptors~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/descriptors/descriptors~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/descriptors/entrymatcher.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/descriptors/entrymatcher.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/descriptors/entrymatcher~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/descriptors/entrymatcher~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/dynamic suite/dynamic.in~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/dynamic suite/dynamic.in~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/dynamic suite/dynamic.in~_demo.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/dynamic suite/dynamic.in~_demo.maxpat -------------------------------------------------------------------------------- /package/AHarker_Externals/help/dynamic suite/dynamic.out~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/dynamic suite/dynamic.out~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/dynamic suite/dynamic.out~_demo.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/dynamic suite/dynamic.out~_demo.maxpat -------------------------------------------------------------------------------- /package/AHarker_Externals/help/dynamic suite/dynamic.patch~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/dynamic suite/dynamic.patch~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/dynamic suite/dynamic.patch~_demo.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/dynamic suite/dynamic.patch~_demo.maxpat -------------------------------------------------------------------------------- /package/AHarker_Externals/help/dynamic suite/dynamic.patch~_demo2.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/dynamic suite/dynamic.patch~_demo2.maxpat -------------------------------------------------------------------------------- /package/AHarker_Externals/help/dynamic suite/dynamic.request~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/dynamic suite/dynamic.request~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/dynamic suite/dynamic.request~_demo.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/dynamic suite/dynamic.request~_demo.maxpat -------------------------------------------------------------------------------- /package/AHarker_Externals/help/dynamic suite/dynamic.this~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/dynamic suite/dynamic.this~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/dynamic suite/dynamic.this~_demo.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/dynamic suite/dynamic.this~_demo.maxpat -------------------------------------------------------------------------------- /package/AHarker_Externals/help/dynamic suite/dynamic.this~_demo2.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/dynamic suite/dynamic.this~_demo2.maxpat -------------------------------------------------------------------------------- /package/AHarker_Externals/help/dynamic suite/dynamicdsp~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/dynamic suite/dynamicdsp~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/dynamic suite/dynamicdsp~_demo.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/dynamic suite/dynamicdsp~_demo.maxpat -------------------------------------------------------------------------------- /package/AHarker_Externals/help/dynamic suite/dynamicserial~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/dynamic suite/dynamicserial~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/dynamic suite/dynamicserial~_demo.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/dynamic suite/dynamicserial~_demo.maxpat -------------------------------------------------------------------------------- /package/AHarker_Externals/help/gesture suite/gesture_maker.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/gesture suite/gesture_maker.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/gesture suite/timefilter.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/gesture suite/timefilter.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/gesture suite/timemap.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/gesture suite/timemap.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/ibuffer suite/ibufconcatedrive~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/ibuffer suite/ibufconcatedrive~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/ibuffer suite/ibufconcatenate~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/ibuffer suite/ibufconcatenate~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/ibuffer suite/ibuffermulti~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/ibuffer suite/ibuffermulti~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/ibuffer suite/ibuffer~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/ibuffer suite/ibuffer~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/ibuffer suite/ibufinfo~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/ibuffer suite/ibufinfo~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/ibuffer suite/ibufmultitable~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/ibuffer suite/ibufmultitable~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/ibuffer suite/ibufplayer~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/ibuffer suite/ibufplayer~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/ibuffer suite/ibuftable~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/ibuffer suite/ibuftable~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/miscellaneous/meandev.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/miscellaneous/meandev.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/random numbers/GaussEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/random numbers/GaussEditor.js -------------------------------------------------------------------------------- /package/AHarker_Externals/help/random numbers/GaussEditor_demo.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/random numbers/GaussEditor_demo.maxpat -------------------------------------------------------------------------------- /package/AHarker_Externals/help/random numbers/PlusMinusButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/random numbers/PlusMinusButton.js -------------------------------------------------------------------------------- /package/AHarker_Externals/help/random numbers/ahnoise~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/random numbers/ahnoise~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/random numbers/randfloats.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/random numbers/randfloats.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/random numbers/randhelp_histo.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/random numbers/randhelp_histo.maxpat -------------------------------------------------------------------------------- /package/AHarker_Externals/help/random numbers/randomvals.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/random numbers/randomvals.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/random numbers/randomvals~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/random numbers/randomvals~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/sample accurate suite/chebyshape~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/sample accurate suite/chebyshape~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/sample accurate suite/chebyshape~_dynamic_demo.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/sample accurate suite/chebyshape~_dynamic_demo.maxpat -------------------------------------------------------------------------------- /package/AHarker_Externals/help/sample accurate suite/rbiquad~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/sample accurate suite/rbiquad~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/sample accurate suite/rdcblock~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/sample accurate suite/rdcblock~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/sample accurate suite/triggerlimit~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/sample accurate suite/triggerlimit~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/sample accurate suite/tsah~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/sample accurate suite/tsah~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/sample accurate suite/voice_demo_poly.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/sample accurate suite/voice_demo_poly.maxpat -------------------------------------------------------------------------------- /package/AHarker_Externals/help/sample accurate suite/voice_management_demo.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/sample accurate suite/voice_management_demo.maxpat -------------------------------------------------------------------------------- /package/AHarker_Externals/help/sample accurate suite/voicedrive~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/sample accurate suite/voicedrive~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/sample accurate suite/voicemanager~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/sample accurate suite/voicemanager~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/threading/getthread.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/threading/getthread.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/threading/old/getthread_old.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/threading/old/getthread_old.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/threading/schedulemessage.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/threading/schedulemessage.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/threading/threadfilter.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/threading/threadfilter.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/utility/denormkiller~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/utility/denormkiller~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/utility/depack.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/utility/depack.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/utility/macaddress.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/utility/macaddress.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/utility/recursivefolder.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/utility/recursivefolder.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vabs~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vabs~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vacosh~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vacosh~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vacos~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vacos~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vasinh~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vasinh~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vasin~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vasin~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vatanh~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vatanh~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vatan~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vatan~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vatodb~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vatodb~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vcosh~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vcosh~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vcosx~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vcosx~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vdbtoa~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vdbtoa~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vdiv~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vdiv~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vequals~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vequals~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vftom~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vftom~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vgreaterthaneq~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vgreaterthaneq~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vgreaterthan~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vgreaterthan~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vlessthaneq~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vlessthaneq~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vlessthan~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vlessthan~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vlog~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vlog~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vmaximum~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vmaximum~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vminimum~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vminimum~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vminus~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vminus~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vmtof~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vmtof~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vnotequals~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vnotequals~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vplus~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vplus~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vpow~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vpow~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vrdiv~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vrdiv~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vrminus~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vrminus~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vsinh~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vsinh~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vsinx~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vsinx~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vsqrt~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vsqrt~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vtanh~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vtanh~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vtanx~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vtanx~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vtimes~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vtimes~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/help/vMSP/vtrunc~.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/help/vMSP/vtrunc~.maxhelp -------------------------------------------------------------------------------- /package/AHarker_Externals/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/license.md -------------------------------------------------------------------------------- /package/AHarker_Externals/misc/ah.helpdetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/misc/ah.helpdetails.js -------------------------------------------------------------------------------- /package/AHarker_Externals/misc/ah.helpname.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/misc/ah.helpname.js -------------------------------------------------------------------------------- /package/AHarker_Externals/package-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/package-info.json -------------------------------------------------------------------------------- /package/AHarker_Externals/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/AHarker_Externals/readme.md -------------------------------------------------------------------------------- /package/legacy_items/_Notes.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/legacy_items/_Notes.rtf -------------------------------------------------------------------------------- /package/legacy_items/ajh.wiiremote.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/legacy_items/ajh.wiiremote.maxhelp -------------------------------------------------------------------------------- /package/legacy_items/vaudio-objectmappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/package/legacy_items/vaudio-objectmappings.txt -------------------------------------------------------------------------------- /projects/ah_projects_config/config_mac.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ah_projects_config/config_mac.xcconfig -------------------------------------------------------------------------------- /projects/ah_projects_config/config_one_mkl.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ah_projects_config/config_one_mkl.props -------------------------------------------------------------------------------- /projects/ah_projects_config/config_win_debug.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ah_projects_config/config_win_debug.props -------------------------------------------------------------------------------- /projects/ah_projects_config/config_win_release.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ah_projects_config/config_win_release.props -------------------------------------------------------------------------------- /projects/ah_projects_config/info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ah_projects_config/info.plist -------------------------------------------------------------------------------- /projects/ahnoise~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ahnoise~.vcxproj -------------------------------------------------------------------------------- /projects/ahnoise~.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ahnoise~.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/ahnoise~.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ahnoise~.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/ahnoise~.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ahnoise~.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /projects/ahnoise~.xcodeproj/project.xcworkspace/xcshareddata/ahnoise~.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ahnoise~.xcodeproj/project.xcworkspace/xcshareddata/ahnoise~.xccheckout -------------------------------------------------------------------------------- /projects/ahnoise~.xcodeproj/xcshareddata/xcschemes/ahnoise~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ahnoise~.xcodeproj/xcshareddata/xcschemes/ahnoise~.xcscheme -------------------------------------------------------------------------------- /projects/ajh.wiiremote.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ajh.wiiremote.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/ajh.wiiremote.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ajh.wiiremote.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/ajh.wiiremote.xcodeproj/xcshareddata/xcschemes/ajh.wiiremote.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ajh.wiiremote.xcodeproj/xcshareddata/xcschemes/ajh.wiiremote.xcscheme -------------------------------------------------------------------------------- /projects/chebyshape~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/chebyshape~.vcxproj -------------------------------------------------------------------------------- /projects/chebyshape~.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/chebyshape~.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/chebyshape~.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/chebyshape~.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/chebyshape~.xcodeproj/project.xcworkspace/xcshareddata/chebyshape~.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/chebyshape~.xcodeproj/project.xcworkspace/xcshareddata/chebyshape~.xccheckout -------------------------------------------------------------------------------- /projects/chebyshape~.xcodeproj/xcshareddata/xcschemes/chebyshape~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/chebyshape~.xcodeproj/xcshareddata/xcschemes/chebyshape~.xcscheme -------------------------------------------------------------------------------- /projects/denormkiller~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/denormkiller~.vcxproj -------------------------------------------------------------------------------- /projects/denormkiller~.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/denormkiller~.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/denormkiller~.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/denormkiller~.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/denormkiller~.xcodeproj/xcshareddata/xcschemes/denormkiller~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/denormkiller~.xcodeproj/xcshareddata/xcschemes/denormkiller~.xcscheme -------------------------------------------------------------------------------- /projects/depack.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/depack.vcxproj -------------------------------------------------------------------------------- /projects/depack.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/depack.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/depack.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/depack.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/depack.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/depack.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /projects/depack.xcodeproj/project.xcworkspace/xcshareddata/depack.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/depack.xcodeproj/project.xcworkspace/xcshareddata/depack.xccheckout -------------------------------------------------------------------------------- /projects/depack.xcodeproj/xcshareddata/xcschemes/depack.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/depack.xcodeproj/xcshareddata/xcschemes/depack.xcscheme -------------------------------------------------------------------------------- /projects/descriptorsrt~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/descriptorsrt~.vcxproj -------------------------------------------------------------------------------- /projects/descriptorsrt~.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/descriptorsrt~.vcxproj.filters -------------------------------------------------------------------------------- /projects/descriptors~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/descriptors~.vcxproj -------------------------------------------------------------------------------- /projects/descriptors~.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/descriptors~.vcxproj.filters -------------------------------------------------------------------------------- /projects/descriptors~.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/descriptors~.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/descriptors~.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/descriptors~.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/descriptors~.xcodeproj/xcshareddata/xcschemes/descriptorsrt~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/descriptors~.xcodeproj/xcshareddata/xcschemes/descriptorsrt~.xcscheme -------------------------------------------------------------------------------- /projects/descriptors~.xcodeproj/xcshareddata/xcschemes/descriptors~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/descriptors~.xcodeproj/xcshareddata/xcschemes/descriptors~.xcscheme -------------------------------------------------------------------------------- /projects/dynamic.in~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/dynamic.in~.vcxproj -------------------------------------------------------------------------------- /projects/dynamic.out~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/dynamic.out~.vcxproj -------------------------------------------------------------------------------- /projects/dynamic.patch~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/dynamic.patch~.vcxproj -------------------------------------------------------------------------------- /projects/dynamic.request~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/dynamic.request~.vcxproj -------------------------------------------------------------------------------- /projects/dynamic.this~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/dynamic.this~.vcxproj -------------------------------------------------------------------------------- /projects/dynamicdsp~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/dynamicdsp~.vcxproj -------------------------------------------------------------------------------- /projects/dynamicserial~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/dynamicserial~.vcxproj -------------------------------------------------------------------------------- /projects/dynamic~.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/dynamic~.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/dynamic~.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/dynamic~.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/dynamic~.xcodeproj/project.xcworkspace/xcshareddata/dynamicdsp~.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/dynamic~.xcodeproj/project.xcworkspace/xcshareddata/dynamicdsp~.xccheckout -------------------------------------------------------------------------------- /projects/dynamic~.xcodeproj/xcshareddata/xcschemes/dynamic.in~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/dynamic~.xcodeproj/xcshareddata/xcschemes/dynamic.in~.xcscheme -------------------------------------------------------------------------------- /projects/dynamic~.xcodeproj/xcshareddata/xcschemes/dynamic.out~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/dynamic~.xcodeproj/xcshareddata/xcschemes/dynamic.out~.xcscheme -------------------------------------------------------------------------------- /projects/dynamic~.xcodeproj/xcshareddata/xcschemes/dynamic.patch~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/dynamic~.xcodeproj/xcshareddata/xcschemes/dynamic.patch~.xcscheme -------------------------------------------------------------------------------- /projects/dynamic~.xcodeproj/xcshareddata/xcschemes/dynamic.request~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/dynamic~.xcodeproj/xcshareddata/xcschemes/dynamic.request~.xcscheme -------------------------------------------------------------------------------- /projects/dynamic~.xcodeproj/xcshareddata/xcschemes/dynamic.this~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/dynamic~.xcodeproj/xcshareddata/xcschemes/dynamic.this~.xcscheme -------------------------------------------------------------------------------- /projects/dynamic~.xcodeproj/xcshareddata/xcschemes/dynamicdsp~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/dynamic~.xcodeproj/xcshareddata/xcschemes/dynamicdsp~.xcscheme -------------------------------------------------------------------------------- /projects/dynamic~.xcodeproj/xcshareddata/xcschemes/dynamicserial~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/dynamic~.xcodeproj/xcshareddata/xcschemes/dynamicserial~.xcscheme -------------------------------------------------------------------------------- /projects/entrymatcher.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/entrymatcher.vcxproj -------------------------------------------------------------------------------- /projects/entrymatcher.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/entrymatcher.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/entrymatcher.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/entrymatcher.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/entrymatcher.xcodeproj/xcshareddata/xcschemes/entrymatcher.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/entrymatcher.xcodeproj/xcshareddata/xcschemes/entrymatcher.xcscheme -------------------------------------------------------------------------------- /projects/entrymatcher.xcodeproj/xcshareddata/xcschemes/entrymatcher~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/entrymatcher.xcodeproj/xcshareddata/xcschemes/entrymatcher~.xcscheme -------------------------------------------------------------------------------- /projects/entrymatcher~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/entrymatcher~.vcxproj -------------------------------------------------------------------------------- /projects/gesture_maker.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/gesture_maker.vcxproj -------------------------------------------------------------------------------- /projects/gesture_maker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/gesture_maker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/gesture_maker.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/gesture_maker.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/gesture_maker.xcodeproj/xcshareddata/xcschemes/gesture_maker.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/gesture_maker.xcodeproj/xcshareddata/xcschemes/gesture_maker.xcscheme -------------------------------------------------------------------------------- /projects/getthread.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/getthread.vcxproj -------------------------------------------------------------------------------- /projects/getthread.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/getthread.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/getthread.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/getthread.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/getthread.xcodeproj/project.xcworkspace/xcshareddata/getthread.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/getthread.xcodeproj/project.xcworkspace/xcshareddata/getthread.xccheckout -------------------------------------------------------------------------------- /projects/getthread.xcodeproj/xcshareddata/xcschemes/getthread.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/getthread.xcodeproj/xcshareddata/xcschemes/getthread.xcscheme -------------------------------------------------------------------------------- /projects/ibufconcatedrive~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibufconcatedrive~.vcxproj -------------------------------------------------------------------------------- /projects/ibufconcatenate~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibufconcatenate~.vcxproj -------------------------------------------------------------------------------- /projects/ibufconcatenate~.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibufconcatenate~.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/ibufconcatenate~.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibufconcatenate~.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/ibufconcatenate~.xcodeproj/xcshareddata/xcschemes/ibufconcatenate~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibufconcatenate~.xcodeproj/xcshareddata/xcschemes/ibufconcatenate~.xcscheme -------------------------------------------------------------------------------- /projects/ibuffermulti~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibuffermulti~.vcxproj -------------------------------------------------------------------------------- /projects/ibuffermulti~.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibuffermulti~.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/ibuffermulti~.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibuffermulti~.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/ibuffermulti~.xcodeproj/xcshareddata/xcschemes/ibuffermulti~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibuffermulti~.xcodeproj/xcshareddata/xcschemes/ibuffermulti~.xcscheme -------------------------------------------------------------------------------- /projects/ibuffer~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibuffer~.vcxproj -------------------------------------------------------------------------------- /projects/ibuffer~.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibuffer~.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/ibuffer~.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibuffer~.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/ibuffer~.xcodeproj/project.xcworkspace/xcshareddata/ibuffer~.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibuffer~.xcodeproj/project.xcworkspace/xcshareddata/ibuffer~.xccheckout -------------------------------------------------------------------------------- /projects/ibuffer~.xcodeproj/xcshareddata/xcschemes/ibuffer~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibuffer~.xcodeproj/xcshareddata/xcschemes/ibuffer~.xcscheme -------------------------------------------------------------------------------- /projects/ibufinfo~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibufinfo~.vcxproj -------------------------------------------------------------------------------- /projects/ibufinfo~.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibufinfo~.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/ibufinfo~.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibufinfo~.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/ibufinfo~.xcodeproj/project.xcworkspace/xcshareddata/ibufinfo~.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibufinfo~.xcodeproj/project.xcworkspace/xcshareddata/ibufinfo~.xccheckout -------------------------------------------------------------------------------- /projects/ibufinfo~.xcodeproj/xcshareddata/xcschemes/ibufinfo~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibufinfo~.xcodeproj/xcshareddata/xcschemes/ibufinfo~.xcscheme -------------------------------------------------------------------------------- /projects/ibufmultitable~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibufmultitable~.vcxproj -------------------------------------------------------------------------------- /projects/ibufmultitable~.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibufmultitable~.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/ibufmultitable~.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibufmultitable~.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/ibufmultitable~.xcodeproj/xcshareddata/xcschemes/ibufmultitable~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibufmultitable~.xcodeproj/xcshareddata/xcschemes/ibufmultitable~.xcscheme -------------------------------------------------------------------------------- /projects/ibufplayer~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibufplayer~.vcxproj -------------------------------------------------------------------------------- /projects/ibufplayer~.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibufplayer~.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/ibufplayer~.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibufplayer~.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/ibufplayer~.xcodeproj/xcshareddata/xcschemes/ibufplayer~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibufplayer~.xcodeproj/xcshareddata/xcschemes/ibufplayer~.xcscheme -------------------------------------------------------------------------------- /projects/ibuftable~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibuftable~.vcxproj -------------------------------------------------------------------------------- /projects/ibuftable~.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibuftable~.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/ibuftable~.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibuftable~.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/ibuftable~.xcodeproj/project.xcworkspace/xcshareddata/ibuftable~.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibuftable~.xcodeproj/project.xcworkspace/xcshareddata/ibuftable~.xccheckout -------------------------------------------------------------------------------- /projects/ibuftable~.xcodeproj/xcshareddata/xcschemes/ibuftable~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/ibuftable~.xcodeproj/xcshareddata/xcschemes/ibuftable~.xcscheme -------------------------------------------------------------------------------- /projects/kernelmaker~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/kernelmaker~.vcxproj -------------------------------------------------------------------------------- /projects/kernelmaker~.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/kernelmaker~.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/kernelmaker~.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/kernelmaker~.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/kernelmaker~.xcodeproj/xcshareddata/xcschemes/kernelmaker~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/kernelmaker~.xcodeproj/xcshareddata/xcschemes/kernelmaker~.xcscheme -------------------------------------------------------------------------------- /projects/macaddress.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/macaddress.vcxproj -------------------------------------------------------------------------------- /projects/macaddress.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/macaddress.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/macaddress.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/macaddress.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/macaddress.xcodeproj/project.xcworkspace/xcshareddata/macaddress.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/macaddress.xcodeproj/project.xcworkspace/xcshareddata/macaddress.xccheckout -------------------------------------------------------------------------------- /projects/macaddress.xcodeproj/xcshareddata/xcschemes/macaddress.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/macaddress.xcodeproj/xcshareddata/xcschemes/macaddress.xcscheme -------------------------------------------------------------------------------- /projects/meandev.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/meandev.vcxproj -------------------------------------------------------------------------------- /projects/meandev.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/meandev.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/meandev.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/meandev.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/meandev.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/meandev.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /projects/meandev.xcodeproj/project.xcworkspace/xcshareddata/meandev.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/meandev.xcodeproj/project.xcworkspace/xcshareddata/meandev.xccheckout -------------------------------------------------------------------------------- /projects/meandev.xcodeproj/xcshareddata/xcschemes/meandev.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/meandev.xcodeproj/xcshareddata/xcschemes/meandev.xcscheme -------------------------------------------------------------------------------- /projects/partconvolve~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/partconvolve~.vcxproj -------------------------------------------------------------------------------- /projects/partconvolve~.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/partconvolve~.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/partconvolve~.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/partconvolve~.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/partconvolve~.xcodeproj/xcshareddata/xcschemes/partconvolve~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/partconvolve~.xcodeproj/xcshareddata/xcschemes/partconvolve~.xcscheme -------------------------------------------------------------------------------- /projects/randfloats.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/randfloats.vcxproj -------------------------------------------------------------------------------- /projects/randfloats.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/randfloats.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/randfloats.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/randfloats.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/randfloats.xcodeproj/project.xcworkspace/xcshareddata/randfloats.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/randfloats.xcodeproj/project.xcworkspace/xcshareddata/randfloats.xccheckout -------------------------------------------------------------------------------- /projects/randfloats.xcodeproj/xcshareddata/xcschemes/randfloats.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/randfloats.xcodeproj/xcshareddata/xcschemes/randfloats.xcscheme -------------------------------------------------------------------------------- /projects/randomvals.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/randomvals.vcxproj -------------------------------------------------------------------------------- /projects/randomvals~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/randomvals~.vcxproj -------------------------------------------------------------------------------- /projects/randomvals~.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/randomvals~.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/randomvals~.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/randomvals~.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/randomvals~.xcodeproj/xcshareddata/xcschemes/randomvals.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/randomvals~.xcodeproj/xcshareddata/xcschemes/randomvals.xcscheme -------------------------------------------------------------------------------- /projects/randomvals~.xcodeproj/xcshareddata/xcschemes/randomvals~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/randomvals~.xcodeproj/xcshareddata/xcschemes/randomvals~.xcscheme -------------------------------------------------------------------------------- /projects/rbiquad~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/rbiquad~.vcxproj -------------------------------------------------------------------------------- /projects/rbiquad~.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/rbiquad~.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/rbiquad~.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/rbiquad~.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/rbiquad~.xcodeproj/project.xcworkspace/xcshareddata/rbiquad~.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/rbiquad~.xcodeproj/project.xcworkspace/xcshareddata/rbiquad~.xccheckout -------------------------------------------------------------------------------- /projects/rbiquad~.xcodeproj/xcshareddata/xcschemes/rbiquad~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/rbiquad~.xcodeproj/xcshareddata/xcschemes/rbiquad~.xcscheme -------------------------------------------------------------------------------- /projects/rdcblock~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/rdcblock~.vcxproj -------------------------------------------------------------------------------- /projects/rdcblock~.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/rdcblock~.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/rdcblock~.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/rdcblock~.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/rdcblock~.xcodeproj/project.xcworkspace/xcshareddata/rdcblock~.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/rdcblock~.xcodeproj/project.xcworkspace/xcshareddata/rdcblock~.xccheckout -------------------------------------------------------------------------------- /projects/rdcblock~.xcodeproj/xcshareddata/xcschemes/rdcblock~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/rdcblock~.xcodeproj/xcshareddata/xcschemes/rdcblock~.xcscheme -------------------------------------------------------------------------------- /projects/recursivefolder.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/recursivefolder.vcxproj -------------------------------------------------------------------------------- /projects/recursivefolder.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/recursivefolder.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/recursivefolder.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/recursivefolder.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/recursivefolder.xcodeproj/xcshareddata/xcschemes/recursivefolder.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/recursivefolder.xcodeproj/xcshareddata/xcschemes/recursivefolder.xcscheme -------------------------------------------------------------------------------- /projects/schedulemessage.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/schedulemessage.vcxproj -------------------------------------------------------------------------------- /projects/schedulemessage.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/schedulemessage.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/schedulemessage.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/schedulemessage.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/schedulemessage.xcodeproj/xcshareddata/xcschemes/schedulemessage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/schedulemessage.xcodeproj/xcshareddata/xcschemes/schedulemessage.xcscheme -------------------------------------------------------------------------------- /projects/threadfilter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/threadfilter.vcxproj -------------------------------------------------------------------------------- /projects/threadfilter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/threadfilter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/threadfilter.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/threadfilter.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/threadfilter.xcodeproj/xcshareddata/xcschemes/threadfilter.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/threadfilter.xcodeproj/xcshareddata/xcschemes/threadfilter.xcscheme -------------------------------------------------------------------------------- /projects/timeconvolve~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/timeconvolve~.vcxproj -------------------------------------------------------------------------------- /projects/timeconvolve~.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/timeconvolve~.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/timeconvolve~.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/timeconvolve~.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/timeconvolve~.xcodeproj/xcshareddata/xcschemes/timeconvolve~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/timeconvolve~.xcodeproj/xcshareddata/xcschemes/timeconvolve~.xcscheme -------------------------------------------------------------------------------- /projects/timefilter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/timefilter.vcxproj -------------------------------------------------------------------------------- /projects/timefilter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/timefilter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/timefilter.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/timefilter.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/timefilter.xcodeproj/project.xcworkspace/xcshareddata/timefilter.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/timefilter.xcodeproj/project.xcworkspace/xcshareddata/timefilter.xccheckout -------------------------------------------------------------------------------- /projects/timefilter.xcodeproj/xcshareddata/xcschemes/timefilter.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/timefilter.xcodeproj/xcshareddata/xcschemes/timefilter.xcscheme -------------------------------------------------------------------------------- /projects/timemap.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/timemap.vcxproj -------------------------------------------------------------------------------- /projects/timemap.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/timemap.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/timemap.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/timemap.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/timemap.xcodeproj/project.xcworkspace/xcshareddata/timemap.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/timemap.xcodeproj/project.xcworkspace/xcshareddata/timemap.xccheckout -------------------------------------------------------------------------------- /projects/timemap.xcodeproj/xcshareddata/xcschemes/timemap.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/timemap.xcodeproj/xcshareddata/xcschemes/timemap.xcscheme -------------------------------------------------------------------------------- /projects/triggerlimit~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/triggerlimit~.vcxproj -------------------------------------------------------------------------------- /projects/triggerlimit~.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/triggerlimit~.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/triggerlimit~.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/triggerlimit~.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/triggerlimit~.xcodeproj/xcshareddata/xcschemes/triggerlimit~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/triggerlimit~.xcodeproj/xcshareddata/xcschemes/triggerlimit~.xcscheme -------------------------------------------------------------------------------- /projects/tsah~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/tsah~.vcxproj -------------------------------------------------------------------------------- /projects/tsah~.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/tsah~.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/tsah~.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/tsah~.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/tsah~.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/tsah~.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /projects/tsah~.xcodeproj/project.xcworkspace/xcshareddata/tsah~.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/tsah~.xcodeproj/project.xcworkspace/xcshareddata/tsah~.xccheckout -------------------------------------------------------------------------------- /projects/tsah~.xcodeproj/xcshareddata/xcschemes/tsah~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/tsah~.xcodeproj/xcshareddata/xcschemes/tsah~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/project.xcworkspace/xcshareddata/- vMSP~.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/project.xcworkspace/xcshareddata/- vMSP~.xccheckout -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vabs~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vabs~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vacosh~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vacosh~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vacos~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vacos~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vasinh~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vasinh~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vasin~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vasin~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vatanh~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vatanh~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vatan~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vatan~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vatodb~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vatodb~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vcosh~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vcosh~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vcosx~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vcosx~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vdbtoa~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vdbtoa~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vdiv~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vdiv~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vequals~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vequals~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vftom~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vftom~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vgreaterthaneq~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vgreaterthaneq~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vgreaterthan~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vgreaterthan~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vlessthaneq~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vlessthaneq~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vlessthan~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vlessthan~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vlog~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vlog~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vmaximum~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vmaximum~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vminimum~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vminimum~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vminus~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vminus~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vmtof~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vmtof~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vnotequals~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vnotequals~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vplus~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vplus~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vpow~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vpow~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vrdiv~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vrdiv~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vrminus~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vrminus~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vsinh~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vsinh~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vsinx~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vsinx~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vsqrt~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vsqrt~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vtanh~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vtanh~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vtanx~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vtanx~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vtimes~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vtimes~.xcscheme -------------------------------------------------------------------------------- /projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vtrunc~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vMSP~.xcodeproj/xcshareddata/xcschemes/vtrunc~.xcscheme -------------------------------------------------------------------------------- /projects/vabs~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vabs~.vcxproj -------------------------------------------------------------------------------- /projects/vacosh~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vacosh~.vcxproj -------------------------------------------------------------------------------- /projects/vacos~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vacos~.vcxproj -------------------------------------------------------------------------------- /projects/valconvert.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/valconvert.vcxproj -------------------------------------------------------------------------------- /projects/valconvert.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/valconvert.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/valconvert.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/valconvert.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/valconvert.xcodeproj/project.xcworkspace/xcshareddata/valconvert.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/valconvert.xcodeproj/project.xcworkspace/xcshareddata/valconvert.xccheckout -------------------------------------------------------------------------------- /projects/valconvert.xcodeproj/xcshareddata/xcschemes/valconvert.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/valconvert.xcodeproj/xcshareddata/xcschemes/valconvert.xcscheme -------------------------------------------------------------------------------- /projects/valconvert.xcodeproj/xcshareddata/xcschemes/valconvert~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/valconvert.xcodeproj/xcshareddata/xcschemes/valconvert~.xcscheme -------------------------------------------------------------------------------- /projects/valconvert~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/valconvert~.vcxproj -------------------------------------------------------------------------------- /projects/vasinh~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vasinh~.vcxproj -------------------------------------------------------------------------------- /projects/vasin~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vasin~.vcxproj -------------------------------------------------------------------------------- /projects/vatanh~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vatanh~.vcxproj -------------------------------------------------------------------------------- /projects/vatan~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vatan~.vcxproj -------------------------------------------------------------------------------- /projects/vatodb~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vatodb~.vcxproj -------------------------------------------------------------------------------- /projects/vcosh~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vcosh~.vcxproj -------------------------------------------------------------------------------- /projects/vcosx~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vcosx~.vcxproj -------------------------------------------------------------------------------- /projects/vdbtoa~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vdbtoa~.vcxproj -------------------------------------------------------------------------------- /projects/vdiv~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vdiv~.vcxproj -------------------------------------------------------------------------------- /projects/vequals~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vequals~.vcxproj -------------------------------------------------------------------------------- /projects/vftom~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vftom~.vcxproj -------------------------------------------------------------------------------- /projects/vgreaterthaneq~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vgreaterthaneq~.vcxproj -------------------------------------------------------------------------------- /projects/vgreaterthan~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vgreaterthan~.vcxproj -------------------------------------------------------------------------------- /projects/vlessthaneq~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vlessthaneq~.vcxproj -------------------------------------------------------------------------------- /projects/vlessthan~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vlessthan~.vcxproj -------------------------------------------------------------------------------- /projects/vlog~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vlog~.vcxproj -------------------------------------------------------------------------------- /projects/vmaximum~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vmaximum~.vcxproj -------------------------------------------------------------------------------- /projects/vminimum~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vminimum~.vcxproj -------------------------------------------------------------------------------- /projects/vminus~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vminus~.vcxproj -------------------------------------------------------------------------------- /projects/vmtof~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vmtof~.vcxproj -------------------------------------------------------------------------------- /projects/vnotequals~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vnotequals~.vcxproj -------------------------------------------------------------------------------- /projects/voicedrive~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/voicedrive~.vcxproj -------------------------------------------------------------------------------- /projects/voicedrive~.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/voicedrive~.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/voicedrive~.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/voicedrive~.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/voicedrive~.xcodeproj/xcshareddata/xcschemes/voicedrive~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/voicedrive~.xcodeproj/xcshareddata/xcschemes/voicedrive~.xcscheme -------------------------------------------------------------------------------- /projects/voicemanager~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/voicemanager~.vcxproj -------------------------------------------------------------------------------- /projects/voicemanager~.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/voicemanager~.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects/voicemanager~.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/voicemanager~.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects/voicemanager~.xcodeproj/xcshareddata/xcschemes/voicemanager~.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/voicemanager~.xcodeproj/xcshareddata/xcschemes/voicemanager~.xcscheme -------------------------------------------------------------------------------- /projects/vplus~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vplus~.vcxproj -------------------------------------------------------------------------------- /projects/vpow~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vpow~.vcxproj -------------------------------------------------------------------------------- /projects/vrdiv~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vrdiv~.vcxproj -------------------------------------------------------------------------------- /projects/vrminus~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vrminus~.vcxproj -------------------------------------------------------------------------------- /projects/vsinh~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vsinh~.vcxproj -------------------------------------------------------------------------------- /projects/vsinx~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vsinx~.vcxproj -------------------------------------------------------------------------------- /projects/vsqrt~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vsqrt~.vcxproj -------------------------------------------------------------------------------- /projects/vtanh~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vtanh~.vcxproj -------------------------------------------------------------------------------- /projects/vtanx~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vtanx~.vcxproj -------------------------------------------------------------------------------- /projects/vtimes~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vtimes~.vcxproj -------------------------------------------------------------------------------- /projects/vtrunc~.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/projects/vtrunc~.vcxproj -------------------------------------------------------------------------------- /scripts/cmake/fn_add_max_external.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/scripts/cmake/fn_add_max_external.cmake -------------------------------------------------------------------------------- /scripts/cmake/fn_add_msp_external.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/scripts/cmake/fn_add_msp_external.cmake -------------------------------------------------------------------------------- /scripts/install_mkl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/scripts/install_mkl.py -------------------------------------------------------------------------------- /source/conversion/valconvert/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/conversion/valconvert/CMakeLists.txt -------------------------------------------------------------------------------- /source/conversion/valconvert/valconvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/conversion/valconvert/valconvert.cpp -------------------------------------------------------------------------------- /source/conversion/valconvert~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/conversion/valconvert~/CMakeLists.txt -------------------------------------------------------------------------------- /source/convolution/kernelmaker~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/convolution/kernelmaker~/CMakeLists.txt -------------------------------------------------------------------------------- /source/convolution/kernelmaker~/kernelmaker~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/convolution/kernelmaker~/kernelmaker~.cpp -------------------------------------------------------------------------------- /source/convolution/partconvolve~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/convolution/partconvolve~/CMakeLists.txt -------------------------------------------------------------------------------- /source/convolution/partconvolve~/partconvolve~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/convolution/partconvolve~/partconvolve~.cpp -------------------------------------------------------------------------------- /source/convolution/timeconvolve~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/convolution/timeconvolve~/CMakeLists.txt -------------------------------------------------------------------------------- /source/convolution/timeconvolve~/timeconvolve~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/convolution/timeconvolve~/timeconvolve~.cpp -------------------------------------------------------------------------------- /source/descriptors/descriptorsrt~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptorsrt~/CMakeLists.txt -------------------------------------------------------------------------------- /source/descriptors/descriptorsrt~/descriptors_rt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptorsrt~/descriptors_rt.cpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/CMakeLists.txt -------------------------------------------------------------------------------- /source/descriptors/descriptors~/Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/Notes.md -------------------------------------------------------------------------------- /source/descriptors/descriptors~/descriptors_fft_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/descriptors_fft_params.hpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/descriptors_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/descriptors_graph.cpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/descriptors_graph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/descriptors_graph.hpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/descriptors_modules.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/descriptors_modules.hpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/descriptors_non_rt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/descriptors_non_rt.cpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/descriptors_summary_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/descriptors_summary_graph.cpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/descriptors_summary_graph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/descriptors_summary_graph.hpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/descriptors_summary_modules.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/descriptors_summary_modules.hpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/library/edges.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/library/edges.hpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/library/median_filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/library/median_filter.hpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/library/peak_finder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/library/peak_finder.hpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/library/sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/library/sort.hpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/modules/conversion_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/modules/conversion_helpers.hpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/modules/modules_change.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/modules/modules_change.cpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/modules/modules_change.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/modules/modules_change.hpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/modules/modules_content.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/modules/modules_content.cpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/modules/modules_content.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/modules/modules_content.hpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/modules/modules_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/modules/modules_core.cpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/modules/modules_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/modules/modules_core.hpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/modules/modules_level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/modules/modules_level.cpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/modules/modules_level.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/modules/modules_level.hpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/modules/modules_pitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/modules/modules_pitch.cpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/modules/modules_pitch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/modules/modules_pitch.hpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/modules/modules_spectral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/modules/modules_spectral.cpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/modules/modules_spectral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/modules/modules_spectral.hpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/modules/modules_summary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/modules/modules_summary.cpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/modules/modules_summary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/modules/modules_summary.hpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/modules/processing_containers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/modules/processing_containers.hpp -------------------------------------------------------------------------------- /source/descriptors/descriptors~/modules/utility_definitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/descriptors~/modules/utility_definitions.hpp -------------------------------------------------------------------------------- /source/descriptors/entrymatcher/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/entrymatcher/CMakeLists.txt -------------------------------------------------------------------------------- /source/descriptors/entrymatcher/TO DO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/entrymatcher/TO DO -------------------------------------------------------------------------------- /source/descriptors/entrymatcher/atom_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/entrymatcher/atom_types.hpp -------------------------------------------------------------------------------- /source/descriptors/entrymatcher/database_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/entrymatcher/database_view.cpp -------------------------------------------------------------------------------- /source/descriptors/entrymatcher/database_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/entrymatcher/database_view.hpp -------------------------------------------------------------------------------- /source/descriptors/entrymatcher/entries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/entrymatcher/entries.cpp -------------------------------------------------------------------------------- /source/descriptors/entrymatcher/entries.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/entrymatcher/entries.hpp -------------------------------------------------------------------------------- /source/descriptors/entrymatcher/entry_database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/entrymatcher/entry_database.cpp -------------------------------------------------------------------------------- /source/descriptors/entrymatcher/entry_database.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/entrymatcher/entry_database.hpp -------------------------------------------------------------------------------- /source/descriptors/entrymatcher/entrymatcher_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/entrymatcher/entrymatcher_common.hpp -------------------------------------------------------------------------------- /source/descriptors/entrymatcher/entrymatcher_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/entrymatcher/entrymatcher_message.cpp -------------------------------------------------------------------------------- /source/descriptors/entrymatcher/matchers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/entrymatcher/matchers.cpp -------------------------------------------------------------------------------- /source/descriptors/entrymatcher/matchers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/entrymatcher/matchers.hpp -------------------------------------------------------------------------------- /source/descriptors/entrymatcher/sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/entrymatcher/sort.hpp -------------------------------------------------------------------------------- /source/descriptors/entrymatcher~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/entrymatcher~/CMakeLists.txt -------------------------------------------------------------------------------- /source/descriptors/entrymatcher~/entrymatcher_audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/descriptors/entrymatcher~/entrymatcher_audio.cpp -------------------------------------------------------------------------------- /source/dynamic suite/Common/dynamic_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/dynamic suite/Common/dynamic_host.hpp -------------------------------------------------------------------------------- /source/dynamic suite/Common/patch_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/dynamic suite/Common/patch_set.hpp -------------------------------------------------------------------------------- /source/dynamic suite/Common/patch_slot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/dynamic suite/Common/patch_slot.cpp -------------------------------------------------------------------------------- /source/dynamic suite/Common/patch_slot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/dynamic suite/Common/patch_slot.hpp -------------------------------------------------------------------------------- /source/dynamic suite/Common/thread_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/dynamic suite/Common/thread_set.cpp -------------------------------------------------------------------------------- /source/dynamic suite/Common/thread_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/dynamic suite/Common/thread_set.hpp -------------------------------------------------------------------------------- /source/dynamic suite/dynamic.in~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/dynamic suite/dynamic.in~/CMakeLists.txt -------------------------------------------------------------------------------- /source/dynamic suite/dynamic.in~/dynamic.in~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/dynamic suite/dynamic.in~/dynamic.in~.cpp -------------------------------------------------------------------------------- /source/dynamic suite/dynamic.out~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/dynamic suite/dynamic.out~/CMakeLists.txt -------------------------------------------------------------------------------- /source/dynamic suite/dynamic.out~/dynamic.out~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/dynamic suite/dynamic.out~/dynamic.out~.cpp -------------------------------------------------------------------------------- /source/dynamic suite/dynamic.patch~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/dynamic suite/dynamic.patch~/CMakeLists.txt -------------------------------------------------------------------------------- /source/dynamic suite/dynamic.patch~/dynamic.patch~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/dynamic suite/dynamic.patch~/dynamic.patch~.cpp -------------------------------------------------------------------------------- /source/dynamic suite/dynamic.request~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/dynamic suite/dynamic.request~/CMakeLists.txt -------------------------------------------------------------------------------- /source/dynamic suite/dynamic.request~/dynamic.request~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/dynamic suite/dynamic.request~/dynamic.request~.cpp -------------------------------------------------------------------------------- /source/dynamic suite/dynamic.this~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/dynamic suite/dynamic.this~/CMakeLists.txt -------------------------------------------------------------------------------- /source/dynamic suite/dynamic.this~/dynamic.this~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/dynamic suite/dynamic.this~/dynamic.this~.cpp -------------------------------------------------------------------------------- /source/dynamic suite/dynamicdsp~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/dynamic suite/dynamicdsp~/CMakeLists.txt -------------------------------------------------------------------------------- /source/dynamic suite/dynamicdsp~/dynamicdsp~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/dynamic suite/dynamicdsp~/dynamicdsp~.cpp -------------------------------------------------------------------------------- /source/dynamic suite/dynamicserial~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/dynamic suite/dynamicserial~/CMakeLists.txt -------------------------------------------------------------------------------- /source/dynamic suite/dynamicserial~/dynamicserial~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/dynamic suite/dynamicserial~/dynamicserial~.cpp -------------------------------------------------------------------------------- /source/gesture suite/gesture_maker/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/gesture suite/gesture_maker/CMakeLists.txt -------------------------------------------------------------------------------- /source/gesture suite/gesture_maker/gesture_convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/gesture suite/gesture_maker/gesture_convert.cpp -------------------------------------------------------------------------------- /source/gesture suite/gesture_maker/gesture_convert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/gesture suite/gesture_maker/gesture_convert.hpp -------------------------------------------------------------------------------- /source/gesture suite/gesture_maker/gesture_curve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/gesture suite/gesture_maker/gesture_curve.cpp -------------------------------------------------------------------------------- /source/gesture suite/gesture_maker/gesture_curve.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/gesture suite/gesture_maker/gesture_curve.hpp -------------------------------------------------------------------------------- /source/gesture suite/gesture_maker/gesture_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/gesture suite/gesture_maker/gesture_kernel.cpp -------------------------------------------------------------------------------- /source/gesture suite/gesture_maker/gesture_kernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/gesture suite/gesture_maker/gesture_kernel.hpp -------------------------------------------------------------------------------- /source/gesture suite/gesture_maker/gesture_maker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/gesture suite/gesture_maker/gesture_maker.cpp -------------------------------------------------------------------------------- /source/gesture suite/gesture_maker/gesture_multipart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/gesture suite/gesture_maker/gesture_multipart.cpp -------------------------------------------------------------------------------- /source/gesture suite/gesture_maker/gesture_multipart.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/gesture suite/gesture_maker/gesture_multipart.hpp -------------------------------------------------------------------------------- /source/gesture suite/gesture_maker/gesture_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/gesture suite/gesture_maker/gesture_random.cpp -------------------------------------------------------------------------------- /source/gesture suite/gesture_maker/gesture_random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/gesture suite/gesture_maker/gesture_random.hpp -------------------------------------------------------------------------------- /source/gesture suite/timefilter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/gesture suite/timefilter/CMakeLists.txt -------------------------------------------------------------------------------- /source/gesture suite/timefilter/timefilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/gesture suite/timefilter/timefilter.cpp -------------------------------------------------------------------------------- /source/gesture suite/timemap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/gesture suite/timemap/CMakeLists.txt -------------------------------------------------------------------------------- /source/gesture suite/timemap/timemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/gesture suite/timemap/timemap.cpp -------------------------------------------------------------------------------- /source/ibuffer suite/ibufconcatedrive~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/ibuffer suite/ibufconcatedrive~/CMakeLists.txt -------------------------------------------------------------------------------- /source/ibuffer suite/ibufconcatedrive~/ibufconcatedrive~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/ibuffer suite/ibufconcatedrive~/ibufconcatedrive~.cpp -------------------------------------------------------------------------------- /source/ibuffer suite/ibufconcatenate~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/ibuffer suite/ibufconcatenate~/CMakeLists.txt -------------------------------------------------------------------------------- /source/ibuffer suite/ibufconcatenate~/ibufconcatenate_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/ibuffer suite/ibufconcatenate~/ibufconcatenate_info.hpp -------------------------------------------------------------------------------- /source/ibuffer suite/ibufconcatenate~/ibufconcatenate~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/ibuffer suite/ibufconcatenate~/ibufconcatenate~.cpp -------------------------------------------------------------------------------- /source/ibuffer suite/ibuffermulti~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/ibuffer suite/ibuffermulti~/CMakeLists.txt -------------------------------------------------------------------------------- /source/ibuffer suite/ibuffermulti~/ibuffermulti~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/ibuffer suite/ibuffermulti~/ibuffermulti~.cpp -------------------------------------------------------------------------------- /source/ibuffer suite/ibuffer~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/ibuffer suite/ibuffer~/CMakeLists.txt -------------------------------------------------------------------------------- /source/ibuffer suite/ibuffer~/ibuffer~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/ibuffer suite/ibuffer~/ibuffer~.cpp -------------------------------------------------------------------------------- /source/ibuffer suite/ibufinfo~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/ibuffer suite/ibufinfo~/CMakeLists.txt -------------------------------------------------------------------------------- /source/ibuffer suite/ibufinfo~/ibufinfo~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/ibuffer suite/ibufinfo~/ibufinfo~.cpp -------------------------------------------------------------------------------- /source/ibuffer suite/ibufmultitable~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/ibuffer suite/ibufmultitable~/CMakeLists.txt -------------------------------------------------------------------------------- /source/ibuffer suite/ibufmultitable~/ibufmultitable~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/ibuffer suite/ibufmultitable~/ibufmultitable~.cpp -------------------------------------------------------------------------------- /source/ibuffer suite/ibufplayer~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/ibuffer suite/ibufplayer~/CMakeLists.txt -------------------------------------------------------------------------------- /source/ibuffer suite/ibufplayer~/ibufplayer~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/ibuffer suite/ibufplayer~/ibufplayer~.cpp -------------------------------------------------------------------------------- /source/ibuffer suite/ibuftable~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/ibuffer suite/ibuftable~/CMakeLists.txt -------------------------------------------------------------------------------- /source/ibuffer suite/ibuftable~/ibuftable~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/ibuffer suite/ibuftable~/ibuftable~.cpp -------------------------------------------------------------------------------- /source/miscellaneous/ajh.wiiremote/CMakeLists.no: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/miscellaneous/ajh.wiiremote/CMakeLists.no -------------------------------------------------------------------------------- /source/miscellaneous/ajh.wiiremote/COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/miscellaneous/ajh.wiiremote/COPYRIGHT.txt -------------------------------------------------------------------------------- /source/miscellaneous/ajh.wiiremote/_License_Info_.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/miscellaneous/ajh.wiiremote/_License_Info_.rtf -------------------------------------------------------------------------------- /source/miscellaneous/ajh.wiiremote/ajh.wiiremote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/miscellaneous/ajh.wiiremote/ajh.wiiremote.c -------------------------------------------------------------------------------- /source/miscellaneous/ajh.wiiremote/wiiremote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/miscellaneous/ajh.wiiremote/wiiremote.c -------------------------------------------------------------------------------- /source/miscellaneous/ajh.wiiremote/wiiremote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/miscellaneous/ajh.wiiremote/wiiremote.h -------------------------------------------------------------------------------- /source/miscellaneous/meandev/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/miscellaneous/meandev/CMakeLists.txt -------------------------------------------------------------------------------- /source/miscellaneous/meandev/meandev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/miscellaneous/meandev/meandev.cpp -------------------------------------------------------------------------------- /source/random numbers/ahnoise~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/random numbers/ahnoise~/CMakeLists.txt -------------------------------------------------------------------------------- /source/random numbers/ahnoise~/ahnoise~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/random numbers/ahnoise~/ahnoise~.cpp -------------------------------------------------------------------------------- /source/random numbers/randfloats/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/random numbers/randfloats/CMakeLists.txt -------------------------------------------------------------------------------- /source/random numbers/randfloats/randfloats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/random numbers/randfloats/randfloats.cpp -------------------------------------------------------------------------------- /source/random numbers/randomvals/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/random numbers/randomvals/CMakeLists.txt -------------------------------------------------------------------------------- /source/random numbers/randomvals/randomvals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/random numbers/randomvals/randomvals.cpp -------------------------------------------------------------------------------- /source/random numbers/randomvals~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/random numbers/randomvals~/CMakeLists.txt -------------------------------------------------------------------------------- /source/sample accurate suite/chebyshape~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/sample accurate suite/chebyshape~/CMakeLists.txt -------------------------------------------------------------------------------- /source/sample accurate suite/chebyshape~/chebyshape~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/sample accurate suite/chebyshape~/chebyshape~.cpp -------------------------------------------------------------------------------- /source/sample accurate suite/rbiquad~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/sample accurate suite/rbiquad~/CMakeLists.txt -------------------------------------------------------------------------------- /source/sample accurate suite/rbiquad~/rbiquad~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/sample accurate suite/rbiquad~/rbiquad~.cpp -------------------------------------------------------------------------------- /source/sample accurate suite/rdcblock~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/sample accurate suite/rdcblock~/CMakeLists.txt -------------------------------------------------------------------------------- /source/sample accurate suite/rdcblock~/rdcblock~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/sample accurate suite/rdcblock~/rdcblock~.cpp -------------------------------------------------------------------------------- /source/sample accurate suite/triggerlimit~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/sample accurate suite/triggerlimit~/CMakeLists.txt -------------------------------------------------------------------------------- /source/sample accurate suite/triggerlimit~/triggerlimit~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/sample accurate suite/triggerlimit~/triggerlimit~.cpp -------------------------------------------------------------------------------- /source/sample accurate suite/tsah~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/sample accurate suite/tsah~/CMakeLists.txt -------------------------------------------------------------------------------- /source/sample accurate suite/tsah~/tsah~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/sample accurate suite/tsah~/tsah~.cpp -------------------------------------------------------------------------------- /source/sample accurate suite/voicedrive~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/sample accurate suite/voicedrive~/CMakeLists.txt -------------------------------------------------------------------------------- /source/sample accurate suite/voicedrive~/voicedrive~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/sample accurate suite/voicedrive~/voicedrive~.cpp -------------------------------------------------------------------------------- /source/sample accurate suite/voicemanager~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/sample accurate suite/voicemanager~/CMakeLists.txt -------------------------------------------------------------------------------- /source/sample accurate suite/voicemanager~/voicemanager~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/sample accurate suite/voicemanager~/voicemanager~.cpp -------------------------------------------------------------------------------- /source/threading/getthread/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/threading/getthread/CMakeLists.txt -------------------------------------------------------------------------------- /source/threading/getthread/getthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/threading/getthread/getthread.cpp -------------------------------------------------------------------------------- /source/threading/schedulemessage/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/threading/schedulemessage/CMakeLists.txt -------------------------------------------------------------------------------- /source/threading/schedulemessage/schedulemessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/threading/schedulemessage/schedulemessage.cpp -------------------------------------------------------------------------------- /source/threading/threadfilter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/threading/threadfilter/CMakeLists.txt -------------------------------------------------------------------------------- /source/threading/threadfilter/threadfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/threading/threadfilter/threadfilter.cpp -------------------------------------------------------------------------------- /source/utility/denormkiller~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/utility/denormkiller~/CMakeLists.txt -------------------------------------------------------------------------------- /source/utility/denormkiller~/denormkiller~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/utility/denormkiller~/denormkiller~.cpp -------------------------------------------------------------------------------- /source/utility/depack/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/utility/depack/CMakeLists.txt -------------------------------------------------------------------------------- /source/utility/depack/depack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/utility/depack/depack.cpp -------------------------------------------------------------------------------- /source/utility/macaddress/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/utility/macaddress/CMakeLists.txt -------------------------------------------------------------------------------- /source/utility/macaddress/macaddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/utility/macaddress/macaddress.cpp -------------------------------------------------------------------------------- /source/utility/recursivefolder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/utility/recursivefolder/CMakeLists.txt -------------------------------------------------------------------------------- /source/utility/recursivefolder/recursivefolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/utility/recursivefolder/recursivefolder.cpp -------------------------------------------------------------------------------- /source/vMSP/Base/comparisons.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/Base/comparisons.hpp -------------------------------------------------------------------------------- /source/vMSP/Base/conversions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/Base/conversions.hpp -------------------------------------------------------------------------------- /source/vMSP/Base/nans.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/Base/nans.hpp -------------------------------------------------------------------------------- /source/vMSP/Base/precision_handlers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/Base/precision_handlers.hpp -------------------------------------------------------------------------------- /source/vMSP/Base/v_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/Base/v_binary.hpp -------------------------------------------------------------------------------- /source/vMSP/Base/v_unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/Base/v_unary.hpp -------------------------------------------------------------------------------- /source/vMSP/Base/vector_loop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/Base/vector_loop.hpp -------------------------------------------------------------------------------- /source/vMSP/vabs~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vabs~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vabs~/vabs~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vabs~/vabs~.cpp -------------------------------------------------------------------------------- /source/vMSP/vacosh~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vacosh~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vacosh~/vacosh~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vacosh~/vacosh~.cpp -------------------------------------------------------------------------------- /source/vMSP/vacos~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vacos~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vacos~/vacos~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vacos~/vacos~.cpp -------------------------------------------------------------------------------- /source/vMSP/vasinh~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vasinh~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vasinh~/vasinh~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vasinh~/vasinh~.cpp -------------------------------------------------------------------------------- /source/vMSP/vasin~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vasin~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vasin~/vasin~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vasin~/vasin~.cpp -------------------------------------------------------------------------------- /source/vMSP/vatanh~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vatanh~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vatanh~/vatanh~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vatanh~/vatanh~.cpp -------------------------------------------------------------------------------- /source/vMSP/vatan~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vatan~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vatan~/vatan~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vatan~/vatan~.cpp -------------------------------------------------------------------------------- /source/vMSP/vatodb~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vatodb~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vatodb~/vatodb~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vatodb~/vatodb~.cpp -------------------------------------------------------------------------------- /source/vMSP/vcosh~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vcosh~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vcosh~/vcosh~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vcosh~/vcosh~.cpp -------------------------------------------------------------------------------- /source/vMSP/vcosx~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vcosx~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vcosx~/vcosx~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vcosx~/vcosx~.cpp -------------------------------------------------------------------------------- /source/vMSP/vdbtoa~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vdbtoa~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vdbtoa~/vdbtoa~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vdbtoa~/vdbtoa~.cpp -------------------------------------------------------------------------------- /source/vMSP/vdiv~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vdiv~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vdiv~/vdiv~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vdiv~/vdiv~.cpp -------------------------------------------------------------------------------- /source/vMSP/vequals~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vequals~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vequals~/vequals~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vequals~/vequals~.cpp -------------------------------------------------------------------------------- /source/vMSP/vftom~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vftom~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vftom~/vftom~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vftom~/vftom~.cpp -------------------------------------------------------------------------------- /source/vMSP/vgreaterthaneq~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vgreaterthaneq~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vgreaterthaneq~/vgreaterthaneq~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vgreaterthaneq~/vgreaterthaneq~.cpp -------------------------------------------------------------------------------- /source/vMSP/vgreaterthan~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vgreaterthan~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vgreaterthan~/vgreaterthan~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vgreaterthan~/vgreaterthan~.cpp -------------------------------------------------------------------------------- /source/vMSP/vlessthaneq~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vlessthaneq~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vlessthaneq~/vlessthaneq~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vlessthaneq~/vlessthaneq~.cpp -------------------------------------------------------------------------------- /source/vMSP/vlessthan~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vlessthan~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vlessthan~/vlessthan~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vlessthan~/vlessthan~.cpp -------------------------------------------------------------------------------- /source/vMSP/vlog~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vlog~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vlog~/vlog~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vlog~/vlog~.cpp -------------------------------------------------------------------------------- /source/vMSP/vmaximum~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vmaximum~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vmaximum~/vmaximum~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vmaximum~/vmaximum~.cpp -------------------------------------------------------------------------------- /source/vMSP/vminimum~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vminimum~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vminimum~/vminimum~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vminimum~/vminimum~.cpp -------------------------------------------------------------------------------- /source/vMSP/vminus~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vminus~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vminus~/vminus~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vminus~/vminus~.cpp -------------------------------------------------------------------------------- /source/vMSP/vmtof~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vmtof~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vmtof~/vmtof~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vmtof~/vmtof~.cpp -------------------------------------------------------------------------------- /source/vMSP/vnotequals~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vnotequals~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vnotequals~/vnotequals~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vnotequals~/vnotequals~.cpp -------------------------------------------------------------------------------- /source/vMSP/vplus~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vplus~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vplus~/vplus~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vplus~/vplus~.cpp -------------------------------------------------------------------------------- /source/vMSP/vpow~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vpow~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vpow~/vpow~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vpow~/vpow~.cpp -------------------------------------------------------------------------------- /source/vMSP/vrdiv~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vrdiv~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vrdiv~/vrdiv~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vrdiv~/vrdiv~.cpp -------------------------------------------------------------------------------- /source/vMSP/vrminus~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vrminus~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vrminus~/vrminus~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vrminus~/vrminus~.cpp -------------------------------------------------------------------------------- /source/vMSP/vsinh~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vsinh~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vsinh~/vsinh~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vsinh~/vsinh~.cpp -------------------------------------------------------------------------------- /source/vMSP/vsinx~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vsinx~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vsinx~/vsinx~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vsinx~/vsinx~.cpp -------------------------------------------------------------------------------- /source/vMSP/vsqrt~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vsqrt~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vsqrt~/vsqrt~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vsqrt~/vsqrt~.cpp -------------------------------------------------------------------------------- /source/vMSP/vtanh~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vtanh~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vtanh~/vtanh~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vtanh~/vtanh~.cpp -------------------------------------------------------------------------------- /source/vMSP/vtanx~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vtanx~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vtanx~/vtanx~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vtanx~/vtanx~.cpp -------------------------------------------------------------------------------- /source/vMSP/vtimes~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vtimes~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vtimes~/vtimes~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vtimes~/vtimes~.cpp -------------------------------------------------------------------------------- /source/vMSP/vtrunc~/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vtrunc~/CMakeLists.txt -------------------------------------------------------------------------------- /source/vMSP/vtrunc~/vtrunc~.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHarker/AHarker_Externals/HEAD/source/vMSP/vtrunc~/vtrunc~.cpp --------------------------------------------------------------------------------