├── CMakeLists.txt ├── CMakeModules ├── CMakeASM-LLVMWARInformation.cmake ├── CMakeDetermineASM-LLVMWARCompiler.cmake ├── CMakeTestASM-LLVMWARCompiler.cmake ├── FindGperftools.cmake ├── IneryTester.cmake.in ├── IneryTesterBuild.cmake.in ├── InstallDirectoryPermissions.cmake ├── MASSigning.cmake ├── VersionUtils.cmake ├── additionalPlugins.cmake ├── doxygen.cmake ├── inery-config.cmake.in ├── package.cmake └── utils.cmake ├── IMPORTANT.md ├── LICENSE ├── README.md ├── docs.json ├── ine.doxygen.in ├── inery.version.in ├── libraries ├── CMakeLists.txt ├── appbase │ ├── CMakeLists.txt │ ├── CMakeModules │ │ └── InstallDirectoryPermissions.cmake │ ├── LICENSE.md │ ├── README.md │ ├── application.cpp │ ├── examples │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── include │ │ └── appbase │ │ │ ├── application.hpp │ │ │ ├── channel.hpp │ │ │ ├── execution_priority_queue.hpp │ │ │ ├── method.hpp │ │ │ ├── plugin.hpp │ │ │ └── version.hpp │ ├── version.cmake.in │ └── version.cpp.in ├── builtins │ ├── CMakeLists.txt │ ├── README.txt │ ├── compiler_builtins.hpp │ ├── fixdfti.c │ ├── fixsfti.c │ ├── fixtfti.c │ ├── fixunsdfti.c │ ├── fixunssfti.c │ ├── fixunstfti.c │ ├── floattidf.c │ ├── floatuntidf.c │ ├── fp128.h │ ├── fp32.h │ ├── fp64.h │ └── int_t.h ├── chain │ ├── CMakeLists.txt │ ├── abi_serializer.cpp │ ├── apply_context.cpp │ ├── asset.cpp │ ├── authorization_manager.cpp │ ├── block.cpp │ ├── block_header.cpp │ ├── block_header_state.cpp │ ├── block_log.cpp │ ├── block_state.cpp │ ├── chain_config.cpp │ ├── chain_id_type.cpp │ ├── controller.cpp │ ├── fork_database.cpp │ ├── genesis_intrinsics.cpp │ ├── genesis_state.cpp │ ├── genesis_state_root_key.cpp.in │ ├── include │ │ └── inery │ │ │ └── chain │ │ │ ├── abi_def.hpp │ │ │ ├── abi_serializer.hpp │ │ │ ├── account_object.hpp │ │ │ ├── action.hpp │ │ │ ├── action_receipt.hpp │ │ │ ├── apply_context.hpp │ │ │ ├── asset.hpp │ │ │ ├── authority.hpp │ │ │ ├── authority_checker.hpp │ │ │ ├── authorization_manager.hpp │ │ │ ├── block.hpp │ │ │ ├── block_header.hpp │ │ │ ├── block_header_state.hpp │ │ │ ├── block_log.hpp │ │ │ ├── block_state.hpp │ │ │ ├── block_summary_object.hpp │ │ │ ├── block_timestamp.hpp │ │ │ ├── chain_config.hpp │ │ │ ├── chain_id_type.hpp │ │ │ ├── chain_snapshot.hpp │ │ │ ├── code_object.hpp │ │ │ ├── config.hpp │ │ │ ├── contract_table_objects.hpp │ │ │ ├── contract_types.hpp │ │ │ ├── controller.hpp │ │ │ ├── core_symbol.hpp.in │ │ │ ├── database_header_object.hpp │ │ │ ├── database_utils.hpp │ │ │ ├── exceptions.hpp │ │ │ ├── fixed_bytes.hpp │ │ │ ├── fixed_key.hpp │ │ │ ├── fork_database.hpp │ │ │ ├── generated_transaction_object.hpp │ │ │ ├── genesis_intrinsics.hpp │ │ │ ├── genesis_state.hpp │ │ │ ├── global_property_object.hpp │ │ │ ├── incremental_merkle.hpp │ │ │ ├── inery_contract.hpp │ │ │ ├── merkle.hpp │ │ │ ├── multi_index_includes.hpp │ │ │ ├── name.hpp │ │ │ ├── parallel_markers.hpp │ │ │ ├── permission_link_object.hpp │ │ │ ├── permission_object.hpp │ │ │ ├── platform_timer.hpp │ │ │ ├── platform_timer_accuracy.hpp │ │ │ ├── producer_schedule.hpp │ │ │ ├── protocol.hpp │ │ │ ├── protocol_feature_activation.hpp │ │ │ ├── protocol_feature_manager.hpp │ │ │ ├── protocol_state_object.hpp │ │ │ ├── resource_limits.hpp │ │ │ ├── resource_limits_private.hpp │ │ │ ├── reversible_block_object.hpp │ │ │ ├── snapshot.hpp │ │ │ ├── symbol.hpp │ │ │ ├── thread_utils.hpp │ │ │ ├── trace.hpp │ │ │ ├── transaction.hpp │ │ │ ├── transaction_context.hpp │ │ │ ├── transaction_metadata.hpp │ │ │ ├── transaction_object.hpp │ │ │ ├── types.hpp │ │ │ ├── unapplied_transaction_queue.hpp │ │ │ ├── wasm_inery_binary_ops.hpp │ │ │ ├── wasm_inery_constraints.hpp │ │ │ ├── wasm_inery_injection.hpp │ │ │ ├── wasm_inery_validation.hpp │ │ │ ├── wasm_interface.hpp │ │ │ ├── wasm_interface_private.hpp │ │ │ ├── wast_to_wasm.hpp │ │ │ ├── webassembly │ │ │ ├── common.hpp │ │ │ ├── ine-vm-oc.hpp │ │ │ ├── ine-vm-oc │ │ │ │ ├── code_cache.hpp │ │ │ │ ├── compile_monitor.hpp │ │ │ │ ├── compile_trampoline.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── executor.hpp │ │ │ │ ├── gs_seg_helpers.h │ │ │ │ ├── ine-vm-oc.h │ │ │ │ ├── ine-vm-oc.hpp │ │ │ │ ├── intrinsic.hpp │ │ │ │ ├── intrinsic_mapping.hpp │ │ │ │ ├── ipc_helpers.hpp │ │ │ │ ├── ipc_protocol.hpp │ │ │ │ └── memory.hpp │ │ │ ├── ine-vm.hpp │ │ │ ├── runtime_interface.hpp │ │ │ ├── wabt.hpp │ │ │ └── wavm.hpp │ │ │ └── whitelisted_intrinsics.hpp │ ├── inery_contract.cpp │ ├── inery_contract_abi.cpp │ ├── inery_contract_abi_bin.cpp │ ├── merkle.cpp │ ├── name.cpp │ ├── platform_timer_accuracy.cpp │ ├── platform_timer_asio_fallback.cpp │ ├── platform_timer_macos.cpp │ ├── platform_timer_posix.cpp │ ├── platform_timer_posix_test.c │ ├── producer_schedule.cpp │ ├── protocol_feature_activation.cpp │ ├── protocol_feature_manager.cpp │ ├── protocol_state_object.cpp │ ├── resource_limits.cpp │ ├── snapshot.cpp │ ├── thread_utils.cpp │ ├── trace.cpp │ ├── transaction.cpp │ ├── transaction_context.cpp │ ├── transaction_metadata.cpp │ ├── wasm_inery_binary_ops.cpp │ ├── wasm_inery_injection.cpp │ ├── wasm_inery_validation.cpp │ ├── wasm_interface.cpp │ ├── wast_to_wasm.cpp │ ├── webassembly │ │ ├── ine-vm-oc.cpp │ │ ├── ine-vm-oc │ │ │ ├── About WAVM │ │ │ ├── LLVMEmitIR.cpp │ │ │ ├── LLVMJIT.cpp │ │ │ ├── LLVMJIT.h │ │ │ ├── code_cache.cpp │ │ │ ├── compile_monitor.cpp │ │ │ ├── compile_trampoline.cpp │ │ │ ├── executor.cpp │ │ │ ├── gs_seg_helpers.c │ │ │ ├── intrinsic.cpp │ │ │ ├── ipc_helpers.cpp │ │ │ ├── llvmWARshim.cpp │ │ │ ├── llvmWARshim.llvmwar │ │ │ └── memory.cpp │ │ ├── ine-vm.cpp │ │ └── wabt.cpp │ └── whitelisted_intrinsics.cpp ├── chainbase │ ├── CMakeLists.txt │ ├── LICENSE.md │ ├── README.md │ ├── include │ │ └── chainbase │ │ │ ├── chainbase.hpp │ │ │ ├── environment.hpp │ │ │ └── pinnable_mapped_file.hpp │ ├── src │ │ ├── chainbase.cpp │ │ └── pinnable_mapped_file.cpp │ └── test │ │ ├── CMakeLists.txt │ │ ├── grow_shrink.cpp │ │ └── test.cpp ├── fc │ ├── .gitmodules │ ├── CMakeLists.txt │ ├── CMakeModules │ │ ├── ArgumentParser.cmake │ │ ├── FindGMP.cmake │ │ ├── FindReadline.cmake │ │ ├── FindSecp256k1.cmake │ │ ├── FindVLD.cmake │ │ ├── ParseLibraryList.cmake │ │ ├── SetupTargetMacros.cmake │ │ ├── UseLibraryMacros.cmake │ │ └── VersionMacros.cmake │ ├── GitVersionGen │ │ └── GetGitRevisionDescription.cmake.in │ ├── LICENSE.txt │ ├── include │ │ └── fc │ │ │ ├── actor.hpp │ │ │ ├── aligned.hpp │ │ │ ├── any.hpp │ │ │ ├── api.hpp │ │ │ ├── array.hpp │ │ │ ├── bitutil.hpp │ │ │ ├── bloom_filter.hpp │ │ │ ├── compress │ │ │ ├── smaz.hpp │ │ │ └── zlib.hpp │ │ │ ├── container │ │ │ ├── container_detail.hpp │ │ │ ├── deque.hpp │ │ │ ├── deque_fwd.hpp │ │ │ ├── flat.hpp │ │ │ └── flat_fwd.hpp │ │ │ ├── crypto │ │ │ ├── aes.hpp │ │ │ ├── base32.hpp │ │ │ ├── base36.hpp │ │ │ ├── base58.hpp │ │ │ ├── base64.hpp │ │ │ ├── bigint.hpp │ │ │ ├── blowfish.hpp │ │ │ ├── city.hpp │ │ │ ├── common.hpp │ │ │ ├── dh.hpp │ │ │ ├── digest.hpp │ │ │ ├── elliptic.hpp │ │ │ ├── elliptic_r1.hpp │ │ │ ├── elliptic_webauthn.hpp │ │ │ ├── equihash.hpp │ │ │ ├── hex.hpp │ │ │ ├── hmac.hpp │ │ │ ├── openssl.hpp │ │ │ ├── pke.hpp │ │ │ ├── private_key.hpp │ │ │ ├── public_key.hpp │ │ │ ├── rand.hpp │ │ │ ├── ripemd160.hpp │ │ │ ├── sha1.hpp │ │ │ ├── sha224.hpp │ │ │ ├── sha256.hpp │ │ │ ├── sha512.hpp │ │ │ ├── signature.hpp │ │ │ └── webauthn_json │ │ │ │ ├── .gitattributes │ │ │ │ ├── .gitignore │ │ │ │ ├── .gitmodules │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CMakeModules │ │ │ │ └── FindGTestSrc.cmake │ │ │ │ ├── RapidJSON.pc.in │ │ │ │ ├── RapidJSONConfig.cmake.in │ │ │ │ ├── RapidJSONConfigVersion.cmake.in │ │ │ │ ├── appveyor.yml │ │ │ │ ├── bin │ │ │ │ ├── data │ │ │ │ │ ├── abcde.txt │ │ │ │ │ ├── glossary.json │ │ │ │ │ ├── menu.json │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── sample.json │ │ │ │ │ ├── webapp.json │ │ │ │ │ └── widget.json │ │ │ │ ├── encodings │ │ │ │ │ ├── utf16be.json │ │ │ │ │ ├── utf16bebom.json │ │ │ │ │ ├── utf16le.json │ │ │ │ │ ├── utf16lebom.json │ │ │ │ │ ├── utf32be.json │ │ │ │ │ ├── utf32bebom.json │ │ │ │ │ ├── utf32le.json │ │ │ │ │ ├── utf32lebom.json │ │ │ │ │ ├── utf8.json │ │ │ │ │ └── utf8bom.json │ │ │ │ ├── jsonchecker │ │ │ │ │ ├── fail1.json │ │ │ │ │ ├── fail10.json │ │ │ │ │ ├── fail11.json │ │ │ │ │ ├── fail12.json │ │ │ │ │ ├── fail13.json │ │ │ │ │ ├── fail14.json │ │ │ │ │ ├── fail15.json │ │ │ │ │ ├── fail16.json │ │ │ │ │ ├── fail17.json │ │ │ │ │ ├── fail18.json │ │ │ │ │ ├── fail19.json │ │ │ │ │ ├── fail2.json │ │ │ │ │ ├── fail20.json │ │ │ │ │ ├── fail21.json │ │ │ │ │ ├── fail22.json │ │ │ │ │ ├── fail23.json │ │ │ │ │ ├── fail24.json │ │ │ │ │ ├── fail25.json │ │ │ │ │ ├── fail26.json │ │ │ │ │ ├── fail27.json │ │ │ │ │ ├── fail28.json │ │ │ │ │ ├── fail29.json │ │ │ │ │ ├── fail3.json │ │ │ │ │ ├── fail30.json │ │ │ │ │ ├── fail31.json │ │ │ │ │ ├── fail32.json │ │ │ │ │ ├── fail33.json │ │ │ │ │ ├── fail4.json │ │ │ │ │ ├── fail5.json │ │ │ │ │ ├── fail6.json │ │ │ │ │ ├── fail7.json │ │ │ │ │ ├── fail8.json │ │ │ │ │ ├── fail9.json │ │ │ │ │ ├── pass1.json │ │ │ │ │ ├── pass2.json │ │ │ │ │ ├── pass3.json │ │ │ │ │ └── readme.txt │ │ │ │ └── types │ │ │ │ │ ├── booleans.json │ │ │ │ │ ├── floats.json │ │ │ │ │ ├── guids.json │ │ │ │ │ ├── integers.json │ │ │ │ │ ├── mixed.json │ │ │ │ │ ├── nulls.json │ │ │ │ │ ├── paragraphs.json │ │ │ │ │ └── readme.txt │ │ │ │ ├── contrib │ │ │ │ └── natvis │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── rapidjson.natvis │ │ │ │ ├── doc │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Doxyfile.in │ │ │ │ ├── Doxyfile.zh-cn.in │ │ │ │ ├── diagram │ │ │ │ │ ├── architecture.dot │ │ │ │ │ ├── architecture.png │ │ │ │ │ ├── insituparsing.dot │ │ │ │ │ ├── insituparsing.png │ │ │ │ │ ├── iterative-parser-states-diagram.dot │ │ │ │ │ ├── iterative-parser-states-diagram.png │ │ │ │ │ ├── makefile │ │ │ │ │ ├── move1.dot │ │ │ │ │ ├── move1.png │ │ │ │ │ ├── move2.dot │ │ │ │ │ ├── move2.png │ │ │ │ │ ├── move3.dot │ │ │ │ │ ├── move3.png │ │ │ │ │ ├── normalparsing.dot │ │ │ │ │ ├── normalparsing.png │ │ │ │ │ ├── simpledom.dot │ │ │ │ │ ├── simpledom.png │ │ │ │ │ ├── tutorial.dot │ │ │ │ │ ├── tutorial.png │ │ │ │ │ ├── utilityclass.dot │ │ │ │ │ └── utilityclass.png │ │ │ │ ├── dom.md │ │ │ │ ├── dom.zh-cn.md │ │ │ │ ├── encoding.md │ │ │ │ ├── encoding.zh-cn.md │ │ │ │ ├── faq.md │ │ │ │ ├── faq.zh-cn.md │ │ │ │ ├── features.md │ │ │ │ ├── features.zh-cn.md │ │ │ │ ├── internals.md │ │ │ │ ├── internals.zh-cn.md │ │ │ │ ├── logo │ │ │ │ │ ├── rapidjson.png │ │ │ │ │ └── rapidjson.svg │ │ │ │ ├── misc │ │ │ │ │ ├── DoxygenLayout.xml │ │ │ │ │ ├── doxygenextra.css │ │ │ │ │ ├── footer.html │ │ │ │ │ └── header.html │ │ │ │ ├── npm.md │ │ │ │ ├── performance.md │ │ │ │ ├── performance.zh-cn.md │ │ │ │ ├── pointer.md │ │ │ │ ├── pointer.zh-cn.md │ │ │ │ ├── sax.md │ │ │ │ ├── sax.zh-cn.md │ │ │ │ ├── schema.md │ │ │ │ ├── schema.zh-cn.md │ │ │ │ ├── stream.md │ │ │ │ ├── stream.zh-cn.md │ │ │ │ ├── tutorial.md │ │ │ │ └── tutorial.zh-cn.md │ │ │ │ ├── docker │ │ │ │ └── debian │ │ │ │ │ └── Dockerfile │ │ │ │ ├── example │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── archiver │ │ │ │ │ ├── archiver.cpp │ │ │ │ │ ├── archiver.h │ │ │ │ │ └── archivertest.cpp │ │ │ │ ├── capitalize │ │ │ │ │ └── capitalize.cpp │ │ │ │ ├── condense │ │ │ │ │ └── condense.cpp │ │ │ │ ├── filterkey │ │ │ │ │ └── filterkey.cpp │ │ │ │ ├── filterkeydom │ │ │ │ │ └── filterkeydom.cpp │ │ │ │ ├── jsonx │ │ │ │ │ └── jsonx.cpp │ │ │ │ ├── lookaheadparser │ │ │ │ │ └── lookaheadparser.cpp │ │ │ │ ├── messagereader │ │ │ │ │ └── messagereader.cpp │ │ │ │ ├── parsebyparts │ │ │ │ │ └── parsebyparts.cpp │ │ │ │ ├── pretty │ │ │ │ │ └── pretty.cpp │ │ │ │ ├── prettyauto │ │ │ │ │ └── prettyauto.cpp │ │ │ │ ├── schemavalidator │ │ │ │ │ └── schemavalidator.cpp │ │ │ │ ├── serialize │ │ │ │ │ └── serialize.cpp │ │ │ │ ├── simpledom │ │ │ │ │ └── simpledom.cpp │ │ │ │ ├── simplepullreader │ │ │ │ │ └── simplepullreader.cpp │ │ │ │ ├── simplereader │ │ │ │ │ └── simplereader.cpp │ │ │ │ ├── simplewriter │ │ │ │ │ └── simplewriter.cpp │ │ │ │ ├── sortkeys │ │ │ │ │ └── sortkeys.cpp │ │ │ │ └── tutorial │ │ │ │ │ └── tutorial.cpp │ │ │ │ ├── include │ │ │ │ └── rapidjson │ │ │ │ │ ├── allocators.h │ │ │ │ │ ├── cursorstreamwrapper.h │ │ │ │ │ ├── document.h │ │ │ │ │ ├── encodedstream.h │ │ │ │ │ ├── encodings.h │ │ │ │ │ ├── error │ │ │ │ │ ├── en.h │ │ │ │ │ └── error.h │ │ │ │ │ ├── filereadstream.h │ │ │ │ │ ├── filewritestream.h │ │ │ │ │ ├── fwd.h │ │ │ │ │ ├── internal │ │ │ │ │ ├── biginteger.h │ │ │ │ │ ├── diyfp.h │ │ │ │ │ ├── dtoa.h │ │ │ │ │ ├── ieee754.h │ │ │ │ │ ├── itoa.h │ │ │ │ │ ├── meta.h │ │ │ │ │ ├── pow10.h │ │ │ │ │ ├── regex.h │ │ │ │ │ ├── stack.h │ │ │ │ │ ├── strfunc.h │ │ │ │ │ ├── strtod.h │ │ │ │ │ └── swap.h │ │ │ │ │ ├── istreamwrapper.h │ │ │ │ │ ├── memorybuffer.h │ │ │ │ │ ├── memorystream.h │ │ │ │ │ ├── msinttypes │ │ │ │ │ ├── inttypes.h │ │ │ │ │ └── stdint.h │ │ │ │ │ ├── ostreamwrapper.h │ │ │ │ │ ├── pointer.h │ │ │ │ │ ├── prettywriter.h │ │ │ │ │ ├── rapidjson.h │ │ │ │ │ ├── reader.h │ │ │ │ │ ├── schema.h │ │ │ │ │ ├── stream.h │ │ │ │ │ ├── stringbuffer.h │ │ │ │ │ └── writer.h │ │ │ │ ├── include_dirs.js │ │ │ │ ├── library.json │ │ │ │ ├── license.txt │ │ │ │ ├── package.json │ │ │ │ ├── rapidjson.autopkg │ │ │ │ ├── readme.md │ │ │ │ ├── readme.zh-cn.md │ │ │ │ ├── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── perftest │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── misctest.cpp │ │ │ │ │ ├── perftest.cpp │ │ │ │ │ ├── perftest.h │ │ │ │ │ ├── platformtest.cpp │ │ │ │ │ ├── rapidjsontest.cpp │ │ │ │ │ └── schematest.cpp │ │ │ │ ├── unittest │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── allocatorstest.cpp │ │ │ │ │ ├── bigintegertest.cpp │ │ │ │ │ ├── cursorstreamwrappertest.cpp │ │ │ │ │ ├── documenttest.cpp │ │ │ │ │ ├── dtoatest.cpp │ │ │ │ │ ├── encodedstreamtest.cpp │ │ │ │ │ ├── encodingstest.cpp │ │ │ │ │ ├── filestreamtest.cpp │ │ │ │ │ ├── fwdtest.cpp │ │ │ │ │ ├── istreamwrappertest.cpp │ │ │ │ │ ├── itoatest.cpp │ │ │ │ │ ├── jsoncheckertest.cpp │ │ │ │ │ ├── namespacetest.cpp │ │ │ │ │ ├── ostreamwrappertest.cpp │ │ │ │ │ ├── pointertest.cpp │ │ │ │ │ ├── prettywritertest.cpp │ │ │ │ │ ├── readertest.cpp │ │ │ │ │ ├── regextest.cpp │ │ │ │ │ ├── schematest.cpp │ │ │ │ │ ├── simdtest.cpp │ │ │ │ │ ├── strfunctest.cpp │ │ │ │ │ ├── stringbuffertest.cpp │ │ │ │ │ ├── strtodtest.cpp │ │ │ │ │ ├── unittest.cpp │ │ │ │ │ ├── unittest.h │ │ │ │ │ ├── valuetest.cpp │ │ │ │ │ └── writertest.cpp │ │ │ │ └── valgrind.supp │ │ │ │ ├── thirdparty │ │ │ │ └── gtest │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── README.md │ │ │ │ │ ├── WORKSPACE │ │ │ │ │ ├── appveyor.yml │ │ │ │ │ ├── ci │ │ │ │ │ ├── build-linux-autotools.sh │ │ │ │ │ ├── build-linux-bazel.sh │ │ │ │ │ ├── env-linux.sh │ │ │ │ │ ├── env-osx.sh │ │ │ │ │ ├── get-nprocessors.sh │ │ │ │ │ ├── install-linux.sh │ │ │ │ │ ├── install-osx.sh │ │ │ │ │ ├── log-config.sh │ │ │ │ │ └── travis.sh │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── googlemock │ │ │ │ │ ├── CHANGES │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── README.md │ │ │ │ │ ├── cmake │ │ │ │ │ │ ├── gmock.pc.in │ │ │ │ │ │ └── gmock_main.pc.in │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── CheatSheet.md │ │ │ │ │ │ ├── CookBook.md │ │ │ │ │ │ ├── DesignDoc.md │ │ │ │ │ │ ├── Documentation.md │ │ │ │ │ │ ├── ForDummies.md │ │ │ │ │ │ ├── FrequentlyAskedQuestions.md │ │ │ │ │ │ └── KnownIssues.md │ │ │ │ │ ├── include │ │ │ │ │ │ └── gmock │ │ │ │ │ │ │ ├── gmock-actions.h │ │ │ │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ │ │ │ ├── gmock-generated-function-mockers.h │ │ │ │ │ │ │ ├── gmock-generated-function-mockers.h.pump │ │ │ │ │ │ │ ├── gmock-generated-matchers.h │ │ │ │ │ │ │ ├── gmock-generated-matchers.h.pump │ │ │ │ │ │ │ ├── gmock-generated-nice-strict.h │ │ │ │ │ │ │ ├── gmock-generated-nice-strict.h.pump │ │ │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ │ │ ├── gmock-more-actions.h │ │ │ │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ │ │ │ ├── gmock.h │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── custom │ │ │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ │ │ └── gmock-port.h │ │ │ │ │ │ │ ├── gmock-generated-internal-utils.h │ │ │ │ │ │ │ ├── gmock-generated-internal-utils.h.pump │ │ │ │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ │ │ │ └── gmock-port.h │ │ │ │ │ ├── msvc │ │ │ │ │ │ ├── 2005 │ │ │ │ │ │ │ ├── gmock.sln │ │ │ │ │ │ │ ├── gmock.vcproj │ │ │ │ │ │ │ ├── gmock_config.vsprops │ │ │ │ │ │ │ ├── gmock_main.vcproj │ │ │ │ │ │ │ └── gmock_test.vcproj │ │ │ │ │ │ ├── 2010 │ │ │ │ │ │ │ ├── gmock.sln │ │ │ │ │ │ │ ├── gmock.vcxproj │ │ │ │ │ │ │ ├── gmock_config.props │ │ │ │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ │ │ │ └── gmock_test.vcxproj │ │ │ │ │ │ └── 2015 │ │ │ │ │ │ │ ├── gmock.sln │ │ │ │ │ │ │ ├── gmock.vcxproj │ │ │ │ │ │ │ ├── gmock_config.props │ │ │ │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ │ │ │ └── gmock_test.vcxproj │ │ │ │ │ ├── scripts │ │ │ │ │ │ ├── fuse_gmock_files.py │ │ │ │ │ │ ├── generator │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── README.cppclean │ │ │ │ │ │ │ ├── cpp │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── ast.py │ │ │ │ │ │ │ │ ├── gmock_class.py │ │ │ │ │ │ │ │ ├── gmock_class_test.py │ │ │ │ │ │ │ │ ├── keywords.py │ │ │ │ │ │ │ │ ├── tokenize.py │ │ │ │ │ │ │ │ └── utils.py │ │ │ │ │ │ │ └── gmock_gen.py │ │ │ │ │ │ ├── gmock-config.in │ │ │ │ │ │ ├── gmock_doctor.py │ │ │ │ │ │ ├── upload.py │ │ │ │ │ │ └── upload_gmock.py │ │ │ │ │ ├── src │ │ │ │ │ │ ├── gmock-all.cc │ │ │ │ │ │ ├── gmock-cardinalities.cc │ │ │ │ │ │ ├── gmock-internal-utils.cc │ │ │ │ │ │ ├── gmock-matchers.cc │ │ │ │ │ │ ├── gmock-spec-builders.cc │ │ │ │ │ │ ├── gmock.cc │ │ │ │ │ │ └── gmock_main.cc │ │ │ │ │ └── test │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ ├── gmock-actions_test.cc │ │ │ │ │ │ ├── gmock-cardinalities_test.cc │ │ │ │ │ │ ├── gmock-generated-actions_test.cc │ │ │ │ │ │ ├── gmock-generated-function-mockers_test.cc │ │ │ │ │ │ ├── gmock-generated-internal-utils_test.cc │ │ │ │ │ │ ├── gmock-generated-matchers_test.cc │ │ │ │ │ │ ├── gmock-internal-utils_test.cc │ │ │ │ │ │ ├── gmock-matchers_test.cc │ │ │ │ │ │ ├── gmock-more-actions_test.cc │ │ │ │ │ │ ├── gmock-nice-strict_test.cc │ │ │ │ │ │ ├── gmock-port_test.cc │ │ │ │ │ │ ├── gmock-spec-builders_test.cc │ │ │ │ │ │ ├── gmock_all_test.cc │ │ │ │ │ │ ├── gmock_ex_test.cc │ │ │ │ │ │ ├── gmock_leak_test.py │ │ │ │ │ │ ├── gmock_leak_test_.cc │ │ │ │ │ │ ├── gmock_link2_test.cc │ │ │ │ │ │ ├── gmock_link_test.cc │ │ │ │ │ │ ├── gmock_link_test.h │ │ │ │ │ │ ├── gmock_output_test.py │ │ │ │ │ │ ├── gmock_output_test_.cc │ │ │ │ │ │ ├── gmock_output_test_golden.txt │ │ │ │ │ │ ├── gmock_stress_test.cc │ │ │ │ │ │ ├── gmock_test.cc │ │ │ │ │ │ └── gmock_test_utils.py │ │ │ │ │ └── googletest │ │ │ │ │ ├── CHANGES │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── README.md │ │ │ │ │ ├── cmake │ │ │ │ │ ├── gtest.pc.in │ │ │ │ │ ├── gtest_main.pc.in │ │ │ │ │ └── internal_utils.cmake │ │ │ │ │ ├── codegear │ │ │ │ │ ├── gtest.cbproj │ │ │ │ │ ├── gtest.groupproj │ │ │ │ │ ├── gtest_all.cc │ │ │ │ │ ├── gtest_link.cc │ │ │ │ │ ├── gtest_main.cbproj │ │ │ │ │ └── gtest_unittest.cbproj │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── docs │ │ │ │ │ ├── Pkgconfig.md │ │ │ │ │ ├── PumpManual.md │ │ │ │ │ ├── XcodeGuide.md │ │ │ │ │ ├── advanced.md │ │ │ │ │ ├── faq.md │ │ │ │ │ ├── primer.md │ │ │ │ │ └── samples.md │ │ │ │ │ ├── include │ │ │ │ │ └── gtest │ │ │ │ │ │ ├── gtest-death-test.h │ │ │ │ │ │ ├── gtest-message.h │ │ │ │ │ │ ├── gtest-param-test.h │ │ │ │ │ │ ├── gtest-param-test.h.pump │ │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ │ ├── gtest-spi.h │ │ │ │ │ │ ├── gtest-test-part.h │ │ │ │ │ │ ├── gtest-typed-test.h │ │ │ │ │ │ ├── gtest.h │ │ │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ │ │ ├── gtest_prod.h │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── custom │ │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ │ └── gtest.h │ │ │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ │ │ ├── gtest-filepath.h │ │ │ │ │ │ ├── gtest-internal.h │ │ │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ │ │ │ ├── gtest-param-util.h │ │ │ │ │ │ ├── gtest-port-arch.h │ │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ │ ├── gtest-string.h │ │ │ │ │ │ ├── gtest-tuple.h │ │ │ │ │ │ ├── gtest-tuple.h.pump │ │ │ │ │ │ ├── gtest-type-util.h │ │ │ │ │ │ └── gtest-type-util.h.pump │ │ │ │ │ ├── m4 │ │ │ │ │ ├── acx_pthread.m4 │ │ │ │ │ └── gtest.m4 │ │ │ │ │ ├── msvc │ │ │ │ │ └── 2010 │ │ │ │ │ │ ├── gtest-md.sln │ │ │ │ │ │ ├── gtest-md.vcxproj │ │ │ │ │ │ ├── gtest-md.vcxproj.filters │ │ │ │ │ │ ├── gtest.sln │ │ │ │ │ │ ├── gtest.vcxproj │ │ │ │ │ │ ├── gtest.vcxproj.filters │ │ │ │ │ │ ├── gtest_main-md.vcxproj │ │ │ │ │ │ ├── gtest_main-md.vcxproj.filters │ │ │ │ │ │ ├── gtest_main.vcxproj │ │ │ │ │ │ ├── gtest_main.vcxproj.filters │ │ │ │ │ │ ├── gtest_prod_test-md.vcxproj │ │ │ │ │ │ ├── gtest_prod_test-md.vcxproj.filters │ │ │ │ │ │ ├── gtest_prod_test.vcxproj │ │ │ │ │ │ ├── gtest_prod_test.vcxproj.filters │ │ │ │ │ │ ├── gtest_unittest-md.vcxproj │ │ │ │ │ │ ├── gtest_unittest-md.vcxproj.filters │ │ │ │ │ │ ├── gtest_unittest.vcxproj │ │ │ │ │ │ └── gtest_unittest.vcxproj.filters │ │ │ │ │ ├── samples │ │ │ │ │ ├── prime_tables.h │ │ │ │ │ ├── sample1.cc │ │ │ │ │ ├── sample1.h │ │ │ │ │ ├── sample10_unittest.cc │ │ │ │ │ ├── sample1_unittest.cc │ │ │ │ │ ├── sample2.cc │ │ │ │ │ ├── sample2.h │ │ │ │ │ ├── sample2_unittest.cc │ │ │ │ │ ├── sample3-inl.h │ │ │ │ │ ├── sample3_unittest.cc │ │ │ │ │ ├── sample4.cc │ │ │ │ │ ├── sample4.h │ │ │ │ │ ├── sample4_unittest.cc │ │ │ │ │ ├── sample5_unittest.cc │ │ │ │ │ ├── sample6_unittest.cc │ │ │ │ │ ├── sample7_unittest.cc │ │ │ │ │ ├── sample8_unittest.cc │ │ │ │ │ └── sample9_unittest.cc │ │ │ │ │ ├── scripts │ │ │ │ │ ├── common.py │ │ │ │ │ ├── fuse_gtest_files.py │ │ │ │ │ ├── gen_gtest_pred_impl.py │ │ │ │ │ ├── gtest-config.in │ │ │ │ │ ├── pump.py │ │ │ │ │ ├── release_docs.py │ │ │ │ │ ├── upload.py │ │ │ │ │ └── upload_gtest.py │ │ │ │ │ ├── src │ │ │ │ │ ├── gtest-all.cc │ │ │ │ │ ├── gtest-death-test.cc │ │ │ │ │ ├── gtest-filepath.cc │ │ │ │ │ ├── gtest-internal-inl.h │ │ │ │ │ ├── gtest-port.cc │ │ │ │ │ ├── gtest-printers.cc │ │ │ │ │ ├── gtest-test-part.cc │ │ │ │ │ ├── gtest-typed-test.cc │ │ │ │ │ ├── gtest.cc │ │ │ │ │ └── gtest_main.cc │ │ │ │ │ ├── test │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── gtest-death-test_ex_test.cc │ │ │ │ │ ├── gtest-death-test_test.cc │ │ │ │ │ ├── gtest-filepath_test.cc │ │ │ │ │ ├── gtest-linked_ptr_test.cc │ │ │ │ │ ├── gtest-listener_test.cc │ │ │ │ │ ├── gtest-message_test.cc │ │ │ │ │ ├── gtest-options_test.cc │ │ │ │ │ ├── gtest-param-test2_test.cc │ │ │ │ │ ├── gtest-param-test_test.cc │ │ │ │ │ ├── gtest-param-test_test.h │ │ │ │ │ ├── gtest-port_test.cc │ │ │ │ │ ├── gtest-printers_test.cc │ │ │ │ │ ├── gtest-test-part_test.cc │ │ │ │ │ ├── gtest-tuple_test.cc │ │ │ │ │ ├── gtest-typed-test2_test.cc │ │ │ │ │ ├── gtest-typed-test_test.cc │ │ │ │ │ ├── gtest-typed-test_test.h │ │ │ │ │ ├── gtest-unittest-api_test.cc │ │ │ │ │ ├── gtest_all_test.cc │ │ │ │ │ ├── gtest_assert_by_exception_test.cc │ │ │ │ │ ├── gtest_break_on_failure_unittest.py │ │ │ │ │ ├── gtest_break_on_failure_unittest_.cc │ │ │ │ │ ├── gtest_catch_exceptions_test.py │ │ │ │ │ ├── gtest_catch_exceptions_test_.cc │ │ │ │ │ ├── gtest_color_test.py │ │ │ │ │ ├── gtest_color_test_.cc │ │ │ │ │ ├── gtest_env_var_test.py │ │ │ │ │ ├── gtest_env_var_test_.cc │ │ │ │ │ ├── gtest_environment_test.cc │ │ │ │ │ ├── gtest_filter_unittest.py │ │ │ │ │ ├── gtest_filter_unittest_.cc │ │ │ │ │ ├── gtest_help_test.py │ │ │ │ │ ├── gtest_help_test_.cc │ │ │ │ │ ├── gtest_json_outfiles_test.py │ │ │ │ │ ├── gtest_json_output_unittest.py │ │ │ │ │ ├── gtest_json_test_utils.py │ │ │ │ │ ├── gtest_list_tests_unittest.py │ │ │ │ │ ├── gtest_list_tests_unittest_.cc │ │ │ │ │ ├── gtest_main_unittest.cc │ │ │ │ │ ├── gtest_no_test_unittest.cc │ │ │ │ │ ├── gtest_output_test.py │ │ │ │ │ ├── gtest_output_test_.cc │ │ │ │ │ ├── gtest_output_test_golden_lin.txt │ │ │ │ │ ├── gtest_pred_impl_unittest.cc │ │ │ │ │ ├── gtest_premature_exit_test.cc │ │ │ │ │ ├── gtest_prod_test.cc │ │ │ │ │ ├── gtest_repeat_test.cc │ │ │ │ │ ├── gtest_shuffle_test.py │ │ │ │ │ ├── gtest_shuffle_test_.cc │ │ │ │ │ ├── gtest_sole_header_test.cc │ │ │ │ │ ├── gtest_stress_test.cc │ │ │ │ │ ├── gtest_test_utils.py │ │ │ │ │ ├── gtest_testbridge_test.py │ │ │ │ │ ├── gtest_testbridge_test_.cc │ │ │ │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ │ │ │ ├── gtest_throw_on_failure_test.py │ │ │ │ │ ├── gtest_throw_on_failure_test_.cc │ │ │ │ │ ├── gtest_uninitialized_test.py │ │ │ │ │ ├── gtest_uninitialized_test_.cc │ │ │ │ │ ├── gtest_unittest.cc │ │ │ │ │ ├── gtest_xml_outfile1_test_.cc │ │ │ │ │ ├── gtest_xml_outfile2_test_.cc │ │ │ │ │ ├── gtest_xml_outfiles_test.py │ │ │ │ │ ├── gtest_xml_output_unittest.py │ │ │ │ │ ├── gtest_xml_output_unittest_.cc │ │ │ │ │ ├── gtest_xml_test_utils.py │ │ │ │ │ ├── production.cc │ │ │ │ │ └── production.h │ │ │ │ │ └── xcode │ │ │ │ │ ├── Config │ │ │ │ │ ├── DebugProject.xcconfig │ │ │ │ │ ├── FrameworkTarget.xcconfig │ │ │ │ │ ├── General.xcconfig │ │ │ │ │ ├── ReleaseProject.xcconfig │ │ │ │ │ ├── StaticLibraryTarget.xcconfig │ │ │ │ │ └── TestTarget.xcconfig │ │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ │ ├── Samples │ │ │ │ │ └── FrameworkSample │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── WidgetFramework.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ ├── runtests.sh │ │ │ │ │ │ ├── widget.cc │ │ │ │ │ │ ├── widget.h │ │ │ │ │ │ └── widget_test.cc │ │ │ │ │ ├── Scripts │ │ │ │ │ ├── runtests.sh │ │ │ │ │ └── versiongenerate.py │ │ │ │ │ └── gtest.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ └── travis-doxygen.sh │ │ │ ├── exception │ │ │ └── exception.hpp │ │ │ ├── filesystem.hpp │ │ │ ├── fixed_string.hpp │ │ │ ├── fwd.hpp │ │ │ ├── fwd_impl.hpp │ │ │ ├── git_revision.hpp │ │ │ ├── interprocess │ │ │ ├── container.hpp │ │ │ ├── file_mapping.hpp │ │ │ ├── iprocess.hpp │ │ │ ├── mmap_struct.hpp │ │ │ └── process.hpp │ │ │ ├── io │ │ │ ├── buffered_iostream.hpp │ │ │ ├── cfile.hpp │ │ │ ├── console.hpp │ │ │ ├── datastream.hpp │ │ │ ├── enum_type.hpp │ │ │ ├── fstream.hpp │ │ │ ├── iobuffer.hpp │ │ │ ├── json.hpp │ │ │ ├── json_relaxed.hpp │ │ │ ├── raw.hpp │ │ │ ├── raw_fwd.hpp │ │ │ ├── raw_unpack_file.hpp │ │ │ ├── raw_variant.hpp │ │ │ ├── sstream.hpp │ │ │ └── varint.hpp │ │ │ ├── log │ │ │ ├── appender.hpp │ │ │ ├── console_appender.hpp │ │ │ ├── file_appender.hpp │ │ │ ├── gelf_appender.hpp │ │ │ ├── log_message.hpp │ │ │ ├── logger.hpp │ │ │ └── logger_config.hpp │ │ │ ├── make_fused.hpp │ │ │ ├── network │ │ │ ├── http │ │ │ │ └── http_client.hpp │ │ │ ├── ip.hpp │ │ │ ├── message_buffer.hpp │ │ │ ├── platform_root_ca.hpp │ │ │ ├── resolve.hpp │ │ │ ├── udp_socket.hpp │ │ │ └── url.hpp │ │ │ ├── noncopyable.hpp │ │ │ ├── optional.hpp │ │ │ ├── platform_independence.hpp │ │ │ ├── real128.hpp │ │ │ ├── reflect │ │ │ ├── reflect.hpp │ │ │ ├── typename.hpp │ │ │ └── variant.hpp │ │ │ ├── rpc │ │ │ ├── api_connection.hpp │ │ │ ├── binary_api_connection.hpp │ │ │ ├── cli.hpp │ │ │ ├── http_api.hpp │ │ │ ├── json_connection.hpp │ │ │ ├── variant_connection.hpp │ │ │ ├── variant_stream.hpp │ │ │ └── websocket_api.hpp │ │ │ ├── safe.hpp │ │ │ ├── scoped_exit.hpp │ │ │ ├── smart_ref_fwd.hpp │ │ │ ├── smart_ref_impl.hpp │ │ │ ├── static_variant.hpp │ │ │ ├── string.hpp │ │ │ ├── time.hpp │ │ │ ├── tuple.hpp │ │ │ ├── uint128.hpp │ │ │ ├── unique_ptr.hpp │ │ │ ├── utf8.hpp │ │ │ ├── utility.hpp │ │ │ ├── variant.hpp │ │ │ ├── variant_object.hpp │ │ │ ├── vector.hpp │ │ │ └── vector_fwd.hpp │ ├── secp256k1 │ │ ├── CMakeLists.txt │ │ ├── libsecp256k1-config.h │ │ └── upstream │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── COPYING │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── TODO │ │ │ ├── autogen.sh │ │ │ ├── configure.ac │ │ │ ├── include │ │ │ └── secp256k1.h │ │ │ ├── libsecp256k1.pc.in │ │ │ ├── obj │ │ │ └── .gitignore │ │ │ └── src │ │ │ ├── bench.h │ │ │ ├── bench_ecdh.c │ │ │ ├── bench_internal.c │ │ │ ├── bench_rangeproof.c │ │ │ ├── bench_recover.c │ │ │ ├── bench_sign.c │ │ │ ├── bench_verify.c │ │ │ ├── borromean.h │ │ │ ├── borromean_impl.h │ │ │ ├── ecdh.h │ │ │ ├── ecdh_impl.h │ │ │ ├── ecdsa.h │ │ │ ├── ecdsa_impl.h │ │ │ ├── eckey.h │ │ │ ├── eckey_impl.h │ │ │ ├── ecmult.h │ │ │ ├── ecmult_gen.h │ │ │ ├── ecmult_gen_impl.h │ │ │ ├── ecmult_impl.h │ │ │ ├── field.h │ │ │ ├── field_10x26.h │ │ │ ├── field_10x26_impl.h │ │ │ ├── field_5x52.h │ │ │ ├── field_5x52_asm_impl.h │ │ │ ├── field_5x52_impl.h │ │ │ ├── field_5x52_int128_impl.h │ │ │ ├── field_impl.h │ │ │ ├── group.h │ │ │ ├── group_impl.h │ │ │ ├── hash.h │ │ │ ├── hash_impl.h │ │ │ ├── java │ │ │ ├── org │ │ │ │ └── bitcoin │ │ │ │ │ └── NativeSecp256k1.java │ │ │ ├── org_bitcoin_NativeSecp256k1.c │ │ │ └── org_bitcoin_NativeSecp256k1.h │ │ │ ├── num.h │ │ │ ├── num_gmp.h │ │ │ ├── num_gmp_impl.h │ │ │ ├── num_impl.h │ │ │ ├── rangeproof.h │ │ │ ├── rangeproof_impl.h │ │ │ ├── scalar.h │ │ │ ├── scalar_4x64.h │ │ │ ├── scalar_4x64_impl.h │ │ │ ├── scalar_8x32.h │ │ │ ├── scalar_8x32_impl.h │ │ │ ├── scalar_impl.h │ │ │ ├── secp256k1.c │ │ │ ├── testrand.h │ │ │ ├── testrand_impl.h │ │ │ ├── tests.c │ │ │ └── util.h │ ├── src │ │ ├── byteswap.hpp │ │ ├── compress │ │ │ ├── miniz.c │ │ │ ├── smaz.cpp │ │ │ └── zlib.cpp │ │ ├── crypto │ │ │ ├── _digest_common.cpp │ │ │ ├── _digest_common.hpp │ │ │ ├── _elliptic_impl_priv.hpp │ │ │ ├── _elliptic_impl_pub.hpp │ │ │ ├── aes.cpp │ │ │ ├── base32.cpp │ │ │ ├── base36.cpp │ │ │ ├── base58.cpp │ │ │ ├── base64.cpp │ │ │ ├── bigint.cpp │ │ │ ├── blowfish.cpp │ │ │ ├── city.cpp │ │ │ ├── crc.cpp │ │ │ ├── dh.cpp │ │ │ ├── elliptic_common.cpp │ │ │ ├── elliptic_impl_priv.cpp │ │ │ ├── elliptic_impl_pub.cpp │ │ │ ├── elliptic_mixed.cpp │ │ │ ├── elliptic_openssl.cpp │ │ │ ├── elliptic_r1.cpp │ │ │ ├── elliptic_secp256k1.cpp │ │ │ ├── elliptic_webauthn.cpp │ │ │ ├── equihash.cpp │ │ │ ├── hex.cpp │ │ │ ├── openssl.cpp │ │ │ ├── pke.cpp │ │ │ ├── private_key.cpp │ │ │ ├── public_key.cpp │ │ │ ├── rand.cpp │ │ │ ├── ripemd160.cpp │ │ │ ├── sha1.cpp │ │ │ ├── sha224.cpp │ │ │ ├── sha256.cpp │ │ │ ├── sha512.cpp │ │ │ └── signature.cpp │ │ ├── exception.cpp │ │ ├── filesystem.cpp │ │ ├── git_revision.cpp.in │ │ ├── interprocess │ │ │ ├── file_mapping.cpp │ │ │ ├── mmap_struct.cpp │ │ │ └── process.cpp │ │ ├── io │ │ │ ├── buffered_iostream.cpp │ │ │ ├── console.cpp │ │ │ ├── datastream.cpp │ │ │ ├── fstream.cpp │ │ │ ├── json.cpp │ │ │ ├── sstream.cpp │ │ │ └── varint.cpp │ │ ├── log │ │ │ ├── appender.cpp │ │ │ ├── console_appender.cpp │ │ │ ├── console_defines.h │ │ │ ├── file_appender.cpp │ │ │ ├── gelf_appender.cpp │ │ │ ├── log_message.cpp │ │ │ ├── logger.cpp │ │ │ └── logger_config.cpp │ │ ├── network │ │ │ ├── LICENSE.go │ │ │ ├── gntp.cpp │ │ │ ├── http │ │ │ │ └── http_client.cpp │ │ │ ├── ip.cpp │ │ │ ├── ntp.cpp │ │ │ ├── platform_root_ca.cpp │ │ │ ├── rate_limiting.cpp │ │ │ ├── resolve.cpp │ │ │ ├── tcp_socket.cpp │ │ │ ├── udp_socket.cpp │ │ │ ├── udt_socket.cpp │ │ │ └── url.cpp │ │ ├── real128.cpp │ │ ├── rpc │ │ │ ├── bstate.cpp │ │ │ ├── cli.cpp │ │ │ ├── http_api.cpp │ │ │ ├── json_connection.cpp │ │ │ ├── state.cpp │ │ │ └── websocket_api.cpp │ │ ├── string.cpp │ │ ├── thread │ │ │ └── asio │ │ │ │ ├── detail │ │ │ │ └── yield.hpp │ │ │ │ ├── round_robin.hpp │ │ │ │ └── yield.hpp │ │ ├── time.cpp │ │ ├── uint128.cpp │ │ ├── utf8.cpp │ │ ├── utf8 │ │ │ ├── ReleaseNotes │ │ │ ├── checked.h │ │ │ ├── core.h │ │ │ ├── unchecked.h │ │ │ └── utf8cpp.html │ │ ├── variant.cpp │ │ └── variant_object.cpp │ ├── test │ │ ├── CMakeLists.txt │ │ ├── crypto │ │ │ ├── CMakeLists.txt │ │ │ ├── test_cypher_suites.cpp │ │ │ └── test_webauthn.cpp │ │ ├── io │ │ │ ├── CMakeLists.txt │ │ │ ├── test_cfile.cpp │ │ │ └── test_json.cpp │ │ ├── network │ │ │ ├── CMakeLists.txt │ │ │ └── test_message_buffer.cpp │ │ ├── static_variant │ │ │ ├── CMakeLists.txt │ │ │ └── test_static_variant.cpp │ │ ├── test_base64.cpp │ │ └── variant │ │ │ ├── CMakeLists.txt │ │ │ └── test_variant.cpp │ └── vendor │ │ └── websocketpp │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── Doxyfile │ │ ├── SConstruct │ │ ├── changelog.md │ │ ├── docs │ │ ├── faq.dox │ │ ├── getting_started.dox │ │ ├── handlers.dox │ │ ├── manual.css │ │ ├── manual.dox │ │ ├── simple_broadcast_server.cpp │ │ ├── simple_count_server_thread.cpp │ │ └── tutorials.dox │ │ ├── examples │ │ ├── associative_storage │ │ │ ├── CMakeLists.txt │ │ │ └── associative_storage.cpp │ │ ├── broadcast_server │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ └── broadcast_server.cpp │ │ ├── debug_client │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ └── debug_client.cpp │ │ ├── debug_server │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ └── debug_server.cpp │ │ ├── dev │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ └── main.cpp │ │ ├── echo_client │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ └── echo_client.cpp │ │ ├── echo_server │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ ├── echo_handler.hpp │ │ │ └── echo_server.cpp │ │ ├── echo_server_both │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ ├── echo_server_both.cpp │ │ │ └── server.pem │ │ ├── echo_server_tls │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ ├── dh.pem │ │ │ ├── echo_server_tls.cpp │ │ │ └── server.pem │ │ ├── enriched_storage │ │ │ ├── CMakeLists.txt │ │ │ └── enriched_storage.cpp │ │ ├── external_io_service │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ ├── external_io_service.cpp │ │ │ └── tcp_echo_server.hpp │ │ ├── handler_switch │ │ │ ├── CMakeLists.txt │ │ │ └── handler_switch.cpp │ │ ├── iostream_server │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ └── iostream_server.cpp │ │ ├── print_server │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ └── print_server.cpp │ │ ├── scratch_client │ │ │ ├── SConscript │ │ │ └── scratch_client.cpp │ │ ├── scratch_server │ │ │ ├── SConscript │ │ │ └── scratch_server.cpp │ │ ├── simple_broadcast_server │ │ │ ├── CMakeLists.txt │ │ │ └── simple_broadcast_server.cpp │ │ ├── sip_client │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── SConscript │ │ │ └── sip_client.cpp │ │ ├── subprotocol_server │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ └── subprotocol_server.cpp │ │ ├── telemetry_client │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ └── telemetry_client.cpp │ │ ├── telemetry_server │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ ├── index.html │ │ │ └── telemetry_server.cpp │ │ ├── testee_client │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ └── testee_client.cpp │ │ ├── testee_server │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ └── testee_server.cpp │ │ └── utility_client │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ └── utility_client.cpp │ │ ├── readme.md │ │ ├── roadmap.md │ │ ├── test │ │ ├── connection │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ ├── connection.cpp │ │ │ ├── connection_tu2.cpp │ │ │ └── connection_tu2.hpp │ │ ├── endpoint │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ └── endpoint.cpp │ │ ├── extension │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ ├── extension.cpp │ │ │ └── permessage_deflate.cpp │ │ ├── http │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ ├── parser.cpp │ │ │ └── parser_perf.cpp │ │ ├── logger │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ └── basic.cpp │ │ ├── message_buffer │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ ├── alloc.cpp │ │ │ ├── message.cpp │ │ │ └── pool.cpp │ │ ├── processors │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ ├── extension_permessage_compress.cpp │ │ │ ├── hybi00.cpp │ │ │ ├── hybi07.cpp │ │ │ ├── hybi08.cpp │ │ │ ├── hybi13.cpp │ │ │ └── processor.cpp │ │ ├── random │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ ├── none.cpp │ │ │ └── random_device.cpp │ │ ├── roles │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ ├── client.cpp │ │ │ └── server.cpp │ │ ├── transport │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ ├── asio │ │ │ │ ├── SConscript │ │ │ │ ├── base.cpp │ │ │ │ ├── security.cpp │ │ │ │ └── timers.cpp │ │ │ ├── hybi_util.cpp │ │ │ ├── integration.cpp │ │ │ └── iostream │ │ │ │ ├── SConscript │ │ │ │ ├── base.cpp │ │ │ │ ├── connection.cpp │ │ │ │ └── endpoint.cpp │ │ └── utility │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ ├── close.cpp │ │ │ ├── error.cpp │ │ │ ├── frame.cpp │ │ │ ├── sha1.cpp │ │ │ ├── uri.cpp │ │ │ └── utilities.cpp │ │ ├── tutorials │ │ ├── broadcast_tutorial │ │ │ └── broadcast_tutorial.md │ │ ├── chat_tutorial │ │ │ └── chat_tutorial.md │ │ ├── utility_client │ │ │ ├── step1.cpp │ │ │ ├── step2.cpp │ │ │ ├── step3.cpp │ │ │ ├── step4.cpp │ │ │ ├── step5.cpp │ │ │ ├── step6.cpp │ │ │ └── utility_client.md │ │ └── utility_server │ │ │ ├── step1.cpp │ │ │ ├── step2.cpp │ │ │ └── utility_server.md │ │ ├── websocketpp-config.cmake.in │ │ ├── websocketpp-configVersion.cmake.in │ │ └── websocketpp │ │ ├── CMakeLists.txt │ │ ├── base64 │ │ └── base64.hpp │ │ ├── client.hpp │ │ ├── close.hpp │ │ ├── common │ │ ├── asio.hpp │ │ ├── asio_ssl.hpp │ │ ├── chrono.hpp │ │ ├── connection_hdl.hpp │ │ ├── cpp11.hpp │ │ ├── functional.hpp │ │ ├── md5.hpp │ │ ├── memory.hpp │ │ ├── network.hpp │ │ ├── platforms.hpp │ │ ├── random.hpp │ │ ├── regex.hpp │ │ ├── stdint.hpp │ │ ├── system_error.hpp │ │ ├── thread.hpp │ │ ├── time.hpp │ │ └── type_traits.hpp │ │ ├── concurrency │ │ ├── basic.hpp │ │ └── none.hpp │ │ ├── config │ │ ├── asio.hpp │ │ ├── asio_client.hpp │ │ ├── asio_no_tls.hpp │ │ ├── asio_no_tls_client.hpp │ │ ├── boost_config.hpp │ │ ├── core.hpp │ │ ├── core_client.hpp │ │ ├── debug.hpp │ │ ├── debug_asio.hpp │ │ ├── debug_asio_no_tls.hpp │ │ ├── minimal_client.hpp │ │ └── minimal_server.hpp │ │ ├── connection.hpp │ │ ├── connection_base.hpp │ │ ├── endpoint.hpp │ │ ├── endpoint_base.hpp │ │ ├── error.hpp │ │ ├── extensions │ │ ├── extension.hpp │ │ └── permessage_deflate │ │ │ ├── disabled.hpp │ │ │ └── enabled.hpp │ │ ├── frame.hpp │ │ ├── http │ │ ├── constants.hpp │ │ ├── impl │ │ │ ├── parser.hpp │ │ │ ├── request.hpp │ │ │ └── response.hpp │ │ ├── parser.hpp │ │ ├── request.hpp │ │ └── response.hpp │ │ ├── impl │ │ ├── connection_impl.hpp │ │ ├── endpoint_impl.hpp │ │ └── utilities_impl.hpp │ │ ├── logger │ │ ├── basic.hpp │ │ ├── levels.hpp │ │ ├── stub.hpp │ │ └── syslog.hpp │ │ ├── message_buffer │ │ ├── alloc.hpp │ │ ├── message.hpp │ │ └── pool.hpp │ │ ├── processors │ │ ├── base.hpp │ │ ├── hybi00.hpp │ │ ├── hybi07.hpp │ │ ├── hybi08.hpp │ │ ├── hybi13.hpp │ │ └── processor.hpp │ │ ├── random │ │ ├── none.hpp │ │ └── random_device.hpp │ │ ├── roles │ │ ├── client_endpoint.hpp │ │ └── server_endpoint.hpp │ │ ├── server.hpp │ │ ├── sha1 │ │ └── sha1.hpp │ │ ├── transport │ │ ├── asio │ │ │ ├── base.hpp │ │ │ ├── connection.hpp │ │ │ ├── endpoint.hpp │ │ │ └── security │ │ │ │ ├── base.hpp │ │ │ │ ├── none.hpp │ │ │ │ └── tls.hpp │ │ ├── base │ │ │ ├── connection.hpp │ │ │ └── endpoint.hpp │ │ ├── debug │ │ │ ├── base.hpp │ │ │ ├── connection.hpp │ │ │ └── endpoint.hpp │ │ ├── iostream │ │ │ ├── base.hpp │ │ │ ├── connection.hpp │ │ │ └── endpoint.hpp │ │ └── stub │ │ │ ├── base.hpp │ │ │ ├── connection.hpp │ │ │ └── endpoint.hpp │ │ ├── uri.hpp │ │ ├── utf8_validator.hpp │ │ ├── utilities.hpp │ │ └── version.hpp ├── ine-vm │ ├── .cicd │ │ ├── build.sh │ │ ├── docker │ │ │ ├── amazonlinux-2.dockerfile │ │ │ ├── centos-7.6.dockerfile │ │ │ ├── ubuntu-16.04.dockerfile │ │ │ └── ubuntu-18.04.dockerfile │ │ ├── generate-base-images.sh │ │ ├── helpers │ │ │ ├── clang.make │ │ │ ├── docker-hash.sh │ │ │ └── general.sh │ │ ├── metrics │ │ │ ├── test-metrics.js │ │ │ └── test-metrics.tar.gz │ │ ├── pipeline.yml │ │ └── tests.sh │ ├── .clang-format │ ├── .cmake-format.py │ ├── .gitignore │ ├── .gitmodules │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── docs │ │ └── OVERVIEW.md │ ├── external │ │ ├── CMakeLists.txt │ │ ├── Catch2 │ │ │ ├── .conan │ │ │ │ ├── build.py │ │ │ │ └── test_package │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── conanfile.py │ │ │ │ │ └── test_package.cpp │ │ │ ├── .gitattributes │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ ├── bug_report.md │ │ │ │ │ └── feature_request.md │ │ │ │ └── pull_request_template.md │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CMake │ │ │ │ ├── Catch2Config.cmake.in │ │ │ │ ├── FindGcov.cmake │ │ │ │ ├── FindLcov.cmake │ │ │ │ ├── Findcodecov.cmake │ │ │ │ ├── MiscFunctions.cmake │ │ │ │ ├── catch2.pc.in │ │ │ │ └── llvm-cov-wrapper │ │ │ ├── CMakeLists.txt │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── artwork │ │ │ │ ├── catch2-c-logo.png │ │ │ │ ├── catch2-hand-logo.png │ │ │ │ └── catch2-logo-small.png │ │ │ ├── codecov.yml │ │ │ ├── conanfile.py │ │ │ ├── contrib │ │ │ │ ├── Catch.cmake │ │ │ │ ├── CatchAddTests.cmake │ │ │ │ ├── ParseAndAddCatchTests.cmake │ │ │ │ ├── gdbinit │ │ │ │ └── lldbinit │ │ │ ├── docs │ │ │ │ ├── Readme.md │ │ │ │ ├── assertions.md │ │ │ │ ├── ci-and-misc.md │ │ │ │ ├── cmake-integration.md │ │ │ │ ├── command-line.md │ │ │ │ ├── commercial-users.md │ │ │ │ ├── configuration.md │ │ │ │ ├── contributing.md │ │ │ │ ├── deprecations.md │ │ │ │ ├── event-listeners.md │ │ │ │ ├── generators.md │ │ │ │ ├── limitations.md │ │ │ │ ├── list-of-examples.md │ │ │ │ ├── logging.md │ │ │ │ ├── matchers.md │ │ │ │ ├── opensource-users.md │ │ │ │ ├── other-macros.md │ │ │ │ ├── own-main.md │ │ │ │ ├── release-notes.md │ │ │ │ ├── release-process.md │ │ │ │ ├── reporters.md │ │ │ │ ├── slow-compiles.md │ │ │ │ ├── test-cases-and-sections.md │ │ │ │ ├── test-fixtures.md │ │ │ │ ├── tostring.md │ │ │ │ ├── tutorial.md │ │ │ │ └── why-catch.md │ │ │ ├── examples │ │ │ │ ├── 000-CatchMain.cpp │ │ │ │ ├── 010-TestCase.cpp │ │ │ │ ├── 020-TestCase-1.cpp │ │ │ │ ├── 020-TestCase-2.cpp │ │ │ │ ├── 030-Asn-Require-Check.cpp │ │ │ │ ├── 100-Fix-Section.cpp │ │ │ │ ├── 110-Fix-ClassFixture.cpp │ │ │ │ ├── 120-Bdd-ScenarioGivenWhenThen.cpp │ │ │ │ ├── 200-Rpt-CatchMain.cpp │ │ │ │ ├── 207-Rpt-TeamCityReporter.cpp │ │ │ │ ├── 210-Evt-EventListeners.cpp │ │ │ │ ├── 231-Cfg-OutputStreams.cpp │ │ │ │ ├── 300-Gen-OwnGenerator.cpp │ │ │ │ ├── 301-Gen-MapTypeConversion.cpp │ │ │ │ ├── 310-Gen-VariablesInGenerators.cpp │ │ │ │ ├── 311-Gen-CustomCapture.cpp │ │ │ │ └── CMakeLists.txt │ │ │ ├── include │ │ │ │ ├── catch.hpp │ │ │ │ ├── catch_with_main.hpp │ │ │ │ ├── external │ │ │ │ │ └── clara.hpp │ │ │ │ ├── internal │ │ │ │ │ ├── catch_approx.cpp │ │ │ │ │ ├── catch_approx.h │ │ │ │ │ ├── catch_assertionhandler.cpp │ │ │ │ │ ├── catch_assertionhandler.h │ │ │ │ │ ├── catch_assertioninfo.h │ │ │ │ │ ├── catch_assertionresult.cpp │ │ │ │ │ ├── catch_assertionresult.h │ │ │ │ │ ├── catch_benchmark.cpp │ │ │ │ │ ├── catch_benchmark.h │ │ │ │ │ ├── catch_capture.hpp │ │ │ │ │ ├── catch_capture_matchers.cpp │ │ │ │ │ ├── catch_capture_matchers.h │ │ │ │ │ ├── catch_clara.h │ │ │ │ │ ├── catch_commandline.cpp │ │ │ │ │ ├── catch_commandline.h │ │ │ │ │ ├── catch_common.cpp │ │ │ │ │ ├── catch_common.h │ │ │ │ │ ├── catch_compiler_capabilities.h │ │ │ │ │ ├── catch_config.cpp │ │ │ │ │ ├── catch_config.hpp │ │ │ │ │ ├── catch_console_colour.cpp │ │ │ │ │ ├── catch_console_colour.h │ │ │ │ │ ├── catch_context.cpp │ │ │ │ │ ├── catch_context.h │ │ │ │ │ ├── catch_debug_console.cpp │ │ │ │ │ ├── catch_debug_console.h │ │ │ │ │ ├── catch_debugger.cpp │ │ │ │ │ ├── catch_debugger.h │ │ │ │ │ ├── catch_decomposer.cpp │ │ │ │ │ ├── catch_decomposer.h │ │ │ │ │ ├── catch_default_main.hpp │ │ │ │ │ ├── catch_enforce.cpp │ │ │ │ │ ├── catch_enforce.h │ │ │ │ │ ├── catch_enum_values_registry.cpp │ │ │ │ │ ├── catch_enum_values_registry.h │ │ │ │ │ ├── catch_errno_guard.cpp │ │ │ │ │ ├── catch_errno_guard.h │ │ │ │ │ ├── catch_exception_translator_registry.cpp │ │ │ │ │ ├── catch_exception_translator_registry.h │ │ │ │ │ ├── catch_external_interfaces.h │ │ │ │ │ ├── catch_fatal_condition.cpp │ │ │ │ │ ├── catch_fatal_condition.h │ │ │ │ │ ├── catch_generators.cpp │ │ │ │ │ ├── catch_generators.hpp │ │ │ │ │ ├── catch_generators_generic.hpp │ │ │ │ │ ├── catch_generators_specific.hpp │ │ │ │ │ ├── catch_impl.hpp │ │ │ │ │ ├── catch_interfaces_capture.cpp │ │ │ │ │ ├── catch_interfaces_capture.h │ │ │ │ │ ├── catch_interfaces_config.cpp │ │ │ │ │ ├── catch_interfaces_config.h │ │ │ │ │ ├── catch_interfaces_enum_values_registry.h │ │ │ │ │ ├── catch_interfaces_exception.cpp │ │ │ │ │ ├── catch_interfaces_exception.h │ │ │ │ │ ├── catch_interfaces_generatortracker.h │ │ │ │ │ ├── catch_interfaces_registry_hub.cpp │ │ │ │ │ ├── catch_interfaces_registry_hub.h │ │ │ │ │ ├── catch_interfaces_reporter.cpp │ │ │ │ │ ├── catch_interfaces_reporter.h │ │ │ │ │ ├── catch_interfaces_runner.cpp │ │ │ │ │ ├── catch_interfaces_runner.h │ │ │ │ │ ├── catch_interfaces_tag_alias_registry.h │ │ │ │ │ ├── catch_interfaces_testcase.cpp │ │ │ │ │ ├── catch_interfaces_testcase.h │ │ │ │ │ ├── catch_leak_detector.cpp │ │ │ │ │ ├── catch_leak_detector.h │ │ │ │ │ ├── catch_list.cpp │ │ │ │ │ ├── catch_list.h │ │ │ │ │ ├── catch_matchers.cpp │ │ │ │ │ ├── catch_matchers.h │ │ │ │ │ ├── catch_matchers_floating.cpp │ │ │ │ │ ├── catch_matchers_floating.h │ │ │ │ │ ├── catch_matchers_generic.cpp │ │ │ │ │ ├── catch_matchers_generic.hpp │ │ │ │ │ ├── catch_matchers_string.cpp │ │ │ │ │ ├── catch_matchers_string.h │ │ │ │ │ ├── catch_matchers_vector.h │ │ │ │ │ ├── catch_message.cpp │ │ │ │ │ ├── catch_message.h │ │ │ │ │ ├── catch_meta.hpp │ │ │ │ │ ├── catch_objc.hpp │ │ │ │ │ ├── catch_objc_arc.hpp │ │ │ │ │ ├── catch_option.hpp │ │ │ │ │ ├── catch_output_redirect.cpp │ │ │ │ │ ├── catch_output_redirect.h │ │ │ │ │ ├── catch_platform.h │ │ │ │ │ ├── catch_polyfills.cpp │ │ │ │ │ ├── catch_polyfills.hpp │ │ │ │ │ ├── catch_preprocessor.hpp │ │ │ │ │ ├── catch_random_number_generator.cpp │ │ │ │ │ ├── catch_random_number_generator.h │ │ │ │ │ ├── catch_reenable_warnings.h │ │ │ │ │ ├── catch_registry_hub.cpp │ │ │ │ │ ├── catch_reporter_registrars.hpp │ │ │ │ │ ├── catch_reporter_registry.cpp │ │ │ │ │ ├── catch_reporter_registry.h │ │ │ │ │ ├── catch_result_type.cpp │ │ │ │ │ ├── catch_result_type.h │ │ │ │ │ ├── catch_run_context.cpp │ │ │ │ │ ├── catch_run_context.h │ │ │ │ │ ├── catch_section.cpp │ │ │ │ │ ├── catch_section.h │ │ │ │ │ ├── catch_section_info.cpp │ │ │ │ │ ├── catch_section_info.h │ │ │ │ │ ├── catch_session.cpp │ │ │ │ │ ├── catch_session.h │ │ │ │ │ ├── catch_singletons.cpp │ │ │ │ │ ├── catch_singletons.hpp │ │ │ │ │ ├── catch_startup_exception_registry.cpp │ │ │ │ │ ├── catch_startup_exception_registry.h │ │ │ │ │ ├── catch_stream.cpp │ │ │ │ │ ├── catch_stream.h │ │ │ │ │ ├── catch_string_manip.cpp │ │ │ │ │ ├── catch_string_manip.h │ │ │ │ │ ├── catch_stringref.cpp │ │ │ │ │ ├── catch_stringref.h │ │ │ │ │ ├── catch_suppress_warnings.h │ │ │ │ │ ├── catch_tag_alias.cpp │ │ │ │ │ ├── catch_tag_alias.h │ │ │ │ │ ├── catch_tag_alias_autoregistrar.cpp │ │ │ │ │ ├── catch_tag_alias_autoregistrar.h │ │ │ │ │ ├── catch_tag_alias_registry.cpp │ │ │ │ │ ├── catch_tag_alias_registry.h │ │ │ │ │ ├── catch_test_case_info.cpp │ │ │ │ │ ├── catch_test_case_info.h │ │ │ │ │ ├── catch_test_case_registry_impl.cpp │ │ │ │ │ ├── catch_test_case_registry_impl.h │ │ │ │ │ ├── catch_test_case_tracker.cpp │ │ │ │ │ ├── catch_test_case_tracker.h │ │ │ │ │ ├── catch_test_registry.cpp │ │ │ │ │ ├── catch_test_registry.h │ │ │ │ │ ├── catch_test_spec.cpp │ │ │ │ │ ├── catch_test_spec.h │ │ │ │ │ ├── catch_test_spec_parser.cpp │ │ │ │ │ ├── catch_test_spec_parser.h │ │ │ │ │ ├── catch_text.h │ │ │ │ │ ├── catch_timer.cpp │ │ │ │ │ ├── catch_timer.h │ │ │ │ │ ├── catch_to_string.hpp │ │ │ │ │ ├── catch_tostring.cpp │ │ │ │ │ ├── catch_tostring.h │ │ │ │ │ ├── catch_totals.cpp │ │ │ │ │ ├── catch_totals.h │ │ │ │ │ ├── catch_type_traits.hpp │ │ │ │ │ ├── catch_uncaught_exceptions.cpp │ │ │ │ │ ├── catch_uncaught_exceptions.h │ │ │ │ │ ├── catch_user_interfaces.h │ │ │ │ │ ├── catch_version.cpp │ │ │ │ │ ├── catch_version.h │ │ │ │ │ ├── catch_wildcard_pattern.cpp │ │ │ │ │ ├── catch_wildcard_pattern.h │ │ │ │ │ ├── catch_windows_h_proxy.h │ │ │ │ │ ├── catch_xmlwriter.cpp │ │ │ │ │ └── catch_xmlwriter.h │ │ │ │ └── reporters │ │ │ │ │ ├── catch_reporter_automake.hpp │ │ │ │ │ ├── catch_reporter_bases.cpp │ │ │ │ │ ├── catch_reporter_bases.hpp │ │ │ │ │ ├── catch_reporter_compact.cpp │ │ │ │ │ ├── catch_reporter_compact.h │ │ │ │ │ ├── catch_reporter_console.cpp │ │ │ │ │ ├── catch_reporter_console.h │ │ │ │ │ ├── catch_reporter_junit.cpp │ │ │ │ │ ├── catch_reporter_junit.h │ │ │ │ │ ├── catch_reporter_listening.cpp │ │ │ │ │ ├── catch_reporter_listening.h │ │ │ │ │ ├── catch_reporter_tap.hpp │ │ │ │ │ ├── catch_reporter_teamcity.hpp │ │ │ │ │ ├── catch_reporter_xml.cpp │ │ │ │ │ └── catch_reporter_xml.h │ │ │ ├── misc │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── appveyorBuildConfigurationScript.bat │ │ │ │ ├── appveyorMergeCoverageScript.py │ │ │ │ ├── appveyorTestRunScript.bat │ │ │ │ ├── coverage-helper.cpp │ │ │ │ └── installOpenCppCoverage.ps1 │ │ │ ├── projects │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ExtraTests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ToDo.txt │ │ │ │ │ ├── X01-PrefixedMacros.cpp │ │ │ │ │ ├── X02-DisabledMacros.cpp │ │ │ │ │ ├── X03-DisabledExceptions-DefaultHandler.cpp │ │ │ │ │ ├── X04-DisabledExceptions-CustomHandler.cpp │ │ │ │ │ ├── X10-FallbackStringifier.cpp │ │ │ │ │ └── X11-DisableStringification.cpp │ │ │ │ ├── SelfTest │ │ │ │ │ ├── Baselines │ │ │ │ │ │ ├── automake.std.approved.txt │ │ │ │ │ │ ├── compact.sw.approved.txt │ │ │ │ │ │ ├── console.std.approved.txt │ │ │ │ │ │ ├── console.sw.approved.txt │ │ │ │ │ │ ├── console.swa4.approved.txt │ │ │ │ │ │ ├── junit.sw.approved.txt │ │ │ │ │ │ └── xml.sw.approved.txt │ │ │ │ │ ├── CompileTimePerfTests │ │ │ │ │ │ ├── 10.tests.cpp │ │ │ │ │ │ ├── 100.tests.cpp │ │ │ │ │ │ └── All.tests.cpp │ │ │ │ │ ├── IntrospectiveTests │ │ │ │ │ │ ├── CmdLine.tests.cpp │ │ │ │ │ │ ├── GeneratorsImpl.tests.cpp │ │ │ │ │ │ ├── PartTracker.tests.cpp │ │ │ │ │ │ ├── String.tests.cpp │ │ │ │ │ │ ├── Tag.tests.cpp │ │ │ │ │ │ ├── ToString.tests.cpp │ │ │ │ │ │ └── Xml.tests.cpp │ │ │ │ │ ├── SurrogateCpps │ │ │ │ │ │ ├── catch_console_colour.cpp │ │ │ │ │ │ ├── catch_debugger.cpp │ │ │ │ │ │ ├── catch_interfaces_reporter.cpp │ │ │ │ │ │ ├── catch_option.cpp │ │ │ │ │ │ ├── catch_stream.cpp │ │ │ │ │ │ ├── catch_test_case_tracker.cpp │ │ │ │ │ │ ├── catch_test_spec.cpp │ │ │ │ │ │ └── catch_xmlwriter.cpp │ │ │ │ │ ├── TestMain.cpp │ │ │ │ │ └── UsageTests │ │ │ │ │ │ ├── Approx.tests.cpp │ │ │ │ │ │ ├── BDD.tests.cpp │ │ │ │ │ │ ├── Benchmark.tests.cpp │ │ │ │ │ │ ├── Class.tests.cpp │ │ │ │ │ │ ├── Compilation.tests.cpp │ │ │ │ │ │ ├── Condition.tests.cpp │ │ │ │ │ │ ├── Decomposition.tests.cpp │ │ │ │ │ │ ├── EnumToString.tests.cpp │ │ │ │ │ │ ├── Exception.tests.cpp │ │ │ │ │ │ ├── Generators.tests.cpp │ │ │ │ │ │ ├── Matchers.tests.cpp │ │ │ │ │ │ ├── Message.tests.cpp │ │ │ │ │ │ ├── Misc.tests.cpp │ │ │ │ │ │ ├── ToStringChrono.tests.cpp │ │ │ │ │ │ ├── ToStringGeneral.tests.cpp │ │ │ │ │ │ ├── ToStringOptional.tests.cpp │ │ │ │ │ │ ├── ToStringPair.tests.cpp │ │ │ │ │ │ ├── ToStringTuple.tests.cpp │ │ │ │ │ │ ├── ToStringVariant.tests.cpp │ │ │ │ │ │ ├── ToStringVector.tests.cpp │ │ │ │ │ │ ├── ToStringWhich.tests.cpp │ │ │ │ │ │ ├── Tricky.tests.cpp │ │ │ │ │ │ └── VariadicMacros.tests.cpp │ │ │ │ ├── Where did the projects go.txt │ │ │ │ └── XCode │ │ │ │ │ └── OCTest │ │ │ │ │ ├── OCTest.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ │ ├── OCTest │ │ │ │ │ ├── CatchOCTestCase.h │ │ │ │ │ ├── CatchOCTestCase.mm │ │ │ │ │ ├── Main.mm │ │ │ │ │ ├── OCTest.1 │ │ │ │ │ ├── OCTest.mm │ │ │ │ │ ├── TestObj.h │ │ │ │ │ └── TestObj.m │ │ │ │ │ └── catch_objc_impl.mm │ │ │ ├── scripts │ │ │ │ ├── approvalTests.py │ │ │ │ ├── approve.py │ │ │ │ ├── benchmarkCompile.py │ │ │ │ ├── benchmarkRunner.py │ │ │ │ ├── developBuild.py │ │ │ │ ├── embed.py │ │ │ │ ├── embedClara.py │ │ │ │ ├── fixWhitespace.py │ │ │ │ ├── generateSingleHeader.py │ │ │ │ ├── majorRelease.py │ │ │ │ ├── minorRelease.py │ │ │ │ ├── patchRelease.py │ │ │ │ ├── releaseCommon.py │ │ │ │ ├── releaseNotes.py │ │ │ │ ├── scriptCommon.py │ │ │ │ ├── updateDocumentToC.py │ │ │ │ └── updateWandbox.py │ │ │ ├── single_include │ │ │ │ └── catch2 │ │ │ │ │ ├── catch.hpp │ │ │ │ │ ├── catch_reporter_automake.hpp │ │ │ │ │ ├── catch_reporter_tap.hpp │ │ │ │ │ └── catch_reporter_teamcity.hpp │ │ │ └── third_party │ │ │ │ └── clara.hpp │ │ ├── outcome │ │ │ ├── .boostify │ │ │ ├── .ci.cmake │ │ │ ├── .clang-format │ │ │ ├── .clang-format-ignore │ │ │ ├── .clang-tidy │ │ │ ├── .docs.cmake │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .gitmodules │ │ │ ├── .quickcpplib │ │ │ ├── .travis.yml │ │ │ ├── CMakeLists.txt │ │ │ ├── CTestConfig.cmake │ │ │ ├── Doxyfile │ │ │ ├── Licence.txt │ │ │ ├── Readme.md │ │ │ ├── abi-compliance │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Readme.md │ │ │ │ ├── abi_dumps │ │ │ │ │ └── Outcome │ │ │ │ │ │ └── 2.1 │ │ │ │ │ │ ├── ABI.dump │ │ │ │ │ │ └── binary_only.dump │ │ │ │ ├── check-abi.sh │ │ │ │ ├── check-api-abi.sh │ │ │ │ ├── dump-abi.sh │ │ │ │ ├── dump-api-abi.sh │ │ │ │ ├── src │ │ │ │ │ └── main.cpp │ │ │ │ └── v2.xml │ │ │ ├── appveyor.yml │ │ │ ├── benchmark │ │ │ │ ├── benchmark.py │ │ │ │ ├── results-darwin.csv │ │ │ │ ├── results-linux2.csv │ │ │ │ ├── results-win32.csv │ │ │ │ ├── results.v1v2.xlsx │ │ │ │ ├── results.v2.0.xlsx │ │ │ │ ├── results.v2.1.xlsx │ │ │ │ ├── results_arm_a53_linear.png │ │ │ │ ├── results_arm_a53_linear_sm.png │ │ │ │ ├── results_arm_a53_log.png │ │ │ │ ├── results_arm_a53_log_sm.png │ │ │ │ ├── results_arm_a72_linear.png │ │ │ │ ├── results_arm_a72_linear_sm.png │ │ │ │ ├── results_arm_a72_log.png │ │ │ │ ├── results_arm_a72_log_sm.png │ │ │ │ ├── results_silvermont_linear.png │ │ │ │ ├── results_silvermont_linear_sm.png │ │ │ │ ├── results_silvermont_log.png │ │ │ │ ├── results_silvermont_log_sm.png │ │ │ │ ├── results_skylake_linear.png │ │ │ │ ├── results_skylake_linear_sm.png │ │ │ │ ├── results_skylake_log.png │ │ │ │ ├── results_skylake_log_sm.png │ │ │ │ ├── runner.cpp │ │ │ │ └── timing.h │ │ │ ├── boostify │ │ │ │ ├── .travis.yml │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Readme.md │ │ │ │ ├── doc │ │ │ │ │ ├── Readme.md │ │ │ │ │ └── src │ │ │ │ │ │ └── config.toml │ │ │ │ ├── include │ │ │ │ │ └── boost │ │ │ │ │ │ └── outcome │ │ │ │ │ │ ├── config.hpp │ │ │ │ │ │ ├── outcome.hpp │ │ │ │ │ │ └── result.hpp │ │ │ │ ├── meta │ │ │ │ │ ├── explicit-failures-markup.xml │ │ │ │ │ └── libraries.json │ │ │ │ └── test │ │ │ │ │ └── Jamfile.v2 │ │ │ ├── cmake │ │ │ │ ├── QuickCppLibBootstrap.cmake │ │ │ │ ├── headers.cmake │ │ │ │ ├── interface.cmake │ │ │ │ └── tests.cmake │ │ │ ├── conan │ │ │ │ ├── conanfile.py │ │ │ │ └── test_package │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── conanfile.py │ │ │ │ │ └── example.cpp │ │ │ ├── doc │ │ │ │ ├── html │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── 404.html │ │ │ │ │ ├── _footer │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── _header │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── categories │ │ │ │ │ │ ├── assignment │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── comparisons │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ └── 2 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── constructors │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── 2 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── 3 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── 4 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ └── 5 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── converting-constructors │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ └── 2 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── copy-assignment │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── copy-constructors │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── default-constructors │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── destructors │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── disabling-constructors │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── explicit-constructors │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ └── 2 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── implicit-constructors │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── 2 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ └── 3 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ ├── inplace-constructors │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ └── 2 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── modifiers │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── move-assignment │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── move-constructors │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── observer-policies │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── observers │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── 2 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── 3 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── 4 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── 5 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ └── 6 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── operators │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── page │ │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── 2 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── special │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── tagged-constructors │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── 2 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── changelog │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index.xml │ │ │ │ │ ├── credits │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── css │ │ │ │ │ │ ├── auto-complete.css │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ ├── featherlight.min.css │ │ │ │ │ │ ├── font-awesome.min.css │ │ │ │ │ │ ├── horsey.css │ │ │ │ │ │ ├── hybrid.css │ │ │ │ │ │ ├── local.css │ │ │ │ │ │ └── nucleus.css │ │ │ │ │ ├── experimental │ │ │ │ │ │ ├── advantages │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── c-api │ │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── example2 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ ├── limitations │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── reference │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── differences │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ ├── map │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── outcome │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── status_result │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── worked-example │ │ │ │ │ │ │ ├── constructor │ │ │ │ │ │ │ ├── implicit_conversion │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ ├── message │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── preamble │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── source │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── string_ref │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── value_type │ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── faq │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ ├── results_arm_a53_log.png │ │ │ │ │ │ ├── results_arm_a72_log.png │ │ │ │ │ │ ├── results_log.png │ │ │ │ │ │ ├── results_silvermont_log.png │ │ │ │ │ │ └── results_skylake_log.png │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ ├── Inconsolata.eot │ │ │ │ │ │ ├── Inconsolata.svg │ │ │ │ │ │ ├── Inconsolata.ttf │ │ │ │ │ │ ├── Inconsolata.woff │ │ │ │ │ │ ├── Lato-Bold.ttf │ │ │ │ │ │ ├── Lato-Bold.woff2 │ │ │ │ │ │ ├── Lato-Regular.ttf │ │ │ │ │ │ ├── Lato-Regular.woff2 │ │ │ │ │ │ ├── Novecentosanswide-Normal-webfont.eot │ │ │ │ │ │ ├── Novecentosanswide-Normal-webfont.svg │ │ │ │ │ │ ├── Novecentosanswide-Normal-webfont.ttf │ │ │ │ │ │ ├── Novecentosanswide-Normal-webfont.woff │ │ │ │ │ │ ├── Novecentosanswide-Normal-webfont.woff2 │ │ │ │ │ │ ├── Novecentosanswide-UltraLight-webfont.eot │ │ │ │ │ │ ├── Novecentosanswide-UltraLight-webfont.svg │ │ │ │ │ │ ├── Novecentosanswide-UltraLight-webfont.ttf │ │ │ │ │ │ ├── Novecentosanswide-UltraLight-webfont.woff │ │ │ │ │ │ ├── Novecentosanswide-UltraLight-webfont.woff2 │ │ │ │ │ │ ├── Roboto-Italic.ttf │ │ │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ │ │ ├── RobotoMono-Medium.ttf │ │ │ │ │ │ ├── RobotoMono-Regular.ttf │ │ │ │ │ │ ├── Work_Sans_200.eot │ │ │ │ │ │ ├── Work_Sans_200.svg │ │ │ │ │ │ ├── Work_Sans_200.ttf │ │ │ │ │ │ ├── Work_Sans_200.woff │ │ │ │ │ │ ├── Work_Sans_200.woff2 │ │ │ │ │ │ ├── Work_Sans_300.eot │ │ │ │ │ │ ├── Work_Sans_300.svg │ │ │ │ │ │ ├── Work_Sans_300.ttf │ │ │ │ │ │ ├── Work_Sans_300.woff │ │ │ │ │ │ ├── Work_Sans_300.woff2 │ │ │ │ │ │ ├── Work_Sans_500.eot │ │ │ │ │ │ ├── Work_Sans_500.svg │ │ │ │ │ │ ├── Work_Sans_500.ttf │ │ │ │ │ │ ├── Work_Sans_500.woff │ │ │ │ │ │ ├── Work_Sans_500.woff2 │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ ├── google5fc8a1f8de4b73f0.html │ │ │ │ │ ├── history │ │ │ │ │ │ ├── graph.png │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index.xml │ │ │ │ │ ├── images │ │ │ │ │ │ ├── clippy.svg │ │ │ │ │ │ ├── favicon.png │ │ │ │ │ │ └── gopher-404.jpg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.json │ │ │ │ │ ├── index.xml │ │ │ │ │ ├── js │ │ │ │ │ │ ├── auto-complete.js │ │ │ │ │ │ ├── clipboard.min.js │ │ │ │ │ │ ├── docdock.js │ │ │ │ │ │ ├── featherlight.min.js │ │ │ │ │ │ ├── highlight.pack.js │ │ │ │ │ │ ├── html5shiv-printshiv.min.js │ │ │ │ │ │ ├── jquery-2.x.min.js │ │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ │ ├── modernizr.custom.71422.js │ │ │ │ │ │ └── search.js │ │ │ │ │ ├── mermaid │ │ │ │ │ │ ├── mermaid.css │ │ │ │ │ │ ├── mermaid.dark.css │ │ │ │ │ │ ├── mermaid.forest.css │ │ │ │ │ │ └── mermaid.js │ │ │ │ │ ├── motivation │ │ │ │ │ │ ├── errno │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── error_codes │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── exceptions │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ ├── narrow_contract │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── plug_error_code │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── std_error_code │ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── none.html │ │ │ │ │ ├── recipes │ │ │ │ │ │ ├── asio-integration │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index.xml │ │ │ │ │ ├── reference │ │ │ │ │ │ ├── aliases │ │ │ │ │ │ │ ├── boost_checked │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── boost_outcome │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── boost_result │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── boost_unchecked │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── checked │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── default_policy │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ ├── outcome │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── result │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── std_checked │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── std_outcome │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── std_result │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── std_unchecked │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── unchecked │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── concepts │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ ├── valueorerror │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── valueornone │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── converters │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ ├── try_operation_return_as │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── value_or_error │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── functions │ │ │ │ │ │ │ ├── error_from_exception │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── failure │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ │ │ ├── hook_outcome_construction │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── hook_outcome_construction2 │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── hook_outcome_copy_construction │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── hook_outcome_copy_construction2 │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── hook_outcome_in_place_construction │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── hook_outcome_move_construction │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── hook_outcome_move_construction2 │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── hook_result_construction │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── hook_result_copy_construction │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── hook_result_in_place_construction │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── hook_result_move_construction │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ │ ├── override_outcome_exception │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── set_spare_storage │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ └── spare_storage │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ ├── iostream │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ │ ├── outcome_operator_in │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── outcome_operator_out │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── outcome_print │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── result_operator_in │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── result_operator_out │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ └── result_print │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── policy │ │ │ │ │ │ │ │ ├── basic_outcome_failure_exception_from_error │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── error_code │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── exception_ptr │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ │ ├── outcome_throw_as_system_error_with_payload_boost_enum │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── outcome_throw_as_system_error_with_payload_boost_error_code │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── outcome_throw_as_system_error_with_payload_std_enum │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ └── outcome_throw_as_system_error_with_payload_std_error_code │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── success │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── try_operation_return_as_expected │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── try_operation_return_as_t │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── try_throw_std_exception_from_error │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ ├── macros │ │ │ │ │ │ │ ├── disable_execinfo │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── in_place_type │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ ├── is_nothrow_swappable │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── nodiscard │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── requires │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── symbol_visible │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── template │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── thread_local │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── throw_exception │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── try │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── tryv │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── tryx │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── version │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── policies │ │ │ │ │ │ │ ├── all_narrow │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ │ ├── error │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── exception │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── has_error │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── has_error_is_errno │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── has_exception │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── has_value │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ │ ├── narrow_error_check │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── narrow_exception_check │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── narrow_value_check │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── set_has_error │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── set_has_error_is_errno │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── set_has_exception │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── set_has_value │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── ub │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ └── value │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── error_code_throw_as_system_error_outcome │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── error_code_throw_as_system_error_result │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── exception_ptr_rethrow_outcome │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── exception_ptr_rethrow_result │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── fail_to_compile_observers │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ ├── terminate │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── throw_bad_result_access │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── traits │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ ├── is_basic_outcome │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── is_basic_result │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── is_error_code_available │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── is_error_type │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── is_error_type_enum │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── is_exception_ptr_available │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── is_failure_type │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── is_success_type │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── type_can_be_used_in_basic_result │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── bad_outcome_access │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── bad_result_access │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── bad_result_access_with │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── basic_outcome │ │ │ │ │ │ │ ├── as_failure_lvalue │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── as_failure_rvalue │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── assume_error_lvalue │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── assume_error_lvalue_const │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── assume_error_rvalue │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── assume_error_rvalue_const │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── assume_exception_lvalue │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── assume_exception_lvalue_const │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── assume_exception_rvalue │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── assume_exception_rvalue_const │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── assume_value_lvalue │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── assume_value_lvalue_const │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── assume_value_rvalue │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── assume_value_rvalue_const │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── copy_assignment │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── copy_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── destructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── disabling_catchall │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── disabling_implicit_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── equality_basic_outcome │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── equality_basic_result │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── equality_failure_type │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── equality_success_type │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── error_lvalue │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── error_lvalue_const │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── error_rvalue │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── error_rvalue_const │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── exception_lvalue │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── exception_lvalue_const │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── exception_rvalue │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── exception_rvalue_const │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── explicit_copy_converting_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── explicit_inplace_error_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── explicit_inplace_error_constructor_il │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── explicit_inplace_exception_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── explicit_inplace_exception_constructor_il │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── explicit_inplace_value_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── explicit_inplace_value_constructor_il │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── explicit_move_converting_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── explicit_result_copy_converting_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── explicit_result_move_converting_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── explicit_valueorerror_converting_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── failure │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── has_error │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── has_exception │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── has_failure │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── has_value │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── implicit_error_condition_converting_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── implicit_error_converting_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── implicit_error_exception_converting_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── implicit_exception_converting_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── implicit_failure_error_copy_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── implicit_failure_error_exception_copy_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── implicit_failure_error_exception_move_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── implicit_failure_error_move_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── implicit_failure_exception_copy_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── implicit_failure_exception_move_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── implicit_inplace_value_error_exception_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── implicit_success_copy_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── implicit_success_move_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── implicit_value_converting_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ ├── inequality_basic_outcome │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── inequality_basic_result │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── inequality_failure_type │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── inequality_success_type │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── move_assignment │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── move_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── operator_bool │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── swap │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── value_lvalue │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── value_lvalue_const │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── value_rvalue │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── value_rvalue_const │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── basic_result │ │ │ │ │ │ │ ├── as_failure_lvalue │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── as_failure_rvalue │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── assume_error_lvalue │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── assume_error_lvalue_const │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── assume_error_rvalue │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── assume_error_rvalue_const │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── assume_value_lvalue │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── assume_value_lvalue_const │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── assume_value_rvalue │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── assume_value_rvalue_const │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── copy_assignment │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── copy_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── destructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── disabling_catchall │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── disabling_implicit_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── equality_basic_result │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── equality_failure_type │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── equality_success_type │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── error_lvalue │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── error_lvalue_const │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── error_rvalue │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── error_rvalue_const │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── explicit_copy_converting_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── explicit_inplace_error_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── explicit_inplace_error_constructor_il │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── explicit_inplace_value_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── explicit_inplace_value_constructor_il │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── explicit_move_converting_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── explicit_valueorerror_converting_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── has_error │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── has_exception │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── has_failure │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── has_value │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── implicit_error_condition_converting_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── implicit_error_converting_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── implicit_failure_copy_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── implicit_failure_move_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── implicit_inplace_value_error_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── implicit_success_copy_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── implicit_success_move_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── implicit_value_converting_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ ├── inequality_basic_result │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── inequality_failure_type │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── inequality_success_type │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── move_assignment │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── move_constructor │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── operator_bool │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── swap │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── value_lvalue │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── value_lvalue_const │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── value_rvalue │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── value_rvalue_const │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── failure_type │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── in_place_type_t │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── success_type │ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── requirements │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index.xml │ │ │ │ │ ├── revealjs │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ ├── Gruntfile.js │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── bower.json │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── print │ │ │ │ │ │ │ │ ├── paper.css │ │ │ │ │ │ │ │ └── pdf.css │ │ │ │ │ │ │ ├── reveal.css │ │ │ │ │ │ │ ├── reveal.scss │ │ │ │ │ │ │ └── theme │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── beige.css │ │ │ │ │ │ │ │ ├── black.css │ │ │ │ │ │ │ │ ├── blood.css │ │ │ │ │ │ │ │ ├── league.css │ │ │ │ │ │ │ │ ├── moon.css │ │ │ │ │ │ │ │ ├── night.css │ │ │ │ │ │ │ │ ├── serif.css │ │ │ │ │ │ │ │ ├── simple.css │ │ │ │ │ │ │ │ ├── sky.css │ │ │ │ │ │ │ │ ├── solarized.css │ │ │ │ │ │ │ │ ├── source │ │ │ │ │ │ │ │ ├── beige.scss │ │ │ │ │ │ │ │ ├── black.scss │ │ │ │ │ │ │ │ ├── blood.scss │ │ │ │ │ │ │ │ ├── league.scss │ │ │ │ │ │ │ │ ├── moon.scss │ │ │ │ │ │ │ │ ├── night.scss │ │ │ │ │ │ │ │ ├── serif.scss │ │ │ │ │ │ │ │ ├── simple.scss │ │ │ │ │ │ │ │ ├── sky.scss │ │ │ │ │ │ │ │ ├── solarized.scss │ │ │ │ │ │ │ │ └── white.scss │ │ │ │ │ │ │ │ ├── template │ │ │ │ │ │ │ │ ├── mixins.scss │ │ │ │ │ │ │ │ ├── settings.scss │ │ │ │ │ │ │ │ └── theme.scss │ │ │ │ │ │ │ │ └── white.css │ │ │ │ │ │ ├── demo.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ └── reveal.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ └── zenburn.css │ │ │ │ │ │ │ ├── font │ │ │ │ │ │ │ │ ├── league-gothic │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ ├── league-gothic.css │ │ │ │ │ │ │ │ │ ├── league-gothic.eot │ │ │ │ │ │ │ │ │ ├── league-gothic.ttf │ │ │ │ │ │ │ │ │ └── league-gothic.woff │ │ │ │ │ │ │ │ └── source-sans-pro │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ │ │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ │ │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ │ │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ │ │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ │ │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ │ │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ │ │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ │ │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ │ │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ │ │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ │ │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ │ │ │ │ │ └── source-sans-pro.css │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── classList.js │ │ │ │ │ │ │ │ ├── head.min.js │ │ │ │ │ │ │ │ └── html5shiv.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── plugin │ │ │ │ │ │ │ ├── highlight │ │ │ │ │ │ │ │ └── highlight.js │ │ │ │ │ │ │ ├── markdown │ │ │ │ │ │ │ │ ├── example.html │ │ │ │ │ │ │ │ ├── example.md │ │ │ │ │ │ │ │ ├── markdown.js │ │ │ │ │ │ │ │ └── marked.js │ │ │ │ │ │ │ ├── math │ │ │ │ │ │ │ │ └── math.js │ │ │ │ │ │ │ ├── multiplex │ │ │ │ │ │ │ │ ├── client.js │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── master.js │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ ├── notes-server │ │ │ │ │ │ │ │ ├── client.js │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── notes.html │ │ │ │ │ │ │ ├── notes │ │ │ │ │ │ │ │ ├── notes.html │ │ │ │ │ │ │ │ └── notes.js │ │ │ │ │ │ │ ├── print-pdf │ │ │ │ │ │ │ │ └── print-pdf.js │ │ │ │ │ │ │ ├── search │ │ │ │ │ │ │ │ └── search.js │ │ │ │ │ │ │ └── zoom-js │ │ │ │ │ │ │ │ └── zoom.js │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ │ ├── image1.png │ │ │ │ │ │ │ │ └── image2.png │ │ │ │ │ │ │ ├── barebones.html │ │ │ │ │ │ │ ├── embedded-media.html │ │ │ │ │ │ │ ├── math.html │ │ │ │ │ │ │ ├── slide-backgrounds.html │ │ │ │ │ │ │ └── slide-transitions.html │ │ │ │ │ │ │ ├── qunit-1.12.0.css │ │ │ │ │ │ │ ├── qunit-1.12.0.js │ │ │ │ │ │ │ ├── simple.md │ │ │ │ │ │ │ ├── test-markdown-element-attributes.html │ │ │ │ │ │ │ ├── test-markdown-element-attributes.js │ │ │ │ │ │ │ ├── test-markdown-external.html │ │ │ │ │ │ │ ├── test-markdown-external.js │ │ │ │ │ │ │ ├── test-markdown-options.html │ │ │ │ │ │ │ ├── test-markdown-options.js │ │ │ │ │ │ │ ├── test-markdown-slide-attributes.html │ │ │ │ │ │ │ ├── test-markdown-slide-attributes.js │ │ │ │ │ │ │ ├── test-markdown.html │ │ │ │ │ │ │ ├── test-markdown.js │ │ │ │ │ │ │ ├── test-pdf.html │ │ │ │ │ │ │ ├── test-pdf.js │ │ │ │ │ │ │ ├── test.html │ │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── scss │ │ │ │ │ │ ├── flex │ │ │ │ │ │ │ ├── article.scss │ │ │ │ │ │ │ ├── fonts.scss │ │ │ │ │ │ │ ├── footer.scss │ │ │ │ │ │ │ ├── header.scss │ │ │ │ │ │ │ ├── main.scss │ │ │ │ │ │ │ ├── medias.scss │ │ │ │ │ │ │ ├── menu.scss │ │ │ │ │ │ │ ├── shortcode.children.scss │ │ │ │ │ │ │ ├── shortcode.notice.scss │ │ │ │ │ │ │ └── style.scss │ │ │ │ │ │ └── original │ │ │ │ │ │ │ ├── _colours.scss │ │ │ │ │ │ │ ├── _functions.scss │ │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ │ ├── fonts.scss │ │ │ │ │ │ │ ├── main.scss │ │ │ │ │ │ │ ├── print.scss │ │ │ │ │ │ │ ├── responsive.scss │ │ │ │ │ │ │ ├── shortcodes.scss │ │ │ │ │ │ │ ├── sidebar.scss │ │ │ │ │ │ │ └── style.scss │ │ │ │ │ ├── sitemap.xml │ │ │ │ │ ├── tags │ │ │ │ │ │ ├── adl-bridging │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── asio │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── backtrace │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── best-practice │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── constructors │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── conventions │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── default-actions │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── dual-api │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── error │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── exception │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── has_error_code │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── idioms │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ ├── make_error_code │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── namespace │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── networking-ts │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── nodiscard │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── outcome │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── page │ │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── 2 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── 3 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── payload │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── playpen │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── policies │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── result │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── try │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── value-or-error │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── value │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── theme-flex │ │ │ │ │ │ ├── ribbon.png │ │ │ │ │ │ ├── script.js │ │ │ │ │ │ └── style.css │ │ │ │ │ ├── theme-original │ │ │ │ │ │ ├── script.js │ │ │ │ │ │ ├── style.css │ │ │ │ │ │ ├── variant-blue.css │ │ │ │ │ │ ├── variant-gold.css │ │ │ │ │ │ ├── variant-gray.css │ │ │ │ │ │ └── variant-green.css │ │ │ │ │ ├── tutorial │ │ │ │ │ │ ├── advanced │ │ │ │ │ │ │ ├── constructors │ │ │ │ │ │ │ │ ├── file_handle │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ │ ├── metaprogrammg1 │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── metaprogrammg2 │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── metaprogrammg3 │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── static-constructor │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ └── two-phase-init │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ │ │ ├── adl_bridging │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── hook_outcome │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── hook_result │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ │ ├── keeping_state │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ └── poke_exception │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ ├── interop │ │ │ │ │ │ │ │ ├── app-go │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── app-map-filelib │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── app-map-httplib1 │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── app-map-httplib2 │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── app-map-tidylib │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── conclusion │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── filelib │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── httplib │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ │ ├── problem │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── tidylib │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ └── value-or-error │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── payload │ │ │ │ │ │ │ │ ├── copy_file │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── copy_file2 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── copy_file3 │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── index.xml │ │ │ │ │ │ ├── essential │ │ │ │ │ │ │ ├── before │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── conventions │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── index.xml │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ ├── no-value │ │ │ │ │ │ │ │ ├── builtin │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── custom │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── index.xml │ │ │ │ │ │ │ ├── outcome │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ │ ├── inspecting │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ └── layer_chart.gif │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ │ ├── inspecting │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ └── try │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index.xml │ │ │ │ │ └── vidine │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── index.xml │ │ │ │ ├── presentations │ │ │ │ │ ├── 20170429_ACCU 2017 Presentation.pdf │ │ │ │ │ ├── 20171110_Meeting C++ 2017 Presentation.pdf │ │ │ │ │ ├── 20180917_CPPDUG 2018 Presentation.pdf │ │ │ │ │ └── vidine.txt │ │ │ │ └── src │ │ │ │ │ ├── config.toml │ │ │ │ │ ├── content │ │ │ │ │ ├── _footer.md │ │ │ │ │ ├── _header.md │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── changelog │ │ │ │ │ │ └── _index.md │ │ │ │ │ ├── credits.md │ │ │ │ │ ├── experimental │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── advantages.md │ │ │ │ │ │ ├── c-api │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ ├── example.md │ │ │ │ │ │ │ ├── example2.md │ │ │ │ │ │ │ ├── limitations.md │ │ │ │ │ │ │ └── reference.md │ │ │ │ │ │ ├── differences.md │ │ │ │ │ │ ├── map.md │ │ │ │ │ │ ├── outcome.md │ │ │ │ │ │ ├── status_result.md │ │ │ │ │ │ └── worked-example │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ ├── constructor.md │ │ │ │ │ │ │ ├── implicit_conversion.md │ │ │ │ │ │ │ ├── message.md │ │ │ │ │ │ │ ├── preamble.md │ │ │ │ │ │ │ ├── source.md │ │ │ │ │ │ │ ├── string_ref.md │ │ │ │ │ │ │ └── value_type.md │ │ │ │ │ ├── faq │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── results_arm_a53_log.png │ │ │ │ │ │ ├── results_arm_a72_log.png │ │ │ │ │ │ ├── results_silvermont_log.png │ │ │ │ │ │ └── results_skylake_log.png │ │ │ │ │ ├── history │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ └── graph.png │ │ │ │ │ ├── motivation │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── errno.md │ │ │ │ │ │ ├── error_codes.md │ │ │ │ │ │ ├── exceptions.md │ │ │ │ │ │ ├── narrow_contract.md │ │ │ │ │ │ ├── plug_error_code.md │ │ │ │ │ │ └── std_error_code.md │ │ │ │ │ ├── recipes │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ └── asio-integration.md │ │ │ │ │ ├── reference │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── aliases │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ ├── boost_checked.md │ │ │ │ │ │ │ ├── boost_outcome.md │ │ │ │ │ │ │ ├── boost_result.md │ │ │ │ │ │ │ ├── boost_unchecked.md │ │ │ │ │ │ │ ├── checked.md │ │ │ │ │ │ │ ├── default_policy.md │ │ │ │ │ │ │ ├── outcome.md │ │ │ │ │ │ │ ├── result.md │ │ │ │ │ │ │ ├── std_checked.md │ │ │ │ │ │ │ ├── std_outcome.md │ │ │ │ │ │ │ ├── std_result.md │ │ │ │ │ │ │ ├── std_unchecked.md │ │ │ │ │ │ │ └── unchecked.md │ │ │ │ │ │ ├── concepts │ │ │ │ │ │ │ ├── ValueOrError.md │ │ │ │ │ │ │ ├── ValueOrNone.md │ │ │ │ │ │ │ └── _index.md │ │ │ │ │ │ ├── converters │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ ├── try_operation_return_as.md │ │ │ │ │ │ │ └── value_or_error.md │ │ │ │ │ │ ├── functions │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ ├── error_from_exception.md │ │ │ │ │ │ │ ├── failure.md │ │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ │ ├── hook_outcome_construction.md │ │ │ │ │ │ │ │ ├── hook_outcome_construction2.md │ │ │ │ │ │ │ │ ├── hook_outcome_copy_construction.md │ │ │ │ │ │ │ │ ├── hook_outcome_copy_construction2.md │ │ │ │ │ │ │ │ ├── hook_outcome_in_place_construction.md │ │ │ │ │ │ │ │ ├── hook_outcome_move_construction.md │ │ │ │ │ │ │ │ ├── hook_outcome_move_construction2.md │ │ │ │ │ │ │ │ ├── hook_result_construction.md │ │ │ │ │ │ │ │ ├── hook_result_copy_construction.md │ │ │ │ │ │ │ │ ├── hook_result_in_place_construction.md │ │ │ │ │ │ │ │ ├── hook_result_move_construction.md │ │ │ │ │ │ │ │ ├── override_outcome_exception.md │ │ │ │ │ │ │ │ ├── set_spare_storage.md │ │ │ │ │ │ │ │ └── spare_storage.md │ │ │ │ │ │ │ ├── iostream │ │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ │ ├── outcome_operator_in.md │ │ │ │ │ │ │ │ ├── outcome_operator_out.md │ │ │ │ │ │ │ │ ├── outcome_print.md │ │ │ │ │ │ │ │ ├── result_operator_in.md │ │ │ │ │ │ │ │ ├── result_operator_out.md │ │ │ │ │ │ │ │ └── result_print.md │ │ │ │ │ │ │ ├── policy │ │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ │ ├── basic_outcome_failure_exception_from_error.md │ │ │ │ │ │ │ │ ├── error_code.md │ │ │ │ │ │ │ │ ├── exception_ptr.md │ │ │ │ │ │ │ │ ├── outcome_throw_as_system_error_with_payload_boost_enum.md │ │ │ │ │ │ │ │ ├── outcome_throw_as_system_error_with_payload_boost_error_code.md │ │ │ │ │ │ │ │ ├── outcome_throw_as_system_error_with_payload_std_enum.md │ │ │ │ │ │ │ │ └── outcome_throw_as_system_error_with_payload_std_error_code.md │ │ │ │ │ │ │ ├── success.md │ │ │ │ │ │ │ ├── try_operation_return_as_T.md │ │ │ │ │ │ │ ├── try_operation_return_as_expected.md │ │ │ │ │ │ │ └── try_throw_std_exception_from_error.md │ │ │ │ │ │ ├── macros │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ ├── disable_execinfo.md │ │ │ │ │ │ │ ├── in_place_type.md │ │ │ │ │ │ │ ├── is_nothrow_swappable.md │ │ │ │ │ │ │ ├── nodiscard.md │ │ │ │ │ │ │ ├── requires.md │ │ │ │ │ │ │ ├── symbol_visible.md │ │ │ │ │ │ │ ├── template.md │ │ │ │ │ │ │ ├── thread_local.md │ │ │ │ │ │ │ ├── throw_exception.md │ │ │ │ │ │ │ ├── try.md │ │ │ │ │ │ │ ├── tryv.md │ │ │ │ │ │ │ ├── tryx.md │ │ │ │ │ │ │ └── version.md │ │ │ │ │ │ ├── policies │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ ├── all_narrow.md │ │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ │ ├── error.md │ │ │ │ │ │ │ │ ├── exception.md │ │ │ │ │ │ │ │ ├── has_error.md │ │ │ │ │ │ │ │ ├── has_error_is_errno.md │ │ │ │ │ │ │ │ ├── has_exception.md │ │ │ │ │ │ │ │ ├── has_value.md │ │ │ │ │ │ │ │ ├── narrow_error_check.md │ │ │ │ │ │ │ │ ├── narrow_exception_check.md │ │ │ │ │ │ │ │ ├── narrow_value_check.md │ │ │ │ │ │ │ │ ├── set_has_error.md │ │ │ │ │ │ │ │ ├── set_has_error_is_errno.md │ │ │ │ │ │ │ │ ├── set_has_exception.md │ │ │ │ │ │ │ │ ├── set_has_value.md │ │ │ │ │ │ │ │ ├── ub.md │ │ │ │ │ │ │ │ └── value.md │ │ │ │ │ │ │ ├── error_code_throw_as_system_error_outcome.md │ │ │ │ │ │ │ ├── error_code_throw_as_system_error_result.md │ │ │ │ │ │ │ ├── exception_ptr_rethrow_outcome.md │ │ │ │ │ │ │ ├── exception_ptr_rethrow_result.md │ │ │ │ │ │ │ ├── fail_to_compile_observers.md │ │ │ │ │ │ │ ├── terminate.md │ │ │ │ │ │ │ └── throw_bad_result_access.md │ │ │ │ │ │ ├── traits │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ ├── is_basic_outcome.md │ │ │ │ │ │ │ ├── is_basic_result.md │ │ │ │ │ │ │ ├── is_error_code_available.md │ │ │ │ │ │ │ ├── is_error_type.md │ │ │ │ │ │ │ ├── is_error_type_enum.md │ │ │ │ │ │ │ ├── is_exception_ptr_available.md │ │ │ │ │ │ │ ├── is_failure_type.md │ │ │ │ │ │ │ ├── is_success_type.md │ │ │ │ │ │ │ └── type_can_be_used_in_basic_result.md │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ ├── bad_outcome_access.md │ │ │ │ │ │ │ ├── bad_result_access.md │ │ │ │ │ │ │ ├── bad_result_access_with.md │ │ │ │ │ │ │ ├── basic_outcome │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ ├── as_failure_lvalue.md │ │ │ │ │ │ │ ├── as_failure_rvalue.md │ │ │ │ │ │ │ ├── assume_error_lvalue.md │ │ │ │ │ │ │ ├── assume_error_lvalue_const.md │ │ │ │ │ │ │ ├── assume_error_rvalue.md │ │ │ │ │ │ │ ├── assume_error_rvalue_const.md │ │ │ │ │ │ │ ├── assume_exception_lvalue.md │ │ │ │ │ │ │ ├── assume_exception_lvalue_const.md │ │ │ │ │ │ │ ├── assume_exception_rvalue.md │ │ │ │ │ │ │ ├── assume_exception_rvalue_const.md │ │ │ │ │ │ │ ├── assume_value_lvalue.md │ │ │ │ │ │ │ ├── assume_value_lvalue_const.md │ │ │ │ │ │ │ ├── assume_value_rvalue.md │ │ │ │ │ │ │ ├── assume_value_rvalue_const.md │ │ │ │ │ │ │ ├── copy_assignment.md │ │ │ │ │ │ │ ├── copy_constructor.md │ │ │ │ │ │ │ ├── default.md │ │ │ │ │ │ │ ├── destructor.md │ │ │ │ │ │ │ ├── disabling_catchall.md │ │ │ │ │ │ │ ├── disabling_implicit_constructor.md │ │ │ │ │ │ │ ├── equality_basic_outcome.md │ │ │ │ │ │ │ ├── equality_basic_result.md │ │ │ │ │ │ │ ├── equality_failure_type.md │ │ │ │ │ │ │ ├── equality_success_type.md │ │ │ │ │ │ │ ├── error_lvalue.md │ │ │ │ │ │ │ ├── error_lvalue_const.md │ │ │ │ │ │ │ ├── error_rvalue.md │ │ │ │ │ │ │ ├── error_rvalue_const.md │ │ │ │ │ │ │ ├── exception_lvalue.md │ │ │ │ │ │ │ ├── exception_lvalue_const.md │ │ │ │ │ │ │ ├── exception_rvalue.md │ │ │ │ │ │ │ ├── exception_rvalue_const.md │ │ │ │ │ │ │ ├── explicit_copy_converting_constructor.md │ │ │ │ │ │ │ ├── explicit_inplace_error_constructor.md │ │ │ │ │ │ │ ├── explicit_inplace_error_constructor_il.md │ │ │ │ │ │ │ ├── explicit_inplace_exception_constructor.md │ │ │ │ │ │ │ ├── explicit_inplace_exception_constructor_il.md │ │ │ │ │ │ │ ├── explicit_inplace_value_constructor.md │ │ │ │ │ │ │ ├── explicit_inplace_value_constructor_il.md │ │ │ │ │ │ │ ├── explicit_move_converting_constructor.md │ │ │ │ │ │ │ ├── explicit_result_copy_converting_constructor.md │ │ │ │ │ │ │ ├── explicit_result_move_converting_constructor.md │ │ │ │ │ │ │ ├── explicit_valueorerror_converting_constructor.md │ │ │ │ │ │ │ ├── failure.md │ │ │ │ │ │ │ ├── has_error.md │ │ │ │ │ │ │ ├── has_exception.md │ │ │ │ │ │ │ ├── has_failure.md │ │ │ │ │ │ │ ├── has_value.md │ │ │ │ │ │ │ ├── implicit_error_condition_converting_constructor.md │ │ │ │ │ │ │ ├── implicit_error_converting_constructor.md │ │ │ │ │ │ │ ├── implicit_error_exception_converting_constructor.md │ │ │ │ │ │ │ ├── implicit_exception_converting_constructor.md │ │ │ │ │ │ │ ├── implicit_failure_error_copy_constructor.md │ │ │ │ │ │ │ ├── implicit_failure_error_exception_copy_constructor.md │ │ │ │ │ │ │ ├── implicit_failure_error_exception_move_constructor.md │ │ │ │ │ │ │ ├── implicit_failure_error_move_constructor.md │ │ │ │ │ │ │ ├── implicit_failure_exception_copy_constructor.md │ │ │ │ │ │ │ ├── implicit_failure_exception_move_constructor.md │ │ │ │ │ │ │ ├── implicit_inplace_value_error_exception_constructor.md │ │ │ │ │ │ │ ├── implicit_success_copy_constructor.md │ │ │ │ │ │ │ ├── implicit_success_move_constructor.md │ │ │ │ │ │ │ ├── implicit_value_converting_constructor.md │ │ │ │ │ │ │ ├── inequality_basic_outcome.md │ │ │ │ │ │ │ ├── inequality_basic_result.md │ │ │ │ │ │ │ ├── inequality_failure_type.md │ │ │ │ │ │ │ ├── inequality_success_type.md │ │ │ │ │ │ │ ├── move_assignment.md │ │ │ │ │ │ │ ├── move_constructor.md │ │ │ │ │ │ │ ├── operator_bool.md │ │ │ │ │ │ │ ├── swap.md │ │ │ │ │ │ │ ├── value_lvalue.md │ │ │ │ │ │ │ ├── value_lvalue_const.md │ │ │ │ │ │ │ ├── value_rvalue.md │ │ │ │ │ │ │ └── value_rvalue_const.md │ │ │ │ │ │ │ ├── basic_result │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ ├── as_failure_lvalue.md │ │ │ │ │ │ │ ├── as_failure_rvalue.md │ │ │ │ │ │ │ ├── assume_error_lvalue.md │ │ │ │ │ │ │ ├── assume_error_lvalue_const.md │ │ │ │ │ │ │ ├── assume_error_rvalue.md │ │ │ │ │ │ │ ├── assume_error_rvalue_const.md │ │ │ │ │ │ │ ├── assume_value_lvalue.md │ │ │ │ │ │ │ ├── assume_value_lvalue_const.md │ │ │ │ │ │ │ ├── assume_value_rvalue.md │ │ │ │ │ │ │ ├── assume_value_rvalue_const.md │ │ │ │ │ │ │ ├── copy_assignment.md │ │ │ │ │ │ │ ├── copy_constructor.md │ │ │ │ │ │ │ ├── default.md │ │ │ │ │ │ │ ├── destructor.md │ │ │ │ │ │ │ ├── disabling_catchall.md │ │ │ │ │ │ │ ├── disabling_implicit_constructor.md │ │ │ │ │ │ │ ├── equality_basic_result.md │ │ │ │ │ │ │ ├── equality_failure_type.md │ │ │ │ │ │ │ ├── equality_success_type.md │ │ │ │ │ │ │ ├── error_lvalue.md │ │ │ │ │ │ │ ├── error_lvalue_const.md │ │ │ │ │ │ │ ├── error_rvalue.md │ │ │ │ │ │ │ ├── error_rvalue_const.md │ │ │ │ │ │ │ ├── explicit_copy_converting_constructor.md │ │ │ │ │ │ │ ├── explicit_inplace_error_constructor.md │ │ │ │ │ │ │ ├── explicit_inplace_error_constructor_il.md │ │ │ │ │ │ │ ├── explicit_inplace_value_constructor.md │ │ │ │ │ │ │ ├── explicit_inplace_value_constructor_il.md │ │ │ │ │ │ │ ├── explicit_move_converting_constructor.md │ │ │ │ │ │ │ ├── explicit_valueorerror_converting_constructor.md │ │ │ │ │ │ │ ├── has_error.md │ │ │ │ │ │ │ ├── has_exception.md │ │ │ │ │ │ │ ├── has_failure.md │ │ │ │ │ │ │ ├── has_value.md │ │ │ │ │ │ │ ├── implicit_error_condition_converting_constructor.md │ │ │ │ │ │ │ ├── implicit_error_converting_constructor.md │ │ │ │ │ │ │ ├── implicit_failure_copy_constructor.md │ │ │ │ │ │ │ ├── implicit_failure_move_constructor.md │ │ │ │ │ │ │ ├── implicit_inplace_value_error_constructor.md │ │ │ │ │ │ │ ├── implicit_success_copy_constructor.md │ │ │ │ │ │ │ ├── implicit_success_move_constructor.md │ │ │ │ │ │ │ ├── implicit_value_converting_constructor.md │ │ │ │ │ │ │ ├── inequality_basic_result.md │ │ │ │ │ │ │ ├── inequality_failure_type.md │ │ │ │ │ │ │ ├── inequality_success_type.md │ │ │ │ │ │ │ ├── move_assignment.md │ │ │ │ │ │ │ ├── move_constructor.md │ │ │ │ │ │ │ ├── operator_bool.md │ │ │ │ │ │ │ ├── swap.md │ │ │ │ │ │ │ ├── value_lvalue.md │ │ │ │ │ │ │ ├── value_lvalue_const.md │ │ │ │ │ │ │ ├── value_rvalue.md │ │ │ │ │ │ │ └── value_rvalue_const.md │ │ │ │ │ │ │ ├── failure_type.md │ │ │ │ │ │ │ ├── in_place_type_t.md │ │ │ │ │ │ │ └── success_type.md │ │ │ │ │ ├── requirements │ │ │ │ │ │ └── _index.md │ │ │ │ │ ├── tutorial │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── advanced │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ ├── constructors │ │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ │ ├── file_handle.md │ │ │ │ │ │ │ │ ├── metaprogrammg1.md │ │ │ │ │ │ │ │ ├── metaprogrammg2.md │ │ │ │ │ │ │ │ ├── metaprogrammg3.md │ │ │ │ │ │ │ │ ├── static-constructor.md │ │ │ │ │ │ │ │ └── two-phase-init.md │ │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ │ ├── adl_bridging.md │ │ │ │ │ │ │ │ ├── hook_outcome.md │ │ │ │ │ │ │ │ ├── hook_result.md │ │ │ │ │ │ │ │ ├── keeping_state.md │ │ │ │ │ │ │ │ └── poke_exception.md │ │ │ │ │ │ │ ├── interop │ │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ │ ├── app-go.md │ │ │ │ │ │ │ │ ├── app-map-filelib.md │ │ │ │ │ │ │ │ ├── app-map-httplib1.md │ │ │ │ │ │ │ │ ├── app-map-httplib2.md │ │ │ │ │ │ │ │ ├── app-map-tidylib.md │ │ │ │ │ │ │ │ ├── app.md │ │ │ │ │ │ │ │ ├── conclusion.md │ │ │ │ │ │ │ │ ├── filelib.md │ │ │ │ │ │ │ │ ├── httplib.md │ │ │ │ │ │ │ │ ├── problem.md │ │ │ │ │ │ │ │ ├── tidylib.md │ │ │ │ │ │ │ │ └── value-or-error.md │ │ │ │ │ │ │ └── payload │ │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ │ ├── copy_file.md │ │ │ │ │ │ │ │ ├── copy_file2.md │ │ │ │ │ │ │ │ └── copy_file3.md │ │ │ │ │ │ └── essential │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ ├── before.md │ │ │ │ │ │ │ ├── conventions │ │ │ │ │ │ │ └── _index.md │ │ │ │ │ │ │ ├── no-value │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ ├── builtin.md │ │ │ │ │ │ │ └── custom.md │ │ │ │ │ │ │ ├── outcome │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ ├── inspecting.md │ │ │ │ │ │ │ └── layer_chart.gif │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ ├── inspecting.md │ │ │ │ │ │ │ └── try.md │ │ │ │ │ └── vidine │ │ │ │ │ │ └── _index.md │ │ │ │ │ ├── layouts │ │ │ │ │ ├── partials │ │ │ │ │ │ ├── custom-head.html │ │ │ │ │ │ ├── flex │ │ │ │ │ │ │ └── body-beforecontent.html │ │ │ │ │ │ ├── menu.html │ │ │ │ │ │ └── next-prev-page.html │ │ │ │ │ └── shortcodes │ │ │ │ │ │ ├── api.html │ │ │ │ │ │ ├── boost-copyright.html │ │ │ │ │ │ ├── children.html │ │ │ │ │ │ ├── figure.html │ │ │ │ │ │ ├── ghcontributors.html │ │ │ │ │ │ ├── if_boost.html │ │ │ │ │ │ ├── slides.html │ │ │ │ │ │ ├── snippet.md │ │ │ │ │ │ └── toc.html │ │ │ │ │ ├── snippets │ │ │ │ │ ├── boost-only │ │ │ │ │ │ └── asio_integration.cpp │ │ │ │ │ ├── c_api.c │ │ │ │ │ ├── constructors.cpp │ │ │ │ │ ├── cpp_api.cpp │ │ │ │ │ ├── error_code_enums1.cpp │ │ │ │ │ ├── error_code_enums2.cpp │ │ │ │ │ ├── error_code_extended.cpp │ │ │ │ │ ├── error_code_registration.cpp │ │ │ │ │ ├── exception_ptr.cpp │ │ │ │ │ ├── expected_implementation.cpp │ │ │ │ │ ├── experimental_status_code.cpp │ │ │ │ │ ├── finale.cpp │ │ │ │ │ ├── intro_example.cpp │ │ │ │ │ ├── outcome_payload.cpp │ │ │ │ │ ├── policies.cpp │ │ │ │ │ ├── udts.cpp │ │ │ │ │ ├── using_outcome.cpp │ │ │ │ │ ├── using_result.cpp │ │ │ │ │ └── void_terminate.cpp │ │ │ │ │ ├── static │ │ │ │ │ └── css │ │ │ │ │ │ └── local.css │ │ │ │ │ └── themes │ │ │ │ │ ├── boostdoc │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── archetypes │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── layouts │ │ │ │ │ │ ├── _default │ │ │ │ │ │ │ ├── baseof.html │ │ │ │ │ │ │ ├── list.html │ │ │ │ │ │ │ └── single.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── partials │ │ │ │ │ │ │ ├── boost-index.html │ │ │ │ │ │ │ ├── footer.html │ │ │ │ │ │ │ ├── head.html │ │ │ │ │ │ │ ├── header.html │ │ │ │ │ │ │ ├── navigation.html │ │ │ │ │ │ │ └── pagination.html │ │ │ │ │ │ └── shortcodes │ │ │ │ │ │ │ ├── mermaid.html │ │ │ │ │ │ │ └── notice.html │ │ │ │ │ ├── static │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── boost.css │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── boost.png │ │ │ │ │ │ │ ├── caution.png │ │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ │ ├── header-bg.png │ │ │ │ │ │ │ ├── header-fg.png │ │ │ │ │ │ │ ├── home.png │ │ │ │ │ │ │ ├── important.png │ │ │ │ │ │ │ ├── next.png │ │ │ │ │ │ │ ├── next_disabled.png │ │ │ │ │ │ │ ├── note.png │ │ │ │ │ │ │ ├── prev.png │ │ │ │ │ │ │ ├── prev_disabled.png │ │ │ │ │ │ │ ├── space.png │ │ │ │ │ │ │ ├── up.png │ │ │ │ │ │ │ ├── up_disabled.png │ │ │ │ │ │ │ └── warning.png │ │ │ │ │ └── theme.toml │ │ │ │ │ └── docdock │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .vscode │ │ │ │ │ └── tasks.json │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _prose.yml │ │ │ │ │ ├── archetypes │ │ │ │ │ ├── default.md │ │ │ │ │ └── slide.md │ │ │ │ │ ├── exampleSite │ │ │ │ │ ├── config-original.toml │ │ │ │ │ ├── config.toml │ │ │ │ │ ├── content │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── content-organisation │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ ├── customize-style │ │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ │ ├── disable.md │ │ │ │ │ │ │ │ ├── theme-variants.md │ │ │ │ │ │ │ │ └── themestyle.md │ │ │ │ │ │ │ ├── extramenu.md │ │ │ │ │ │ │ └── logo.md │ │ │ │ │ │ ├── create-page │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ ├── homepage.md │ │ │ │ │ │ │ ├── myslide.md │ │ │ │ │ │ │ ├── page-images.md │ │ │ │ │ │ │ └── page-slide.md │ │ │ │ │ │ ├── credits.md │ │ │ │ │ │ ├── getting-start │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ ├── configuration.md │ │ │ │ │ │ │ └── installation.md │ │ │ │ │ │ ├── search │ │ │ │ │ │ │ └── _index.md │ │ │ │ │ │ ├── shortcodes │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ ├── alert.md │ │ │ │ │ │ │ ├── attachments.files │ │ │ │ │ │ │ │ ├── BachGavotteShort.mp3 │ │ │ │ │ │ │ │ ├── Carroll_AliceAuPaysDesMerveilles.pdf │ │ │ │ │ │ │ │ ├── adivorciarsetoca00cape.pdf │ │ │ │ │ │ │ │ ├── hugo.png │ │ │ │ │ │ │ │ └── movieselectricsheep-flock-244-32500-2.mp4 │ │ │ │ │ │ │ ├── attachments.md │ │ │ │ │ │ │ ├── button.md │ │ │ │ │ │ │ ├── children │ │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ │ ├── children-1 │ │ │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ │ │ └── children-1-1 │ │ │ │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ │ │ │ └── children-1-1-1 │ │ │ │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ │ │ │ └── children-1-1-1-1 │ │ │ │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ │ │ │ └── children-1-1-1-1-1 │ │ │ │ │ │ │ │ │ │ └── _index.md │ │ │ │ │ │ │ │ ├── children-2 │ │ │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ │ │ └── test3.md │ │ │ │ │ │ │ │ ├── children-3 │ │ │ │ │ │ │ │ │ └── _index.md │ │ │ │ │ │ │ │ ├── children-4 │ │ │ │ │ │ │ │ │ └── _index.md │ │ │ │ │ │ │ │ └── test.md │ │ │ │ │ │ │ ├── excerpt-include.md │ │ │ │ │ │ │ ├── excerpt.md │ │ │ │ │ │ │ ├── expand.md │ │ │ │ │ │ │ ├── icon.md │ │ │ │ │ │ │ ├── mermaid.md │ │ │ │ │ │ │ ├── notice.md │ │ │ │ │ │ │ ├── panel.md │ │ │ │ │ │ │ └── revealjs.md │ │ │ │ │ │ └── showcase.md │ │ │ │ │ ├── layouts │ │ │ │ │ │ ├── partials │ │ │ │ │ │ │ ├── custom-head.html │ │ │ │ │ │ │ └── menu-footer.html │ │ │ │ │ │ └── shortcodes │ │ │ │ │ │ │ └── ghcontributors.html │ │ │ │ │ └── static │ │ │ │ │ │ ├── docdock-style-flex.png │ │ │ │ │ │ ├── docdock-style-original.png │ │ │ │ │ │ ├── menu-entry-icon.png │ │ │ │ │ │ ├── showcase │ │ │ │ │ │ ├── bitfan.site.png │ │ │ │ │ │ └── invincible.site.png │ │ │ │ │ │ ├── style-flex.png │ │ │ │ │ │ ├── style-original.png │ │ │ │ │ │ ├── variant-gold.png │ │ │ │ │ │ ├── variant-gray.png │ │ │ │ │ │ └── variant-green.png │ │ │ │ │ ├── i18n │ │ │ │ │ ├── en.toml │ │ │ │ │ ├── es.toml │ │ │ │ │ ├── fr.toml │ │ │ │ │ └── nb.toml │ │ │ │ │ ├── images │ │ │ │ │ ├── screenshot.png │ │ │ │ │ └── tn.png │ │ │ │ │ ├── layouts │ │ │ │ │ ├── 404.html │ │ │ │ │ ├── _default │ │ │ │ │ │ ├── baseof.html │ │ │ │ │ │ ├── li.html │ │ │ │ │ │ ├── list.html │ │ │ │ │ │ └── single.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.json │ │ │ │ │ ├── partials │ │ │ │ │ │ ├── breadcrumb.html │ │ │ │ │ │ ├── custom-content-footer.html │ │ │ │ │ │ ├── custom-footer.html │ │ │ │ │ │ ├── custom-head.html │ │ │ │ │ │ ├── flex │ │ │ │ │ │ │ ├── body-aftercontent.html │ │ │ │ │ │ │ ├── body-beforecontent.html │ │ │ │ │ │ │ ├── head.html │ │ │ │ │ │ │ ├── scripts.html │ │ │ │ │ │ │ └── selectnavigation.html │ │ │ │ │ │ ├── header.html │ │ │ │ │ │ ├── language-selector.html │ │ │ │ │ │ ├── menu-footer.html │ │ │ │ │ │ ├── menu.html │ │ │ │ │ │ ├── next-prev-page.html │ │ │ │ │ │ ├── original │ │ │ │ │ │ │ ├── body-aftercontent.html │ │ │ │ │ │ │ ├── body-beforecontent.html │ │ │ │ │ │ │ ├── head.html │ │ │ │ │ │ │ └── scripts.html │ │ │ │ │ │ └── pagination.html │ │ │ │ │ ├── shortcodes │ │ │ │ │ │ ├── alert.html │ │ │ │ │ │ ├── anchor.html │ │ │ │ │ │ ├── anchorlink.html │ │ │ │ │ │ ├── attachmentlink.html │ │ │ │ │ │ ├── attachments.html │ │ │ │ │ │ ├── button.html │ │ │ │ │ │ ├── children.html │ │ │ │ │ │ ├── code.html │ │ │ │ │ │ ├── emoticon.html │ │ │ │ │ │ ├── excerpt-include.html │ │ │ │ │ │ ├── excerpt.html │ │ │ │ │ │ ├── expand.html │ │ │ │ │ │ ├── header.html │ │ │ │ │ │ ├── icon.html │ │ │ │ │ │ ├── image.html │ │ │ │ │ │ ├── info.html │ │ │ │ │ │ ├── label.html │ │ │ │ │ │ ├── mermaid.html │ │ │ │ │ │ ├── note.html │ │ │ │ │ │ ├── notice.html │ │ │ │ │ │ ├── pagelink.html │ │ │ │ │ │ ├── pagetreesearch.html │ │ │ │ │ │ ├── panel.html │ │ │ │ │ │ ├── recently-updated.html │ │ │ │ │ │ ├── relref.html │ │ │ │ │ │ ├── revealjs.html │ │ │ │ │ │ ├── section.html │ │ │ │ │ │ ├── task.html │ │ │ │ │ │ ├── tasklist.html │ │ │ │ │ │ ├── tip.html │ │ │ │ │ │ ├── toc.html │ │ │ │ │ │ ├── unknow.html │ │ │ │ │ │ ├── userlink.html │ │ │ │ │ │ ├── viewppt.html │ │ │ │ │ │ ├── viewxls.html │ │ │ │ │ │ ├── warning.html │ │ │ │ │ │ └── well.html │ │ │ │ │ └── slide │ │ │ │ │ │ └── single.html │ │ │ │ │ ├── netlify.toml │ │ │ │ │ ├── static │ │ │ │ │ ├── css │ │ │ │ │ │ ├── auto-complete.css │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ ├── featherlight.min.css │ │ │ │ │ │ ├── font-awesome.min.css │ │ │ │ │ │ ├── horsey.css │ │ │ │ │ │ ├── hybrid.css │ │ │ │ │ │ └── nucleus.css │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ ├── Inconsolata.eot │ │ │ │ │ │ ├── Inconsolata.svg │ │ │ │ │ │ ├── Inconsolata.ttf │ │ │ │ │ │ ├── Inconsolata.woff │ │ │ │ │ │ ├── Lato-Bold.ttf │ │ │ │ │ │ ├── Lato-Bold.woff2 │ │ │ │ │ │ ├── Lato-Regular.ttf │ │ │ │ │ │ ├── Lato-Regular.woff2 │ │ │ │ │ │ ├── Novecentosanswide-Normal-webfont.eot │ │ │ │ │ │ ├── Novecentosanswide-Normal-webfont.svg │ │ │ │ │ │ ├── Novecentosanswide-Normal-webfont.ttf │ │ │ │ │ │ ├── Novecentosanswide-Normal-webfont.woff │ │ │ │ │ │ ├── Novecentosanswide-Normal-webfont.woff2 │ │ │ │ │ │ ├── Novecentosanswide-UltraLight-webfont.eot │ │ │ │ │ │ ├── Novecentosanswide-UltraLight-webfont.svg │ │ │ │ │ │ ├── Novecentosanswide-UltraLight-webfont.ttf │ │ │ │ │ │ ├── Novecentosanswide-UltraLight-webfont.woff │ │ │ │ │ │ ├── Novecentosanswide-UltraLight-webfont.woff2 │ │ │ │ │ │ ├── Roboto-Italic.ttf │ │ │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ │ │ ├── RobotoMono-Medium.ttf │ │ │ │ │ │ ├── RobotoMono-Regular.ttf │ │ │ │ │ │ ├── Work_Sans_200.eot │ │ │ │ │ │ ├── Work_Sans_200.svg │ │ │ │ │ │ ├── Work_Sans_200.ttf │ │ │ │ │ │ ├── Work_Sans_200.woff │ │ │ │ │ │ ├── Work_Sans_200.woff2 │ │ │ │ │ │ ├── Work_Sans_300.eot │ │ │ │ │ │ ├── Work_Sans_300.svg │ │ │ │ │ │ ├── Work_Sans_300.ttf │ │ │ │ │ │ ├── Work_Sans_300.woff │ │ │ │ │ │ ├── Work_Sans_300.woff2 │ │ │ │ │ │ ├── Work_Sans_500.eot │ │ │ │ │ │ ├── Work_Sans_500.svg │ │ │ │ │ │ ├── Work_Sans_500.ttf │ │ │ │ │ │ ├── Work_Sans_500.woff │ │ │ │ │ │ ├── Work_Sans_500.woff2 │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ ├── images │ │ │ │ │ │ ├── clippy.svg │ │ │ │ │ │ ├── favicon.png │ │ │ │ │ │ └── gopher-404.jpg │ │ │ │ │ ├── js │ │ │ │ │ │ ├── auto-complete.js │ │ │ │ │ │ ├── clipboard.min.js │ │ │ │ │ │ ├── docdock.js │ │ │ │ │ │ ├── featherlight.min.js │ │ │ │ │ │ ├── highlight.pack.js │ │ │ │ │ │ ├── html5shiv-printshiv.min.js │ │ │ │ │ │ ├── jquery-2.x.min.js │ │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ │ ├── modernizr.custom.71422.js │ │ │ │ │ │ └── search.js │ │ │ │ │ ├── mermaid │ │ │ │ │ │ ├── mermaid.css │ │ │ │ │ │ ├── mermaid.dark.css │ │ │ │ │ │ ├── mermaid.forest.css │ │ │ │ │ │ └── mermaid.js │ │ │ │ │ ├── none.html │ │ │ │ │ ├── revealjs │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ ├── Gruntfile.js │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── bower.json │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── print │ │ │ │ │ │ │ │ ├── paper.css │ │ │ │ │ │ │ │ └── pdf.css │ │ │ │ │ │ │ ├── reveal.css │ │ │ │ │ │ │ ├── reveal.scss │ │ │ │ │ │ │ └── theme │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── beige.css │ │ │ │ │ │ │ │ ├── black.css │ │ │ │ │ │ │ │ ├── blood.css │ │ │ │ │ │ │ │ ├── league.css │ │ │ │ │ │ │ │ ├── moon.css │ │ │ │ │ │ │ │ ├── night.css │ │ │ │ │ │ │ │ ├── serif.css │ │ │ │ │ │ │ │ ├── simple.css │ │ │ │ │ │ │ │ ├── sky.css │ │ │ │ │ │ │ │ ├── solarized.css │ │ │ │ │ │ │ │ ├── source │ │ │ │ │ │ │ │ ├── beige.scss │ │ │ │ │ │ │ │ ├── black.scss │ │ │ │ │ │ │ │ ├── blood.scss │ │ │ │ │ │ │ │ ├── league.scss │ │ │ │ │ │ │ │ ├── moon.scss │ │ │ │ │ │ │ │ ├── night.scss │ │ │ │ │ │ │ │ ├── serif.scss │ │ │ │ │ │ │ │ ├── simple.scss │ │ │ │ │ │ │ │ ├── sky.scss │ │ │ │ │ │ │ │ ├── solarized.scss │ │ │ │ │ │ │ │ └── white.scss │ │ │ │ │ │ │ │ ├── template │ │ │ │ │ │ │ │ ├── mixins.scss │ │ │ │ │ │ │ │ ├── settings.scss │ │ │ │ │ │ │ │ └── theme.scss │ │ │ │ │ │ │ │ └── white.css │ │ │ │ │ │ ├── demo.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ └── reveal.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ └── zenburn.css │ │ │ │ │ │ │ ├── font │ │ │ │ │ │ │ │ ├── league-gothic │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ ├── league-gothic.css │ │ │ │ │ │ │ │ │ ├── league-gothic.eot │ │ │ │ │ │ │ │ │ ├── league-gothic.ttf │ │ │ │ │ │ │ │ │ └── league-gothic.woff │ │ │ │ │ │ │ │ └── source-sans-pro │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ │ │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ │ │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ │ │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ │ │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ │ │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ │ │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ │ │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ │ │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ │ │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ │ │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ │ │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ │ │ │ │ │ └── source-sans-pro.css │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── classList.js │ │ │ │ │ │ │ │ ├── head.min.js │ │ │ │ │ │ │ │ └── html5shiv.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── plugin │ │ │ │ │ │ │ ├── highlight │ │ │ │ │ │ │ │ └── highlight.js │ │ │ │ │ │ │ ├── markdown │ │ │ │ │ │ │ │ ├── example.html │ │ │ │ │ │ │ │ ├── example.md │ │ │ │ │ │ │ │ ├── markdown.js │ │ │ │ │ │ │ │ └── marked.js │ │ │ │ │ │ │ ├── math │ │ │ │ │ │ │ │ └── math.js │ │ │ │ │ │ │ ├── multiplex │ │ │ │ │ │ │ │ ├── client.js │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── master.js │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ ├── notes-server │ │ │ │ │ │ │ │ ├── client.js │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── notes.html │ │ │ │ │ │ │ ├── notes │ │ │ │ │ │ │ │ ├── notes.html │ │ │ │ │ │ │ │ └── notes.js │ │ │ │ │ │ │ ├── print-pdf │ │ │ │ │ │ │ │ └── print-pdf.js │ │ │ │ │ │ │ ├── search │ │ │ │ │ │ │ │ └── search.js │ │ │ │ │ │ │ └── zoom-js │ │ │ │ │ │ │ │ └── zoom.js │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ │ ├── image1.png │ │ │ │ │ │ │ │ └── image2.png │ │ │ │ │ │ │ ├── barebones.html │ │ │ │ │ │ │ ├── embedded-media.html │ │ │ │ │ │ │ ├── math.html │ │ │ │ │ │ │ ├── slide-backgrounds.html │ │ │ │ │ │ │ └── slide-transitions.html │ │ │ │ │ │ │ ├── qunit-1.12.0.css │ │ │ │ │ │ │ ├── qunit-1.12.0.js │ │ │ │ │ │ │ ├── simple.md │ │ │ │ │ │ │ ├── test-markdown-element-attributes.html │ │ │ │ │ │ │ ├── test-markdown-element-attributes.js │ │ │ │ │ │ │ ├── test-markdown-external.html │ │ │ │ │ │ │ ├── test-markdown-external.js │ │ │ │ │ │ │ ├── test-markdown-options.html │ │ │ │ │ │ │ ├── test-markdown-options.js │ │ │ │ │ │ │ ├── test-markdown-slide-attributes.html │ │ │ │ │ │ │ ├── test-markdown-slide-attributes.js │ │ │ │ │ │ │ ├── test-markdown.html │ │ │ │ │ │ │ ├── test-markdown.js │ │ │ │ │ │ │ ├── test-pdf.html │ │ │ │ │ │ │ ├── test-pdf.js │ │ │ │ │ │ │ ├── test.html │ │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── scss │ │ │ │ │ │ ├── flex │ │ │ │ │ │ │ ├── article.scss │ │ │ │ │ │ │ ├── fonts.scss │ │ │ │ │ │ │ ├── footer.scss │ │ │ │ │ │ │ ├── header.scss │ │ │ │ │ │ │ ├── main.scss │ │ │ │ │ │ │ ├── medias.scss │ │ │ │ │ │ │ ├── menu.scss │ │ │ │ │ │ │ ├── shortcode.children.scss │ │ │ │ │ │ │ ├── shortcode.notice.scss │ │ │ │ │ │ │ └── style.scss │ │ │ │ │ │ └── original │ │ │ │ │ │ │ ├── _colours.scss │ │ │ │ │ │ │ ├── _functions.scss │ │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ │ ├── fonts.scss │ │ │ │ │ │ │ ├── main.scss │ │ │ │ │ │ │ ├── print.scss │ │ │ │ │ │ │ ├── responsive.scss │ │ │ │ │ │ │ ├── shortcodes.scss │ │ │ │ │ │ │ ├── sidebar.scss │ │ │ │ │ │ │ └── style.scss │ │ │ │ │ ├── theme-flex │ │ │ │ │ │ ├── ribbon.png │ │ │ │ │ │ ├── script.js │ │ │ │ │ │ └── style.css │ │ │ │ │ └── theme-original │ │ │ │ │ │ ├── script.js │ │ │ │ │ │ ├── style.css │ │ │ │ │ │ ├── variant-blue.css │ │ │ │ │ │ ├── variant-gold.css │ │ │ │ │ │ ├── variant-gray.css │ │ │ │ │ │ └── variant-green.css │ │ │ │ │ └── theme.toml │ │ │ ├── include │ │ │ │ ├── outcome.hpp │ │ │ │ ├── outcome.ixx │ │ │ │ └── outcome │ │ │ │ │ ├── bad_access.hpp │ │ │ │ │ ├── basic_outcome.hpp │ │ │ │ │ ├── basic_result.hpp │ │ │ │ │ ├── boost_outcome.hpp │ │ │ │ │ ├── boost_result.hpp │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── convert.hpp │ │ │ │ │ ├── detail │ │ │ │ │ ├── basic_outcome_exception_observers.hpp │ │ │ │ │ ├── basic_outcome_exception_observers_impl.hpp │ │ │ │ │ ├── basic_outcome_failure_observers.hpp │ │ │ │ │ ├── basic_result_error_observers.hpp │ │ │ │ │ ├── basic_result_final.hpp │ │ │ │ │ ├── basic_result_storage.hpp │ │ │ │ │ ├── basic_result_value_observers.hpp │ │ │ │ │ ├── trait_std_error_code.hpp │ │ │ │ │ ├── trait_std_exception.hpp │ │ │ │ │ └── value_storage.hpp │ │ │ │ │ ├── experimental │ │ │ │ │ ├── result.h │ │ │ │ │ ├── status-code │ │ │ │ │ │ ├── .clang-format │ │ │ │ │ │ ├── .clang-tidy │ │ │ │ │ │ ├── .gitattributes │ │ │ │ │ │ ├── .gitmodules │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── Doxyfile │ │ │ │ │ │ ├── Licence.txt │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── appveyor.yml │ │ │ │ │ │ ├── doc │ │ │ │ │ │ │ ├── custom_domain_worked_example.md │ │ │ │ │ │ │ └── html │ │ │ │ │ │ │ │ ├── .gitattributes │ │ │ │ │ │ │ │ ├── doc_com_code.html │ │ │ │ │ │ │ │ ├── doc_config.html │ │ │ │ │ │ │ │ ├── doc_error.html │ │ │ │ │ │ │ │ ├── doc_errored_status_code.html │ │ │ │ │ │ │ │ ├── doc_generic_code.html │ │ │ │ │ │ │ │ ├── doc_iostream_support.html │ │ │ │ │ │ │ │ ├── doc_nt_code.html │ │ │ │ │ │ │ │ ├── doc_posix_code.html │ │ │ │ │ │ │ │ ├── doc_status_code.html │ │ │ │ │ │ │ │ ├── doc_status_code_domain.html │ │ │ │ │ │ │ │ ├── doc_status_code_ptr.html │ │ │ │ │ │ │ │ ├── doc_status_error.html │ │ │ │ │ │ │ │ ├── doc_std_error_code.html │ │ │ │ │ │ │ │ ├── doc_system_code.html │ │ │ │ │ │ │ │ ├── doc_system_code_from_exception.html │ │ │ │ │ │ │ │ ├── doc_system_error2.html │ │ │ │ │ │ │ │ ├── doc_win32_code.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ ├── file_io_error.cpp │ │ │ │ │ │ │ └── thrown_exception.cpp │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ ├── com_code.hpp │ │ │ │ │ │ │ ├── config.hpp │ │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ │ ├── nt_code_to_generic_code.ipp │ │ │ │ │ │ │ │ ├── nt_code_to_win32_code.ipp │ │ │ │ │ │ │ │ └── win32_code_to_generic_code.ipp │ │ │ │ │ │ │ ├── error.hpp │ │ │ │ │ │ │ ├── errored_status_code.hpp │ │ │ │ │ │ │ ├── generic_code.hpp │ │ │ │ │ │ │ ├── iostream_support.hpp │ │ │ │ │ │ │ ├── nt_code.hpp │ │ │ │ │ │ │ ├── posix_code.hpp │ │ │ │ │ │ │ ├── status_code.hpp │ │ │ │ │ │ │ ├── status_code_domain.hpp │ │ │ │ │ │ │ ├── status_code_ptr.hpp │ │ │ │ │ │ │ ├── status_error.hpp │ │ │ │ │ │ │ ├── std_error_code.hpp │ │ │ │ │ │ │ ├── system_code.hpp │ │ │ │ │ │ │ ├── system_code_from_exception.hpp │ │ │ │ │ │ │ ├── system_error2.hpp │ │ │ │ │ │ │ └── win32_code.hpp │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── make_docs.sh │ │ │ │ │ │ ├── single-header │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ └── system_error2.hpp │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ │ └── p0709a.cpp │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ └── generate-tables.cpp │ │ │ │ │ ├── status_outcome.hpp │ │ │ │ │ └── status_result.hpp │ │ │ │ │ ├── iostream_support.hpp │ │ │ │ │ ├── outcome.hpp │ │ │ │ │ ├── outcome.natvis │ │ │ │ │ ├── policy │ │ │ │ │ ├── all_narrow.hpp │ │ │ │ │ ├── base.hpp │ │ │ │ │ ├── fail_to_compile_observers.hpp │ │ │ │ │ ├── outcome_error_code_throw_as_system_error.hpp │ │ │ │ │ ├── outcome_exception_ptr_rethrow.hpp │ │ │ │ │ ├── result_error_code_throw_as_system_error.hpp │ │ │ │ │ ├── result_exception_ptr_rethrow.hpp │ │ │ │ │ ├── terminate.hpp │ │ │ │ │ └── throw_bad_result_access.hpp │ │ │ │ │ ├── quickcpplib │ │ │ │ │ ├── .ci.cmake │ │ │ │ │ ├── .clang-format │ │ │ │ │ ├── .clang-tidy │ │ │ │ │ ├── .docs.cmake │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .gitmodules │ │ │ │ │ ├── .quickcpplib │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CTestConfig.cmake │ │ │ │ │ ├── Doxyfile │ │ │ │ │ ├── Licence.txt │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── appveyor.yml │ │ │ │ │ ├── cmake │ │ │ │ │ │ ├── QuickCppLibBootstrap.cmake │ │ │ │ │ │ ├── headers.cmake │ │ │ │ │ │ ├── interface.cmake │ │ │ │ │ │ ├── sources.cmake │ │ │ │ │ │ └── tests.cmake │ │ │ │ │ ├── cmakelib │ │ │ │ │ │ ├── QuickCppLibApplyDefaultDefinitions.cmake │ │ │ │ │ │ ├── QuickCppLibCacheLibrarySources.cmake │ │ │ │ │ │ ├── QuickCppLibMakeDoxygen.cmake │ │ │ │ │ │ ├── QuickCppLibMakeExport.cmake │ │ │ │ │ │ ├── QuickCppLibMakeHeaderOnlyLibrary.cmake │ │ │ │ │ │ ├── QuickCppLibMakeInstall.cmake │ │ │ │ │ │ ├── QuickCppLibMakeLibrary.cmake │ │ │ │ │ │ ├── QuickCppLibMakeStandardTests.cmake │ │ │ │ │ │ ├── QuickCppLibParseLibrarySources.cmake │ │ │ │ │ │ ├── QuickCppLibPolicies.cmake │ │ │ │ │ │ ├── QuickCppLibPrecompiledHeader.cmake │ │ │ │ │ │ ├── QuickCppLibRequireOutOfSourceBuild.cmake │ │ │ │ │ │ ├── QuickCppLibSetupProject.cmake │ │ │ │ │ │ └── QuickCppLibUtils.cmake │ │ │ │ │ ├── doc │ │ │ │ │ │ └── html │ │ │ │ │ │ │ ├── .gitattributes │ │ │ │ │ │ │ ├── _readme_8md.html │ │ │ │ │ │ │ ├── aligned__allocator_8hpp.html │ │ │ │ │ │ │ ├── aligned__allocator_8hpp.js │ │ │ │ │ │ │ ├── allocator__testing_8hpp.html │ │ │ │ │ │ │ ├── allocator__testing_8hpp.js │ │ │ │ │ │ │ ├── annotated.html │ │ │ │ │ │ │ ├── annotated.js │ │ │ │ │ │ │ ├── bc_s.png │ │ │ │ │ │ │ ├── bdwn.png │ │ │ │ │ │ │ ├── bitfield_8hpp.html │ │ │ │ │ │ │ ├── bitfield_8hpp.js │ │ │ │ │ │ │ ├── byte_8hpp.html │ │ │ │ │ │ │ ├── classes.html │ │ │ │ │ │ │ ├── classgsl_1_1final__action-members.html │ │ │ │ │ │ │ ├── classgsl_1_1final__action.html │ │ │ │ │ │ │ ├── classgsl_1_1final__action.js │ │ │ │ │ │ │ ├── classgsl_1_1not__null-members.html │ │ │ │ │ │ │ ├── classgsl_1_1not__null.html │ │ │ │ │ │ │ ├── classgsl_1_1not__null.js │ │ │ │ │ │ │ ├── classgsl_1_1span-members.html │ │ │ │ │ │ │ ├── classgsl_1_1span.html │ │ │ │ │ │ │ ├── classgsl_1_1span.js │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1algorithm_1_1hash_1_1fast__hash-members.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1algorithm_1_1hash_1_1fast__hash.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1algorithm_1_1hash_1_1fast__hash.js │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1basic__open__hash__index-members.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1basic__open__hash__index.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1basic__open__hash__index.js │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1basic__open__hash__index_1_1iterator__-members.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1basic__open__hash__index_1_1iterator__.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1basic__open__hash__index_1_1iterator__.js │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1basic__open__hash__index_1_1iterator__.png │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1algorithm_1_1secded__ecc_1_1secded__ecc-members.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1algorithm_1_1secded__ecc_1_1secded__ecc.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1algorithm_1_1secded__ecc_1_1secded__ecc.js │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1algorithm_1_1small__prng_1_1small__prng-members.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1algorithm_1_1small__prng_1_1small__prng.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1algorithm_1_1small__prng_1_1small__prng.js │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1aligned__allocator_1_1aligned__allocator-members.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1aligned__allocator_1_1aligned__allocator.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1aligned__allocator_1_1aligned__allocator.js │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1aligned__allocator_1_1aligned__allocator_3_01const_01_t_00_01_align_00_01initialize_01_4-members.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1aligned__allocator_1_1aligned__allocator_3_01const_01_t_00_01_align_00_01initialize_01_4.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1aligned__allocator_1_1aligned__allocator_3_01const_01_t_00_01_align_00_01initialize_01_4.js │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1aligned__allocator_1_1aligned__allocator_3_01const_01void_00_01_align_00_01initialize_01_4-members.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1aligned__allocator_1_1aligned__allocator_3_01const_01void_00_01_align_00_01initialize_01_4.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1aligned__allocator_1_1aligned__allocator_3_01const_01void_00_01_align_00_01initialize_01_4.js │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1aligned__allocator_1_1aligned__allocator_3_01void_00_01_align_00_01initialize_01_4-members.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1aligned__allocator_1_1aligned__allocator_3_01void_00_01_align_00_01initialize_01_4.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1aligned__allocator_1_1aligned__allocator_3_01void_00_01_align_00_01initialize_01_4.js │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1lock__guard-members.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1lock__guard.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1lock__guard.js │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1shared__spinlock-members.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1shared__spinlock.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1shared__spinlock.js │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1shared__spinlock.png │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1spinlock-members.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1spinlock.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1spinlock.js │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1spinlock.png │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1offset__ptr_1_1atomic__offset__ptr-members.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1offset__ptr_1_1atomic__offset__ptr.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1offset__ptr_1_1atomic__offset__ptr.js │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1offset__ptr_1_1offset__ptr-members.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1offset__ptr_1_1offset__ptr.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1offset__ptr_1_1offset__ptr.js │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1offset__ptr_1_1offset__ptr_3_01const_01_t_01_4-members.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1offset__ptr_1_1offset__ptr_3_01const_01_t_01_4.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1offset__ptr_1_1offset__ptr_3_01const_01_t_01_4.js │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1packed__backtrace_1_1impl_1_1packed__backtrace-members.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1packed__backtrace_1_1impl_1_1packed__backtrace.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1packed__backtrace_1_1impl_1_1packed__backtrace.js │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1packed__backtrace_1_1impl_1_1packed__backtrace_1_1iterator-members.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1packed__backtrace_1_1impl_1_1packed__backtrace_1_1iterator.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1packed__backtrace_1_1impl_1_1packed__backtrace_1_1iterator.js │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1packed__backtrace_1_1impl_1_1packed__backtrace_1_1iterator.png │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1packed__backtrace_1_1packed__backtrace-members.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1packed__backtrace_1_1packed__backtrace.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1packed__backtrace_1_1packed__backtrace.js │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1packed__backtrace_1_1packed__backtrace.png │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1persistence_1_1persistent-members.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1persistence_1_1persistent.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1persistence_1_1persistent.js │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1persistence_1_1persistent.png │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1ringbuffer__log_1_1ringbuffer__log-members.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1ringbuffer__log_1_1ringbuffer__log.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1ringbuffer__log_1_1ringbuffer__log.js │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1ringbuffer__log_1_1ringbuffer__log_1_1iterator__-members.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1ringbuffer__log_1_1ringbuffer__log_1_1iterator__.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1ringbuffer__log_1_1ringbuffer__log_1_1iterator__.js │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1ringbuffer__log_1_1ringbuffer__log_1_1iterator__.png │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1signal__guard_1_1raised__signal__info-members.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1signal__guard_1_1raised__signal__info.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1signal__guard_1_1raised__signal__info.js │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1signal__guard_1_1signal__guard__install-members.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1signal__guard_1_1signal__guard__install.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1signal__guard_1_1signal__guard__install.js │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1signal__guard_1_1signal__raised-members.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1signal__guard_1_1signal__raised.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1signal__guard_1_1signal__raised.js │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1signal__guard_1_1signal__raised.png │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1string__view_1_1basic__string__view-members.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1string__view_1_1basic__string__view.html │ │ │ │ │ │ │ ├── classquickcpplib_1_1__xxx_1_1string__view_1_1basic__string__view.js │ │ │ │ │ │ │ ├── closed.png │ │ │ │ │ │ │ ├── config_8hpp.html │ │ │ │ │ │ │ ├── config_8hpp.js │ │ │ │ │ │ │ ├── console__colours_8hpp.html │ │ │ │ │ │ │ ├── console__colours_8hpp.js │ │ │ │ │ │ │ ├── cpp__feature_8h.html │ │ │ │ │ │ │ ├── dir_0a1fe46c2f6956099f18c83e13928f41.html │ │ │ │ │ │ │ ├── dir_0a1fe46c2f6956099f18c83e13928f41.js │ │ │ │ │ │ │ ├── dir_1878a3f4746a95c6aad317458cc7ef80.html │ │ │ │ │ │ │ ├── dir_1878a3f4746a95c6aad317458cc7ef80.js │ │ │ │ │ │ │ ├── dir_60beb1a8c39378ddb4df49f229c876e7.html │ │ │ │ │ │ │ ├── dir_60beb1a8c39378ddb4df49f229c876e7.js │ │ │ │ │ │ │ ├── dir_821002d4f10779a80d4fb17bc32f21f1.html │ │ │ │ │ │ │ ├── dir_821002d4f10779a80d4fb17bc32f21f1.js │ │ │ │ │ │ │ ├── dir_97999fb87383f2f106e79f4faa0095ed.html │ │ │ │ │ │ │ ├── dir_97999fb87383f2f106e79f4faa0095ed.js │ │ │ │ │ │ │ ├── dir_a38aa3a0f03276654df06acd098a6410.html │ │ │ │ │ │ │ ├── dir_a38aa3a0f03276654df06acd098a6410.js │ │ │ │ │ │ │ ├── dir_bbd6663f6457c126fde02498493d464f.html │ │ │ │ │ │ │ ├── dir_bbd6663f6457c126fde02498493d464f.js │ │ │ │ │ │ │ ├── dir_d44c64559bbebec7f509842c48db8b23.html │ │ │ │ │ │ │ ├── dir_d44c64559bbebec7f509842c48db8b23.js │ │ │ │ │ │ │ ├── doxygen.css │ │ │ │ │ │ │ ├── doxygen.png │ │ │ │ │ │ │ ├── dynsections.js │ │ │ │ │ │ │ ├── execinfo__win64_8h.html │ │ │ │ │ │ │ ├── execinfo__win64_8h.js │ │ │ │ │ │ │ ├── files.html │ │ │ │ │ │ │ ├── files.js │ │ │ │ │ │ │ ├── ftv2blank.png │ │ │ │ │ │ │ ├── ftv2cl.png │ │ │ │ │ │ │ ├── ftv2doc.png │ │ │ │ │ │ │ ├── ftv2folderclosed.png │ │ │ │ │ │ │ ├── ftv2folderopen.png │ │ │ │ │ │ │ ├── ftv2lastnode.png │ │ │ │ │ │ │ ├── ftv2link.png │ │ │ │ │ │ │ ├── ftv2mlastnode.png │ │ │ │ │ │ │ ├── ftv2mnode.png │ │ │ │ │ │ │ ├── ftv2mo.png │ │ │ │ │ │ │ ├── ftv2node.png │ │ │ │ │ │ │ ├── ftv2ns.png │ │ │ │ │ │ │ ├── ftv2plastnode.png │ │ │ │ │ │ │ ├── ftv2pnode.png │ │ │ │ │ │ │ ├── ftv2splitbar.png │ │ │ │ │ │ │ ├── ftv2vertline.png │ │ │ │ │ │ │ ├── functions.html │ │ │ │ │ │ │ ├── functions_a.html │ │ │ │ │ │ │ ├── functions_b.html │ │ │ │ │ │ │ ├── functions_c.html │ │ │ │ │ │ │ ├── functions_d.html │ │ │ │ │ │ │ ├── functions_dup.js │ │ │ │ │ │ │ ├── functions_e.html │ │ │ │ │ │ │ ├── functions_enum.html │ │ │ │ │ │ │ ├── functions_eval.html │ │ │ │ │ │ │ ├── functions_f.html │ │ │ │ │ │ │ ├── functions_func.html │ │ │ │ │ │ │ ├── functions_func.js │ │ │ │ │ │ │ ├── functions_func_a.html │ │ │ │ │ │ │ ├── functions_func_b.html │ │ │ │ │ │ │ ├── functions_func_c.html │ │ │ │ │ │ │ ├── functions_func_d.html │ │ │ │ │ │ │ ├── functions_func_e.html │ │ │ │ │ │ │ ├── functions_func_f.html │ │ │ │ │ │ │ ├── functions_func_g.html │ │ │ │ │ │ │ ├── functions_func_h.html │ │ │ │ │ │ │ ├── functions_func_i.html │ │ │ │ │ │ │ ├── functions_func_l.html │ │ │ │ │ │ │ ├── functions_func_m.html │ │ │ │ │ │ │ ├── functions_func_n.html │ │ │ │ │ │ │ ├── functions_func_o.html │ │ │ │ │ │ │ ├── functions_func_p.html │ │ │ │ │ │ │ ├── functions_func_r.html │ │ │ │ │ │ │ ├── functions_func_s.html │ │ │ │ │ │ │ ├── functions_func_t.html │ │ │ │ │ │ │ ├── functions_func_u.html │ │ │ │ │ │ │ ├── functions_func_v.html │ │ │ │ │ │ │ ├── functions_func_w.html │ │ │ │ │ │ │ ├── functions_func_~.html │ │ │ │ │ │ │ ├── functions_g.html │ │ │ │ │ │ │ ├── functions_h.html │ │ │ │ │ │ │ ├── functions_i.html │ │ │ │ │ │ │ ├── functions_k.html │ │ │ │ │ │ │ ├── functions_l.html │ │ │ │ │ │ │ ├── functions_m.html │ │ │ │ │ │ │ ├── functions_n.html │ │ │ │ │ │ │ ├── functions_o.html │ │ │ │ │ │ │ ├── functions_p.html │ │ │ │ │ │ │ ├── functions_r.html │ │ │ │ │ │ │ ├── functions_rela.html │ │ │ │ │ │ │ ├── functions_s.html │ │ │ │ │ │ │ ├── functions_t.html │ │ │ │ │ │ │ ├── functions_type.html │ │ │ │ │ │ │ ├── functions_u.html │ │ │ │ │ │ │ ├── functions_v.html │ │ │ │ │ │ │ ├── functions_vars.html │ │ │ │ │ │ │ ├── functions_w.html │ │ │ │ │ │ │ ├── functions_~.html │ │ │ │ │ │ │ ├── globals.html │ │ │ │ │ │ │ ├── globals_b.html │ │ │ │ │ │ │ ├── globals_defs.html │ │ │ │ │ │ │ ├── globals_defs.js │ │ │ │ │ │ │ ├── globals_defs_e.html │ │ │ │ │ │ │ ├── globals_defs_g.html │ │ │ │ │ │ │ ├── globals_defs_i.html │ │ │ │ │ │ │ ├── globals_defs_o.html │ │ │ │ │ │ │ ├── globals_defs_q.html │ │ │ │ │ │ │ ├── globals_defs_s.html │ │ │ │ │ │ │ ├── globals_dup.js │ │ │ │ │ │ │ ├── globals_e.html │ │ │ │ │ │ │ ├── globals_func.html │ │ │ │ │ │ │ ├── globals_g.html │ │ │ │ │ │ │ ├── globals_i.html │ │ │ │ │ │ │ ├── globals_l.html │ │ │ │ │ │ │ ├── globals_m.html │ │ │ │ │ │ │ ├── globals_o.html │ │ │ │ │ │ │ ├── globals_q.html │ │ │ │ │ │ │ ├── globals_s.html │ │ │ │ │ │ │ ├── globals_vars.html │ │ │ │ │ │ │ ├── group__tribool.html │ │ │ │ │ │ │ ├── group__tribool.js │ │ │ │ │ │ │ ├── group__unittesting.html │ │ │ │ │ │ │ ├── group__unittesting.js │ │ │ │ │ │ │ ├── gsl-lite-vc6_8hpp.html │ │ │ │ │ │ │ ├── gsl-lite-vc6_8hpp.js │ │ │ │ │ │ │ ├── gsl-lite_8h.html │ │ │ │ │ │ │ ├── gsl-lite_8h.js │ │ │ │ │ │ │ ├── gsl-lite_8hpp.html │ │ │ │ │ │ │ ├── gsl-lite_8hpp.js │ │ │ │ │ │ │ ├── hash_8hpp.html │ │ │ │ │ │ │ ├── hash_8hpp.js │ │ │ │ │ │ │ ├── hierarchy.html │ │ │ │ │ │ │ ├── hierarchy.js │ │ │ │ │ │ │ ├── import_8h.html │ │ │ │ │ │ │ ├── import_8h.js │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── memory__resource_8hpp.html │ │ │ │ │ │ │ ├── memory__resource_8hpp.js │ │ │ │ │ │ │ ├── modules.html │ │ │ │ │ │ │ ├── modules.js │ │ │ │ │ │ │ ├── namespacegsl.html │ │ │ │ │ │ │ ├── namespacegsl.js │ │ │ │ │ │ │ ├── namespacegsl_1_1detail.html │ │ │ │ │ │ │ ├── namespacemembers.html │ │ │ │ │ │ │ ├── namespacemembers_enum.html │ │ │ │ │ │ │ ├── namespacemembers_eval.html │ │ │ │ │ │ │ ├── namespacemembers_func.html │ │ │ │ │ │ │ ├── namespacemembers_type.html │ │ │ │ │ │ │ ├── namespacemembers_vars.html │ │ │ │ │ │ │ ├── namespacequickcpplib.html │ │ │ │ │ │ │ ├── namespacequickcpplib.js │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx.js │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1algorithm.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1algorithm.js │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1algorithm_1_1hash.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1algorithm_1_1hash.js │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1algorithm_1_1hash_1_1fash__hash__detail.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index.js │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1detail.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1algorithm_1_1secded__ecc.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1algorithm_1_1secded__ecc.js │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1algorithm_1_1small__prng.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1algorithm_1_1small__prng.js │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1algorithm_1_1string.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1aligned__allocator.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1aligned__allocator.js │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1aligned__allocator_1_1detail.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1allocator__testing.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1allocator__testing.js │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1byte.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1configurable__spinlock.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1configurable__spinlock.js │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1configurable__spinlock_1_1detail.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1console__colours.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1console__colours.js │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1console__colours_1_1detail.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1integers128.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1integers128.js │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1offset__ptr.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1offset__ptr.js │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1offset__ptr_1_1detail.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1optional.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1packed__backtrace.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1packed__backtrace.js │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1packed__backtrace_1_1detail.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1packed__backtrace_1_1impl.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1packed__backtrace_1_1impl.js │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1persistence.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1persistence.js │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1persistence_1_1detail.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1pmr.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1ringbuffer__log.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1ringbuffer__log.js │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1ringbuffer__log_1_1simple__ringbuffer__log__policy__detail.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1ringbuffer__log_1_1simple__ringbuffer__log__policy__detail.js │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1scoped__undo.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1scoped__undo.js │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1scoped__undo_1_1detail.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1signal__guard.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1signal__guard.js │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1signal__guard_1_1detail.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1span.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1string__view.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1string__view.js │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1string__view_1_1detail.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1tribool.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1type__traits.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1type__traits.js │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1type__traits_1_1detail.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1unit__test.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1unit__test.js │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1utils.html │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1utils.js │ │ │ │ │ │ │ ├── namespacequickcpplib_1_1__xxx_1_1utils_1_1thread.html │ │ │ │ │ │ │ ├── namespaces.html │ │ │ │ │ │ │ ├── namespaces.js │ │ │ │ │ │ │ ├── nav_f.png │ │ │ │ │ │ │ ├── nav_g.png │ │ │ │ │ │ │ ├── nav_h.png │ │ │ │ │ │ │ ├── navtree.css │ │ │ │ │ │ │ ├── navtree.js │ │ │ │ │ │ │ ├── navtreeindex0.js │ │ │ │ │ │ │ ├── navtreeindex1.js │ │ │ │ │ │ │ ├── navtreeindex2.js │ │ │ │ │ │ │ ├── navtreeindex3.js │ │ │ │ │ │ │ ├── navtreeindex4.js │ │ │ │ │ │ │ ├── navtreeindex5.js │ │ │ │ │ │ │ ├── navtreeindex6.js │ │ │ │ │ │ │ ├── offset__ptr_8hpp.html │ │ │ │ │ │ │ ├── open.png │ │ │ │ │ │ │ ├── open__hash__index_8hpp.html │ │ │ │ │ │ │ ├── open__hash__index_8hpp.js │ │ │ │ │ │ │ ├── optional_8hpp.html │ │ │ │ │ │ │ ├── optional_8hpp.js │ │ │ │ │ │ │ ├── packed__backtrace_8hpp.html │ │ │ │ │ │ │ ├── packed__backtrace_8hpp.js │ │ │ │ │ │ │ ├── pages.html │ │ │ │ │ │ │ ├── persistent_8hpp.html │ │ │ │ │ │ │ ├── persistent_8hpp.js │ │ │ │ │ │ │ ├── resize.js │ │ │ │ │ │ │ ├── revision_8hpp.html │ │ │ │ │ │ │ ├── revision_8hpp.js │ │ │ │ │ │ │ ├── ringbuffer__log_8hpp.html │ │ │ │ │ │ │ ├── ringbuffer__log_8hpp.js │ │ │ │ │ │ │ ├── scoped__undo_8hpp.html │ │ │ │ │ │ │ ├── scoped__undo_8hpp.js │ │ │ │ │ │ │ ├── search │ │ │ │ │ │ │ ├── all_0.html │ │ │ │ │ │ │ ├── all_0.js │ │ │ │ │ │ │ ├── all_1.html │ │ │ │ │ │ │ ├── all_1.js │ │ │ │ │ │ │ ├── all_10.html │ │ │ │ │ │ │ ├── all_10.js │ │ │ │ │ │ │ ├── all_11.html │ │ │ │ │ │ │ ├── all_11.js │ │ │ │ │ │ │ ├── all_12.html │ │ │ │ │ │ │ ├── all_12.js │ │ │ │ │ │ │ ├── all_13.html │ │ │ │ │ │ │ ├── all_13.js │ │ │ │ │ │ │ ├── all_14.html │ │ │ │ │ │ │ ├── all_14.js │ │ │ │ │ │ │ ├── all_15.html │ │ │ │ │ │ │ ├── all_15.js │ │ │ │ │ │ │ ├── all_16.html │ │ │ │ │ │ │ ├── all_16.js │ │ │ │ │ │ │ ├── all_17.html │ │ │ │ │ │ │ ├── all_17.js │ │ │ │ │ │ │ ├── all_18.html │ │ │ │ │ │ │ ├── all_18.js │ │ │ │ │ │ │ ├── all_19.html │ │ │ │ │ │ │ ├── all_19.js │ │ │ │ │ │ │ ├── all_2.html │ │ │ │ │ │ │ ├── all_2.js │ │ │ │ │ │ │ ├── all_3.html │ │ │ │ │ │ │ ├── all_3.js │ │ │ │ │ │ │ ├── all_4.html │ │ │ │ │ │ │ ├── all_4.js │ │ │ │ │ │ │ ├── all_5.html │ │ │ │ │ │ │ ├── all_5.js │ │ │ │ │ │ │ ├── all_6.html │ │ │ │ │ │ │ ├── all_6.js │ │ │ │ │ │ │ ├── all_7.html │ │ │ │ │ │ │ ├── all_7.js │ │ │ │ │ │ │ ├── all_8.html │ │ │ │ │ │ │ ├── all_8.js │ │ │ │ │ │ │ ├── all_9.html │ │ │ │ │ │ │ ├── all_9.js │ │ │ │ │ │ │ ├── all_a.html │ │ │ │ │ │ │ ├── all_a.js │ │ │ │ │ │ │ ├── all_b.html │ │ │ │ │ │ │ ├── all_b.js │ │ │ │ │ │ │ ├── all_c.html │ │ │ │ │ │ │ ├── all_c.js │ │ │ │ │ │ │ ├── all_d.html │ │ │ │ │ │ │ ├── all_d.js │ │ │ │ │ │ │ ├── all_e.html │ │ │ │ │ │ │ ├── all_e.js │ │ │ │ │ │ │ ├── all_f.html │ │ │ │ │ │ │ ├── all_f.js │ │ │ │ │ │ │ ├── classes_0.html │ │ │ │ │ │ │ ├── classes_0.js │ │ │ │ │ │ │ ├── classes_1.html │ │ │ │ │ │ │ ├── classes_1.js │ │ │ │ │ │ │ ├── classes_10.html │ │ │ │ │ │ │ ├── classes_10.js │ │ │ │ │ │ │ ├── classes_2.html │ │ │ │ │ │ │ ├── classes_2.js │ │ │ │ │ │ │ ├── classes_3.html │ │ │ │ │ │ │ ├── classes_3.js │ │ │ │ │ │ │ ├── classes_4.html │ │ │ │ │ │ │ ├── classes_4.js │ │ │ │ │ │ │ ├── classes_5.html │ │ │ │ │ │ │ ├── classes_5.js │ │ │ │ │ │ │ ├── classes_6.html │ │ │ │ │ │ │ ├── classes_6.js │ │ │ │ │ │ │ ├── classes_7.html │ │ │ │ │ │ │ ├── classes_7.js │ │ │ │ │ │ │ ├── classes_8.html │ │ │ │ │ │ │ ├── classes_8.js │ │ │ │ │ │ │ ├── classes_9.html │ │ │ │ │ │ │ ├── classes_9.js │ │ │ │ │ │ │ ├── classes_a.html │ │ │ │ │ │ │ ├── classes_a.js │ │ │ │ │ │ │ ├── classes_b.html │ │ │ │ │ │ │ ├── classes_b.js │ │ │ │ │ │ │ ├── classes_c.html │ │ │ │ │ │ │ ├── classes_c.js │ │ │ │ │ │ │ ├── classes_d.html │ │ │ │ │ │ │ ├── classes_d.js │ │ │ │ │ │ │ ├── classes_e.html │ │ │ │ │ │ │ ├── classes_e.js │ │ │ │ │ │ │ ├── classes_f.html │ │ │ │ │ │ │ ├── classes_f.js │ │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ │ ├── defines_0.html │ │ │ │ │ │ │ ├── defines_0.js │ │ │ │ │ │ │ ├── defines_1.html │ │ │ │ │ │ │ ├── defines_1.js │ │ │ │ │ │ │ ├── defines_2.html │ │ │ │ │ │ │ ├── defines_2.js │ │ │ │ │ │ │ ├── defines_3.html │ │ │ │ │ │ │ ├── defines_3.js │ │ │ │ │ │ │ ├── defines_4.html │ │ │ │ │ │ │ ├── defines_4.js │ │ │ │ │ │ │ ├── defines_5.html │ │ │ │ │ │ │ ├── defines_5.js │ │ │ │ │ │ │ ├── enums_0.html │ │ │ │ │ │ │ ├── enums_0.js │ │ │ │ │ │ │ ├── enums_1.html │ │ │ │ │ │ │ ├── enums_1.js │ │ │ │ │ │ │ ├── enums_2.html │ │ │ │ │ │ │ ├── enums_2.js │ │ │ │ │ │ │ ├── enums_3.html │ │ │ │ │ │ │ ├── enums_3.js │ │ │ │ │ │ │ ├── enums_4.html │ │ │ │ │ │ │ ├── enums_4.js │ │ │ │ │ │ │ ├── enums_5.html │ │ │ │ │ │ │ ├── enums_5.js │ │ │ │ │ │ │ ├── enumvalues_0.html │ │ │ │ │ │ │ ├── enumvalues_0.js │ │ │ │ │ │ │ ├── enumvalues_1.html │ │ │ │ │ │ │ ├── enumvalues_1.js │ │ │ │ │ │ │ ├── enumvalues_2.html │ │ │ │ │ │ │ ├── enumvalues_2.js │ │ │ │ │ │ │ ├── enumvalues_3.html │ │ │ │ │ │ │ ├── enumvalues_3.js │ │ │ │ │ │ │ ├── enumvalues_4.html │ │ │ │ │ │ │ ├── enumvalues_4.js │ │ │ │ │ │ │ ├── enumvalues_5.html │ │ │ │ │ │ │ ├── enumvalues_5.js │ │ │ │ │ │ │ ├── enumvalues_6.html │ │ │ │ │ │ │ ├── enumvalues_6.js │ │ │ │ │ │ │ ├── enumvalues_7.html │ │ │ │ │ │ │ ├── enumvalues_7.js │ │ │ │ │ │ │ ├── enumvalues_8.html │ │ │ │ │ │ │ ├── enumvalues_8.js │ │ │ │ │ │ │ ├── enumvalues_9.html │ │ │ │ │ │ │ ├── enumvalues_9.js │ │ │ │ │ │ │ ├── enumvalues_a.html │ │ │ │ │ │ │ ├── enumvalues_a.js │ │ │ │ │ │ │ ├── enumvalues_b.html │ │ │ │ │ │ │ ├── enumvalues_b.js │ │ │ │ │ │ │ ├── enumvalues_c.html │ │ │ │ │ │ │ ├── enumvalues_c.js │ │ │ │ │ │ │ ├── enumvalues_d.html │ │ │ │ │ │ │ ├── enumvalues_d.js │ │ │ │ │ │ │ ├── enumvalues_e.html │ │ │ │ │ │ │ ├── enumvalues_e.js │ │ │ │ │ │ │ ├── files_0.html │ │ │ │ │ │ │ ├── files_0.js │ │ │ │ │ │ │ ├── files_1.html │ │ │ │ │ │ │ ├── files_1.js │ │ │ │ │ │ │ ├── files_2.html │ │ │ │ │ │ │ ├── files_2.js │ │ │ │ │ │ │ ├── files_3.html │ │ │ │ │ │ │ ├── files_3.js │ │ │ │ │ │ │ ├── files_4.html │ │ │ │ │ │ │ ├── files_4.js │ │ │ │ │ │ │ ├── files_5.html │ │ │ │ │ │ │ ├── files_5.js │ │ │ │ │ │ │ ├── files_6.html │ │ │ │ │ │ │ ├── files_6.js │ │ │ │ │ │ │ ├── files_7.html │ │ │ │ │ │ │ ├── files_7.js │ │ │ │ │ │ │ ├── files_8.html │ │ │ │ │ │ │ ├── files_8.js │ │ │ │ │ │ │ ├── files_9.html │ │ │ │ │ │ │ ├── files_9.js │ │ │ │ │ │ │ ├── files_a.html │ │ │ │ │ │ │ ├── files_a.js │ │ │ │ │ │ │ ├── files_b.html │ │ │ │ │ │ │ ├── files_b.js │ │ │ │ │ │ │ ├── files_c.html │ │ │ │ │ │ │ ├── files_c.js │ │ │ │ │ │ │ ├── files_d.html │ │ │ │ │ │ │ ├── files_d.js │ │ │ │ │ │ │ ├── functions_0.html │ │ │ │ │ │ │ ├── functions_0.js │ │ │ │ │ │ │ ├── functions_1.html │ │ │ │ │ │ │ ├── functions_1.js │ │ │ │ │ │ │ ├── functions_10.html │ │ │ │ │ │ │ ├── functions_10.js │ │ │ │ │ │ │ ├── functions_11.html │ │ │ │ │ │ │ ├── functions_11.js │ │ │ │ │ │ │ ├── functions_12.html │ │ │ │ │ │ │ ├── functions_12.js │ │ │ │ │ │ │ ├── functions_13.html │ │ │ │ │ │ │ ├── functions_13.js │ │ │ │ │ │ │ ├── functions_14.html │ │ │ │ │ │ │ ├── functions_14.js │ │ │ │ │ │ │ ├── functions_15.html │ │ │ │ │ │ │ ├── functions_15.js │ │ │ │ │ │ │ ├── functions_16.html │ │ │ │ │ │ │ ├── functions_16.js │ │ │ │ │ │ │ ├── functions_2.html │ │ │ │ │ │ │ ├── functions_2.js │ │ │ │ │ │ │ ├── functions_3.html │ │ │ │ │ │ │ ├── functions_3.js │ │ │ │ │ │ │ ├── functions_4.html │ │ │ │ │ │ │ ├── functions_4.js │ │ │ │ │ │ │ ├── functions_5.html │ │ │ │ │ │ │ ├── functions_5.js │ │ │ │ │ │ │ ├── functions_6.html │ │ │ │ │ │ │ ├── functions_6.js │ │ │ │ │ │ │ ├── functions_7.html │ │ │ │ │ │ │ ├── functions_7.js │ │ │ │ │ │ │ ├── functions_8.html │ │ │ │ │ │ │ ├── functions_8.js │ │ │ │ │ │ │ ├── functions_9.html │ │ │ │ │ │ │ ├── functions_9.js │ │ │ │ │ │ │ ├── functions_a.html │ │ │ │ │ │ │ ├── functions_a.js │ │ │ │ │ │ │ ├── functions_b.html │ │ │ │ │ │ │ ├── functions_b.js │ │ │ │ │ │ │ ├── functions_c.html │ │ │ │ │ │ │ ├── functions_c.js │ │ │ │ │ │ │ ├── functions_d.html │ │ │ │ │ │ │ ├── functions_d.js │ │ │ │ │ │ │ ├── functions_e.html │ │ │ │ │ │ │ ├── functions_e.js │ │ │ │ │ │ │ ├── functions_f.html │ │ │ │ │ │ │ ├── functions_f.js │ │ │ │ │ │ │ ├── groups_0.html │ │ │ │ │ │ │ ├── groups_0.js │ │ │ │ │ │ │ ├── groups_1.html │ │ │ │ │ │ │ ├── groups_1.js │ │ │ │ │ │ │ ├── mag_sel.png │ │ │ │ │ │ │ ├── namespaces_0.html │ │ │ │ │ │ │ ├── namespaces_0.js │ │ │ │ │ │ │ ├── namespaces_1.html │ │ │ │ │ │ │ ├── namespaces_1.js │ │ │ │ │ │ │ ├── nomatches.html │ │ │ │ │ │ │ ├── pages_0.html │ │ │ │ │ │ │ ├── pages_0.js │ │ │ │ │ │ │ ├── related_0.html │ │ │ │ │ │ │ ├── related_0.js │ │ │ │ │ │ │ ├── related_1.html │ │ │ │ │ │ │ ├── related_1.js │ │ │ │ │ │ │ ├── related_2.html │ │ │ │ │ │ │ ├── related_2.js │ │ │ │ │ │ │ ├── related_3.html │ │ │ │ │ │ │ ├── related_3.js │ │ │ │ │ │ │ ├── search.css │ │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ │ ├── search_l.png │ │ │ │ │ │ │ ├── search_m.png │ │ │ │ │ │ │ ├── search_r.png │ │ │ │ │ │ │ ├── typedefs_0.html │ │ │ │ │ │ │ ├── typedefs_0.js │ │ │ │ │ │ │ ├── typedefs_1.html │ │ │ │ │ │ │ ├── typedefs_1.js │ │ │ │ │ │ │ ├── typedefs_10.html │ │ │ │ │ │ │ ├── typedefs_10.js │ │ │ │ │ │ │ ├── typedefs_11.html │ │ │ │ │ │ │ ├── typedefs_11.js │ │ │ │ │ │ │ ├── typedefs_12.html │ │ │ │ │ │ │ ├── typedefs_12.js │ │ │ │ │ │ │ ├── typedefs_13.html │ │ │ │ │ │ │ ├── typedefs_13.js │ │ │ │ │ │ │ ├── typedefs_2.html │ │ │ │ │ │ │ ├── typedefs_2.js │ │ │ │ │ │ │ ├── typedefs_3.html │ │ │ │ │ │ │ ├── typedefs_3.js │ │ │ │ │ │ │ ├── typedefs_4.html │ │ │ │ │ │ │ ├── typedefs_4.js │ │ │ │ │ │ │ ├── typedefs_5.html │ │ │ │ │ │ │ ├── typedefs_5.js │ │ │ │ │ │ │ ├── typedefs_6.html │ │ │ │ │ │ │ ├── typedefs_6.js │ │ │ │ │ │ │ ├── typedefs_7.html │ │ │ │ │ │ │ ├── typedefs_7.js │ │ │ │ │ │ │ ├── typedefs_8.html │ │ │ │ │ │ │ ├── typedefs_8.js │ │ │ │ │ │ │ ├── typedefs_9.html │ │ │ │ │ │ │ ├── typedefs_9.js │ │ │ │ │ │ │ ├── typedefs_a.html │ │ │ │ │ │ │ ├── typedefs_a.js │ │ │ │ │ │ │ ├── typedefs_b.html │ │ │ │ │ │ │ ├── typedefs_b.js │ │ │ │ │ │ │ ├── typedefs_c.html │ │ │ │ │ │ │ ├── typedefs_c.js │ │ │ │ │ │ │ ├── typedefs_d.html │ │ │ │ │ │ │ ├── typedefs_d.js │ │ │ │ │ │ │ ├── typedefs_e.html │ │ │ │ │ │ │ ├── typedefs_e.js │ │ │ │ │ │ │ ├── typedefs_f.html │ │ │ │ │ │ │ ├── typedefs_f.js │ │ │ │ │ │ │ ├── variables_0.html │ │ │ │ │ │ │ ├── variables_0.js │ │ │ │ │ │ │ ├── variables_1.html │ │ │ │ │ │ │ ├── variables_1.js │ │ │ │ │ │ │ ├── variables_10.html │ │ │ │ │ │ │ ├── variables_10.js │ │ │ │ │ │ │ ├── variables_11.html │ │ │ │ │ │ │ ├── variables_11.js │ │ │ │ │ │ │ ├── variables_12.html │ │ │ │ │ │ │ ├── variables_12.js │ │ │ │ │ │ │ ├── variables_2.html │ │ │ │ │ │ │ ├── variables_2.js │ │ │ │ │ │ │ ├── variables_3.html │ │ │ │ │ │ │ ├── variables_3.js │ │ │ │ │ │ │ ├── variables_4.html │ │ │ │ │ │ │ ├── variables_4.js │ │ │ │ │ │ │ ├── variables_5.html │ │ │ │ │ │ │ ├── variables_5.js │ │ │ │ │ │ │ ├── variables_6.html │ │ │ │ │ │ │ ├── variables_6.js │ │ │ │ │ │ │ ├── variables_7.html │ │ │ │ │ │ │ ├── variables_7.js │ │ │ │ │ │ │ ├── variables_8.html │ │ │ │ │ │ │ ├── variables_8.js │ │ │ │ │ │ │ ├── variables_9.html │ │ │ │ │ │ │ ├── variables_9.js │ │ │ │ │ │ │ ├── variables_a.html │ │ │ │ │ │ │ ├── variables_a.js │ │ │ │ │ │ │ ├── variables_b.html │ │ │ │ │ │ │ ├── variables_b.js │ │ │ │ │ │ │ ├── variables_c.html │ │ │ │ │ │ │ ├── variables_c.js │ │ │ │ │ │ │ ├── variables_d.html │ │ │ │ │ │ │ ├── variables_d.js │ │ │ │ │ │ │ ├── variables_e.html │ │ │ │ │ │ │ ├── variables_e.js │ │ │ │ │ │ │ ├── variables_f.html │ │ │ │ │ │ │ └── variables_f.js │ │ │ │ │ │ │ ├── secded__ecc_8hpp.html │ │ │ │ │ │ │ ├── secded__ecc_8hpp.js │ │ │ │ │ │ │ ├── signal__guard_8hpp.html │ │ │ │ │ │ │ ├── signal__guard_8hpp.js │ │ │ │ │ │ │ ├── small__prng_8hpp.html │ │ │ │ │ │ │ ├── small__prng_8hpp.js │ │ │ │ │ │ │ ├── span_8hpp.html │ │ │ │ │ │ │ ├── span_8hpp.js │ │ │ │ │ │ │ ├── spinlock_8hpp.html │ │ │ │ │ │ │ ├── spinlock_8hpp.js │ │ │ │ │ │ │ ├── string_8hpp.html │ │ │ │ │ │ │ ├── string_8hpp.js │ │ │ │ │ │ │ ├── string__view_8hpp.html │ │ │ │ │ │ │ ├── string__view_8hpp.js │ │ │ │ │ │ │ ├── structgsl_1_1narrowing__error.html │ │ │ │ │ │ │ ├── structgsl_1_1narrowing__error.png │ │ │ │ │ │ │ ├── structgsl_1_1owner-members.html │ │ │ │ │ │ │ ├── structgsl_1_1owner.html │ │ │ │ │ │ │ ├── structgsl_1_1owner.js │ │ │ │ │ │ │ ├── structgsl_1_1span_1_1mk-members.html │ │ │ │ │ │ │ ├── structgsl_1_1span_1_1mk.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1hash_1_1fnv1a__hash-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1hash_1_1fnv1a__hash.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1hash_1_1fnv1a__hash.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1hash_1_1passthru__hash-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1hash_1_1passthru__hash.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1hash_1_1passthru__hash.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1arithmetic__modulus-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1arithmetic__modulus.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1arithmetic__modulus.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1atomic__linear__memory__policy-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1atomic__linear__memory__policy.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1atomic__linear__memory__policy.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1atomic__linear__memory__policy_1_1const__pointer-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1atomic__linear__memory__policy_1_1const__pointer.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1atomic__linear__memory__policy_1_1const__pointer.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1atomic__linear__memory__policy_1_1const__pointer.png │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1atomic__linear__memory__policy_1_1items__count__type-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1atomic__linear__memory__policy_1_1items__count__type.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1atomic__linear__memory__policy_1_1items__count__type.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1atomic__linear__memory__policy_1_1pointer-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1atomic__linear__memory__policy_1_1pointer.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1atomic__linear__memory__policy_1_1pointer.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1atomic__linear__memory__policy_1_1pointer.png │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1atomic__linear__memory__policy_1_1value__type-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1atomic__linear__memory__policy_1_1value__type.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1atomic__linear__memory__policy_1_1value__type.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1linear__memory__policy-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1linear__memory__policy.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1linear__memory__policy.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1linear__memory__policy_1_1value__type-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1linear__memory__policy_1_1value__type.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1linear__memory__policy_1_1value__type.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1twos__power__modulus-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1twos__power__modulus.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1algorithm_1_1open__hash__index_1_1twos__power__modulus.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1aligned__allocator_1_1aligned__allocator_1_1rebind-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1aligned__allocator_1_1aligned__allocator_1_1rebind.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1aligned__allocator_1_1aligned__allocator_1_1rebind.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1aligned__allocator_1_1aligned__allocator_3_01const_01_t_00_01_alig38b3ce2fde59753f89f79b36dfe20c65.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1aligned__allocator_1_1aligned__allocator_3_01const_01_t_00_01_alig38b3ce2fde59753f89f79b36dfe20c65.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1aligned__allocator_1_1aligned__allocator_3_01const_01_t_00_01_alig6f7b3eebb37dfbc46d4d725a12cd4751.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1allocator__testing_1_1allocator-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1allocator__testing_1_1allocator.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1allocator__testing_1_1allocator.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1allocator__testing_1_1allocator.png │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1allocator__testing_1_1allocator_1_1rebind-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1allocator__testing_1_1allocator_1_1rebind.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1allocator__testing_1_1allocator_1_1rebind.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1allocator__testing_1_1config-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1allocator__testing_1_1config.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1allocator__testing_1_1config.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1lockable__ptr-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1lockable__ptr.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1lockable__ptr.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1lockable__ptr.png │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1null__spin__policy.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1null__spin__policy_1_1policy.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1null__spin__policy_1_1policy.png │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1ordered__spinlockbase-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1ordered__spinlockbase.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1ordered__spinlockbase.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1shared__spinlockbase-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1shared__spinlockbase.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1shared__spinlockbase.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1spinlockbase-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1spinlockbase.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1spinlockbase.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1spinlockbase_3_01lockable__ptr_3_01_t_01_4_01_4-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1spinlockbase_3_01lockable__ptr_3_01_t_01_4_01_4.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1spinlockbase_3_01lockable__ptr_3_01_t_01_4_01_4.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1spins__to__loop.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1spins__to__loop_1_1policy-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1spins__to__loop_1_1policy.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1spins__to__loop_1_1policy.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1spins__to__loop_1_1policy.png │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1spins__to__sleep.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1spins__to__sleep_1_1policy-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1spins__to__sleep_1_1policy.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1spins__to__sleep_1_1policy.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1spins__to__sleep_1_1policy.png │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1spins__to__yield.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1spins__to__yield_1_1policy-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1spins__to__yield_1_1policy.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1spins__to__yield_1_1policy.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1spins__to__yield_1_1policy.png │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1integers128_1_1uint128_1_1empty__type.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1integers128_1_1uint128__hasher-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1integers128_1_1uint128__hasher.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1integers128_1_1uint128__hasher.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1print__type-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1print__type.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1ringbuffer__log_1_1ringbuffer__log_1_1unique__id-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1ringbuffer__log_1_1ringbuffer__log_1_1unique__id.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1ringbuffer__log_1_1ringbuffer__log_1_1unique__id.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1ringbuffer__log_1_1simple__ringbuffer__log__policy-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1ringbuffer__log_1_1simple__ringbuffer__log__policy.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1ringbuffer__log_1_1simple__ringbuffer__log__policy.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1ringbuffer__log_1_1simple__ringbuffer__log__policy__detail_1_1value__type-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1ringbuffer__log_1_1simple__ringbuffer__log__policy__detail_1_1value__type.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1ringbuffer__log_1_1simple__ringbuffer__log__policy__detail_1_1value__type.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1type__traits_1_1is__sequence.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1type__traits_1_1is__sequence.png │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1type__traits_1_1is__sequence_3_01_t_00_01bool_01_4-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1type__traits_1_1is__sequence_3_01_t_00_01bool_01_4.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1type__traits_1_1is__sequence_3_01_t_00_01bool_01_4.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1type__traits_1_1is__sequence_3_01_t_00_01bool_01_4.png │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1type__traits_1_1is__sequence_3_01void_01_4.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1type__traits_1_1is__sequence_3_01void_01_4.png │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1unit__test_1_1requirement__failed.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1unit__test_1_1test__case-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1unit__test_1_1test__case.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1unit__test_1_1test__case.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1unit__test_1_1test__case__registration-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1unit__test_1_1test__case__registration.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1unit__test_1_1test__case__registration.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1unit__test_1_1test__suite-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1unit__test_1_1test__suite.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1unit__test_1_1test__suite.js │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1unit__test_1_1test__suite__registration-members.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1unit__test_1_1test__suite__registration.html │ │ │ │ │ │ │ ├── structquickcpplib_1_1__xxx_1_1unit__test_1_1test__suite__registration.js │ │ │ │ │ │ │ ├── sync_off.png │ │ │ │ │ │ │ ├── sync_on.png │ │ │ │ │ │ │ ├── tab_a.png │ │ │ │ │ │ │ ├── tab_b.png │ │ │ │ │ │ │ ├── tab_h.png │ │ │ │ │ │ │ ├── tab_s.png │ │ │ │ │ │ │ ├── tabs.css │ │ │ │ │ │ │ ├── thread_8hpp.html │ │ │ │ │ │ │ ├── thread_8hpp.js │ │ │ │ │ │ │ ├── todo.html │ │ │ │ │ │ │ ├── tribool_8hpp.html │ │ │ │ │ │ │ ├── tribool_8hpp.js │ │ │ │ │ │ │ ├── type__traits_8hpp.html │ │ │ │ │ │ │ ├── type__traits_8hpp.js │ │ │ │ │ │ │ ├── uint128_8hpp.html │ │ │ │ │ │ │ ├── unionquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1ordered__spinlockbase_1_1__internals-members.html │ │ │ │ │ │ │ ├── unionquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1ordered__spinlockbase_1_1__internals.html │ │ │ │ │ │ │ ├── unionquickcpplib_1_1__xxx_1_1configurable__spinlock_1_1ordered__spinlockbase_1_1__internals.js │ │ │ │ │ │ │ ├── unionquickcpplib_1_1__xxx_1_1integers128_1_1uint128-members.html │ │ │ │ │ │ │ ├── unionquickcpplib_1_1__xxx_1_1integers128_1_1uint128.html │ │ │ │ │ │ │ ├── unionquickcpplib_1_1__xxx_1_1integers128_1_1uint128.js │ │ │ │ │ │ │ ├── unit__test_8hpp.html │ │ │ │ │ │ │ └── unit__test_8hpp.js │ │ │ │ │ ├── include │ │ │ │ │ │ ├── algorithm │ │ │ │ │ │ │ ├── hash.hpp │ │ │ │ │ │ │ ├── open_hash_index.hpp │ │ │ │ │ │ │ ├── secded_ecc.hpp │ │ │ │ │ │ │ ├── small_prng.hpp │ │ │ │ │ │ │ └── string.hpp │ │ │ │ │ │ ├── aligned_allocator.hpp │ │ │ │ │ │ ├── allocator_testing.hpp │ │ │ │ │ │ ├── bitfield.hpp │ │ │ │ │ │ ├── boost │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ └── unit_test.hpp │ │ │ │ │ │ ├── byte.hpp │ │ │ │ │ │ ├── byte │ │ │ │ │ │ │ ├── .buckconfig │ │ │ │ │ │ │ ├── .gitattributes │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── BUCK │ │ │ │ │ │ │ ├── CHANGES.txt │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── appveyor.yml │ │ │ │ │ │ │ ├── cmake │ │ │ │ │ │ │ │ └── byte-lite-config.cmake.in │ │ │ │ │ │ │ ├── conanfile.py │ │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ │ ├── 01-basic.cpp │ │ │ │ │ │ │ │ └── BUCK │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ └── nonstd │ │ │ │ │ │ │ │ │ └── byte.hpp │ │ │ │ │ │ │ ├── project │ │ │ │ │ │ │ │ └── CodeBlocks │ │ │ │ │ │ │ │ │ ├── byte-lite.cbp │ │ │ │ │ │ │ │ │ └── byte-lite.workspace │ │ │ │ │ │ │ ├── script │ │ │ │ │ │ │ │ └── update-version.py │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── BUCK │ │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ │ ├── byte-main.t.cpp │ │ │ │ │ │ │ │ ├── byte-main.t.hpp │ │ │ │ │ │ │ │ ├── byte.t.cpp │ │ │ │ │ │ │ │ ├── lest_cpp03.hpp │ │ │ │ │ │ │ │ ├── t.bat │ │ │ │ │ │ │ │ ├── tc.bat │ │ │ │ │ │ │ │ ├── tg-all.bat │ │ │ │ │ │ │ │ └── tg.bat │ │ │ │ │ │ ├── config.hpp │ │ │ │ │ │ ├── console_colours.hpp │ │ │ │ │ │ ├── cpp_feature.h │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ └── preprocessor_macro_overload.h │ │ │ │ │ │ ├── execinfo_win64.h │ │ │ │ │ │ ├── gsl-lite │ │ │ │ │ │ │ ├── .gitattributes │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── CHANGES.txt │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── appveyor.yml │ │ │ │ │ │ │ ├── cmake │ │ │ │ │ │ │ │ └── gsl-lite-config.cmake.in │ │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ │ ├── 01-basic.cpp │ │ │ │ │ │ │ │ ├── 02-span.cpp │ │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ │ ├── cmake-extern │ │ │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ │ │ │ └── main.cpp │ │ │ │ │ │ │ │ └── cmake-pkg │ │ │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ │ │ │ └── use-gsl-pkg.py │ │ │ │ │ │ │ ├── gsl-lite.natvis │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ ├── gsl.h │ │ │ │ │ │ │ │ ├── gsl.hpp │ │ │ │ │ │ │ │ └── gsl │ │ │ │ │ │ │ │ │ ├── gsl │ │ │ │ │ │ │ │ │ ├── gsl-lite-vc6.hpp │ │ │ │ │ │ │ │ │ ├── gsl-lite.h │ │ │ │ │ │ │ │ │ └── gsl-lite.hpp │ │ │ │ │ │ │ ├── project │ │ │ │ │ │ │ │ ├── gsl-lite.cbp │ │ │ │ │ │ │ │ └── gsl-lite.workspace │ │ │ │ │ │ │ ├── script │ │ │ │ │ │ │ │ ├── install-gsl-pkg.py │ │ │ │ │ │ │ │ └── update-version.py │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ │ ├── assert.t.cpp │ │ │ │ │ │ │ │ ├── at.t.cpp │ │ │ │ │ │ │ │ ├── byte.t.cpp │ │ │ │ │ │ │ │ ├── gsl-lite.t.cpp │ │ │ │ │ │ │ │ ├── gsl-lite.t.hpp │ │ │ │ │ │ │ │ ├── issue.t.cpp │ │ │ │ │ │ │ │ ├── lest_cpp03.hpp │ │ │ │ │ │ │ │ ├── not_null.t.cpp │ │ │ │ │ │ │ │ ├── owner.t.cpp │ │ │ │ │ │ │ │ ├── span.t.cpp │ │ │ │ │ │ │ │ ├── string_span.t.cpp │ │ │ │ │ │ │ │ ├── t-all.bat │ │ │ │ │ │ │ │ ├── t.bat │ │ │ │ │ │ │ │ ├── tc-cl.bat │ │ │ │ │ │ │ │ ├── tc.bat │ │ │ │ │ │ │ │ ├── tg-all.bat │ │ │ │ │ │ │ │ ├── tg.bat │ │ │ │ │ │ │ │ └── util.t.cpp │ │ │ │ │ │ ├── import.h │ │ │ │ │ │ ├── memory_resource.hpp │ │ │ │ │ │ ├── offset_ptr.hpp │ │ │ │ │ │ ├── optional.hpp │ │ │ │ │ │ ├── optional │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── LICENSE_1_0.txt │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── copyright.txt │ │ │ │ │ │ │ ├── optional.hpp │ │ │ │ │ │ │ ├── test_optional.cpp │ │ │ │ │ │ │ └── test_type_traits.cpp │ │ │ │ │ │ ├── packed_backtrace.hpp │ │ │ │ │ │ ├── persistent.hpp │ │ │ │ │ │ ├── revision.hpp │ │ │ │ │ │ ├── ringbuffer_log.hpp │ │ │ │ │ │ ├── scoped_undo.hpp │ │ │ │ │ │ ├── signal_guard.hpp │ │ │ │ │ │ ├── span.hpp │ │ │ │ │ │ ├── spinlock.hpp │ │ │ │ │ │ ├── spinlock.natvis │ │ │ │ │ │ ├── string_view.hpp │ │ │ │ │ │ ├── tribool.hpp │ │ │ │ │ │ ├── type_traits.hpp │ │ │ │ │ │ ├── uint128.hpp │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ └── thread.hpp │ │ │ │ │ ├── pcpp │ │ │ │ │ │ ├── .gitattributes │ │ │ │ │ │ ├── .gitmodules │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ ├── doc │ │ │ │ │ │ │ └── pcpp.ref.html │ │ │ │ │ │ ├── pcpp │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── attic │ │ │ │ │ │ │ │ └── pcpp.py │ │ │ │ │ │ │ ├── cmd.py │ │ │ │ │ │ │ ├── ply │ │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ ├── CHANGES │ │ │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── doc │ │ │ │ │ │ │ │ │ ├── internal.html │ │ │ │ │ │ │ │ │ ├── makedoc.py │ │ │ │ │ │ │ │ │ └── ply.html │ │ │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ │ │ ├── BASIC │ │ │ │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ │ │ │ ├── basic.py │ │ │ │ │ │ │ │ │ │ ├── basiclex.py │ │ │ │ │ │ │ │ │ │ ├── basiclog.py │ │ │ │ │ │ │ │ │ │ ├── basinterp.py │ │ │ │ │ │ │ │ │ │ ├── basparse.py │ │ │ │ │ │ │ │ │ │ ├── dim.bas │ │ │ │ │ │ │ │ │ │ ├── func.bas │ │ │ │ │ │ │ │ │ │ ├── gcd.bas │ │ │ │ │ │ │ │ │ │ ├── gosub.bas │ │ │ │ │ │ │ │ │ │ ├── hello.bas │ │ │ │ │ │ │ │ │ │ ├── linear.bas │ │ │ │ │ │ │ │ │ │ ├── maxsin.bas │ │ │ │ │ │ │ │ │ │ ├── powers.bas │ │ │ │ │ │ │ │ │ │ ├── rand.bas │ │ │ │ │ │ │ │ │ │ ├── sales.bas │ │ │ │ │ │ │ │ │ │ ├── sears.bas │ │ │ │ │ │ │ │ │ │ ├── sqrt1.bas │ │ │ │ │ │ │ │ │ │ └── sqrt2.bas │ │ │ │ │ │ │ │ │ ├── GardenSnake │ │ │ │ │ │ │ │ │ │ ├── GardenSnake.py │ │ │ │ │ │ │ │ │ │ └── README │ │ │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ │ │ ├── ansic │ │ │ │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ │ │ │ ├── clex.py │ │ │ │ │ │ │ │ │ │ └── cparse.py │ │ │ │ │ │ │ │ │ ├── calc │ │ │ │ │ │ │ │ │ │ └── calc.py │ │ │ │ │ │ │ │ │ ├── calcdebug │ │ │ │ │ │ │ │ │ │ └── calc.py │ │ │ │ │ │ │ │ │ ├── calceof │ │ │ │ │ │ │ │ │ │ └── calc.py │ │ │ │ │ │ │ │ │ ├── classcalc │ │ │ │ │ │ │ │ │ │ └── calc.py │ │ │ │ │ │ │ │ │ ├── cleanup.sh │ │ │ │ │ │ │ │ │ ├── closurecalc │ │ │ │ │ │ │ │ │ │ └── calc.py │ │ │ │ │ │ │ │ │ ├── hedit │ │ │ │ │ │ │ │ │ │ └── hedit.py │ │ │ │ │ │ │ │ │ ├── newclasscalc │ │ │ │ │ │ │ │ │ │ └── calc.py │ │ │ │ │ │ │ │ │ ├── optcalc │ │ │ │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ │ │ │ └── calc.py │ │ │ │ │ │ │ │ │ ├── unicalc │ │ │ │ │ │ │ │ │ │ └── calc.py │ │ │ │ │ │ │ │ │ └── yply │ │ │ │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ │ │ │ ├── ylex.py │ │ │ │ │ │ │ │ │ │ ├── yparse.py │ │ │ │ │ │ │ │ │ │ └── yply.py │ │ │ │ │ │ │ │ ├── ply │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ ├── cpp.py │ │ │ │ │ │ │ │ │ ├── ctokens.py │ │ │ │ │ │ │ │ │ ├── lex.py │ │ │ │ │ │ │ │ │ ├── yacc.py │ │ │ │ │ │ │ │ │ └── ygen.py │ │ │ │ │ │ │ │ ├── setup.md │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ │ │ ├── calclex.py │ │ │ │ │ │ │ │ │ ├── cleanup.sh │ │ │ │ │ │ │ │ │ ├── lex_closure.py │ │ │ │ │ │ │ │ │ ├── lex_doc1.py │ │ │ │ │ │ │ │ │ ├── lex_dup1.py │ │ │ │ │ │ │ │ │ ├── lex_dup2.py │ │ │ │ │ │ │ │ │ ├── lex_dup3.py │ │ │ │ │ │ │ │ │ ├── lex_empty.py │ │ │ │ │ │ │ │ │ ├── lex_error1.py │ │ │ │ │ │ │ │ │ ├── lex_error2.py │ │ │ │ │ │ │ │ │ ├── lex_error3.py │ │ │ │ │ │ │ │ │ ├── lex_error4.py │ │ │ │ │ │ │ │ │ ├── lex_hedit.py │ │ │ │ │ │ │ │ │ ├── lex_ignore.py │ │ │ │ │ │ │ │ │ ├── lex_ignore2.py │ │ │ │ │ │ │ │ │ ├── lex_literal1.py │ │ │ │ │ │ │ │ │ ├── lex_literal2.py │ │ │ │ │ │ │ │ │ ├── lex_literal3.py │ │ │ │ │ │ │ │ │ ├── lex_many_tokens.py │ │ │ │ │ │ │ │ │ ├── lex_module.py │ │ │ │ │ │ │ │ │ ├── lex_module_import.py │ │ │ │ │ │ │ │ │ ├── lex_object.py │ │ │ │ │ │ │ │ │ ├── lex_opt_alias.py │ │ │ │ │ │ │ │ │ ├── lex_optimize.py │ │ │ │ │ │ │ │ │ ├── lex_optimize2.py │ │ │ │ │ │ │ │ │ ├── lex_optimize3.py │ │ │ │ │ │ │ │ │ ├── lex_optimize4.py │ │ │ │ │ │ │ │ │ ├── lex_re1.py │ │ │ │ │ │ │ │ │ ├── lex_re2.py │ │ │ │ │ │ │ │ │ ├── lex_re3.py │ │ │ │ │ │ │ │ │ ├── lex_rule1.py │ │ │ │ │ │ │ │ │ ├── lex_rule2.py │ │ │ │ │ │ │ │ │ ├── lex_rule3.py │ │ │ │ │ │ │ │ │ ├── lex_state1.py │ │ │ │ │ │ │ │ │ ├── lex_state2.py │ │ │ │ │ │ │ │ │ ├── lex_state3.py │ │ │ │ │ │ │ │ │ ├── lex_state4.py │ │ │ │ │ │ │ │ │ ├── lex_state5.py │ │ │ │ │ │ │ │ │ ├── lex_state_noerror.py │ │ │ │ │ │ │ │ │ ├── lex_state_norule.py │ │ │ │ │ │ │ │ │ ├── lex_state_try.py │ │ │ │ │ │ │ │ │ ├── lex_token1.py │ │ │ │ │ │ │ │ │ ├── lex_token2.py │ │ │ │ │ │ │ │ │ ├── lex_token3.py │ │ │ │ │ │ │ │ │ ├── lex_token4.py │ │ │ │ │ │ │ │ │ ├── lex_token5.py │ │ │ │ │ │ │ │ │ ├── lex_token_dup.py │ │ │ │ │ │ │ │ │ ├── pkg_test1 │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ └── parsing │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ ├── calclex.py │ │ │ │ │ │ │ │ │ │ └── calcparse.py │ │ │ │ │ │ │ │ │ ├── pkg_test2 │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ └── parsing │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ ├── calclex.py │ │ │ │ │ │ │ │ │ │ └── calcparse.py │ │ │ │ │ │ │ │ │ ├── pkg_test3 │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ ├── generated │ │ │ │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ │ │ │ └── parsing │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ ├── calclex.py │ │ │ │ │ │ │ │ │ │ └── calcparse.py │ │ │ │ │ │ │ │ │ ├── pkg_test4 │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ └── parsing │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ ├── calclex.py │ │ │ │ │ │ │ │ │ │ └── calcparse.py │ │ │ │ │ │ │ │ │ ├── pkg_test5 │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ └── parsing │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ ├── calclex.py │ │ │ │ │ │ │ │ │ │ └── calcparse.py │ │ │ │ │ │ │ │ │ ├── pkg_test6 │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ └── parsing │ │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ │ ├── calclex.py │ │ │ │ │ │ │ │ │ │ ├── calcparse.py │ │ │ │ │ │ │ │ │ │ ├── expression.py │ │ │ │ │ │ │ │ │ │ └── statement.py │ │ │ │ │ │ │ │ │ ├── testcpp.py │ │ │ │ │ │ │ │ │ ├── testlex.py │ │ │ │ │ │ │ │ │ ├── testyacc.py │ │ │ │ │ │ │ │ │ ├── yacc_badargs.py │ │ │ │ │ │ │ │ │ ├── yacc_badid.py │ │ │ │ │ │ │ │ │ ├── yacc_badprec.py │ │ │ │ │ │ │ │ │ ├── yacc_badprec2.py │ │ │ │ │ │ │ │ │ ├── yacc_badprec3.py │ │ │ │ │ │ │ │ │ ├── yacc_badrule.py │ │ │ │ │ │ │ │ │ ├── yacc_badtok.py │ │ │ │ │ │ │ │ │ ├── yacc_dup.py │ │ │ │ │ │ │ │ │ ├── yacc_error1.py │ │ │ │ │ │ │ │ │ ├── yacc_error2.py │ │ │ │ │ │ │ │ │ ├── yacc_error3.py │ │ │ │ │ │ │ │ │ ├── yacc_error4.py │ │ │ │ │ │ │ │ │ ├── yacc_error5.py │ │ │ │ │ │ │ │ │ ├── yacc_error6.py │ │ │ │ │ │ │ │ │ ├── yacc_error7.py │ │ │ │ │ │ │ │ │ ├── yacc_inf.py │ │ │ │ │ │ │ │ │ ├── yacc_literal.py │ │ │ │ │ │ │ │ │ ├── yacc_misplaced.py │ │ │ │ │ │ │ │ │ ├── yacc_missing1.py │ │ │ │ │ │ │ │ │ ├── yacc_nested.py │ │ │ │ │ │ │ │ │ ├── yacc_nodoc.py │ │ │ │ │ │ │ │ │ ├── yacc_noerror.py │ │ │ │ │ │ │ │ │ ├── yacc_nop.py │ │ │ │ │ │ │ │ │ ├── yacc_notfunc.py │ │ │ │ │ │ │ │ │ ├── yacc_notok.py │ │ │ │ │ │ │ │ │ ├── yacc_prec1.py │ │ │ │ │ │ │ │ │ ├── yacc_rr.py │ │ │ │ │ │ │ │ │ ├── yacc_rr_unused.py │ │ │ │ │ │ │ │ │ ├── yacc_simple.py │ │ │ │ │ │ │ │ │ ├── yacc_sr.py │ │ │ │ │ │ │ │ │ ├── yacc_term1.py │ │ │ │ │ │ │ │ │ ├── yacc_unicode_literals.py │ │ │ │ │ │ │ │ │ ├── yacc_unused.py │ │ │ │ │ │ │ │ │ ├── yacc_unused_rule.py │ │ │ │ │ │ │ │ │ ├── yacc_uprec.py │ │ │ │ │ │ │ │ │ └── yacc_uprec2.py │ │ │ │ │ │ │ └── preprocessor.py │ │ │ │ │ │ ├── requirements.txt │ │ │ │ │ │ ├── setup.py │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── cstd.py │ │ │ │ │ │ │ ├── doctests.py │ │ │ │ │ │ │ ├── embedded.py │ │ │ │ │ │ │ ├── issue0017-ref.i │ │ │ │ │ │ │ ├── issue0017.py │ │ │ │ │ │ │ ├── issue0017 │ │ │ │ │ │ │ ├── inc.h │ │ │ │ │ │ │ └── issue0017.c │ │ │ │ │ │ │ ├── n_std-clang.i │ │ │ │ │ │ │ ├── n_std-gcc.i │ │ │ │ │ │ │ ├── n_std.i │ │ │ │ │ │ │ ├── n_std.py │ │ │ │ │ │ │ ├── passthru.py │ │ │ │ │ │ │ └── test-c │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── defs.h │ │ │ │ │ │ │ ├── e_12_8.c │ │ │ │ │ │ │ ├── e_14.c │ │ │ │ │ │ │ ├── e_14_10.c │ │ │ │ │ │ │ ├── e_14_7.c │ │ │ │ │ │ │ ├── e_14_9.c │ │ │ │ │ │ │ ├── e_15_3.c │ │ │ │ │ │ │ ├── e_16.c │ │ │ │ │ │ │ ├── e_17.c │ │ │ │ │ │ │ ├── e_18_4.c │ │ │ │ │ │ │ ├── e_19_3.c │ │ │ │ │ │ │ ├── e_23_3.c │ │ │ │ │ │ │ ├── e_24_6.c │ │ │ │ │ │ │ ├── e_25_6.c │ │ │ │ │ │ │ ├── e_27_7.c │ │ │ │ │ │ │ ├── e_29_3.c │ │ │ │ │ │ │ ├── e_31.c │ │ │ │ │ │ │ ├── e_31_3.c │ │ │ │ │ │ │ ├── e_32_5.c │ │ │ │ │ │ │ ├── e_33_2.c │ │ │ │ │ │ │ ├── e_35_2.c │ │ │ │ │ │ │ ├── e_4_3.c │ │ │ │ │ │ │ ├── e_7_4.c │ │ │ │ │ │ │ ├── e_std.c │ │ │ │ │ │ │ ├── header.h │ │ │ │ │ │ │ ├── i_32_3.c │ │ │ │ │ │ │ ├── i_35.c │ │ │ │ │ │ │ ├── i_35_3.c │ │ │ │ │ │ │ ├── ifdef15.h │ │ │ │ │ │ │ ├── line.h │ │ │ │ │ │ │ ├── m1024.h │ │ │ │ │ │ │ ├── m_33_big5.c │ │ │ │ │ │ │ ├── m_33_eucjp.c │ │ │ │ │ │ │ ├── m_33_gb.c │ │ │ │ │ │ │ ├── m_33_jis.c │ │ │ │ │ │ │ ├── m_33_ksc.c │ │ │ │ │ │ │ ├── m_33_sjis.c │ │ │ │ │ │ │ ├── m_33_utf8.c │ │ │ │ │ │ │ ├── m_34_big5.c │ │ │ │ │ │ │ ├── m_34_eucjp.c │ │ │ │ │ │ │ ├── m_34_gb.c │ │ │ │ │ │ │ ├── m_34_jis.c │ │ │ │ │ │ │ ├── m_34_ksc.c │ │ │ │ │ │ │ ├── m_34_sjis.c │ │ │ │ │ │ │ ├── m_34_utf8.c │ │ │ │ │ │ │ ├── m_36_big5.c │ │ │ │ │ │ │ ├── m_36_jis.c │ │ │ │ │ │ │ ├── m_36_sjis.c │ │ │ │ │ │ │ ├── n_1.c │ │ │ │ │ │ │ ├── n_10.c │ │ │ │ │ │ │ ├── n_11.c │ │ │ │ │ │ │ ├── n_12.c │ │ │ │ │ │ │ ├── n_13.c │ │ │ │ │ │ │ ├── n_13_13.c │ │ │ │ │ │ │ ├── n_13_5.c │ │ │ │ │ │ │ ├── n_13_7.c │ │ │ │ │ │ │ ├── n_13_8.c │ │ │ │ │ │ │ ├── n_15.c │ │ │ │ │ │ │ ├── n_18.c │ │ │ │ │ │ │ ├── n_19.c │ │ │ │ │ │ │ ├── n_2.c │ │ │ │ │ │ │ ├── n_20.c │ │ │ │ │ │ │ ├── n_21.c │ │ │ │ │ │ │ ├── n_22.c │ │ │ │ │ │ │ ├── n_23.c │ │ │ │ │ │ │ ├── n_24.c │ │ │ │ │ │ │ ├── n_25.c │ │ │ │ │ │ │ ├── n_26.c │ │ │ │ │ │ │ ├── n_27.c │ │ │ │ │ │ │ ├── n_28.c │ │ │ │ │ │ │ ├── n_29.c │ │ │ │ │ │ │ ├── n_3.c │ │ │ │ │ │ │ ├── n_30.c │ │ │ │ │ │ │ ├── n_32.c │ │ │ │ │ │ │ ├── n_37.c │ │ │ │ │ │ │ ├── n_3_4.c │ │ │ │ │ │ │ ├── n_4.c │ │ │ │ │ │ │ ├── n_5.c │ │ │ │ │ │ │ ├── n_6.c │ │ │ │ │ │ │ ├── n_7.c │ │ │ │ │ │ │ ├── n_8.c │ │ │ │ │ │ │ ├── n_8_2.c │ │ │ │ │ │ │ ├── n_9.c │ │ │ │ │ │ │ ├── n_i_.lst │ │ │ │ │ │ │ ├── n_std.c │ │ │ │ │ │ │ ├── nest1.h │ │ │ │ │ │ │ ├── nest10.h │ │ │ │ │ │ │ ├── nest11.h │ │ │ │ │ │ │ ├── nest12.h │ │ │ │ │ │ │ ├── nest13.h │ │ │ │ │ │ │ ├── nest14.h │ │ │ │ │ │ │ ├── nest15.h │ │ │ │ │ │ │ ├── nest2.h │ │ │ │ │ │ │ ├── nest3.h │ │ │ │ │ │ │ ├── nest4.h │ │ │ │ │ │ │ ├── nest5.h │ │ │ │ │ │ │ ├── nest6.h │ │ │ │ │ │ │ ├── nest7.h │ │ │ │ │ │ │ ├── nest8.h │ │ │ │ │ │ │ ├── nest9.h │ │ │ │ │ │ │ ├── side_cpp │ │ │ │ │ │ │ ├── u_1_1.c │ │ │ │ │ │ │ ├── u_1_11.c │ │ │ │ │ │ │ ├── u_1_12.c │ │ │ │ │ │ │ ├── u_1_13.c │ │ │ │ │ │ │ ├── u_1_14.c │ │ │ │ │ │ │ ├── u_1_17.c │ │ │ │ │ │ │ ├── u_1_19.c │ │ │ │ │ │ │ ├── u_1_22.c │ │ │ │ │ │ │ ├── u_1_23.c │ │ │ │ │ │ │ ├── u_1_24.c │ │ │ │ │ │ │ ├── u_1_25.c │ │ │ │ │ │ │ ├── u_1_27.c │ │ │ │ │ │ │ ├── u_1_28.c │ │ │ │ │ │ │ ├── u_1_5.c │ │ │ │ │ │ │ ├── u_1_7_big5.c │ │ │ │ │ │ │ ├── u_1_7_eucjp.c │ │ │ │ │ │ │ ├── u_1_7_gb.c │ │ │ │ │ │ │ ├── u_1_7_jis.c │ │ │ │ │ │ │ ├── u_1_7_ksc.c │ │ │ │ │ │ │ ├── u_1_7_sjis.c │ │ │ │ │ │ │ ├── u_1_7_utf8.c │ │ │ │ │ │ │ ├── u_1_8.c │ │ │ │ │ │ │ ├── u_2.c │ │ │ │ │ │ │ ├── unbal1.h │ │ │ │ │ │ │ ├── unbal2.h │ │ │ │ │ │ │ ├── unbal3.h │ │ │ │ │ │ │ ├── unbal4.h │ │ │ │ │ │ │ ├── unbal5.h │ │ │ │ │ │ │ ├── unbal6.h │ │ │ │ │ │ │ ├── undefs.c │ │ │ │ │ │ │ ├── unspcs.c │ │ │ │ │ │ │ └── warns.c │ │ │ │ │ ├── scripts │ │ │ │ │ │ ├── GenSingleHeader.py │ │ │ │ │ │ ├── IndentCmacros.py │ │ │ │ │ │ ├── TabsToSpaces.py │ │ │ │ │ │ ├── add_junit_results_to_ctest.py │ │ │ │ │ │ ├── boost-test-to-junit.xsl │ │ │ │ │ │ ├── boostify.py │ │ │ │ │ │ ├── boostify_git_repo.py │ │ │ │ │ │ ├── gen_guard_matrix.py │ │ │ │ │ │ ├── make_deb.py │ │ │ │ │ │ ├── merge_develop_to_master_if_good.py │ │ │ │ │ │ ├── merge_junit_results.py │ │ │ │ │ │ ├── restamp_licence.py │ │ │ │ │ │ ├── run-clang-tidy.py │ │ │ │ │ │ └── send_to_wandbox.py │ │ │ │ │ ├── src │ │ │ │ │ │ ├── execinfo_win64.c │ │ │ │ │ │ └── signal_guard.cpp │ │ │ │ │ ├── test │ │ │ │ │ │ ├── cl │ │ │ │ │ │ │ ├── test_guard.i │ │ │ │ │ │ │ └── test_import.i │ │ │ │ │ │ ├── g++ │ │ │ │ │ │ │ ├── test_guard.i │ │ │ │ │ │ │ └── test_import.i │ │ │ │ │ │ ├── offset_ptr.cpp │ │ │ │ │ │ ├── open_hash_index.cpp │ │ │ │ │ │ ├── packed_backtrace.cpp │ │ │ │ │ │ ├── persistent.cpp │ │ │ │ │ │ ├── ringbuffer_log.cpp │ │ │ │ │ │ ├── secded.cpp │ │ │ │ │ │ ├── signal_guard.cpp │ │ │ │ │ │ ├── spinlock_tribool.cpp │ │ │ │ │ │ ├── test_guard.cpp │ │ │ │ │ │ ├── test_guard.hpp │ │ │ │ │ │ ├── test_guard2.hpp │ │ │ │ │ │ ├── test_import.cpp │ │ │ │ │ │ ├── test_message.cpp │ │ │ │ │ │ ├── timing.h │ │ │ │ │ │ ├── type_traits.cpp │ │ │ │ │ │ ├── uint128.cpp │ │ │ │ │ │ ├── uint128testdata1.h │ │ │ │ │ │ ├── uint128testdata2.h │ │ │ │ │ │ ├── uint128testgen.py │ │ │ │ │ │ └── withgcc.sh │ │ │ │ │ └── valgrind │ │ │ │ │ │ ├── drd.h │ │ │ │ │ │ ├── helgrind.h │ │ │ │ │ │ ├── memcheck.h │ │ │ │ │ │ └── valgrind.h │ │ │ │ │ ├── result.hpp │ │ │ │ │ ├── revision.hpp │ │ │ │ │ ├── std_outcome.hpp │ │ │ │ │ ├── std_result.hpp │ │ │ │ │ ├── success_failure.hpp │ │ │ │ │ ├── trait.hpp │ │ │ │ │ ├── try.hpp │ │ │ │ │ ├── utils.hpp │ │ │ │ │ └── version.hpp │ │ │ ├── index.html │ │ │ ├── install_dev_githooks.sh │ │ │ ├── make_reference_docs.py │ │ │ ├── single-header │ │ │ │ ├── Readme.md │ │ │ │ ├── outcome-basic.hpp │ │ │ │ ├── outcome-experimental.hpp │ │ │ │ └── outcome.hpp │ │ │ └── test │ │ │ │ ├── compile-fail │ │ │ │ ├── issue0071-fail.cpp │ │ │ │ ├── outcome-int-int-1.cpp │ │ │ │ ├── result-int-int-1.cpp │ │ │ │ └── result-int-int-2.cpp │ │ │ │ ├── constexprs │ │ │ │ ├── .boostish │ │ │ │ ├── clang.csv │ │ │ │ ├── compile_and_count.py │ │ │ │ ├── count_opcodes.py │ │ │ │ ├── gcc.csv │ │ │ │ ├── max_monad_bind.clang.S.test1.s │ │ │ │ ├── max_monad_bind.cpp │ │ │ │ ├── max_monad_bind.gcc.S.test1.s │ │ │ │ ├── max_monad_bind.msvc.S.test1.s │ │ │ │ ├── max_monad_bind.msvc_clang.S.test1.s │ │ │ │ ├── max_monad_get_error.clang.S.test1.s │ │ │ │ ├── max_monad_get_error.cpp │ │ │ │ ├── max_monad_get_error.gcc.S.test1.s │ │ │ │ ├── max_monad_get_error.msvc.S.test1.s │ │ │ │ ├── max_monad_get_error.msvc_clang.S.test1.s │ │ │ │ ├── max_monad_get_exception.clang.S.test1.s │ │ │ │ ├── max_monad_get_exception.cpp │ │ │ │ ├── max_monad_get_exception.gcc.S.test1.s │ │ │ │ ├── max_monad_get_exception.msvc.S.test1.s │ │ │ │ ├── max_monad_get_exception.msvc_clang.S.test1.s │ │ │ │ ├── max_monad_get_value.clang.S.test1.s │ │ │ │ ├── max_monad_get_value.cpp │ │ │ │ ├── max_monad_get_value.gcc.S.test1.s │ │ │ │ ├── max_monad_get_value.msvc.S.test1.s │ │ │ │ ├── max_monad_get_value.msvc_clang.S.test1.s │ │ │ │ ├── max_monad_next.clang.S.test1.s │ │ │ │ ├── max_monad_next.cpp │ │ │ │ ├── max_monad_next.gcc.S.test1.s │ │ │ │ ├── max_monad_next.msvc.S.test1.s │ │ │ │ ├── max_monad_next.msvc_clang.S.test1.s │ │ │ │ ├── max_option_get_value.clang.S.test1.s │ │ │ │ ├── max_option_get_value.cpp │ │ │ │ ├── max_option_get_value.gcc.S.test1.s │ │ │ │ ├── max_option_get_value.msvc.S.test1.s │ │ │ │ ├── max_option_get_value.msvc_clang.S.test1.s │ │ │ │ ├── max_option_get_value_bool.clang.S.test1.s │ │ │ │ ├── max_option_get_value_bool.cpp │ │ │ │ ├── max_option_get_value_bool.gcc.S.test1.s │ │ │ │ ├── max_option_get_value_bool.msvc_clang.S.test1.s │ │ │ │ ├── max_option_next.clang.S.test1.s │ │ │ │ ├── max_option_next.cpp │ │ │ │ ├── max_option_next.gcc.S.test1.s │ │ │ │ ├── max_option_next.msvc.S.test1.s │ │ │ │ ├── max_option_next.msvc_clang.S.test1.s │ │ │ │ ├── max_result_get_value.clang.S.test1.s │ │ │ │ ├── max_result_get_value.cpp │ │ │ │ ├── max_result_get_value.gcc.S.test1.s │ │ │ │ ├── max_result_get_value.msvc.S.test1.s │ │ │ │ ├── max_result_get_value.msvc_clang.S.test1.s │ │ │ │ ├── max_result_next.clang.S.test1.s │ │ │ │ ├── max_result_next.cpp │ │ │ │ ├── max_result_next.gcc.S.test1.s │ │ │ │ ├── max_result_next.msvc.S.test1.s │ │ │ │ ├── max_result_next.msvc_clang.S.test1.s │ │ │ │ ├── min_monad_bind.clang.S.test1.s │ │ │ │ ├── min_monad_bind.cpp │ │ │ │ ├── min_monad_bind.gcc.S.test1.s │ │ │ │ ├── min_monad_bind.msvc.S.test1.s │ │ │ │ ├── min_monad_bind.msvc_clang.S.test1.s │ │ │ │ ├── min_monad_construct_destruct.clang.S.test1.s │ │ │ │ ├── min_monad_construct_destruct.cpp │ │ │ │ ├── min_monad_construct_destruct.gcc.S.test1.s │ │ │ │ ├── min_monad_construct_destruct.msvc.S.test1.s │ │ │ │ ├── min_monad_construct_destruct.msvc_clang.S.test1.s │ │ │ │ ├── min_monad_construct_error_move_destruct.clang.S.test1.s │ │ │ │ ├── min_monad_construct_error_move_destruct.cpp │ │ │ │ ├── min_monad_construct_error_move_destruct.gcc.S.test1.s │ │ │ │ ├── min_monad_construct_error_move_destruct.msvc.S.test1.s │ │ │ │ ├── min_monad_construct_error_move_destruct.msvc_clang.S.test1.s │ │ │ │ ├── min_monad_construct_exception_move_destruct.clang.S.test1.s │ │ │ │ ├── min_monad_construct_exception_move_destruct.cpp │ │ │ │ ├── min_monad_construct_exception_move_destruct.gcc.S.test1.s │ │ │ │ ├── min_monad_construct_exception_move_destruct.msvc.S.test1.s │ │ │ │ ├── min_monad_construct_exception_move_destruct.msvc_clang.S.test1.s │ │ │ │ ├── min_monad_construct_value_move_destruct.clang.S.test1.s │ │ │ │ ├── min_monad_construct_value_move_destruct.cpp │ │ │ │ ├── min_monad_construct_value_move_destruct.gcc.S.test1.s │ │ │ │ ├── min_monad_construct_value_move_destruct.msvc.S.test1.s │ │ │ │ ├── min_monad_construct_value_move_destruct.msvc_clang.S.test1.s │ │ │ │ ├── min_monad_next.clang.S.test1.s │ │ │ │ ├── min_monad_next.cpp │ │ │ │ ├── min_monad_next.gcc.S.test1.s │ │ │ │ ├── min_monad_next.msvc.S.test1.s │ │ │ │ ├── min_monad_next.msvc_clang.S.test1.s │ │ │ │ ├── min_monad_then.msvc.S.test1.s │ │ │ │ ├── min_option_construct_value_move_destruct.clang.S.test1.s │ │ │ │ ├── min_option_construct_value_move_destruct.cpp │ │ │ │ ├── min_option_construct_value_move_destruct.gcc.S.test1.s │ │ │ │ ├── min_option_construct_value_move_destruct.msvc.S.test1.s │ │ │ │ ├── min_option_construct_value_move_destruct.msvc_clang.S.test1.s │ │ │ │ ├── min_option_next.clang.S.test1.s │ │ │ │ ├── min_option_next.cpp │ │ │ │ ├── min_option_next.gcc.S.test1.s │ │ │ │ ├── min_option_next.msvc.S.test1.s │ │ │ │ ├── min_option_next.msvc_clang.S.test1.s │ │ │ │ ├── min_result_construct_value_move_destruct.clang.S.test1.s │ │ │ │ ├── min_result_construct_value_move_destruct.cpp │ │ │ │ ├── min_result_construct_value_move_destruct.gcc.S.test1.s │ │ │ │ ├── min_result_construct_value_move_destruct.msvc.S.test1.s │ │ │ │ ├── min_result_construct_value_move_destruct.msvc_clang.S.test1.s │ │ │ │ ├── min_result_next.clang.S.test1.s │ │ │ │ ├── min_result_next.cpp │ │ │ │ ├── min_result_next.gcc.S.test1.s │ │ │ │ ├── min_result_next.msvc.S.test1.s │ │ │ │ ├── min_result_next.msvc_clang.S.test1.s │ │ │ │ ├── msvc.csv │ │ │ │ ├── msvc_clang.csv │ │ │ │ └── results_msvc_clang.xml │ │ │ │ ├── expected-pass.cpp │ │ │ │ ├── single-header-test.cpp │ │ │ │ └── tests │ │ │ │ ├── comparison.cpp │ │ │ │ ├── constexpr.cpp │ │ │ │ ├── containers.cpp │ │ │ │ ├── core-outcome.cpp │ │ │ │ ├── core-result.cpp │ │ │ │ ├── default-construction.cpp │ │ │ │ ├── experimental-core-outcome-status.cpp │ │ │ │ ├── experimental-core-result-status.cpp │ │ │ │ ├── experimental-p0709a.cpp │ │ │ │ ├── fileopen.cpp │ │ │ │ ├── hooks.cpp │ │ │ │ ├── issue0007.cpp │ │ │ │ ├── issue0009.cpp │ │ │ │ ├── issue0010.cpp │ │ │ │ ├── issue0012.cpp │ │ │ │ ├── issue0016.cpp │ │ │ │ ├── issue0059.cpp │ │ │ │ ├── issue0061.cpp │ │ │ │ ├── issue0064.cpp │ │ │ │ ├── issue0065.cpp │ │ │ │ ├── issue0071.cpp │ │ │ │ ├── issue0095.cpp │ │ │ │ ├── issue0115.cpp │ │ │ │ ├── issue0116.cpp │ │ │ │ ├── issue0140.cpp │ │ │ │ ├── noexcept-propagation.cpp │ │ │ │ ├── propagate.cpp │ │ │ │ ├── serialisation.cpp │ │ │ │ ├── success-failure.cpp │ │ │ │ ├── swap.cpp │ │ │ │ ├── udts.cpp │ │ │ │ └── value-or-error.cpp │ │ ├── softfloat.cmake │ │ └── softfloat │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING.txt │ │ │ ├── README.html │ │ │ ├── README.md │ │ │ ├── README.txt │ │ │ ├── doc │ │ │ ├── SoftFloat-history.html │ │ │ ├── SoftFloat-source.html │ │ │ └── SoftFloat.html │ │ │ └── source │ │ │ ├── 8086 │ │ │ ├── extF80M_isSignalingNaN.c │ │ │ ├── f128M_isSignalingNaN.c │ │ │ ├── s_commonNaNToExtF80M.c │ │ │ ├── s_commonNaNToExtF80UI.c │ │ │ ├── s_commonNaNToF128M.c │ │ │ ├── s_commonNaNToF128UI.c │ │ │ ├── s_commonNaNToF16UI.c │ │ │ ├── s_commonNaNToF32UI.c │ │ │ ├── s_commonNaNToF64UI.c │ │ │ ├── s_extF80MToCommonNaN.c │ │ │ ├── s_extF80UIToCommonNaN.c │ │ │ ├── s_f128MToCommonNaN.c │ │ │ ├── s_f128UIToCommonNaN.c │ │ │ ├── s_f16UIToCommonNaN.c │ │ │ ├── s_f32UIToCommonNaN.c │ │ │ ├── s_f64UIToCommonNaN.c │ │ │ ├── s_propagateNaNExtF80M.c │ │ │ ├── s_propagateNaNExtF80UI.c │ │ │ ├── s_propagateNaNF128M.c │ │ │ ├── s_propagateNaNF128UI.c │ │ │ ├── s_propagateNaNF16UI.c │ │ │ ├── s_propagateNaNF32UI.c │ │ │ ├── s_propagateNaNF64UI.c │ │ │ ├── softfloat_raiseFlags.c │ │ │ └── specialize.h │ │ │ ├── 8086-SSE │ │ │ ├── extF80M_isSignalingNaN.c │ │ │ ├── f128M_isSignalingNaN.c │ │ │ ├── s_commonNaNToExtF80M.c │ │ │ ├── s_commonNaNToExtF80UI.c │ │ │ ├── s_commonNaNToF128M.c │ │ │ ├── s_commonNaNToF128UI.c │ │ │ ├── s_commonNaNToF16UI.c │ │ │ ├── s_commonNaNToF32UI.c │ │ │ ├── s_commonNaNToF64UI.c │ │ │ ├── s_extF80MToCommonNaN.c │ │ │ ├── s_extF80UIToCommonNaN.c │ │ │ ├── s_f128MToCommonNaN.c │ │ │ ├── s_f128UIToCommonNaN.c │ │ │ ├── s_f16UIToCommonNaN.c │ │ │ ├── s_f32UIToCommonNaN.c │ │ │ ├── s_f64UIToCommonNaN.c │ │ │ ├── s_propagateNaNExtF80M.c │ │ │ ├── s_propagateNaNExtF80UI.c │ │ │ ├── s_propagateNaNF128M.c │ │ │ ├── s_propagateNaNF128UI.c │ │ │ ├── s_propagateNaNF16UI.c │ │ │ ├── s_propagateNaNF32UI.c │ │ │ ├── s_propagateNaNF64UI.c │ │ │ ├── softfloat_raiseFlags.c │ │ │ └── specialize.h │ │ │ ├── ARM-VFPv2-defaultNaN │ │ │ ├── extF80M_isSignalingNaN.c │ │ │ ├── f128M_isSignalingNaN.c │ │ │ ├── s_commonNaNToExtF80M.c │ │ │ ├── s_commonNaNToExtF80UI.c │ │ │ ├── s_commonNaNToF128M.c │ │ │ ├── s_commonNaNToF128UI.c │ │ │ ├── s_commonNaNToF16UI.c │ │ │ ├── s_commonNaNToF32UI.c │ │ │ ├── s_commonNaNToF64UI.c │ │ │ ├── s_extF80MToCommonNaN.c │ │ │ ├── s_extF80UIToCommonNaN.c │ │ │ ├── s_f128MToCommonNaN.c │ │ │ ├── s_f128UIToCommonNaN.c │ │ │ ├── s_f16UIToCommonNaN.c │ │ │ ├── s_f32UIToCommonNaN.c │ │ │ ├── s_f64UIToCommonNaN.c │ │ │ ├── s_propagateNaNExtF80M.c │ │ │ ├── s_propagateNaNExtF80UI.c │ │ │ ├── s_propagateNaNF128M.c │ │ │ ├── s_propagateNaNF128UI.c │ │ │ ├── s_propagateNaNF16UI.c │ │ │ ├── s_propagateNaNF32UI.c │ │ │ ├── s_propagateNaNF64UI.c │ │ │ ├── softfloat_raiseFlags.c │ │ │ └── specialize.h │ │ │ ├── ARM-VFPv2 │ │ │ ├── extF80M_isSignalingNaN.c │ │ │ ├── f128M_isSignalingNaN.c │ │ │ ├── s_commonNaNToExtF80M.c │ │ │ ├── s_commonNaNToExtF80UI.c │ │ │ ├── s_commonNaNToF128M.c │ │ │ ├── s_commonNaNToF128UI.c │ │ │ ├── s_commonNaNToF16UI.c │ │ │ ├── s_commonNaNToF32UI.c │ │ │ ├── s_commonNaNToF64UI.c │ │ │ ├── s_extF80MToCommonNaN.c │ │ │ ├── s_extF80UIToCommonNaN.c │ │ │ ├── s_f128MToCommonNaN.c │ │ │ ├── s_f128UIToCommonNaN.c │ │ │ ├── s_f16UIToCommonNaN.c │ │ │ ├── s_f32UIToCommonNaN.c │ │ │ ├── s_f64UIToCommonNaN.c │ │ │ ├── s_propagateNaNExtF80M.c │ │ │ ├── s_propagateNaNExtF80UI.c │ │ │ ├── s_propagateNaNF128M.c │ │ │ ├── s_propagateNaNF128UI.c │ │ │ ├── s_propagateNaNF16UI.c │ │ │ ├── s_propagateNaNF32UI.c │ │ │ ├── s_propagateNaNF64UI.c │ │ │ ├── softfloat_raiseFlags.c │ │ │ └── specialize.h │ │ │ ├── RISCV │ │ │ ├── extF80M_isSignalingNaN.c │ │ │ ├── f128M_isSignalingNaN.c │ │ │ ├── s_commonNaNToExtF80M.c │ │ │ ├── s_commonNaNToExtF80UI.c │ │ │ ├── s_commonNaNToF128M.c │ │ │ ├── s_commonNaNToF128UI.c │ │ │ ├── s_commonNaNToF16UI.c │ │ │ ├── s_commonNaNToF32UI.c │ │ │ ├── s_commonNaNToF64UI.c │ │ │ ├── s_extF80MToCommonNaN.c │ │ │ ├── s_extF80UIToCommonNaN.c │ │ │ ├── s_f128MToCommonNaN.c │ │ │ ├── s_f128UIToCommonNaN.c │ │ │ ├── s_f16UIToCommonNaN.c │ │ │ ├── s_f32UIToCommonNaN.c │ │ │ ├── s_f64UIToCommonNaN.c │ │ │ ├── s_propagateNaNExtF80M.c │ │ │ ├── s_propagateNaNExtF80UI.c │ │ │ ├── s_propagateNaNF128M.c │ │ │ ├── s_propagateNaNF128UI.c │ │ │ ├── s_propagateNaNF16UI.c │ │ │ ├── s_propagateNaNF32UI.c │ │ │ ├── s_propagateNaNF64UI.c │ │ │ ├── softfloat_raiseFlags.c │ │ │ └── specialize.h │ │ │ ├── extF80M_add.c │ │ │ ├── extF80M_div.c │ │ │ ├── extF80M_eq.c │ │ │ ├── extF80M_eq_signaling.c │ │ │ ├── extF80M_le.c │ │ │ ├── extF80M_le_quiet.c │ │ │ ├── extF80M_lt.c │ │ │ ├── extF80M_lt_quiet.c │ │ │ ├── extF80M_mul.c │ │ │ ├── extF80M_rem.c │ │ │ ├── extF80M_roundToInt.c │ │ │ ├── extF80M_sqrt.c │ │ │ ├── extF80M_sub.c │ │ │ ├── extF80M_to_f128M.c │ │ │ ├── extF80M_to_f16.c │ │ │ ├── extF80M_to_f32.c │ │ │ ├── extF80M_to_f64.c │ │ │ ├── extF80M_to_i32.c │ │ │ ├── extF80M_to_i32_r_minMag.c │ │ │ ├── extF80M_to_i64.c │ │ │ ├── extF80M_to_i64_r_minMag.c │ │ │ ├── extF80M_to_ui32.c │ │ │ ├── extF80M_to_ui32_r_minMag.c │ │ │ ├── extF80M_to_ui64.c │ │ │ ├── extF80M_to_ui64_r_minMag.c │ │ │ ├── extF80_add.c │ │ │ ├── extF80_div.c │ │ │ ├── extF80_eq.c │ │ │ ├── extF80_eq_signaling.c │ │ │ ├── extF80_isSignalingNaN.c │ │ │ ├── extF80_le.c │ │ │ ├── extF80_le_quiet.c │ │ │ ├── extF80_lt.c │ │ │ ├── extF80_lt_quiet.c │ │ │ ├── extF80_mul.c │ │ │ ├── extF80_rem.c │ │ │ ├── extF80_roundToInt.c │ │ │ ├── extF80_sqrt.c │ │ │ ├── extF80_sub.c │ │ │ ├── extF80_to_f128.c │ │ │ ├── extF80_to_f16.c │ │ │ ├── extF80_to_f32.c │ │ │ ├── extF80_to_f64.c │ │ │ ├── extF80_to_i32.c │ │ │ ├── extF80_to_i32_r_minMag.c │ │ │ ├── extF80_to_i64.c │ │ │ ├── extF80_to_i64_r_minMag.c │ │ │ ├── extF80_to_ui32.c │ │ │ ├── extF80_to_ui32_r_minMag.c │ │ │ ├── extF80_to_ui64.c │ │ │ ├── extF80_to_ui64_r_minMag.c │ │ │ ├── f128M_add.c │ │ │ ├── f128M_div.c │ │ │ ├── f128M_eq.c │ │ │ ├── f128M_eq_signaling.c │ │ │ ├── f128M_le.c │ │ │ ├── f128M_le_quiet.c │ │ │ ├── f128M_lt.c │ │ │ ├── f128M_lt_quiet.c │ │ │ ├── f128M_mul.c │ │ │ ├── f128M_mulAdd.c │ │ │ ├── f128M_rem.c │ │ │ ├── f128M_roundToInt.c │ │ │ ├── f128M_sqrt.c │ │ │ ├── f128M_sub.c │ │ │ ├── f128M_to_extF80M.c │ │ │ ├── f128M_to_f16.c │ │ │ ├── f128M_to_f32.c │ │ │ ├── f128M_to_f64.c │ │ │ ├── f128M_to_i32.c │ │ │ ├── f128M_to_i32_r_minMag.c │ │ │ ├── f128M_to_i64.c │ │ │ ├── f128M_to_i64_r_minMag.c │ │ │ ├── f128M_to_ui32.c │ │ │ ├── f128M_to_ui32_r_minMag.c │ │ │ ├── f128M_to_ui64.c │ │ │ ├── f128M_to_ui64_r_minMag.c │ │ │ ├── f128_add.c │ │ │ ├── f128_div.c │ │ │ ├── f128_eq.c │ │ │ ├── f128_eq_signaling.c │ │ │ ├── f128_isSignalingNaN.c │ │ │ ├── f128_isnan.c │ │ │ ├── f128_le.c │ │ │ ├── f128_le_quiet.c │ │ │ ├── f128_lt.c │ │ │ ├── f128_lt_quiet.c │ │ │ ├── f128_mul.c │ │ │ ├── f128_mulAdd.c │ │ │ ├── f128_rem.c │ │ │ ├── f128_roundToInt.c │ │ │ ├── f128_sqrt.c │ │ │ ├── f128_sub.c │ │ │ ├── f128_to_extF80.c │ │ │ ├── f128_to_f16.c │ │ │ ├── f128_to_f32.c │ │ │ ├── f128_to_f64.c │ │ │ ├── f128_to_i32.c │ │ │ ├── f128_to_i32_r_minMag.c │ │ │ ├── f128_to_i64.c │ │ │ ├── f128_to_i64_r_minMag.c │ │ │ ├── f128_to_ui32.c │ │ │ ├── f128_to_ui32_r_minMag.c │ │ │ ├── f128_to_ui64.c │ │ │ ├── f128_to_ui64_r_minMag.c │ │ │ ├── f16_add.c │ │ │ ├── f16_div.c │ │ │ ├── f16_eq.c │ │ │ ├── f16_eq_signaling.c │ │ │ ├── f16_isSignalingNaN.c │ │ │ ├── f16_le.c │ │ │ ├── f16_le_quiet.c │ │ │ ├── f16_lt.c │ │ │ ├── f16_lt_quiet.c │ │ │ ├── f16_mul.c │ │ │ ├── f16_mulAdd.c │ │ │ ├── f16_rem.c │ │ │ ├── f16_roundToInt.c │ │ │ ├── f16_sqrt.c │ │ │ ├── f16_sub.c │ │ │ ├── f16_to_extF80.c │ │ │ ├── f16_to_extF80M.c │ │ │ ├── f16_to_f128.c │ │ │ ├── f16_to_f128M.c │ │ │ ├── f16_to_f32.c │ │ │ ├── f16_to_f64.c │ │ │ ├── f16_to_i32.c │ │ │ ├── f16_to_i32_r_minMag.c │ │ │ ├── f16_to_i64.c │ │ │ ├── f16_to_i64_r_minMag.c │ │ │ ├── f16_to_ui32.c │ │ │ ├── f16_to_ui32_r_minMag.c │ │ │ ├── f16_to_ui64.c │ │ │ ├── f16_to_ui64_r_minMag.c │ │ │ ├── f32_add.c │ │ │ ├── f32_div.c │ │ │ ├── f32_eq.c │ │ │ ├── f32_eq_signaling.c │ │ │ ├── f32_isSignalingNaN.c │ │ │ ├── f32_le.c │ │ │ ├── f32_le_quiet.c │ │ │ ├── f32_lt.c │ │ │ ├── f32_lt_quiet.c │ │ │ ├── f32_mul.c │ │ │ ├── f32_mulAdd.c │ │ │ ├── f32_rem.c │ │ │ ├── f32_roundToInt.c │ │ │ ├── f32_sqrt.c │ │ │ ├── f32_sub.c │ │ │ ├── f32_to_extF80.c │ │ │ ├── f32_to_extF80M.c │ │ │ ├── f32_to_f128.c │ │ │ ├── f32_to_f128M.c │ │ │ ├── f32_to_f16.c │ │ │ ├── f32_to_f64.c │ │ │ ├── f32_to_i32.c │ │ │ ├── f32_to_i32_r_minMag.c │ │ │ ├── f32_to_i64.c │ │ │ ├── f32_to_i64_r_minMag.c │ │ │ ├── f32_to_ui32.c │ │ │ ├── f32_to_ui32_r_minMag.c │ │ │ ├── f32_to_ui64.c │ │ │ ├── f32_to_ui64_r_minMag.c │ │ │ ├── f64_add.c │ │ │ ├── f64_div.c │ │ │ ├── f64_eq.c │ │ │ ├── f64_eq_signaling.c │ │ │ ├── f64_isSignalingNaN.c │ │ │ ├── f64_le.c │ │ │ ├── f64_le_quiet.c │ │ │ ├── f64_lt.c │ │ │ ├── f64_lt_quiet.c │ │ │ ├── f64_mul.c │ │ │ ├── f64_mulAdd.c │ │ │ ├── f64_rem.c │ │ │ ├── f64_roundToInt.c │ │ │ ├── f64_sqrt.c │ │ │ ├── f64_sub.c │ │ │ ├── f64_to_extF80.c │ │ │ ├── f64_to_extF80M.c │ │ │ ├── f64_to_f128.c │ │ │ ├── f64_to_f128M.c │ │ │ ├── f64_to_f16.c │ │ │ ├── f64_to_f32.c │ │ │ ├── f64_to_i32.c │ │ │ ├── f64_to_i32_r_minMag.c │ │ │ ├── f64_to_i64.c │ │ │ ├── f64_to_i64_r_minMag.c │ │ │ ├── f64_to_ui32.c │ │ │ ├── f64_to_ui32_r_minMag.c │ │ │ ├── f64_to_ui64.c │ │ │ ├── f64_to_ui64_r_minMag.c │ │ │ ├── i32_to_extF80.c │ │ │ ├── i32_to_extF80M.c │ │ │ ├── i32_to_f128.c │ │ │ ├── i32_to_f128M.c │ │ │ ├── i32_to_f16.c │ │ │ ├── i32_to_f32.c │ │ │ ├── i32_to_f64.c │ │ │ ├── i64_to_extF80.c │ │ │ ├── i64_to_extF80M.c │ │ │ ├── i64_to_f128.c │ │ │ ├── i64_to_f128M.c │ │ │ ├── i64_to_f16.c │ │ │ ├── i64_to_f32.c │ │ │ ├── i64_to_f64.c │ │ │ ├── include │ │ │ ├── internals.h │ │ │ ├── opts-GCC.h │ │ │ ├── primitiveTypes.h │ │ │ ├── primitives.h │ │ │ ├── softfloat.h │ │ │ ├── softfloat.hpp │ │ │ └── softfloat_types.h │ │ │ ├── s_add128.c │ │ │ ├── s_add256M.c │ │ │ ├── s_addCarryM.c │ │ │ ├── s_addComplCarryM.c │ │ │ ├── s_addExtF80M.c │ │ │ ├── s_addF128M.c │ │ │ ├── s_addM.c │ │ │ ├── s_addMagsExtF80.c │ │ │ ├── s_addMagsF128.c │ │ │ ├── s_addMagsF16.c │ │ │ ├── s_addMagsF32.c │ │ │ ├── s_addMagsF64.c │ │ │ ├── s_approxRecip32_1.c │ │ │ ├── s_approxRecipSqrt32_1.c │ │ │ ├── s_approxRecipSqrt_1Ks.c │ │ │ ├── s_approxRecip_1Ks.c │ │ │ ├── s_compare128M.c │ │ │ ├── s_compare96M.c │ │ │ ├── s_compareNonnormExtF80M.c │ │ │ ├── s_countLeadingZeros16.c │ │ │ ├── s_countLeadingZeros32.c │ │ │ ├── s_countLeadingZeros64.c │ │ │ ├── s_countLeadingZeros8.c │ │ │ ├── s_eq128.c │ │ │ ├── s_invalidExtF80M.c │ │ │ ├── s_invalidF128M.c │ │ │ ├── s_isNaNF128M.c │ │ │ ├── s_le128.c │ │ │ ├── s_lt128.c │ │ │ ├── s_mul128By32.c │ │ │ ├── s_mul128MTo256M.c │ │ │ ├── s_mul128To256M.c │ │ │ ├── s_mul64ByShifted32To128.c │ │ │ ├── s_mul64To128.c │ │ │ ├── s_mul64To128M.c │ │ │ ├── s_mulAddF128.c │ │ │ ├── s_mulAddF128M.c │ │ │ ├── s_mulAddF16.c │ │ │ ├── s_mulAddF32.c │ │ │ ├── s_mulAddF64.c │ │ │ ├── s_negXM.c │ │ │ ├── s_normExtF80SigM.c │ │ │ ├── s_normRoundPackMToExtF80M.c │ │ │ ├── s_normRoundPackMToF128M.c │ │ │ ├── s_normRoundPackToExtF80.c │ │ │ ├── s_normRoundPackToF128.c │ │ │ ├── s_normRoundPackToF16.c │ │ │ ├── s_normRoundPackToF32.c │ │ │ ├── s_normRoundPackToF64.c │ │ │ ├── s_normSubnormalExtF80Sig.c │ │ │ ├── s_normSubnormalF128Sig.c │ │ │ ├── s_normSubnormalF128SigM.c │ │ │ ├── s_normSubnormalF16Sig.c │ │ │ ├── s_normSubnormalF32Sig.c │ │ │ ├── s_normSubnormalF64Sig.c │ │ │ ├── s_remStepMBy32.c │ │ │ ├── s_roundMToI64.c │ │ │ ├── s_roundMToUI64.c │ │ │ ├── s_roundPackMToExtF80M.c │ │ │ ├── s_roundPackMToF128M.c │ │ │ ├── s_roundPackToExtF80.c │ │ │ ├── s_roundPackToF128.c │ │ │ ├── s_roundPackToF16.c │ │ │ ├── s_roundPackToF32.c │ │ │ ├── s_roundPackToF64.c │ │ │ ├── s_roundToI32.c │ │ │ ├── s_roundToI64.c │ │ │ ├── s_roundToUI32.c │ │ │ ├── s_roundToUI64.c │ │ │ ├── s_shiftLeftM.c │ │ │ ├── s_shiftNormSigF128M.c │ │ │ ├── s_shiftRightJam128.c │ │ │ ├── s_shiftRightJam128Extra.c │ │ │ ├── s_shiftRightJam256M.c │ │ │ ├── s_shiftRightJam32.c │ │ │ ├── s_shiftRightJam64.c │ │ │ ├── s_shiftRightJam64Extra.c │ │ │ ├── s_shiftRightJamM.c │ │ │ ├── s_shiftRightM.c │ │ │ ├── s_shortShiftLeft128.c │ │ │ ├── s_shortShiftLeft64To96M.c │ │ │ ├── s_shortShiftLeftM.c │ │ │ ├── s_shortShiftRight128.c │ │ │ ├── s_shortShiftRightExtendM.c │ │ │ ├── s_shortShiftRightJam128.c │ │ │ ├── s_shortShiftRightJam128Extra.c │ │ │ ├── s_shortShiftRightJam64.c │ │ │ ├── s_shortShiftRightJam64Extra.c │ │ │ ├── s_shortShiftRightJamM.c │ │ │ ├── s_shortShiftRightM.c │ │ │ ├── s_sub128.c │ │ │ ├── s_sub1XM.c │ │ │ ├── s_sub256M.c │ │ │ ├── s_subM.c │ │ │ ├── s_subMagsExtF80.c │ │ │ ├── s_subMagsF128.c │ │ │ ├── s_subMagsF16.c │ │ │ ├── s_subMagsF32.c │ │ │ ├── s_subMagsF64.c │ │ │ ├── s_tryPropagateNaNExtF80M.c │ │ │ ├── s_tryPropagateNaNF128M.c │ │ │ ├── softfloat_state.c │ │ │ ├── ui32_to_extF80.c │ │ │ ├── ui32_to_extF80M.c │ │ │ ├── ui32_to_f128.c │ │ │ ├── ui32_to_f128M.c │ │ │ ├── ui32_to_f16.c │ │ │ ├── ui32_to_f32.c │ │ │ ├── ui32_to_f64.c │ │ │ ├── ui64_to_extF80.c │ │ │ ├── ui64_to_extF80M.c │ │ │ ├── ui64_to_f128.c │ │ │ ├── ui64_to_f128M.c │ │ │ ├── ui64_to_f16.c │ │ │ ├── ui64_to_f32.c │ │ │ └── ui64_to_f64.c │ ├── include │ │ └── inery │ │ │ └── vm │ │ │ ├── allocator.hpp │ │ │ ├── backend.hpp │ │ │ ├── base_visitor.hpp │ │ │ ├── bitcode_writer.hpp │ │ │ ├── config.hpp │ │ │ ├── constants.hpp │ │ │ ├── debug_visitor.hpp │ │ │ ├── disassembly_visitor.hpp │ │ │ ├── error_codes.hpp │ │ │ ├── error_codes_def.hpp │ │ │ ├── error_codes_pp.hpp │ │ │ ├── exceptions.hpp │ │ │ ├── execution_context.hpp │ │ │ ├── guarded_ptr.hpp │ │ │ ├── host_function.hpp │ │ │ ├── interpret_visitor.hpp │ │ │ ├── leb128.hpp │ │ │ ├── memory_dump.hpp │ │ │ ├── opcodes.hpp │ │ │ ├── opcodes_def.hpp │ │ │ ├── outcome.hpp │ │ │ ├── parser.hpp │ │ │ ├── sections.hpp │ │ │ ├── signals.hpp │ │ │ ├── softfloat.hpp │ │ │ ├── stack_elem.hpp │ │ │ ├── types.hpp │ │ │ ├── utils.hpp │ │ │ ├── validation.hpp │ │ │ ├── variant.hpp │ │ │ ├── vector.hpp │ │ │ ├── wasm_stack.hpp │ │ │ ├── watchdog.hpp │ │ │ └── x86_64.hpp │ ├── inery.system.wasm │ ├── modules │ │ ├── IneVMBuildUtils.cmake │ │ └── config.cmake.in │ ├── spec_restrictions │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── allocator_tests.cpp │ │ ├── execution_tests.cpp.bk │ │ ├── fuzz │ │ │ ├── CMakeLists.txt │ │ │ ├── a.out.dSYM │ │ │ │ └── Contents │ │ │ │ │ └── Info.plist │ │ │ ├── a.out.pdf │ │ │ ├── a.out.prof │ │ │ ├── afl_in │ │ │ │ ├── 80k_deep_loop_with_ret.wasm │ │ │ │ ├── 80k_deep_loop_with_void.wasm │ │ │ │ ├── asserter.wasm │ │ │ │ ├── big_allocation.wasm │ │ │ │ ├── crash_section_size_too_big.wasm │ │ │ │ ├── deep_loops_ext_report.wasm │ │ │ │ ├── dice.wasm │ │ │ │ ├── exchange.wasm │ │ │ │ ├── fuzz1.wasm │ │ │ │ ├── fuzz10.wasm │ │ │ │ ├── fuzz11.wasm │ │ │ │ ├── fuzz12.wasm │ │ │ │ ├── fuzz13.wasm │ │ │ │ ├── fuzz14.wasm │ │ │ │ ├── fuzz15.wasm │ │ │ │ ├── fuzz2.wasm │ │ │ │ ├── fuzz3.wasm │ │ │ │ ├── fuzz4.wasm │ │ │ │ ├── fuzz5.wasm │ │ │ │ ├── fuzz6.wasm │ │ │ │ ├── fuzz7.wasm │ │ │ │ ├── fuzz8.wasm │ │ │ │ ├── fuzz9.wasm │ │ │ │ ├── getcode_deepindent.wasm │ │ │ │ ├── hello.wasm │ │ │ │ ├── identity.wasm │ │ │ │ ├── indent-mismatch.wasm │ │ │ │ ├── inery.msig.wasm │ │ │ │ ├── inery.sudo.wasm │ │ │ │ ├── inery.system.wasm │ │ │ │ ├── inery.token.wasm │ │ │ │ ├── leak_no_destructor.wasm │ │ │ │ ├── leak_readExports.wasm │ │ │ │ ├── leak_readFunctions.wasm │ │ │ │ ├── leak_readFunctions_2.wasm │ │ │ │ ├── leak_readFunctions_3.wasm │ │ │ │ ├── leak_readGlobals.wasm │ │ │ │ ├── leak_readImports.wasm │ │ │ │ ├── leak_wasm_binary_cpp_L1249.wasm │ │ │ │ ├── locals-s.wasm │ │ │ │ ├── locals-yc.wasm │ │ │ │ ├── noop.wasm │ │ │ │ ├── proxy.wasm │ │ │ │ ├── readFunctions_slowness_out_of_memory.wasm │ │ │ │ └── slowwasm_localsets.wasm │ │ │ ├── afl_out │ │ │ │ ├── .cur_input │ │ │ │ ├── crashes │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── id:000000,sig:11,src:000002,op:arith8,pos:428,val:-3 │ │ │ │ │ ├── id:000001,sig:11,src:000017,op:int32,pos:10,val:be:+65535 │ │ │ │ │ └── id:000002,sig:11,src:000033,op:int32,pos:7,val:be:+65535 │ │ │ │ ├── fuzz_bitmap │ │ │ │ ├── fuzzer_stats │ │ │ │ ├── plot_data │ │ │ │ └── queue │ │ │ │ │ ├── .state │ │ │ │ │ ├── auto_extras │ │ │ │ │ │ ├── auto_000000 │ │ │ │ │ │ ├── auto_000001 │ │ │ │ │ │ ├── auto_000002 │ │ │ │ │ │ ├── auto_000003 │ │ │ │ │ │ ├── auto_000004 │ │ │ │ │ │ ├── auto_000005 │ │ │ │ │ │ ├── auto_000006 │ │ │ │ │ │ ├── auto_000007 │ │ │ │ │ │ ├── auto_000008 │ │ │ │ │ │ ├── auto_000009 │ │ │ │ │ │ ├── auto_000010 │ │ │ │ │ │ ├── auto_000011 │ │ │ │ │ │ ├── auto_000012 │ │ │ │ │ │ ├── auto_000013 │ │ │ │ │ │ ├── auto_000014 │ │ │ │ │ │ ├── auto_000015 │ │ │ │ │ │ ├── auto_000016 │ │ │ │ │ │ ├── auto_000017 │ │ │ │ │ │ ├── auto_000018 │ │ │ │ │ │ ├── auto_000019 │ │ │ │ │ │ ├── auto_000020 │ │ │ │ │ │ ├── auto_000021 │ │ │ │ │ │ ├── auto_000022 │ │ │ │ │ │ ├── auto_000023 │ │ │ │ │ │ ├── auto_000024 │ │ │ │ │ │ ├── auto_000025 │ │ │ │ │ │ ├── auto_000026 │ │ │ │ │ │ ├── auto_000027 │ │ │ │ │ │ ├── auto_000028 │ │ │ │ │ │ ├── auto_000029 │ │ │ │ │ │ ├── auto_000030 │ │ │ │ │ │ ├── auto_000031 │ │ │ │ │ │ ├── auto_000032 │ │ │ │ │ │ ├── auto_000033 │ │ │ │ │ │ ├── auto_000034 │ │ │ │ │ │ ├── auto_000035 │ │ │ │ │ │ ├── auto_000036 │ │ │ │ │ │ ├── auto_000037 │ │ │ │ │ │ ├── auto_000038 │ │ │ │ │ │ ├── auto_000039 │ │ │ │ │ │ ├── auto_000040 │ │ │ │ │ │ ├── auto_000041 │ │ │ │ │ │ ├── auto_000042 │ │ │ │ │ │ ├── auto_000043 │ │ │ │ │ │ ├── auto_000044 │ │ │ │ │ │ ├── auto_000045 │ │ │ │ │ │ ├── auto_000046 │ │ │ │ │ │ ├── auto_000047 │ │ │ │ │ │ ├── auto_000048 │ │ │ │ │ │ └── auto_000049 │ │ │ │ │ ├── deterministic_done │ │ │ │ │ │ ├── id:000001,orig:80k_deep_loop_with_void.wasm │ │ │ │ │ │ ├── id:000002,orig:asserter.wasm │ │ │ │ │ │ ├── id:000003,orig:big_allocation.wasm │ │ │ │ │ │ ├── id:000004,orig:crash_section_size_too_big.wasm │ │ │ │ │ │ ├── id:000008,orig:eosio.sudo.wasm │ │ │ │ │ │ ├── id:000009,orig:eosio.system.wasm │ │ │ │ │ │ ├── id:000012,orig:fuzz1.wasm │ │ │ │ │ │ ├── id:000013,orig:fuzz10.wasm │ │ │ │ │ │ ├── id:000015,orig:fuzz12.wasm │ │ │ │ │ │ ├── id:000016,orig:fuzz13.wasm │ │ │ │ │ │ ├── id:000017,orig:fuzz14.wasm │ │ │ │ │ │ ├── id:000019,orig:fuzz2.wasm │ │ │ │ │ │ ├── id:000021,orig:fuzz4.wasm │ │ │ │ │ │ ├── id:000023,orig:fuzz6.wasm │ │ │ │ │ │ ├── id:000024,orig:fuzz7.wasm │ │ │ │ │ │ ├── id:000026,orig:fuzz9.wasm │ │ │ │ │ │ ├── id:000029,orig:identity.wasm │ │ │ │ │ │ ├── id:000032,orig:leak_readExports.wasm │ │ │ │ │ │ ├── id:000033,orig:leak_readFunctions.wasm │ │ │ │ │ │ ├── id:000035,orig:leak_readFunctions_3.wasm │ │ │ │ │ │ ├── id:000036,orig:leak_readGlobals.wasm │ │ │ │ │ │ ├── id:000037,orig:leak_readImports.wasm │ │ │ │ │ │ ├── id:000038,orig:leak_wasm_binary_cpp_L1249.wasm │ │ │ │ │ │ ├── id:000039,orig:locals-s.wasm │ │ │ │ │ │ ├── id:000040,orig:locals-yc.wasm │ │ │ │ │ │ ├── id:000045,src:000002,op:flip1,pos:64,+cov │ │ │ │ │ │ ├── id:000046,src:000002,op:havoc,rep:128 │ │ │ │ │ │ ├── id:000047,src:000004,op:havoc,rep:16,+cov │ │ │ │ │ │ └── id:000049,src:000002,op:havoc,rep:64 │ │ │ │ │ ├── redundant_edges │ │ │ │ │ │ ├── id:000000,orig:80k_deep_loop_with_ret.wasm │ │ │ │ │ │ ├── id:000001,orig:80k_deep_loop_with_void.wasm │ │ │ │ │ │ ├── id:000003,orig:big_allocation.wasm │ │ │ │ │ │ ├── id:000004,orig:crash_section_size_too_big.wasm │ │ │ │ │ │ ├── id:000005,orig:deep_loops_ext_report.wasm │ │ │ │ │ │ ├── id:000006,orig:dice.wasm │ │ │ │ │ │ ├── id:000007,orig:eosio.msig.wasm │ │ │ │ │ │ ├── id:000008,orig:eosio.sudo.wasm │ │ │ │ │ │ ├── id:000009,orig:eosio.system.wasm │ │ │ │ │ │ ├── id:000010,orig:eosio.token.wasm │ │ │ │ │ │ ├── id:000011,orig:exchange.wasm │ │ │ │ │ │ ├── id:000012,orig:fuzz1.wasm │ │ │ │ │ │ ├── id:000013,orig:fuzz10.wasm │ │ │ │ │ │ ├── id:000014,orig:fuzz11.wasm │ │ │ │ │ │ ├── id:000015,orig:fuzz12.wasm │ │ │ │ │ │ ├── id:000018,orig:fuzz15.wasm │ │ │ │ │ │ ├── id:000019,orig:fuzz2.wasm │ │ │ │ │ │ ├── id:000020,orig:fuzz3.wasm │ │ │ │ │ │ ├── id:000021,orig:fuzz4.wasm │ │ │ │ │ │ ├── id:000022,orig:fuzz5.wasm │ │ │ │ │ │ ├── id:000023,orig:fuzz6.wasm │ │ │ │ │ │ ├── id:000024,orig:fuzz7.wasm │ │ │ │ │ │ ├── id:000025,orig:fuzz8.wasm │ │ │ │ │ │ ├── id:000026,orig:fuzz9.wasm │ │ │ │ │ │ ├── id:000027,orig:getcode_deepindent.wasm │ │ │ │ │ │ ├── id:000028,orig:hello.wasm │ │ │ │ │ │ ├── id:000029,orig:identity.wasm │ │ │ │ │ │ ├── id:000030,orig:indent-mismatch.wasm │ │ │ │ │ │ ├── id:000031,orig:leak_no_destructor.wasm │ │ │ │ │ │ ├── id:000033,orig:leak_readFunctions.wasm │ │ │ │ │ │ ├── id:000034,orig:leak_readFunctions_2.wasm │ │ │ │ │ │ ├── id:000035,orig:leak_readFunctions_3.wasm │ │ │ │ │ │ ├── id:000036,orig:leak_readGlobals.wasm │ │ │ │ │ │ ├── id:000037,orig:leak_readImports.wasm │ │ │ │ │ │ ├── id:000040,orig:locals-yc.wasm │ │ │ │ │ │ ├── id:000041,orig:noop.wasm │ │ │ │ │ │ ├── id:000042,orig:proxy.wasm │ │ │ │ │ │ ├── id:000043,orig:readFunctions_slowness_out_of_memory.wasm │ │ │ │ │ │ ├── id:000044,orig:slowwasm_localsets.wasm │ │ │ │ │ │ └── id:000046,src:000002,op:havoc,rep:128 │ │ │ │ │ └── variable_behavior │ │ │ │ │ │ ├── id:000014,orig:fuzz11.wasm │ │ │ │ │ │ ├── id:000015,orig:fuzz12.wasm │ │ │ │ │ │ ├── id:000019,orig:fuzz2.wasm │ │ │ │ │ │ ├── id:000021,orig:fuzz4.wasm │ │ │ │ │ │ └── id:000035,orig:leak_readFunctions_3.wasm │ │ │ │ │ ├── id:000000,orig:80k_deep_loop_with_ret.wasm │ │ │ │ │ ├── id:000001,orig:80k_deep_loop_with_void.wasm │ │ │ │ │ ├── id:000002,orig:asserter.wasm │ │ │ │ │ ├── id:000003,orig:big_allocation.wasm │ │ │ │ │ ├── id:000004,orig:crash_section_size_too_big.wasm │ │ │ │ │ ├── id:000005,orig:deep_loops_ext_report.wasm │ │ │ │ │ ├── id:000006,orig:dice.wasm │ │ │ │ │ ├── id:000007,orig:inery.msig.wasm │ │ │ │ │ ├── id:000008,orig:inery.sudo.wasm │ │ │ │ │ ├── id:000009,orig:inery.system.wasm │ │ │ │ │ ├── id:000010,orig:inery.token.wasm │ │ │ │ │ ├── id:000011,orig:exchange.wasm │ │ │ │ │ ├── id:000012,orig:fuzz1.wasm │ │ │ │ │ ├── id:000013,orig:fuzz10.wasm │ │ │ │ │ ├── id:000014,orig:fuzz11.wasm │ │ │ │ │ ├── id:000015,orig:fuzz12.wasm │ │ │ │ │ ├── id:000016,orig:fuzz13.wasm │ │ │ │ │ ├── id:000017,orig:fuzz14.wasm │ │ │ │ │ ├── id:000018,orig:fuzz15.wasm │ │ │ │ │ ├── id:000019,orig:fuzz2.wasm │ │ │ │ │ ├── id:000020,orig:fuzz3.wasm │ │ │ │ │ ├── id:000021,orig:fuzz4.wasm │ │ │ │ │ ├── id:000022,orig:fuzz5.wasm │ │ │ │ │ ├── id:000023,orig:fuzz6.wasm │ │ │ │ │ ├── id:000024,orig:fuzz7.wasm │ │ │ │ │ ├── id:000025,orig:fuzz8.wasm │ │ │ │ │ ├── id:000026,orig:fuzz9.wasm │ │ │ │ │ ├── id:000027,orig:getcode_deepindent.wasm │ │ │ │ │ ├── id:000028,orig:hello.wasm │ │ │ │ │ ├── id:000029,orig:identity.wasm │ │ │ │ │ ├── id:000030,orig:indent-mismatch.wasm │ │ │ │ │ ├── id:000031,orig:leak_no_destructor.wasm │ │ │ │ │ ├── id:000032,orig:leak_readExports.wasm │ │ │ │ │ ├── id:000033,orig:leak_readFunctions.wasm │ │ │ │ │ ├── id:000034,orig:leak_readFunctions_2.wasm │ │ │ │ │ ├── id:000035,orig:leak_readFunctions_3.wasm │ │ │ │ │ ├── id:000036,orig:leak_readGlobals.wasm │ │ │ │ │ ├── id:000037,orig:leak_readImports.wasm │ │ │ │ │ ├── id:000038,orig:leak_wasm_binary_cpp_L1249.wasm │ │ │ │ │ ├── id:000039,orig:locals-s.wasm │ │ │ │ │ ├── id:000040,orig:locals-yc.wasm │ │ │ │ │ ├── id:000041,orig:noop.wasm │ │ │ │ │ ├── id:000042,orig:proxy.wasm │ │ │ │ │ ├── id:000043,orig:readFunctions_slowness_out_of_memory.wasm │ │ │ │ │ ├── id:000044,orig:slowwasm_localsets.wasm │ │ │ │ │ ├── id:000045,src:000002,op:flip1,pos:64,+cov │ │ │ │ │ ├── id:000046,src:000002,op:havoc,rep:128 │ │ │ │ │ ├── id:000047,src:000004,op:havoc,rep:16,+cov │ │ │ │ │ ├── id:000048,src:000002,op:havoc,rep:64 │ │ │ │ │ └── id:000049,src:000002,op:havoc,rep:64 │ │ │ ├── build │ │ │ ├── corpus │ │ │ │ ├── 00000001e0b38bb0005bf380f1b00000.00000008.honggfuzz.cov │ │ │ │ ├── 0000834706150000005ab681b5f50000.0000000e.honggfuzz.cov │ │ │ │ ├── 00028826e79c4b0cfce9c3bb2b567d65.000000b5.honggfuzz.cov │ │ │ │ ├── 001f0af38f62dfa43e1deb12b0c2515a.00000019.honggfuzz.cov │ │ │ │ ├── 001fc930bed09b223e1d29560b1a2299.00000019.honggfuzz.cov │ │ │ │ ├── 0062cd17f97ac1ff185c46ec7370bfe7.000006a4.honggfuzz.cov │ │ │ │ ├── 006eedcf0ada09cc3349c1b0b8c9875f.0000019a.honggfuzz.cov │ │ │ │ ├── 008932bd7644aaca590ffd12b3d4f94d.00000151.honggfuzz.cov │ │ │ │ ├── 00afb6136f2aba55ddb146388dc6dfb8.000000c4.honggfuzz.cov │ │ │ │ ├── 00e7f1c6b65a45de2734e3eaae294fe1.000000eb.honggfuzz.cov │ │ │ │ ├── 012206634dee84db59db5c2b0ab8c4f7.00000121.honggfuzz.cov │ │ │ │ ├── 01278bf7105dc72b2da8fc9f2055f05a.0000007a.honggfuzz.cov │ │ │ │ ├── 019f1ba6a2dfca2fb379bb6e685b20bf.000002c0.honggfuzz.cov │ │ │ │ ├── 01b000000000000001b0000000000000.00000001.honggfuzz.cov │ │ │ │ ├── 01e0b38bb0000000005bf380f1b00000.00000005.honggfuzz.cov │ │ │ │ ├── 01f2a7e559d37410722001b0eac006df.00000015.honggfuzz.cov │ │ │ │ ├── 020d8d57b4b62be528d9bb56e56cf727.000003c9.honggfuzz.cov │ │ │ │ ├── 023415c346b0d270040ea3c4306d5acf.0000000f.honggfuzz.cov │ │ │ │ ├── 023415c34700d270040ea281306d5acf.0000000f.honggfuzz.cov │ │ │ │ ├── 023415c36e83227004cfd1aa306d5acf.0000000f.honggfuzz.cov │ │ │ │ ├── 023415c3cc90d270040e7512306d5acf.0000000f.honggfuzz.cov │ │ │ │ ├── 028375c346b0d270040ea3c4309c10cf.0000000f.honggfuzz.cov │ │ │ │ ├── 02966b7767e0c47373234bc4ba44bf93.0000043a.honggfuzz.cov │ │ │ │ ├── 02d00132f460d270040ea00af1b003cf.0000000f.honggfuzz.cov │ │ │ │ ├── 02e4e5bf2fc1bfa448e9eecc3ea0e50b.000001ed.honggfuzz.cov │ │ │ │ ├── 02ee209996e4cec5634f6e9b998ef22b.000002c5.honggfuzz.cov │ │ │ │ ├── 03b8008346b0d270040ea3c4b557828a.0000000f.honggfuzz.cov │ │ │ │ ├── 03ba99af131df9e497d6688ecd684b5e.000001ce.honggfuzz.cov │ │ │ │ ├── 047af4cbba33c76569f331e38dfcd59e.000007c0.honggfuzz.cov │ │ │ │ ├── 0579dd17f51ee733173c39ab4486dfa4.0000011b.honggfuzz.cov │ │ │ │ ├── 05bd548581a77f4721050b71a2ec4378.000000af.honggfuzz.cov │ │ │ │ ├── 05d770490a9577623fad3a7a50c50fc5.00000800.honggfuzz.cov │ │ │ │ ├── 05d97b9cfe942a63716f449666580e8f.000002c2.honggfuzz.cov │ │ │ │ ├── 061756df645a2b4ade3750b41e367054.00000473.honggfuzz.cov │ │ │ │ ├── 06202e95acfbc21558afee3976e551d0.00000219.honggfuzz.cov │ │ │ │ ├── 062ce9d240b70e29da8a1ecc4583e383.000002aa.honggfuzz.cov │ │ │ │ ├── 0660182b2f758086aeca4d00d595bc68.0000058b.honggfuzz.cov │ │ │ │ ├── 0664bf0e926e04f1dfa3727d737c3e27.00000242.honggfuzz.cov │ │ │ │ ├── 067c47e62e72b86f420f01cb518f1b5c.000003db.honggfuzz.cov │ │ │ │ ├── 06833199da51533835839381c3e6eb37.0000026c.honggfuzz.cov │ │ │ │ ├── 06a78fc686164a9249673ebf8e6d6dff.0000043b.honggfuzz.cov │ │ │ │ ├── 06c6baf11cad4e345fb50261b2c172fc.0000002c.honggfuzz.cov │ │ │ │ ├── 07a67d8bc20218bb6aa595f7c36a81cc.00000290.honggfuzz.cov │ │ │ │ ├── 07a9cd0238898b31ba5b32c387fca7c3.00000101.honggfuzz.cov │ │ │ │ ├── 07b2ab907a97b3ce479339cb9f220cf6.00000121.honggfuzz.cov │ │ │ │ ├── 07d86d3c7a97b3ce2b9339f6df220ce7.00000121.honggfuzz.cov │ │ │ │ ├── 07d9ee09ccd8464cf5165ff4fc65cb2d.0000004f.honggfuzz.cov │ │ │ │ ├── 082e8045875b8a41dbbaff0bbcccf38e.0000002a.honggfuzz.cov │ │ │ │ ├── 0838c1d2bd128e8f61f8329738009a75.000002e1.honggfuzz.cov │ │ │ │ ├── 086ff9463e52cdde2fb46db1a8f2cfe1.000000eb.honggfuzz.cov │ │ │ │ ├── 0882b3303fe778fa2954f6c5797fcc5c.00000480.honggfuzz.cov │ │ │ │ ├── 08b1b683fdf377a9e747579575e0bbc2.0000003f.honggfuzz.cov │ │ │ │ ├── 091a9bfde379ff913fa474d8853abff6.0000014a.honggfuzz.cov │ │ │ │ ├── 094620bcd712bfd1599dadb835847acd.00000060.honggfuzz.cov │ │ │ │ ├── 094dc1b13a600413a6473dea3185f0b2.000005d8.honggfuzz.cov │ │ │ │ ├── 09d479fee47a85ee85a765209c0e2092.0000001e.honggfuzz.cov │ │ │ │ ├── 0a00b42c7495768e9e76ed9695b31cc7.00000024.honggfuzz.cov │ │ │ │ ├── 0a1fbeffbc53aeed9f6b7fc753f08544.000001a9.honggfuzz.cov │ │ │ │ ├── 0a5db584c6e2ddea1481c2adc31cacdd.000002aa.honggfuzz.cov │ │ │ │ ├── 0a6ae625db11eebe5586ba0c8f1f761a.000001d2.honggfuzz.cov │ │ │ │ ├── 0a7d23144837ec31efa3dbf2e429cf3e.0000011b.honggfuzz.cov │ │ │ │ ├── 0abdcb69e80868045674ada2c0b56427.000002c0.honggfuzz.cov │ │ │ │ ├── 0ae06d00980cc1f1feb1804253449b03.000006a4.honggfuzz.cov │ │ │ │ ├── 0b1580ce674d2496a70edf926bb65140.000001e2.honggfuzz.cov │ │ │ │ ├── 0bdd68f9d5241212022ff71d44defff6.000003c9.honggfuzz.cov │ │ │ │ ├── 0be1f15a9eabc60ec7741991cca81bd0.0000063e.honggfuzz.cov │ │ │ │ ├── 0c3ebce169c870531749195bcb3dc5bd.0000001b.honggfuzz.cov │ │ │ │ ├── 0c3f244169c870539920242bcb3dc5bd.0000001b.honggfuzz.cov │ │ │ │ ├── 0ca6eed79510939997bf7f9c91857892.00000417.honggfuzz.cov │ │ │ │ ├── 0cbc324728066fe9c46b6cca0790d3f3.000000cf.honggfuzz.cov │ │ │ │ ├── 0cd6e0d049c87053aa9dbedecb3dc50a.0000001b.honggfuzz.cov │ │ │ │ ├── 0d27a7e3107489ffde01d42409ca0343.00000025.honggfuzz.cov │ │ │ │ ├── 0d6630ab84741fbe8c7723d106894785.00000101.honggfuzz.cov │ │ │ │ ├── 0d684cbf9cbb3bc38e9b3021d5131a4c.00000800.honggfuzz.cov │ │ │ │ ├── 0dd7d4f04bf57b19095ef41b7d820ad1.0000012d.honggfuzz.cov │ │ │ │ ├── 0e0263c122e6a52480ed5c28f3d5377e.00000417.honggfuzz.cov │ │ │ │ ├── 0e04fd87f8c99a7758447668f3eba165.000000eb.honggfuzz.cov │ │ │ │ ├── 0e0508f688f9d01a3c40337788e184a6.00000052.honggfuzz.cov │ │ │ │ ├── 0e1a76b29e39e9bd978f0f92539a5645.00000651.honggfuzz.cov │ │ │ │ ├── 0e4b98a80b1a8ae33332b063cc650ca8.000001a9.honggfuzz.cov │ │ │ │ ├── 0e585c68426abb048895ec476de80ab6.00000243.honggfuzz.cov │ │ │ │ ├── 0e65557bd939ec4c97dd33d8a88a3a04.000006d1.honggfuzz.cov │ │ │ │ ├── 0e800518aa5fb4279605e2a9b0b97d62.000003c9.honggfuzz.cov │ │ │ │ ├── 0ea9600d5dfa0ebb5879b9dd6115d125.0000003f.honggfuzz.cov │ │ │ │ ├── 0f6f2cf6510067704b0dc13b88688552.00000417.honggfuzz.cov │ │ │ │ ├── 0fe89d75812037793ed2fad7f4aee346.00000055.honggfuzz.cov │ │ │ │ ├── 1011d3f80170d6b2dedcfa8d5fd1e17a.00000306.honggfuzz.cov │ │ │ │ ├── 119aa47d4bb88c2511de5b9e1b54f0db.000002c5.honggfuzz.cov │ │ │ │ ├── 11c7a733682686959f283970c8dcd2c1.00000218.honggfuzz.cov │ │ │ │ ├── 11ecd4072dca79809beec73cfa441637.00000040.honggfuzz.cov │ │ │ │ ├── 11efd3e74814e28ff1c9346f56d633b5.00000323.honggfuzz.cov │ │ │ │ ├── 11ff55e711a41da49ddc13c2e46ee597.00000669.honggfuzz.cov │ │ │ │ ├── 12481a4d540b4801cce51c02ef4b74af.000001e2.honggfuzz.cov │ │ │ │ ├── 127bc818c16d92b4272910170910c4b7.000002b2.honggfuzz.cov │ │ │ │ ├── 12847ffce13bbcf3c17d05aa4ed5f413.00000141.honggfuzz.cov │ │ │ │ ├── 12a17c09e69a7619852b02ccbc561977.00000231.honggfuzz.cov │ │ │ │ ├── 12bff24766ce348ac5abf4ed4ecaf303.00000669.honggfuzz.cov │ │ │ │ ├── 12c6419731028c003067867464f2780a.000006ec.honggfuzz.cov │ │ │ │ ├── 1313e044775d10ce0e3747cb7b6035ae.00000025.honggfuzz.cov │ │ │ │ ├── 13292b54a5bc15d8d878147e2d39d34a.000002e1.honggfuzz.cov │ │ │ │ ├── 13455b9cf1f3d54f9569be24b9ef8f38.000002c2.honggfuzz.cov │ │ │ │ ├── 1361aa0cf420d57e205867456f115e21.000002b4.honggfuzz.cov │ │ │ │ ├── 139058d32820d57ec495b665381e6de1.000002b4.honggfuzz.cov │ │ │ │ ├── 1390ce84e3bfc515dd4b9bca9c93995f.000002b4.honggfuzz.cov │ │ │ │ ├── 139df4faacc1bee0fbad478d9edde3cc.00000028.honggfuzz.cov │ │ │ │ ├── 13cd6c625696ab3ade9620e7941fdb80.000001e9.honggfuzz.cov │ │ │ │ ├── 1417dab26ce33b926fdaca0c22867853.000006c8.honggfuzz.cov │ │ │ │ ├── 141a2f3ea9f03ea8f9856b02e83b01df.000001e2.honggfuzz.cov │ │ │ │ ├── 14288752cb2bf3567feae0042125335d.0000047d.honggfuzz.cov │ │ │ │ ├── 1430750c4161abaa9eaa0c2ccbc63dce.000000f6.honggfuzz.cov │ │ │ │ ├── 14a0759cd1613baaf1c50cd389cd1231.000000f6.honggfuzz.cov │ │ │ │ ├── 14a0759cd3b13baa51c595f71b857f87.000000f6.honggfuzz.cov │ │ │ │ ├── 14a4618cd7a52baa22d295f019d57dd5.000000f6.honggfuzz.cov │ │ │ │ ├── 150bd03f9b1747e70e7de766939ba13a.0000009f.honggfuzz.cov │ │ │ │ ├── 1538437196a76e22772a0387be48b8d8.00000038.honggfuzz.cov │ │ │ │ ├── 153843b255a76e22772a038771bb772b.00000038.honggfuzz.cov │ │ │ │ ├── 15703abe8c2ec0d52e15ff89d61e06e9.000002c2.honggfuzz.cov │ │ │ │ ├── 157d78b7adae5c16acfdc586cac18fe0.000001cc.honggfuzz.cov │ │ │ │ ├── 1582cd17ec9ace1f11ba35155363d57b.000006a4.honggfuzz.cov │ │ │ │ ├── 15860d7219e851d900a1128eda5a93e5.000006b5.honggfuzz.cov │ │ │ │ ├── 15f000e061b04862831107a8974f375b.000006fb.honggfuzz.cov │ │ │ │ ├── 15fac0efae046e22ba4da348c96aaa2c.00000038.honggfuzz.cov │ │ │ │ ├── 15fac5effe046e22a14da348c96efb69.00000038.honggfuzz.cov │ │ │ │ ├── 15fb80b296646e22ca21d34882744bd8.00000038.honggfuzz.cov │ │ │ │ ├── 16140ba33abc77e2f6fdf6cc798681e2.000002ad.honggfuzz.cov │ │ │ │ ├── 161e83982a48eb4bb53448d1e34a25d5.000002ad.honggfuzz.cov │ │ │ │ ├── 164fb1f3c7f165346fcba8bc4533f1ea.00000242.honggfuzz.cov │ │ │ │ ├── 165206fa20e535349d2549041168f697.00000242.honggfuzz.cov │ │ │ │ ├── 1655a5fa20e8a5342ed3cbed4b140649.00000242.honggfuzz.cov │ │ │ │ ├── 16ce307daff6df2065714fa25830b1f9.00000101.honggfuzz.cov │ │ │ │ ├── 1717ad82bdd9a0e934bc609514286617.00000275.honggfuzz.cov │ │ │ │ ├── 1743a23177f1cae146b6fe099b9bb2fa.000005d8.honggfuzz.cov │ │ │ │ ├── 174bc7f122a0342677763285c0607148.00000052.honggfuzz.cov │ │ │ │ ├── 179b27af91cf234e47a1c89b998ef228.000002c5.honggfuzz.cov │ │ │ │ ├── 17e25972aa77c5bbb2e4e8ad7ae95185.000002c5.honggfuzz.cov │ │ │ │ ├── 17e7e5ce844bd1f40ac4555e2e7b0db5.00000114.honggfuzz.cov │ │ │ │ ├── 1833c8bc46d9ab5ca000d75726dbd25e.000000a8.honggfuzz.cov │ │ │ │ ├── 1845c079eab2084750343350051dd675.000002c2.honggfuzz.cov │ │ │ │ ├── 1845d6050327e298a35d67f2aced8a4a.00000076.honggfuzz.cov │ │ │ │ ├── 18a1f4e5dd2e72177e3badda9edf0983.000006a4.honggfuzz.cov │ │ │ │ ├── 18d1f1f23bfd6c80bba154726bd02188.00000077.honggfuzz.cov │ │ │ │ ├── 18ec31ffb0cae4629e6aac4b8f177564.00000548.honggfuzz.cov │ │ │ │ ├── 18edc67ff1d19f3777e454598b125198.00000071.honggfuzz.cov │ │ │ │ ├── 1904c5bd79b787c0f9844cb57daa1e77.0000003a.honggfuzz.cov │ │ │ │ ├── 190716064f9fe9e3656e3922e9a5a520.00000800.honggfuzz.cov │ │ │ │ ├── 194148c286fca9ad08fc5e5f8dc7e6c8.000002c5.honggfuzz.cov │ │ │ │ ├── 194a5ba078668b12d726f4a8efcd36aa.00000143.honggfuzz.cov │ │ │ │ ├── 196522459e9521d1662866f4163b4dc0.000002ad.honggfuzz.cov │ │ │ │ ├── 198c5fbdaa66099e5c9ec56dbd7891c2.00000074.honggfuzz.cov │ │ │ │ ├── 198c64d3aa66099e5cab9358de2ea494.00000074.honggfuzz.cov │ │ │ │ ├── 19a08fd14b22bdd3684c7afad12d9643.00000800.honggfuzz.cov │ │ │ │ ├── 1a3c26a59f02ed93785acdefbc2b8b3e.0000029a.honggfuzz.cov │ │ │ │ ├── 1aa6486ac1fcad84564cb03a6bcd0032.00000025.honggfuzz.cov │ │ │ │ ├── 1ac58d9825636402e71b74581b14f924.000000db.honggfuzz.cov │ │ │ │ ├── 1afc5f31345abb6b6a8eb70ba8c122cb.00000081.honggfuzz.cov │ │ │ │ ├── 1b0c14f0cd29dcfcbef068d53c98e05c.00000087.honggfuzz.cov │ │ │ │ ├── 1b29b205aa8b87a3ed8c7b7d0ef19345.0000007a.honggfuzz.cov │ │ │ │ ├── 1b4b7c8a0b288630dfc3cd570afbfa25.00000101.honggfuzz.cov │ │ │ │ ├── 1b4b7cd0548d26306c02114acb3e067a.00000101.honggfuzz.cov │ │ │ │ ├── 1b697417c59ca6e9d8b01b537edea2a8.000003f7.honggfuzz.cov │ │ │ │ ├── 1b7a4d733bbb8d60a74baf3180613f9b.00000080.honggfuzz.cov │ │ │ │ ├── 1b818419bc3a2ea54518d30848601d74.000000de.honggfuzz.cov │ │ │ │ ├── 1b8be900d0141ac2f2efc5d352ef9374.00000800.honggfuzz.cov │ │ │ │ ├── 1bd8692e3700e5650806050971b31543.000006a4.honggfuzz.cov │ │ │ │ ├── 1be52983cf93af162bbd0e58ca48b38e.0000072f.honggfuzz.cov │ │ │ │ ├── 1be6961ecba427b78c85f78992db0b6d.00000669.honggfuzz.cov │ │ │ │ ├── 1be92efad8dc95698c92b2f57543f4ee.000002c2.honggfuzz.cov │ │ │ │ ├── 1c105e7d01db7bfcd679ac9ea80390e6.00000030.honggfuzz.cov │ │ │ │ ├── 1c5b9b29e496685cd437c40b41d18587.000005d8.honggfuzz.cov │ │ │ │ ├── 1c61fd45b84e48eb298327a7790fe3d5.0000007a.honggfuzz.cov │ │ │ │ ├── 1c6798232ae9dd605756976094499f5f.000005d8.honggfuzz.cov │ │ │ │ ├── 1cacdeb607c56937336d1c8415ec5807.000001cc.honggfuzz.cov │ │ │ │ ├── 1dfdc483107489ffde01d7722c706343.00000025.honggfuzz.cov │ │ │ │ ├── 1dfdcd13107603ff2e23de7bbce06340.00000025.honggfuzz.cov │ │ │ │ ├── 1e0997296b155a1b575dd74a17b825a1.000000c4.honggfuzz.cov │ │ │ │ ├── 1e354e085e703a4e8fdbe5a1efa12e24.000003c9.honggfuzz.cov │ │ │ │ ├── 1e354fce8e83a560d79aa9daeb6635ee.000003c9.honggfuzz.cov │ │ │ │ ├── 1e4d34dba1e3e6e95ff8d89ec4342a41.00000047.honggfuzz.cov │ │ │ │ ├── 1ea57095b4d8951b3d6ef23d09d79ee2.000002c2.honggfuzz.cov │ │ │ │ ├── 1ea5b2e7041ae7ab62229c55b9f43593.000002c2.honggfuzz.cov │ │ │ │ ├── 1f116ef725efdcfc77f8a851767b90f8.00000046.honggfuzz.cov │ │ │ │ ├── 1fce596ce49c31282e96afb1cbb18598.00000669.honggfuzz.cov │ │ │ │ ├── 202d8a4021838a1438c2588c78b94e58.000001e2.honggfuzz.cov │ │ │ │ ├── 203be7b079b6724cffcc06d9191d0c67.000000c0.honggfuzz.cov │ │ │ │ ├── 203be7c009b6023cffcc71de4e1f2c62.000000c0.honggfuzz.cov │ │ │ │ ├── 206c0f25694f178d49af9cf38dada992.00000089.honggfuzz.cov │ │ │ │ ├── 2070390493eb9fc1a9599ce968200b6d.00000028.honggfuzz.cov │ │ │ │ ├── 2085ea91fee60c33f8f1880587f4bec3.0000055f.honggfuzz.cov │ │ │ │ ├── 2091e48fa0f02c46faa7b10e43727818.0000011b.honggfuzz.cov │ │ │ │ ├── 2096631e892c6872fbefcf0b5ae15cf6.00000045.honggfuzz.cov │ │ │ │ ├── 20d64f15dea5e56ed1deee4d28b7a71f.0000007a.honggfuzz.cov │ │ │ │ ├── 20d667441dbaea6e91e56d6c735eb6c9.0000007a.honggfuzz.cov │ │ │ │ ├── 20d66744ed443e1e14683470e2040892.0000007a.honggfuzz.cov │ │ │ │ ├── 20d66744ed45e56e017c6465e3aeb939.0000007a.honggfuzz.cov │ │ │ │ ├── 20d66745adbaea6e80e56d6c725eb60e.0000007a.honggfuzz.cov │ │ │ │ ├── 2115cf51bf051cff5cf6c252c2942471.0000001e.honggfuzz.cov │ │ │ │ ├── 2147ba004357dca788e2bd8ec7dd7ff2.00000020.honggfuzz.cov │ │ │ │ ├── 218f6f772cd891d058949b455fa9452b.000005d8.honggfuzz.cov │ │ │ │ ├── 219de10a02182da3975270ed253f1bda.000000eb.honggfuzz.cov │ │ │ │ ├── 21a0ae2e4fb4c670a8915e1143ac8ecc.0000011b.honggfuzz.cov │ │ │ │ ├── 21ebb4e562dd616c468999c45e500203.00000023.honggfuzz.cov │ │ │ │ ├── 2257122b4939b7bf37d6d4f65e3d60f9.00000800.honggfuzz.cov │ │ │ │ ├── 2296836331507ae07ec05dbbcfd37239.000002c5.honggfuzz.cov │ │ │ │ ├── 22bb76ae253efce3e15b16add66a3594.00000319.honggfuzz.cov │ │ │ │ ├── 22fa96ead6a66e13d0e5dfab4ff6d55c.0000011f.honggfuzz.cov │ │ │ │ ├── 2349d1783ddfd057e4bcc7baeea565c2.0000007e.honggfuzz.cov │ │ │ │ ├── 23841b99e136bcfa1f0e6666be5489a2.00000417.honggfuzz.cov │ │ │ │ ├── 23841b99e1370cfa1f0e7d177e3f92d2.00000417.honggfuzz.cov │ │ │ │ ├── 238f76a47a98cabc60a1a6c6bbd78b67.0000003a.honggfuzz.cov │ │ │ │ ├── 23a2e974c5647a350d4fb5ba87fc618b.00000042.honggfuzz.cov │ │ │ │ ├── 23aaffda51f90ddfca9cdf1d11c2282a.00000800.honggfuzz.cov │ │ │ │ ├── 242118d481bbc1b886de80c81e9f2f8d.0000019f.honggfuzz.cov │ │ │ │ ├── 245a1cd7ed5ed239f2ed2d50ff923888.000002a2.honggfuzz.cov │ │ │ │ ├── 255d6ccc3116f31b41aabaef5dd52b26.000003c9.honggfuzz.cov │ │ │ │ ├── 255dd532c3f6f31bcacae7336adfa046.000003c9.honggfuzz.cov │ │ │ │ ├── 257a8e65e706f31b6ce914631f7aa640.000003c9.honggfuzz.cov │ │ │ │ ├── 25e27df859542129cdedc9f54d4cfe24.000000af.honggfuzz.cov │ │ │ │ ├── 26334373a78c74867c6dbd62b2443acd.0000001e.honggfuzz.cov │ │ │ │ ├── 26334722a78b0486793de86404f43acd.0000001e.honggfuzz.cov │ │ │ │ ├── 26334e6cbf8b048679b56ca3300b3acd.0000001e.honggfuzz.cov │ │ │ │ ├── 2633556cbf8b048679b56cb2311b3acd.0000001e.honggfuzz.cov │ │ │ │ ├── 2688a00f2636f5dbaa93ec0346730a90.000003c9.honggfuzz.cov │ │ │ │ ├── 26b933a5f05443d76297fcd02508898d.000002c5.honggfuzz.cov │ │ │ │ ├── 26c7f67d2920f1267c76b31fcb73d126.000000a1.honggfuzz.cov │ │ │ │ ├── 26d8550fc1fa45b4c76f664d2664e9f0.000002c2.honggfuzz.cov │ │ │ │ ├── 273dab3bc6805cae8fbab408e8ae81fc.000002aa.honggfuzz.cov │ │ │ │ ├── 2771eae9d885242b8ab40cfe25ca03a9.000007e9.honggfuzz.cov │ │ │ │ ├── 2797bc536031a8ae2d058887052ed4b7.000002d6.honggfuzz.cov │ │ │ │ ├── 27c0f1ccb0a214850f8e0ba96a535234.00000057.honggfuzz.cov │ │ │ │ ├── 280ef2c158f3ed62ffcc70ce5f1f2c62.000000c0.honggfuzz.cov │ │ │ │ ├── 28181460ce537ac9c7459c6e225e25ef.00000669.honggfuzz.cov │ │ │ │ ├── 2834dab4185e97f5cb4adcba44d96135.00000141.honggfuzz.cov │ │ │ │ ├── 283f698390b774116eee27047c76df50.00000014.honggfuzz.cov │ │ │ │ ├── 28625377126ad40b0d9ee7911265a9fe.0000003c.honggfuzz.cov │ │ │ │ ├── 286fb65f3c9ac1ac323ae4aeb0b060d0.0000011b.honggfuzz.cov │ │ │ │ ├── 2888e3e5c50e2dd99ad9e62c289d658a.0000003a.honggfuzz.cov │ │ │ │ ├── 290665d8546d10fa37e1156888fff78b.0000001e.honggfuzz.cov │ │ │ │ ├── 2940954d4e086ab335c1f52fb9f00a74.0000006f.honggfuzz.cov │ │ │ │ ├── 29cab765de2a9fafc6c55e4b491217ac.000000ee.honggfuzz.cov │ │ │ │ ├── 29ce39f8b32aced2afd0af95ab215473.000002c2.honggfuzz.cov │ │ │ │ ├── 29dd93ca43b28c853c23dbaf2d955c11.00000694.honggfuzz.cov │ │ │ │ ├── 2a1ebb23b388b0410457145306dd3f57.00000206.honggfuzz.cov │ │ │ │ ├── 2a77cfbb746e6ace2fd3266c3600c3ab.00000047.honggfuzz.cov │ │ │ │ ├── 2ad14d5220785cfad3cd746b84b87705.0000043d.honggfuzz.cov │ │ │ │ ├── 2b6be3a8c798ed4064706d899b19d0c4.000003d1.honggfuzz.cov │ │ │ │ ├── 2b929842a705baba071d12659b38de86.00000057.honggfuzz.cov │ │ │ │ ├── 2bde685446dc5cb1729ec8a9c13e1838.000003c9.honggfuzz.cov │ │ │ │ ├── 2bec820cb0f8aee75c7c5905b4fb26be.000000c0.honggfuzz.cov │ │ │ │ ├── 2bf2247f7d2b8bdc18faf9887f13744b.000006d1.honggfuzz.cov │ │ │ │ ├── 2bfad18ffd6197f34320b85d648ee1ff.00000258.honggfuzz.cov │ │ │ │ ├── 2c5ef658177c5da4f72ed10a578469e9.00000072.honggfuzz.cov │ │ │ │ ├── 2c7d11453241797e38d3184c27fad758.00000121.honggfuzz.cov │ │ │ │ ├── 2c88f3d0044554e00c57944ecd92e17e.000004af.honggfuzz.cov │ │ │ │ ├── 2c957ac47cac3025ea2d943841fdcf4b.000003c9.honggfuzz.cov │ │ │ │ ├── 2c9a0741c2ebe203c7a5fafd05a85028.000002aa.honggfuzz.cov │ │ │ │ ├── 2ce9a7e2166474ee504dbb65da39312b.00000689.honggfuzz.cov │ │ │ │ ├── 2cf9f284e640bcb66eea371f7d29899a.0000040b.honggfuzz.cov │ │ │ │ ├── 2cfac8861104c5e21250d52d77720946.000001ca.honggfuzz.cov │ │ │ │ ├── 2cff94b7e81a6678e7e3d546a781b3c4.00000531.honggfuzz.cov │ │ │ │ ├── 2d01f34c54e8640c054ae6a841b00b6d.00000016.honggfuzz.cov │ │ │ │ ├── 2d0ea2914119d1accf3f5f9ee6761b6a.00000016.honggfuzz.cov │ │ │ │ ├── 2d0ea291e4e9d1accfb1e1aee6761b6a.00000016.honggfuzz.cov │ │ │ │ ├── 2d0ea291ffe9d1accfac56aee6761b6a.00000016.honggfuzz.cov │ │ │ │ ├── 2d2dec1d07ecd78781553f3fce72c0e7.000000d0.honggfuzz.cov │ │ │ │ ├── 2d2df557198db0a378b63acbd22f7946.0000011b.honggfuzz.cov │ │ │ │ ├── 2d474e6ecf8e5a6a6f73559970e286db.00000151.honggfuzz.cov │ │ │ │ ├── 2d792c8a5b3d2b2da6b26048a475511e.00000323.honggfuzz.cov │ │ │ │ ├── 2da1c6d530696d98c23694e7b8e45967.000002c5.honggfuzz.cov │ │ │ │ ├── 2dd11049fc6a3a6a02e0a8099d0ed371.000002c5.honggfuzz.cov │ │ │ │ ├── 2e1d92bad50c4c3636a912f33cb3c40f.00000114.honggfuzz.cov │ │ │ │ ├── 2e238a1495c76e1050f5541efdfb7d55.000001e2.honggfuzz.cov │ │ │ │ ├── 2ed8bf9fa6d1343aad8883886d8b3d19.00000800.honggfuzz.cov │ │ │ │ ├── 2efb96f8753d3ba8ab02e7bc77d6127c.00000074.honggfuzz.cov │ │ │ │ ├── 2efdb98390b774116eee256e81b6df50.00000014.honggfuzz.cov │ │ │ │ ├── 2eff698390b774116eee270311b6df50.00000014.honggfuzz.cov │ │ │ │ ├── 2f1826bc6fd97f549bee6b3b67204858.00000669.honggfuzz.cov │ │ │ │ ├── 2f1dc4b4bd044fcd61c0dc17a486e14c.0000003b.honggfuzz.cov │ │ │ │ ├── 2f1dc4b4bfd44fcd31c3df17a486e307.0000003b.honggfuzz.cov │ │ │ │ ├── 2f1dc5f1bfd44fcd3005047bd486e307.0000003b.honggfuzz.cov │ │ │ │ ├── 2f1dc7ae10044fcdde830f7bd486e3af.0000003b.honggfuzz.cov │ │ │ │ ├── 2f4de38390b774116ea3976f5ac6df50.00000014.honggfuzz.cov │ │ │ │ ├── 2f4f338390b774116ea39502cac6df50.00000014.honggfuzz.cov │ │ │ │ ├── 30513c7db8445446c8d64a8d16b1d23c.000005d8.honggfuzz.cov │ │ │ │ ├── 306cd94adb013dd4be93ba3ec39fdf74.00000720.honggfuzz.cov │ │ │ │ ├── 306defff03e4cefe51e05a16d81d2a05.000002c5.honggfuzz.cov │ │ │ │ ├── 3075af41920878c16cea97369f7cfd48.000003c9.honggfuzz.cov │ │ │ │ ├── 30eb33e8da5dae7d17199d0e6f87d639.000006a4.honggfuzz.cov │ │ │ │ ├── 310c56c28c119b120c9f781b20f004f3.000001d1.honggfuzz.cov │ │ │ │ ├── 311dc877eb9855bbe47ab9c801f48728.000002a5.honggfuzz.cov │ │ │ │ ├── 311ddc3c69b9414a6511f743efaed94a.000006a4.honggfuzz.cov │ │ │ │ ├── 312e2baa147a915dc7fa8635de001a42.00000123.honggfuzz.cov │ │ │ │ ├── 3176da46e3887d877a627763f3b9dfa6.00000623.honggfuzz.cov │ │ │ │ ├── 31fd959a043ecfdc591f7b71d54c65f0.00000151.honggfuzz.cov │ │ │ │ ├── 320665324304c0894794db125fff99e0.0000001e.honggfuzz.cov │ │ │ │ ├── 322a81e494de75c8e64863594f6e0b9b.000000d7.honggfuzz.cov │ │ │ │ ├── 3239f4d0c50f072026d147f0a378c727.00000101.honggfuzz.cov │ │ │ │ ├── 328519392dc2f706ed0a7680d753111c.00000011.honggfuzz.cov │ │ │ │ ├── 3287e028092ae72a002f06b7eec1cffa.000001ed.honggfuzz.cov │ │ │ │ ├── 32d5fdd5fe7a1882394b189149f745e2.000000d6.honggfuzz.cov │ │ │ │ ├── 32e03d5a6d5ba6bb52d77cbc6e47bb5d.000000eb.honggfuzz.cov │ │ │ │ ├── 32fc65d530e4cefe7fa4fb1a28e45aab.000002c5.honggfuzz.cov │ │ │ │ ├── 33104bcbb56bf6909e4913371417a880.00000047.honggfuzz.cov │ │ │ │ ├── 3310e903860ea0ff1c33fad746f90891.0000004f.honggfuzz.cov │ │ │ │ ├── 3317ec9716b91f548af1d784d1fdcd2a.0000003f.honggfuzz.cov │ │ │ │ ├── 334c849c550c3f45c9204dffeb4c639c.0000003f.honggfuzz.cov │ │ │ │ ├── 33822a0bdd212d64538a86c604a57155.000002e8.honggfuzz.cov │ │ │ │ ├── 339e20c003e4cefe7ec18b19e8a9bad9.000002c5.honggfuzz.cov │ │ │ │ ├── 33a4ab9d71d00214bcdbb921971a2cac.0000011c.honggfuzz.cov │ │ │ │ ├── 33ce1e959211c575d9591465d131b956.00000022.honggfuzz.cov │ │ │ │ ├── 33fcab1d71d0029414794e8e901774ac.0000011c.honggfuzz.cov │ │ │ │ ├── 3407efbfef254ad93487fc5e177ef29c.0000003a.honggfuzz.cov │ │ │ │ ├── 3408ec03c5836d6c7b591d4e8f73e72c.00000669.honggfuzz.cov │ │ │ │ ├── 348d498b0463b5570593e455fdbdde7e.0000011c.honggfuzz.cov │ │ │ │ ├── 349a0663efcc0479d18e8c23676599cf.00000121.honggfuzz.cov │ │ │ │ ├── 349a73153e63aa2d213a7ceac7683480.00000417.honggfuzz.cov │ │ │ │ ├── 34a2720769e64f342c58e927f6de6569.00000417.honggfuzz.cov │ │ │ │ ├── 34c4e41c220b4b45d6011dc6d96f2590.00000669.honggfuzz.cov │ │ │ │ ├── 34cee9750342f560bcd2876996ccfd59.00000047.honggfuzz.cov │ │ │ │ ├── 34dc09d3c29d22a3e2c6fbb2dd322389.0000000a.honggfuzz.cov │ │ │ │ ├── 34f3cf6ff0269b6a309f63e3b8f412c7.00000753.honggfuzz.cov │ │ │ │ ├── 3500e639a389e4cf9572427a3328fd1c.00000783.honggfuzz.cov │ │ │ │ ├── 351a70dec610d38a970bfc747d12f195.000003c9.honggfuzz.cov │ │ │ │ ├── 35e0017c0e364d06a257011aa56bdb57.000003c9.honggfuzz.cov │ │ │ │ ├── 3616e9f367700696de059da140a99e0b.000002ad.honggfuzz.cov │ │ │ │ ├── 362151fe5a203dea613d88165e7f379d.000003e2.honggfuzz.cov │ │ │ │ ├── 362c4a5c92374b90cb8b9bdd74182253.00000020.honggfuzz.cov │ │ │ │ ├── 3694b4f0ae2fb7983d2b6d8e8be281e6.00000669.honggfuzz.cov │ │ │ │ ├── 36a12ca13786c703f24bbc529dcb529e.000002c2.honggfuzz.cov │ │ │ │ ├── 370f23b0e20215ee40101af8022b46f4.000003c9.honggfuzz.cov │ │ │ │ ├── 3760430d1630f94438ac71744e626c5b.00000042.honggfuzz.cov │ │ │ │ ├── 376111114f5175219ec6097886516069.00000410.honggfuzz.cov │ │ │ │ ├── 378f5dd6451c305ca02a30746c6219e3.00000800.honggfuzz.cov │ │ │ │ ├── 37a665324304c0894794db125ff9f986.0000001e.honggfuzz.cov │ │ │ │ ├── 37d7a2d63ac459344eb6a184f73a0211.0000014a.honggfuzz.cov │ │ │ │ ├── 37f9459d47122337672cb3a0372945f5.00000072.honggfuzz.cov │ │ │ │ ├── 38892d52e0fe650c3eb15390db1a6350.000003c4.honggfuzz.cov │ │ │ │ ├── 38baa39725fd44a94ec4edaad6d9eda9.0000011b.honggfuzz.cov │ │ │ │ ├── 38de699a8707e57593508026ad63c8a0.00000743.honggfuzz.cov │ │ │ │ ├── 390d532aad43846791cca2fc08bd59b1.0000011b.honggfuzz.cov │ │ │ │ ├── 390eabc23d1d294fe6b0a15e9dc990ae.0000079f.honggfuzz.cov │ │ │ │ ├── 3917866e624c04797479860697ba943f.00000121.honggfuzz.cov │ │ │ │ ├── 3942df0aa639e703fe2809b8ea85f1ce.00000031.honggfuzz.cov │ │ │ │ ├── 39cefccc3986bbf3db6e0770bfa2863d.000003ea.honggfuzz.cov │ │ │ │ ├── 3a46b47e49449329df831e11ed0efa11.00000123.honggfuzz.cov │ │ │ │ ├── 3a7848fc1346b2024ffd6cc427d4e10d.00000010.honggfuzz.cov │ │ │ │ ├── 3b23924659505ccebf1c3523e0f4dbd0.000002aa.honggfuzz.cov │ │ │ │ ├── 3b2ba9bc24839c2e8323485fe991e237.0000011b.honggfuzz.cov │ │ │ │ ├── 3b58d8013346b202248d6cc4b41222cf.00000010.honggfuzz.cov │ │ │ │ ├── 3bab60665010ccb25bd9570ddf050f66.000002ad.honggfuzz.cov │ │ │ │ ├── 3bc18ba19fd46dac0375ec7b5e001f0c.0000004c.honggfuzz.cov │ │ │ │ ├── 3bc7ca0ecd88f1e3a4ec9c1574507654.00000316.honggfuzz.cov │ │ │ │ ├── 3bc848013346b202248d6cc4b412e10c.00000010.honggfuzz.cov │ │ │ │ ├── 3be1289f7e7b6994acfbb9e2018bc453.00000240.honggfuzz.cov │ │ │ │ ├── 3bef2cec098c4dcb2c099c7a518774ac.0000011b.honggfuzz.cov │ │ │ │ ├── 3bfe37dc4faad27dc7c643948dac1ca1.00000750.honggfuzz.cov │ │ │ │ ├── 3c0ce091dbcad822d74665f62f57d6bb.000002c5.honggfuzz.cov │ │ │ │ ├── 3c260e79484f5e69d93153bbbab881d1.0000003f.honggfuzz.cov │ │ │ │ ├── 3c3f78abdeb10c493f2570d8b8be76f7.000001bd.honggfuzz.cov │ │ │ │ ├── 3c44fa0ed17f5fbbace2c74aac8c7a00.000000ae.honggfuzz.cov │ │ │ │ ├── 3c813daa525568b3cbeca55cfe9070a3.00000052.honggfuzz.cov │ │ │ │ ├── 3c986dd0d2effbff8286849d32628e82.00000077.honggfuzz.cov │ │ │ │ ├── 3cbb3c823f65e8f14dcada80b8f71c9d.00000077.honggfuzz.cov │ │ │ │ ├── 3ce50a4873e882522a85f27dfc09f238.0000007e.honggfuzz.cov │ │ │ │ ├── 3cf622ef4f201934ccf2e4f44c281127.000005d8.honggfuzz.cov │ │ │ │ ├── 3d0676060c0e33bbade331bc9c8d2438.0000011c.honggfuzz.cov │ │ │ │ ├── 3d2d0a726501e9696bbdb92fe883c96d.0000011b.honggfuzz.cov │ │ │ │ ├── 3d353967e7178267d0be93aa5deca4fe.00000042.honggfuzz.cov │ │ │ │ ├── 3d4e7e68795d7d7c14b77ccb53856c45.0000016c.honggfuzz.cov │ │ │ │ ├── 3d7f9573339a266010d9ca600f809f8a.00000324.honggfuzz.cov │ │ │ │ ├── 3d80927bea8dbb263966714f46c94fd3.00000800.honggfuzz.cov │ │ │ │ ├── 3da963abb68a58cda3b9a4511cf6d445.00000252.honggfuzz.cov │ │ │ │ ├── 3dbacd4b1058811dbaf811e7907f37f2.000000af.honggfuzz.cov │ │ │ │ ├── 3e0743f7f3d292b06c1d191cf6e189dc.000003ee.honggfuzz.cov │ │ │ │ ├── 3e1cb3dcc9cfe78a958203be903b542c.00000146.honggfuzz.cov │ │ │ │ ├── 3e278af3fbc3801e671b5606043d73bd.00000087.honggfuzz.cov │ │ │ │ ├── 3ec20c76b6348b387d871425c681369c.00000079.honggfuzz.cov │ │ │ │ ├── 3f00663f9bc6d2564f1e8cf65c92938c.00000101.honggfuzz.cov │ │ │ │ ├── 3f486bd8a07eeaacdaeab676bd327e8f.00000151.honggfuzz.cov │ │ │ │ ├── 404841bc4aaf3e3183f23dbe4d4ee132.00000051.honggfuzz.cov │ │ │ │ ├── 40970ce5f3120e55004a744e8c66e6a2.00000417.honggfuzz.cov │ │ │ │ ├── 409d26b79923c822c42de4e8c7846dd3.0000002c.honggfuzz.cov │ │ │ │ ├── 40bba7fad3dfd8d81ea7c00d6543a194.00000252.honggfuzz.cov │ │ │ │ ├── 40da4030a06313a327c1a7b0d7e703bc.0000004f.honggfuzz.cov │ │ │ │ ├── 40efacc22d75bbdf124845792845ee46.0000011b.honggfuzz.cov │ │ │ │ ├── 41363975714ddb6f80d5f80de9824dfd.00000067.honggfuzz.cov │ │ │ │ ├── 41ebb3ab96cb88cd99bbd3c309a56ff8.00000252.honggfuzz.cov │ │ │ │ ├── 41f2126e9f009e9c11e547d454e3497d.000002df.honggfuzz.cov │ │ │ │ ├── 41f2166a9f049a9c446e9189f9a74cf2.000002df.honggfuzz.cov │ │ │ │ ├── 42126ce4e4903b27eac94e91c2a01451.000002c2.honggfuzz.cov │ │ │ │ ├── 4219af0aa639e717f005d36b6a85f1ce.00000031.honggfuzz.cov │ │ │ │ ├── 424a55e6bbdd47d4044889e326cc196b.0000011c.honggfuzz.cov │ │ │ │ ├── 4262ad79e9085ed564ed84f05e321651.000007e4.honggfuzz.cov │ │ │ │ ├── 426f4f8cf67d37159786a8f7c199e544.0000012e.honggfuzz.cov │ │ │ │ ├── 42eef59c66dde26bd6822c3edf8c0c4f.000002aa.honggfuzz.cov │ │ │ │ ├── 42f60b83af2619802fd7f2b08cf711b3.000003c9.honggfuzz.cov │ │ │ │ ├── 43014053c7522dcd19080061ee003b72.00000237.honggfuzz.cov │ │ │ │ ├── 43507e2b91881d19f0956e13babd07c8.00000022.honggfuzz.cov │ │ │ │ ├── 437aca9d7307b51e8b124750c1e0c2f0.00000252.honggfuzz.cov │ │ │ │ ├── 4394296172391232a1d1c9c32c62abe1.000002c2.honggfuzz.cov │ │ │ │ ├── 43a00225c8ff4265ecd5016efc140075.000000eb.honggfuzz.cov │ │ │ │ ├── 43e4e5bf2fc14e70d8a9624c7e2c4e8c.000001ed.honggfuzz.cov │ │ │ │ ├── 43f14e87e08332eb238c02dce5488f19.00000087.honggfuzz.cov │ │ │ │ ├── 43f14e87e083a27b70df924ce5481f89.00000087.honggfuzz.cov │ │ │ │ ├── 43f14e8f600b32ebce34e15665ea0531.00000087.honggfuzz.cov │ │ │ │ ├── 43f17867937332facd74bfbe4d56202a.00000087.honggfuzz.cov │ │ │ │ ├── 4400623e39ad15a6e041257cb732b06e.0000009c.honggfuzz.cov │ │ │ │ ├── 448e2bc6cbe5db1e3fcd9b8f03feb995.00000275.honggfuzz.cov │ │ │ │ ├── 44b11cb657e266028a0555c3131ff686.00000052.honggfuzz.cov │ │ │ │ ├── 44f194f019bd54e55f90adb70ac42c75.0000011b.honggfuzz.cov │ │ │ │ ├── 45083c704e11ed0a5cd6c1420a952a43.00000047.honggfuzz.cov │ │ │ │ ├── 453e1bce0154b1685aa6e33f5771ffc2.000002aa.honggfuzz.cov │ │ │ │ ├── 455b6bb4ca94f5098173a8fb0c609e5e.0000011b.honggfuzz.cov │ │ │ │ ├── 455c775da5da5b336f375348dc35a874.00000417.honggfuzz.cov │ │ │ │ ├── 45778b2cd1c7bf5a6e9628fe45c32ea9.00000237.honggfuzz.cov │ │ │ │ ├── 45a4300e437a520f006349be08d93d46.00000019.honggfuzz.cov │ │ │ │ ├── 461e1cf26158651e6468a8995ecb6d24.00000128.honggfuzz.cov │ │ │ │ ├── 462a7aec255ae57b6ca75d35de01b087.00000123.honggfuzz.cov │ │ │ │ ├── 462e1705e36f8ac8160a4ac8fea3a9ba.00000151.honggfuzz.cov │ │ │ │ ├── 4651683a1ca1d766a75a2e497445f655.0000010d.honggfuzz.cov │ │ │ │ ├── 4651a12d54b651b861d2c7eced690703.00000669.honggfuzz.cov │ │ │ │ ├── 4651c0319e1fd5d00f42f4b52f81d31b.00000087.honggfuzz.cov │ │ │ │ ├── 469e1518980ecfbedd6c525dfdf46f37.0000014d.honggfuzz.cov │ │ │ │ ├── 46bc438aa9fa222bb6ce130c53d131c6.000000ae.honggfuzz.cov │ │ │ │ ├── 46be938aa9fa222bc87a81473fdd00be.000000ae.honggfuzz.cov │ │ │ │ ├── 46e1e4ca106f8ac8dac546450601514e.00000151.honggfuzz.cov │ │ │ │ ├── 46fe98aa473274b4b892a6c8fc1f0a51.000006a4.honggfuzz.cov │ │ │ │ ├── 4718ac2f06797f856eacb80fdcad57c9.00000057.honggfuzz.cov │ │ │ │ ├── 4718d801322eb20219cdce45f1122285.00000010.honggfuzz.cov │ │ │ │ ├── 4718d8013346b20219cd6cc4b4122285.00000010.honggfuzz.cov │ │ │ │ ├── 4718d8d9eaf7061219cbb622d3922285.00000010.honggfuzz.cov │ │ │ │ ├── 471cd88d117f61155bfd6ef847a00f6b.00000023.honggfuzz.cov │ │ │ │ ├── 472652be792ae185151e8948a36270ac.00000151.honggfuzz.cov │ │ │ │ ├── 474e786bf1c2b77ca1dd79a10fa18f14.000001e2.honggfuzz.cov │ │ │ │ ├── 476e3fed654ea06b8d19445e751a114c.00000123.honggfuzz.cov │ │ │ │ ├── 47eef65a4cdfaeb600ee6f97ddc22d6e.000003e2.honggfuzz.cov │ │ │ │ ├── 481d28853def2ddb1aa17ef48178c515.00000121.honggfuzz.cov │ │ │ │ ├── 481f0a5f1d952f799462e354f015cac6.00000121.honggfuzz.cov │ │ │ │ ├── 481f0a871dcd2ff994ca41a35f12c79e.00000121.honggfuzz.cov │ │ │ │ ├── 487ff9463e42cdd28fa46dbdd929a257.000000eb.honggfuzz.cov │ │ │ │ ├── 48810757c1ac177580e7669f47a10fec.000000eb.honggfuzz.cov │ │ │ │ ├── 488338a70ac40fc45798ba09f3736db9.0000011b.honggfuzz.cov │ │ │ │ ├── 4886108436b3a2a7a3b3ca33ffd1e173.00000306.honggfuzz.cov │ │ │ │ ├── 48b53a86d12f31371030dc903ec508b2.00000123.honggfuzz.cov │ │ │ │ ├── 48d56bf6c972bdcb8a70b5aad13380b7.0000026c.honggfuzz.cov │ │ │ │ ├── 48e503c75755eae7e18a02a93f99f9df.00000252.honggfuzz.cov │ │ │ │ ├── 48f27fcaa3b0c62d8cb1d5763545c642.000001d2.honggfuzz.cov │ │ │ │ ├── 491e8b7542f3483d2f92e313a316ed90.0000040b.honggfuzz.cov │ │ │ │ ├── 495714e8f55e47ff1df3fd36a7dd3d1c.0000013c.honggfuzz.cov │ │ │ │ ├── 49a6d94b35b1c33f9cc3e7a40be7c55c.0000006e.honggfuzz.cov │ │ │ │ ├── 49be119e37f903744c21b4e457227793.000004fc.honggfuzz.cov │ │ │ │ ├── 49d61a3f59e9d06fbea8239f7538caef.00000417.honggfuzz.cov │ │ │ │ ├── 49d95cfa5781b5ac5a6ecd13afda7e9a.00000316.honggfuzz.cov │ │ │ │ ├── 4a377c807d1d326e6d6103096163969d.000001eb.honggfuzz.cov │ │ │ │ ├── 4a73c88576b117f7c93dd8d450f2efc3.000004d6.honggfuzz.cov │ │ │ │ ├── 4a7631f49acb2c2f1e56bb5e2bf1fd63.00000042.honggfuzz.cov │ │ │ │ ├── 4a768c516a89191ac05bb59836495211.00000042.honggfuzz.cov │ │ │ │ ├── 4a778cb1dac03ed6fa7fa47cca0d3cd8.000001b1.honggfuzz.cov │ │ │ │ ├── 4ac4c2974b9e7ff471c8dd6cf7331824.000001bd.honggfuzz.cov │ │ │ │ ├── 4b2a895b2a019dc909c48c6a9356e07a.0000011b.honggfuzz.cov │ │ │ │ ├── 4b3b2e324f5d703e3499cea4a543a2b3.00000066.honggfuzz.cov │ │ │ │ ├── 4b629050bd8e73eb4238bb14c0147959.00000018.honggfuzz.cov │ │ │ │ ├── 4b78a6a993cca2b378fcdaa605d01ee2.000002aa.honggfuzz.cov │ │ │ │ ├── 4b9fbd3b99f587f800b0816cc9449702.00000417.honggfuzz.cov │ │ │ │ ├── 4bc1a499ef3f6fbfd233bf30e635ad06.0000004c.honggfuzz.cov │ │ │ │ ├── 4bc297e55067cf1f05ee32ae6879d15b.000000c4.honggfuzz.cov │ │ │ │ ├── 4bc3513e3c17cf1f04fe236508a2a15b.000000c4.honggfuzz.cov │ │ │ │ ├── 4c353e38c9251f685bd9c97ddf056416.000002ad.honggfuzz.cov │ │ │ │ ├── 4c70934e22ce703c4ec2a263cb793609.0000011b.honggfuzz.cov │ │ │ │ ├── 4c757f8c0968e88602b0bdfdb791a5da.00000310.honggfuzz.cov │ │ │ │ ├── 4c8ef4f8016539e62376600a05a09630.00000303.honggfuzz.cov │ │ │ │ ├── 4d03b4700ce709fe20cf553170b0a2e3.000006a4.honggfuzz.cov │ │ │ │ ├── 4d197d11b09581d1af2fd545fc493c06.0000020a.honggfuzz.cov │ │ │ │ ├── 4d1fef1a08857f350ade1f617c7e7523.000001ed.honggfuzz.cov │ │ │ │ ├── 4d2195a22c85a362ccb26132f8ba634c.0000001e.honggfuzz.cov │ │ │ │ ├── 4d43b7188d41799302d9d67686d67898.00000063.honggfuzz.cov │ │ │ │ ├── 4d4b14773e9e8fa27254a589fff9bf84.00000124.honggfuzz.cov │ │ │ │ ├── 4d52af4a921e0a49d71456c791796f28.00000035.honggfuzz.cov │ │ │ │ ├── 4d85ce7259770f3500611bb4ea0109f0.000001ed.honggfuzz.cov │ │ │ │ ├── 4d9775ccaaa21b4008fc5e5fafc5c6c8.000002c5.honggfuzz.cov │ │ │ │ ├── 4dc770a12c85a362ccb2611f7d62134c.0000001e.honggfuzz.cov │ │ │ │ ├── 4ddff2b47fd59d51993abfc225f47dc2.000001cc.honggfuzz.cov │ │ │ │ ├── 4de1a0b359768dba3517265598e71850.0000066e.honggfuzz.cov │ │ │ │ ├── 4e0bf3200b7e22b7823e8fd1b8cad2dc.00000051.honggfuzz.cov │ │ │ │ ├── 4e6e6d82ebba2ad62f105d8183502963.00000393.honggfuzz.cov │ │ │ │ ├── 4ea3c26a2bb223b6046a0da8b571f165.00000800.honggfuzz.cov │ │ │ │ ├── 4ef53f6d44c35b6933fb902f48e7dbcb.0000061b.honggfuzz.cov │ │ │ │ ├── 4f0259dd842dbb9e2dfd9a6ce46e03dd.000002ad.honggfuzz.cov │ │ │ │ ├── 4f0dba3c54c285102c80d562b63286ae.000002aa.honggfuzz.cov │ │ │ │ ├── 4f108c732876e47ca8316797d305d569.000000a1.honggfuzz.cov │ │ │ │ ├── 4f173db526aee95bed1779a6bbfc37e5.00000237.honggfuzz.cov │ │ │ │ ├── 4f2747467c045a8db90bb17e992e86a9.000003f9.honggfuzz.cov │ │ │ │ ├── 4f557df84d10713d2cbdd35e57fd553e.000000af.honggfuzz.cov │ │ │ │ ├── 4fa65c13f946f9a8e3fed067a1de0dfb.0000001e.honggfuzz.cov │ │ │ │ ├── 4fa65cf856b0a5f8c8fff4cca1de0d07.0000001e.honggfuzz.cov │ │ │ │ ├── 4fa8df97186382a262229c55bc62abe3.000002c2.honggfuzz.cov │ │ │ │ ├── 4fbc4c607442b3c78a45adad87fd098f.000004f6.honggfuzz.cov │ │ │ │ ├── 4fc902ff4313a54f11802d5423286986.00000417.honggfuzz.cov │ │ │ │ ├── 4fdee5fab3fe7f7b55bf5f3a5446223a.00000237.honggfuzz.cov │ │ │ │ ├── 4fe9fc9c1950157e3d1445ae18060054.000006a4.honggfuzz.cov │ │ │ │ ├── 50089c8db25fa77b49af171bf0ffd351.00000648.honggfuzz.cov │ │ │ │ ├── 5018c0000000000000e890f000000000.00000003.honggfuzz.cov │ │ │ │ ├── 5018e8a00000000000284890f0000000.00000004.honggfuzz.cov │ │ │ │ ├── 50736324a7b40646ef2ede2257cd4941.000001ed.honggfuzz.cov │ │ │ │ ├── 50b15714ef3564817fc17fcdc44a9667.00000048.honggfuzz.cov │ │ │ │ ├── 50bfc18efadedcf118b0f5f234560114.000001ee.honggfuzz.cov │ │ │ │ ├── 50d6b2fc934b8165bd187fed9ef1045e.0000007a.honggfuzz.cov │ │ │ │ ├── 511fe91da4d18acb47c8c788329216e5.0000068a.honggfuzz.cov │ │ │ │ ├── 514207ba5730f18955f05bdd30146b3a.0000077b.honggfuzz.cov │ │ │ │ ├── 51452be7450bd2f2cde533937e88bf7e.00000800.honggfuzz.cov │ │ │ │ ├── 5167cef44c989540400c5b997641773e.0000013d.honggfuzz.cov │ │ │ │ ├── 523eec6231c195ebdb68d7f6d906b930.00000150.honggfuzz.cov │ │ │ │ ├── 526a921036dbd44bbf85b9586e27bb22.000003e0.honggfuzz.cov │ │ │ │ ├── 527f84acfde0059d4c6c4e06900108f4.0000066e.honggfuzz.cov │ │ │ │ ├── 52802062192ffc53d2224a5329b1d01c.00000124.honggfuzz.cov │ │ │ │ ├── 5315fca5cdb33b3002b517746881f355.00000197.honggfuzz.cov │ │ │ │ ├── 531d28852dff2dcb99ec4a27ca96d15e.00000121.honggfuzz.cov │ │ │ │ ├── 532fb2cb2f722e65088c9e5f7aa1e188.000000f0.honggfuzz.cov │ │ │ │ ├── 533b446c36cd30e353600d3b304fde72.00000237.honggfuzz.cov │ │ │ │ ├── 5368dcf98ac7009422d69333ca84e3e9.0000003a.honggfuzz.cov │ │ │ │ ├── 53f7a3c28abbf7ad450dd90ca6e8956d.00000087.honggfuzz.cov │ │ │ │ ├── 547b8111d952c8a69ffb819883dd2f49.00000129.honggfuzz.cov │ │ │ │ ├── 548112e1d252dae58d1bc988846b4126.0000003a.honggfuzz.cov │ │ │ │ ├── 54ba7ce1c952dae517236b2884772c90.0000003a.honggfuzz.cov │ │ │ │ ├── 551ef0ede9471c69d34c92eac6c6902c.000002c2.honggfuzz.cov │ │ │ │ ├── 5522eb6bccd80c77b4a9e826fb6c1be1.000000a8.honggfuzz.cov │ │ │ │ ├── 556feb2b7e98774fd20da11071338001.0000016c.honggfuzz.cov │ │ │ │ ├── 55bbbf37f565ea00bc5a4ec6beb82ee3.0000037e.honggfuzz.cov │ │ │ │ ├── 565206fa2015935767dd390429b0759a.00000242.honggfuzz.cov │ │ │ │ ├── 565206fa20e56c58f78e3904102cb396.00000242.honggfuzz.cov │ │ │ │ ├── 56681857c3dd891a050c24c83e358009.00000698.honggfuzz.cov │ │ │ │ ├── 566ce9bcfd54d2f14b831f26eaa14c17.000005e7.honggfuzz.cov │ │ │ │ ├── 56dfc74449803eef5f0b1e1979fe687c.000002aa.honggfuzz.cov │ │ │ │ ├── 56f5636a7554bebcda533894eee1cf81.00000698.honggfuzz.cov │ │ │ │ ├── 57264d9c724ad7c7f888ac90edeaadaf.000001cc.honggfuzz.cov │ │ │ │ ├── 572e2818250d0f2acb4fe768d7582140.000000f0.honggfuzz.cov │ │ │ │ ├── 574e6dc1d1c8665946cad78ee33e067e.00000101.honggfuzz.cov │ │ │ │ ├── 5776f1efb04d4c6f2a3177099c1c5eed.000000fd.honggfuzz.cov │ │ │ │ ├── 57b66908aae4fde84463dfc99381c511.0000011b.honggfuzz.cov │ │ │ │ ├── 57eb7b72149c03273830d1a81ff35e12.00000060.honggfuzz.cov │ │ │ │ ├── 58083b4d8a378701adca514293705e82.00000071.honggfuzz.cov │ │ │ │ ├── 5830e572dd1a22190e6ce08c7a2ff66f.000001ed.honggfuzz.cov │ │ │ │ ├── 585576349938683325608c481a3d5917.000000a1.honggfuzz.cov │ │ │ │ ├── 58564606c45ac6a3259073018357f0c7.000000a1.honggfuzz.cov │ │ │ │ ├── 58564606c49905a325608c481a3e9617.000000a1.honggfuzz.cov │ │ │ │ ├── 58564ae2cf3b9473534b1e2e70b0d644.000000a1.honggfuzz.cov │ │ │ │ ├── 585a7e6fe1b257a29b7b8d3d75c183e0.000000a1.honggfuzz.cov │ │ │ │ ├── 585bd3b4c837870121113c824f8cf659.00000071.honggfuzz.cov │ │ │ │ ├── 58664d6949af41dc2f9f1e183108a456.0000003f.honggfuzz.cov │ │ │ │ ├── 5866f1d8d20a41dcf79f56d51076b21a.0000003f.honggfuzz.cov │ │ │ │ ├── 588a7dab902f9a143bf22a20927a070a.00000252.honggfuzz.cov │ │ │ │ ├── 58c2e714ac1997ca8723d87065e7a90d.000006a4.honggfuzz.cov │ │ │ │ ├── 58e276bc6f232f15265be811f5feb3ab.00000669.honggfuzz.cov │ │ │ │ ├── 58f129124b473f3941bdeaefbc527d7b.00000252.honggfuzz.cov │ │ │ │ ├── 595005c5a7ec29d045f32d0c9502f01a.0000003e.honggfuzz.cov │ │ │ │ ├── 59abf290a636c40907feac3da26802c7.000006ec.honggfuzz.cov │ │ │ │ ├── 59c9baf11cad4e825fb5026104a7a2fc.0000002c.honggfuzz.cov │ │ │ │ ├── 59ca7bba3a394bc4a6f3153901519f96.00000242.honggfuzz.cov │ │ │ │ ├── 5a350625c28f0a6a7bbabd015d3e1fd2.00000189.honggfuzz.cov │ │ │ │ ├── 5a555a856bc2d181f69d72f93231dbb1.000000af.honggfuzz.cov │ │ │ │ ├── 5a56fcea8d2613d6e16d72a6ad3ffec3.000002ea.honggfuzz.cov │ │ │ │ ├── 5aae96b23127f47e13ee5df205a07765.0000033f.honggfuzz.cov │ │ │ │ ├── 5accae9ef5b85a91c13130b4dbce4173.00000101.honggfuzz.cov │ │ │ │ ├── 5ae9bf1eb9f9187a17cbe7e59643c10b.0000002d.honggfuzz.cov │ │ │ │ ├── 5af1b163ebf83ac28ac7b8ab12e4440a.000002c5.honggfuzz.cov │ │ │ │ ├── 5af1b3841033bac25acfbe9dcfb91769.000002c5.honggfuzz.cov │ │ │ │ ├── 5afe06bc5657398660668d0e3fb994d8.000006a4.honggfuzz.cov │ │ │ │ ├── 5b480796a4b304882ce053d72b2d7bc0.000002aa.honggfuzz.cov │ │ │ │ ├── 5b634087a365fcbdf3da394f63c0d8a6.000002aa.honggfuzz.cov │ │ │ │ ├── 5b66383cbee7c7a260943e9d1be5822c.000001ca.honggfuzz.cov │ │ │ │ ├── 5b79451a98924ed971bcd674a4e22555.00000042.honggfuzz.cov │ │ │ │ ├── 5b79f00000000000c9abb00000000000.00000002.honggfuzz.cov │ │ │ │ ├── 5b8c7aca3f7cd81805893ea1092e272d.00000459.honggfuzz.cov │ │ │ │ ├── 5b929b4e5317269334f5a547ec9d44eb.0000003f.honggfuzz.cov │ │ │ │ ├── 5bc88c5a46c9007f04f4e72d69840f08.000000eb.honggfuzz.cov │ │ │ │ ├── 5c15298e0ee114f184d48bce99b3a02d.00000017.honggfuzz.cov │ │ │ │ ├── 5c76d0795107b8028dc2ee7c6138b542.00000787.honggfuzz.cov │ │ │ │ ├── 5c88ce24afd5b385965216cd16947aa8.000006a4.honggfuzz.cov │ │ │ │ ├── 5cb0ee5ec96adde6822f2068adae9d4d.00000020.honggfuzz.cov │ │ │ │ ├── 5cb0eece596adde6822f20685d51924d.00000020.honggfuzz.cov │ │ │ │ ├── 5cc093d86d94966fa54a23612842a1d1.00000669.honggfuzz.cov │ │ │ │ ├── 5d0feec9d23c8127011f39c830962bca.00000669.honggfuzz.cov │ │ │ │ ├── 5d146d2f5dbc33376f96645e4b7d2069.000000e3.honggfuzz.cov │ │ │ │ ├── 5d42436c63ad07e659bd77ea1d01c23a.0000004c.honggfuzz.cov │ │ │ │ ├── 5d623879b7251b1c5b81ea56da5b43b6.00000800.honggfuzz.cov │ │ │ │ ├── 5d646ea4eab9e6e9ad79ce3942d43301.000004e7.honggfuzz.cov │ │ │ │ ├── 5d93f80568fa710c37dce14a6b0c8106.000002b4.honggfuzz.cov │ │ │ │ ├── 5e0408a8cb9bcdd36cc5b556a000e190.000001a6.honggfuzz.cov │ │ │ │ ├── 5e0571fff2302531a1097c87df0ec74b.00000800.honggfuzz.cov │ │ │ │ ├── 5e0ce30cdee49ec3e42e8f8189592765.00000482.honggfuzz.cov │ │ │ │ ├── 5e1a564dc8754e684b916cbb63b94010.000000d4.honggfuzz.cov │ │ │ │ ├── 5e1b396b1e05e037dd9708005d02629a.000006d1.honggfuzz.cov │ │ │ │ ├── 5e1e6885409a522771dfa55843b42c3f.00000101.honggfuzz.cov │ │ │ │ ├── 5e83c6bd37132167b46e6c449cb94010.000000d4.honggfuzz.cov │ │ │ │ ├── 5ec47334f2406fadea47cc796c7c446f.00000042.honggfuzz.cov │ │ │ │ ├── 5f6930e5683b10ff7724cc3124d1a7cc.000003e0.honggfuzz.cov │ │ │ │ ├── 5f89838d9c736c43778b32f2608c4a67.000000f3.honggfuzz.cov │ │ │ │ ├── 5fa57095b4846a6206c49e4ccf0c650d.000002c2.honggfuzz.cov │ │ │ │ ├── 603ad35cc150db29fef3e0028dab2e18.0000005c.honggfuzz.cov │ │ │ │ ├── 603ad35d8450db29ff294b7357005e18.0000005c.honggfuzz.cov │ │ │ │ ├── 603ec9a2254a25c9fef947d8faab2e18.0000005c.honggfuzz.cov │ │ │ │ ├── 6078fe94126e3d0a797a34fa6a991ef5.00000032.honggfuzz.cov │ │ │ │ ├── 60a4d437e24904d52811ca46ffcca7b7.000004b5.honggfuzz.cov │ │ │ │ ├── 60efbeaa7be2498be62454eafe01b61d.00000800.honggfuzz.cov │ │ │ │ ├── 60fa75e420c95d2028b3ab98dbc8acdc.00000052.honggfuzz.cov │ │ │ │ ├── 612c8235a9a918490756fd0346ab832e.000001cf.honggfuzz.cov │ │ │ │ ├── 6147e61eee763cff492a6e02c3547213.0000008b.honggfuzz.cov │ │ │ │ ├── 614a3899bb1336a6a3c1880731bc6e6b.000003e2.honggfuzz.cov │ │ │ │ ├── 61671e0bea8236b4de2c685ab9025820.000002c2.honggfuzz.cov │ │ │ │ ├── 61763f7dcec9cc1172bac80b5dd1d55a.00000121.honggfuzz.cov │ │ │ │ ├── 61d80b61de6c14ed3bc3758a64fa61b1.000002e1.honggfuzz.cov │ │ │ │ ├── 61e43df5c174d7a04eadf991d7e05fa5.000000eb.honggfuzz.cov │ │ │ │ ├── 61f4a06cf9049e436bf4576144833c83.000002df.honggfuzz.cov │ │ │ │ ├── 62322a799ff9119de76562bb97f95bb7.0000011f.honggfuzz.cov │ │ │ │ ├── 6276799ee63753d69722ee7682bfc183.000001a6.honggfuzz.cov │ │ │ │ ├── 62b4cdf70e6fbb020d907ea9f64c3bf5.00000417.honggfuzz.cov │ │ │ │ ├── 632104d90735dc641539f0323ef66c45.0000021e.honggfuzz.cov │ │ │ │ ├── 6397e58e5d4dedf99e37bf3bde9d2b89.000002e1.honggfuzz.cov │ │ │ │ ├── 63b05a0bad7aec38928598b64403af43.00000237.honggfuzz.cov │ │ │ │ ├── 63c2d7bda280d63c59bf1c87d18bf8fe.00000393.honggfuzz.cov │ │ │ │ ├── 63d6acb6083692ba17201b907f9b9a52.000000d5.honggfuzz.cov │ │ │ │ ├── 63e7cb481e05989e823fb6f956b27ed8.00000252.honggfuzz.cov │ │ │ │ ├── 64106aca82fc395eab894f5b165d4e44.000000c4.honggfuzz.cov │ │ │ │ ├── 641128b2f68578904f4097edf2614ce1.000000c4.honggfuzz.cov │ │ │ │ ├── 642667414ff548fd28ddf6ce38259c0c.00000189.honggfuzz.cov │ │ │ │ ├── 643259af7b1847d0a790e21281666b2d.00000800.honggfuzz.cov │ │ │ │ ├── 644ec0792b5550c9837767411612e4e3.000003cc.honggfuzz.cov │ │ │ │ ├── 648bb3d1373fcfdf0ec7c31312229e37.000002aa.honggfuzz.cov │ │ │ │ ├── 649bc14c89888d5666718bdd9cfade36.00000394.honggfuzz.cov │ │ │ │ ├── 64ab5c62e5dd16ecac3e87b42b47a506.0000023c.honggfuzz.cov │ │ │ │ ├── 652f6a6ca9f5813a5be25e6ae592ec80.00000417.honggfuzz.cov │ │ │ │ ├── 653898f580db0e4c5e64b3dfc91beadf.000002b4.honggfuzz.cov │ │ │ │ ├── 654ba33c0a9fe8d7899074fc3fb84c9d.000002b4.honggfuzz.cov │ │ │ │ ├── 6556ff9026377722fecfc82e1b6a99ad.000007d6.honggfuzz.cov │ │ │ │ ├── 6569fad810c6afc5d691d31aa8c921cd.00000669.honggfuzz.cov │ │ │ │ ├── 65b66555995e8c96080fc2813be52e78.0000011b.honggfuzz.cov │ │ │ │ ├── 65e8b37e40170d1edb9339ecb5e20d08.00000252.honggfuzz.cov │ │ │ │ ├── 660bed7304183a65fd28de92502029fd.00000171.honggfuzz.cov │ │ │ │ ├── 663e1d6dffb9c86bdb104756b6d5b953.0000007a.honggfuzz.cov │ │ │ │ ├── 666d3555984edc967f0fc2813be52b78.0000011b.honggfuzz.cov │ │ │ │ ├── 666d6101baaf114c6491cadfb7226d8c.0000027e.honggfuzz.cov │ │ │ │ ├── 66958fdd20289755dd830c23733222a0.000002aa.honggfuzz.cov │ │ │ │ ├── 66bcd7ad92fa812dc1c39609b65b612e.00000059.honggfuzz.cov │ │ │ │ ├── 66c74dec9b9ffea963e26cf0b83075ca.0000001f.honggfuzz.cov │ │ │ │ ├── 66d72432a782c6179754b5932a72b47f.000000a1.honggfuzz.cov │ │ │ │ ├── 6710cc391c334df27fb685550a09409d.00000252.honggfuzz.cov │ │ │ │ ├── 6727e259c2aaff4bce75f55fd657f368.00000051.honggfuzz.cov │ │ │ │ ├── 6754ddef89197984333ef5e0fb245ece.000004d9.honggfuzz.cov │ │ │ │ ├── 6781c9636565f623213711ead807aa58.00000121.honggfuzz.cov │ │ │ │ ├── 678df3d5cfc37d4d090b023318b3d77e.000000ae.honggfuzz.cov │ │ │ │ ├── 678df3d5cff61e1b1ac52a9318b3ffde.000000ae.honggfuzz.cov │ │ │ │ ├── 67f625f195bdc48f48853fb1ccd365c1.0000011c.honggfuzz.cov │ │ │ │ ├── 6806894ed358a4cf8a732040976c51fd.0000001e.honggfuzz.cov │ │ │ │ ├── 685c5de31f41429b659c136bb6b32e44.000002c2.honggfuzz.cov │ │ │ │ ├── 685e060ee8f9ecbed5fb6b48fb6213e7.00000139.honggfuzz.cov │ │ │ │ ├── 685ea2ee1d1e2ebc7fce9fc0caa27820.00000047.honggfuzz.cov │ │ │ │ ├── 689c2f59b3cc3b18973ec94eaac5c633.0000011b.honggfuzz.cov │ │ │ │ ├── 68cd2d0eda16027e91c416cb570e7edf.000000b1.honggfuzz.cov │ │ │ │ ├── 691786a00ed607f4e54f375f7fc30570.00000121.honggfuzz.cov │ │ │ │ ├── 6955ba004c56ee5104c542c0aadd7ff2.00000020.honggfuzz.cov │ │ │ │ ├── 6981dcc0da5f4f3b709c7b65021e2f24.000000eb.honggfuzz.cov │ │ │ │ ├── 69a534dee83e478fec4fc5b335ff002b.00000052.honggfuzz.cov │ │ │ │ ├── 69b7abc0e7fb8189fa6955deb4a8d9ed.00000052.honggfuzz.cov │ │ │ │ ├── 69d475a415f410a20c574184bd2a5632.0000007d.honggfuzz.cov │ │ │ │ ├── 6a2c61d1a6a4d50b1770f061b9dbaa97.00000669.honggfuzz.cov │ │ │ │ ├── 6a34cfaa2e7f7018dd68c883c703f934.00000791.honggfuzz.cov │ │ │ │ ├── 6a401a879c3510aa5163b56f3b6ae232.00000048.honggfuzz.cov │ │ │ │ ├── 6aa984c2502dffdb8b442eb3c73497b9.000006aa.honggfuzz.cov │ │ │ │ ├── 6ab71adc6918e2541cd33e35cf8e0296.0000030e.honggfuzz.cov │ │ │ │ ├── 6b717435737c376d5cf761bbc9f046a4.000002aa.honggfuzz.cov │ │ │ │ ├── 6bfeda813ad1d3e6cf91dc05f50f335d.0000003d.honggfuzz.cov │ │ │ │ ├── 6c100ba923fef672e27b091c3106e500.00000166.honggfuzz.cov │ │ │ │ ├── 6c32230ccdc8ea00a1daa00d8af58438.0000004d.honggfuzz.cov │ │ │ │ ├── 6c354ecccdc8ea00a1daa0098ef5803c.0000004d.honggfuzz.cov │ │ │ │ ├── 6c46df4e0ee114f184d48bce55ef552e.00000017.honggfuzz.cov │ │ │ │ ├── 6c528f4e0ee114f184d48bce55fb052e.00000017.honggfuzz.cov │ │ │ │ ├── 6c8cbb5fd9a95ce83b44e8c530cb0ec4.000005d8.honggfuzz.cov │ │ │ │ ├── 6cc4f258f72c67fdd2a3923ec59a8500.000001cc.honggfuzz.cov │ │ │ │ ├── 6d03df4e0ee114f184d48bce55ef546b.00000017.honggfuzz.cov │ │ │ │ ├── 6d0a440421660a8966480f6143c7c83e.00000025.honggfuzz.cov │ │ │ │ ├── 6d0a45b420230a8967581fca5977c83e.00000025.honggfuzz.cov │ │ │ │ ├── 6d0a46c070230a89674d08cd3c17c83e.00000025.honggfuzz.cov │ │ │ │ ├── 6d0a4f43517489f3de01d2e58ce1a6cb.00000025.honggfuzz.cov │ │ │ │ ├── 6d6a300079eda4f8b46f9c976350f673.000000f9.honggfuzz.cov │ │ │ │ ├── 6d6a3035151e5ea8c0d92803d6fa9b39.000000f9.honggfuzz.cov │ │ │ │ ├── 6d8222bd7dc8ea01a1daa00d8af4c138.0000004d.honggfuzz.cov │ │ │ │ ├── 6d8f50de01d1cf8d46d219367789b897.0000014d.honggfuzz.cov │ │ │ │ ├── 6db734f87dc8ea01d6daa19e48a552fa.0000004d.honggfuzz.cov │ │ │ │ ├── 6db735bd7dc8ea01d6daa02ff8a4e34a.0000004d.honggfuzz.cov │ │ │ │ ├── 6ddb05c8d21fe231fd78092d096f1af6.000003c9.honggfuzz.cov │ │ │ │ ├── 6ddb3709691b81d39b42e1673268df79.00000252.honggfuzz.cov │ │ │ │ ├── 6dff8a1b269cbfaa1fbfccee4e57da6a.00000390.honggfuzz.cov │ │ │ │ ├── 6e18bdd3d571ab12c1a71d114be3fd53.00000800.honggfuzz.cov │ │ │ │ ├── 6e228c726fdbbe5c2ab6d209db9bb2fa.000005d8.honggfuzz.cov │ │ │ │ ├── 6e22bb5532dbbe5c43dfbb60b2fbfd67.000005d8.honggfuzz.cov │ │ │ │ ├── 6e66b688ef3b3092cbe0a2f72bf5327b.00000035.honggfuzz.cov │ │ │ │ ├── 6e9acefe06218158667316f1861f83cf.00000669.honggfuzz.cov │ │ │ │ ├── 6ede1d8924f617cc8163a053030b5119.000003d1.honggfuzz.cov │ │ │ │ ├── 6ee241127e3f3f4d5becba358613c37a.0000003c.honggfuzz.cov │ │ │ │ ├── 6f3c15298e0ee050d53dbece99b3a02f.00000018.honggfuzz.cov │ │ │ │ ├── 6fab7900ca7390a82ec91de5c6f5ba4a.000000af.honggfuzz.cov │ │ │ │ ├── 6fc35122374b9040a0a19bdd31682140.0000001f.honggfuzz.cov │ │ │ │ ├── 7013eb18ed4058c77c1e2b806bb78a07.00000151.honggfuzz.cov │ │ │ │ ├── 70143e9145f656d1e9af9090cc6c4d6b.00000653.honggfuzz.cov │ │ │ │ ├── 7014ef6b9dbc2a93a25cb764a47b608e.00000476.honggfuzz.cov │ │ │ │ ├── 7028ed51d4d70a963a27055e59b7b43a.000003ef.honggfuzz.cov │ │ │ │ ├── 709af5f2d436f86ca5e86225fb40e9a8.0000051e.honggfuzz.cov │ │ │ │ ├── 70f556087247152a9175bc13c0756d1e.000000d4.honggfuzz.cov │ │ │ │ ├── 7108609819028a5f5d0086c6b3c3d4e2.000000eb.honggfuzz.cov │ │ │ │ ├── 712e1352577a468326826d400db5075b.000001b1.honggfuzz.cov │ │ │ │ ├── 7193317d89df22703b840e8967367b7c.0000055f.honggfuzz.cov │ │ │ │ ├── 71b9ca468cbd4dbc8b226c267ac57760.0000059c.honggfuzz.cov │ │ │ │ ├── 71c376a7a1b3af2200c49dff6e0e1921.000002c5.honggfuzz.cov │ │ │ │ ├── 72581dd5b1c243d684c8a11f27cc5d2d.00000177.honggfuzz.cov │ │ │ │ ├── 7265a7f7317ded5139e3eae8aa4ec0d6.000006ac.honggfuzz.cov │ │ │ │ ├── 729d13d4db7989df753077769093777e.00000416.honggfuzz.cov │ │ │ │ ├── 72cbc301b0918b44dd5acf88af67e4ca.00000019.honggfuzz.cov │ │ │ │ ├── 72e20fb170a6671c3a159bc5039a2ceb.00000017.honggfuzz.cov │ │ │ │ ├── 731dcf292afd0673d2bfe74f32786161.000000f9.honggfuzz.cov │ │ │ │ ├── 739042c80a9fc923bc9dee860cb077ae.000002b4.honggfuzz.cov │ │ │ │ ├── 73bfd9d9c9528ad7e66120a54b2b865d.000000af.honggfuzz.cov │ │ │ │ ├── 73e134a7ab782ca3d39aa80e480e2334.00000020.honggfuzz.cov │ │ │ │ ├── 74016cc0e7fb819cfa6949b3026fd9ed.00000052.honggfuzz.cov │ │ │ │ ├── 7447b9ddf6d6e4b69fbb1d20e1d697ba.00000275.honggfuzz.cov │ │ │ │ ├── 745f1a5ce13230f14b3de9877f96ab18.000003e0.honggfuzz.cov │ │ │ │ ├── 746cf5aca38de4091584ce1402ed7578.000000ba.honggfuzz.cov │ │ │ │ ├── 749f820769f778289d09b98b71341c44.00000417.honggfuzz.cov │ │ │ │ ├── 751d22866b9520bab836274ce56e7a63.0000029e.honggfuzz.cov │ │ │ │ ├── 75477c7072287a6a50ffd895665d91eb.000000c0.honggfuzz.cov │ │ │ │ ├── 75a34377244ba81689c0c98dc5b473d2.0000001e.honggfuzz.cov │ │ │ │ ├── 75b459f68863d41461a66da4ff04c88d.000000a6.honggfuzz.cov │ │ │ │ ├── 75d6ffec25283a0282cf7b7dbfaeb0e2.00000074.honggfuzz.cov │ │ │ │ ├── 76170e0a413fb30de598574dfdb7f4a4.00000669.honggfuzz.cov │ │ │ │ ├── 764bce64730894afce4431a213775ce0.00000016.honggfuzz.cov │ │ │ │ ├── 764bce64e4e894afcef4e1c213775ce0.00000016.honggfuzz.cov │ │ │ │ ├── 76bc2284209bf133ebbdf248b0a50833.000002c2.honggfuzz.cov │ │ │ │ ├── 76bc23af9e0d33f3d6c5ca2270a3a45b.000002c2.honggfuzz.cov │ │ │ │ ├── 76cac258273af2deb210378d6ca4a5f4.000005d8.honggfuzz.cov │ │ │ │ ├── 76decb12a28a819c8387074eec2db022.00000052.honggfuzz.cov │ │ │ │ ├── 76decb44fca6119c7104a99c3c2ddf0c.00000052.honggfuzz.cov │ │ │ │ ├── 76decb46b7cb819c73d6564eec2ddc3f.00000052.honggfuzz.cov │ │ │ │ ├── 76e74e214b7bdbc0f7f47321c9d77b28.0000011b.honggfuzz.cov │ │ │ │ ├── 76fc4310e7f9a1be786b02deb5726f35.00000052.honggfuzz.cov │ │ │ │ ├── 76fc4310e7fb819cfa6b02deb6ffd9ed.00000052.honggfuzz.cov │ │ │ │ ├── 76fc4346b7cb819c517cde6c46a5dc3f.00000052.honggfuzz.cov │ │ │ │ ├── 77528e0b0ee114f184d48bce54be1899.00000017.honggfuzz.cov │ │ │ │ ├── 77528f4e0d8400f184d19c78b5fb1899.00000017.honggfuzz.cov │ │ │ │ ├── 77528f4e0ee114f184d48bce55fb1899.00000017.honggfuzz.cov │ │ │ │ ├── 778c853e60b1d46f0dfa7fbc17fe652c.0000003a.honggfuzz.cov │ │ │ │ ├── 77a2240f105cdcaeb1145004f8e9a953.0000005c.honggfuzz.cov │ │ │ │ ├── 77a73614ef35649d44b12b16b44a960d.00000048.honggfuzz.cov │ │ │ │ ├── 77f407c6ed405891671bf2a8463c133e.00000151.honggfuzz.cov │ │ │ │ ├── 7984f53ed11762bdb924787d4978576a.000001ed.honggfuzz.cov │ │ │ │ ├── 79a400b0f9edf349fd7437144cd4a44e.000002c5.honggfuzz.cov │ │ │ │ ├── 79b20c302e660585c1a8728081fb9edf.000001a3.honggfuzz.cov │ │ │ │ ├── 79dcd33ea760f528899dfd40663aa74b.0000011b.honggfuzz.cov │ │ │ │ ├── 7a013f8b7cb296b439455fa8bf5d15ba.00000121.honggfuzz.cov │ │ │ │ ├── 7a100eee6ae601e5f1b2666f9964702a.00000437.honggfuzz.cov │ │ │ │ ├── 7a2adc500f8657b595527eb38b73f0c9.0000011b.honggfuzz.cov │ │ │ │ ├── 7a3aa76f0eff4ae9742acb9d3f358cb8.000003c9.honggfuzz.cov │ │ │ │ ├── 7a3b3fff369a66faa8458fd817ea8e98.0000062f.honggfuzz.cov │ │ │ │ ├── 7a625bff860d999c26a578d5a362a87a.000002ad.honggfuzz.cov │ │ │ │ ├── 7a854fcee80fbf03db122bafa79d371f.0000005c.honggfuzz.cov │ │ │ │ ├── 7a9c2e883f2c3816e46e674bbdbd1da4.000002df.honggfuzz.cov │ │ │ │ ├── 7ab2ce0e04ea9a661f31fe97e6675383.000002c5.honggfuzz.cov │ │ │ │ ├── 7ae8d70784f2570e7007558fce467aa7.00000164.honggfuzz.cov │ │ │ │ ├── 7b10958fbda1796813fe30baaebc3a66.00000121.honggfuzz.cov │ │ │ │ ├── 7b446bd632ab2b2922b7dff9979199d1.0000005c.honggfuzz.cov │ │ │ │ ├── 7b446bd632b58b2945d6a9eee19180a4.0000005c.honggfuzz.cov │ │ │ │ ├── 7b446bd632fbdb29a96162922a91dc4b.0000005c.honggfuzz.cov │ │ │ │ ├── 7b44af6854501fcb97ed6783c03a9e5e.000005ff.honggfuzz.cov │ │ │ │ ├── 7b674220c0bee73f906fea4bf1b10155.000006a4.honggfuzz.cov │ │ │ │ ├── 7b8eb77f4a86d1f8d2667d595d1e8e5a.00000669.honggfuzz.cov │ │ │ │ ├── 7bbb79b15c3a1e5d33c9767ef6c0b70b.00000156.honggfuzz.cov │ │ │ │ ├── 7bd585ff7520585779e2dcaa461db001.000000e7.honggfuzz.cov │ │ │ │ ├── 7c35935e4e345f039d06875b90d0cd49.00000027.honggfuzz.cov │ │ │ │ ├── 7ca2af853f99950cb73cdcd149725aa5.00000473.honggfuzz.cov │ │ │ │ ├── 7cb6428cc568aa5d38bc9bee081f27c0.0000005e.honggfuzz.cov │ │ │ │ ├── 7cbd1f65d163434a75a623fa4baa1452.00000800.honggfuzz.cov │ │ │ │ ├── 7ce261a3d5fa8ae14dce641bd320eed4.00000068.honggfuzz.cov │ │ │ │ ├── 7d340564a28e8edc031708bcaae0a766.000003c9.honggfuzz.cov │ │ │ │ ├── 7d418d43abe607adcb225a2881fb9edf.000001a3.honggfuzz.cov │ │ │ │ ├── 7d616b0cccc9ea172272c1da9a2040f2.0000004d.honggfuzz.cov │ │ │ │ ├── 7d6547fe0c426560b588038bbd5e187a.00000184.honggfuzz.cov │ │ │ │ ├── 7d712fcc3111d589f89668c7411b93af.00000024.honggfuzz.cov │ │ │ │ ├── 7de7995fa11b135b0afcdad45fa49662.000001cc.honggfuzz.cov │ │ │ │ ├── 7dec04cbd852341b32bc774a3306f8b4.000001a0.honggfuzz.cov │ │ │ │ ├── 7e33200d06cca99e94632141eedca529.000001d5.honggfuzz.cov │ │ │ │ ├── 7e34a375963e00ae9c48838998831895.00000242.honggfuzz.cov │ │ │ │ ├── 7efb0e4b3f2422f55fc1941e6a156a9b.0000003f.honggfuzz.cov │ │ │ │ ├── 7f20af331714e42d6d777bab0dab13ef.0000060b.honggfuzz.cov │ │ │ │ ├── 7f628625eac17d89e03879b0bf12b88b.00000286.honggfuzz.cov │ │ │ │ ├── 7fc6a00512759fb744b9d4781aafaece.000002a0.honggfuzz.cov │ │ │ │ ├── 806de1eccadefe4ec8a529877fd157f4.00000633.honggfuzz.cov │ │ │ │ ├── 80b459f688627f0e61536c14ff04c93d.000000a6.honggfuzz.cov │ │ │ │ ├── 80c285f688627f0e615328108ddcffe1.000000a6.honggfuzz.cov │ │ │ │ ├── 810895e2afe884ff4e672ec0c8fbf7ea.0000037e.honggfuzz.cov │ │ │ │ ├── 810f15676672342677e0e085c0607148.00000052.honggfuzz.cov │ │ │ │ ├── 81338b7d6343553c65209ec256f2c7c2.000006f7.honggfuzz.cov │ │ │ │ ├── 81758d88b0e1ac53fbaaa69b56274b8a.00000800.honggfuzz.cov │ │ │ │ ├── 82243163ebf83aca994caf07a9becc01.000002c5.honggfuzz.cov │ │ │ │ ├── 82308e51e4218790c761cce677e9b0c5.000003d1.honggfuzz.cov │ │ │ │ ├── 82cf0e374062c145ad86489fb8bc8d3e.0000040f.honggfuzz.cov │ │ │ │ ├── 82e7dc4043f56f66bcbcb5bcf88fb1cb.000003e0.honggfuzz.cov │ │ │ │ ├── 833cd17730921f1d04c406aa83510eab.000003d1.honggfuzz.cov │ │ │ │ ├── 835c4ba03e24cad192a5f87c3844ce4c.000002c2.honggfuzz.cov │ │ │ │ ├── 837a3b3f06f3e541f37dd014815a02de.00000052.honggfuzz.cov │ │ │ │ ├── 8414fbb9fd7704970db6820cace26e59.0000007a.honggfuzz.cov │ │ │ │ ├── 84a15dc0d8deaddcdb6f3f7951c52d56.00000121.honggfuzz.cov │ │ │ │ ├── 84d753b9d05625a6119ce88ae5fadc09.00000047.honggfuzz.cov │ │ │ │ ├── 851731fd1a0ebe70bb86680d9f04cdc8.00000615.honggfuzz.cov │ │ │ │ ├── 852780b2346ac70793fc8ba8afa4ab33.000001cc.honggfuzz.cov │ │ │ │ ├── 854d06636567e22850a39ef22c6c4984.00000121.honggfuzz.cov │ │ │ │ ├── 8563e975b319285eb8757d3c2991d038.0000061a.honggfuzz.cov │ │ │ │ ├── 857ff33d23944884e57ece0b79be2abe.000000b4.honggfuzz.cov │ │ │ │ ├── 86022537ab283e3ed101655de2cc94ba.000000de.honggfuzz.cov │ │ │ │ ├── 863ffa1a3cdcae59b36fbf749b0739a8.000002c2.honggfuzz.cov │ │ │ │ ├── 8688c8d0e99f9a8ba5324ca619bb142d.00000076.honggfuzz.cov │ │ │ │ ├── 86a17cd823a23b7974c22f6a104523c7.000001f8.honggfuzz.cov │ │ │ │ ├── 874f0f0296f46c3fb6cc229d164b226e.000001a8.honggfuzz.cov │ │ │ │ ├── 8750f606c41d44b27335ff2e8f5dd67a.000000a1.honggfuzz.cov │ │ │ │ ├── 8783fdd4c49be80087224a532cb1d3c7.00000124.honggfuzz.cov │ │ │ │ ├── 87e827969b9e97bb467df7c5c46de2ba.000000f3.honggfuzz.cov │ │ │ │ ├── 87f8466f0fa8204e48b10c638411bb9a.0000014a.honggfuzz.cov │ │ │ │ ├── 884ab2ad6f878f1591b4b71fac920f7b.00000046.honggfuzz.cov │ │ │ │ ├── 885292f01bd7ad4511ff36efcec3b4c0.00000121.honggfuzz.cov │ │ │ │ ├── 888a2b452dd9002547ccd46f777f3b7c.00000237.honggfuzz.cov │ │ │ │ ├── 8898edfada3832691d21fad2be79e530.000006d1.honggfuzz.cov │ │ │ │ ├── 88b059c1223f5501c34862029d342241.000002aa.honggfuzz.cov │ │ │ │ ├── 89252ede2afffba56a47ea4c9425b31f.000005d8.honggfuzz.cov │ │ │ │ ├── 893cf64a08a5b42831a8f09cea0f91a7.00000151.honggfuzz.cov │ │ │ │ ├── 89a79e322276d32a757f2017bbbcdb3a.000001cc.honggfuzz.cov │ │ │ │ ├── 89af59c122f0550142a8532dfaa69ae3.000002aa.honggfuzz.cov │ │ │ │ ├── 89d754390daac662171975ccbc7e7032.000001ed.honggfuzz.cov │ │ │ │ ├── 89e6288174b990fbc973d87065e695c3.000006a4.honggfuzz.cov │ │ │ │ ├── 8a4c0265ac83f196c559540721258290.0000046f.honggfuzz.cov │ │ │ │ ├── 8a513f7f9edf2f7c79c5ca20a273a689.000002c2.honggfuzz.cov │ │ │ │ ├── 8a6afec66dca83089ce42c285815b3e6.000001d2.honggfuzz.cov │ │ │ │ ├── 8ac6fb97da9818e47fb7f6baad9b440a.000003d1.honggfuzz.cov │ │ │ │ ├── 8aef616f008305b934ebba2eb75962d7.0000066e.honggfuzz.cov │ │ │ │ ├── 8b68d3d795cebe90fb1603c382811db4.000005d8.honggfuzz.cov │ │ │ │ ├── 8b84218cad7624d24962ee6442e855ea.00000121.honggfuzz.cov │ │ │ │ ├── 8bad8695addc884fa1d68d753bd3fbc0.00000243.honggfuzz.cov │ │ │ │ ├── 8bc74553ea22f4e0bcfec3ba1e868565.00000051.honggfuzz.cov │ │ │ │ ├── 8c79668cff49748cabea7875c92737f7.00000417.honggfuzz.cov │ │ │ │ ├── 8c7b74a5c7552fbf038027d731857a2b.00000031.honggfuzz.cov │ │ │ │ ├── 8c80ca728bbc19dbc806fe2b320fb745.00000189.honggfuzz.cov │ │ │ │ ├── 8d0aaaca3da165085d32f5492c8fc7b5.000001b0.honggfuzz.cov │ │ │ │ ├── 8d4596fa6c9f44b52838ed75e83956d9.00000121.honggfuzz.cov │ │ │ │ ├── 8d67c69de399d78af3bd0336fd2fc61a.00000052.honggfuzz.cov │ │ │ │ ├── 8d76af1e3f2b3cbd679ddf66f67845dd.00000669.honggfuzz.cov │ │ │ │ ├── 8d7d838e9ee8bf3e36616b3072853985.000005e9.honggfuzz.cov │ │ │ │ ├── 8dee883dcda8bc26fc5b4893354ffeff.000004fc.honggfuzz.cov │ │ │ │ ├── 8e32de12650ac89d74b882133ee433b7.00000800.honggfuzz.cov │ │ │ │ ├── 8e469dc15ff539d5f07d5d6e8dca50f4.00000022.honggfuzz.cov │ │ │ │ ├── 8e97a37b1ee7b654e345e89e003c411b.00000252.honggfuzz.cov │ │ │ │ ├── 8ec383103ffbea188aa40a0848617a51.00000635.honggfuzz.cov │ │ │ │ ├── 8ee781c82571ac31147544fc1957fe02.00000428.honggfuzz.cov │ │ │ │ ├── 8f9c97d2c4c01e4c371c7536b61f42eb.000005d8.honggfuzz.cov │ │ │ │ ├── 8fa49fae52938168b6c23ea96a41dc25.000002c5.honggfuzz.cov │ │ │ │ ├── 903f5b386df9cacd7b71a9cd43bc9e80.00000182.honggfuzz.cov │ │ │ │ ├── 90ef89e82da59a327b70fdd1e9727563.00000252.honggfuzz.cov │ │ │ │ ├── 9118e81edc16191f504de68782dc5998.0000001e.honggfuzz.cov │ │ │ │ ├── 9151b221b9d1dc232d4333c74c0bf83e.000002cd.honggfuzz.cov │ │ │ │ ├── 916d9df8ba37156182a01456a8cba6b7.00000741.honggfuzz.cov │ │ │ │ ├── 91c99a4a0ed9b1f1909c6b75eb3f507d.000006c8.honggfuzz.cov │ │ │ │ ├── 91c9ee27a8ac23a2c587d17a0432ed3c.00000052.honggfuzz.cov │ │ │ │ ├── 91cae7dd60e8f6345b0b6a2468908797.00000237.honggfuzz.cov │ │ │ │ ├── 91e5dba59c369b94da50755ab68bfbae.0000015c.honggfuzz.cov │ │ │ │ ├── 921f8805667e45636b85d39b7da2ba10.0000040f.honggfuzz.cov │ │ │ │ ├── 92489c467037fe9eb924386d115adf85.00000252.honggfuzz.cov │ │ │ │ ├── 924bc15efad5628bc0e12b0ef2a0c63b.00000476.honggfuzz.cov │ │ │ │ ├── 9280c963d564f62357edbb40e532bf59.00000121.honggfuzz.cov │ │ │ │ ├── 92a2eb15c5647a340e2fb79ce7fc6189.00000042.honggfuzz.cov │ │ │ │ ├── 92a2ebcc08f87a3482f1449de7d089df.00000042.honggfuzz.cov │ │ │ │ ├── 92a3b6b6c5647a340f97151777fc6189.00000042.honggfuzz.cov │ │ │ │ ├── 936584999ff6900b541cd1ef4b0b387a.0000011b.honggfuzz.cov │ │ │ │ ├── 936f32aed159cb880bd7145702fb4c73.0000023c.honggfuzz.cov │ │ │ │ ├── 93a4d39d52bdefa24b7f703f8f7bcb1b.0000011c.honggfuzz.cov │ │ │ │ ├── 93aab5e5563555e84dc63f53c6cf8b05.0000005d.honggfuzz.cov │ │ │ │ ├── 93cc37f7fc0abae8a671dfa18ded5386.000001e1.honggfuzz.cov │ │ │ │ ├── 93df8513af38dbf45fcb749babf81dda.0000003b.honggfuzz.cov │ │ │ │ ├── 93e82e27ea390c8a7bc7d1c7400e7328.0000020a.honggfuzz.cov │ │ │ │ ├── 93f4f1b17ace6f473319690ffb473231.0000011b.honggfuzz.cov │ │ │ │ ├── 940ac9e3df37101ec7282f36cd7db5f1.00000121.honggfuzz.cov │ │ │ │ ├── 940b62f9d43db00f32282f37887d40f0.00000121.honggfuzz.cov │ │ │ │ ├── 943fa94e113f900b8fb683028922dd67.00000235.honggfuzz.cov │ │ │ │ ├── 9447326c45240312d1114ac5b5b8d894.00000139.honggfuzz.cov │ │ │ │ ├── 948fec8a3734c3a9eec8931033e9f386.000002aa.honggfuzz.cov │ │ │ │ ├── 94d92c069fcb64f190447295385c69aa.00000310.honggfuzz.cov │ │ │ │ ├── 95283c452d7f36675cedaf7769c32a43.00000047.honggfuzz.cov │ │ │ │ ├── 9544e0dbd561637f66ae69b735f7d227.000004bd.honggfuzz.cov │ │ │ │ ├── 9566518dc87015e269f0bf6b63ada253.00000186.honggfuzz.cov │ │ │ │ ├── 958b81ff22977f1b761b0751a015d7e7.0000059a.honggfuzz.cov │ │ │ │ ├── 95a6784b8c957def4cbe8f6dbf347072.00000140.honggfuzz.cov │ │ │ │ ├── 95d1f8b789bd3db2201e0b8524922085.00000050.honggfuzz.cov │ │ │ │ ├── 95e4e0d89b90c264700bbb076f9866dc.000002cd.honggfuzz.cov │ │ │ │ ├── 961b35ba2ac49b4d4c0f92a55e670e21.000006c7.honggfuzz.cov │ │ │ │ ├── 9654f708f353fba38eecec70908ecbc3.000001ee.honggfuzz.cov │ │ │ │ ├── 96640980a7e45dcea05b0cf17050291b.00000045.honggfuzz.cov │ │ │ │ ├── 9748114d04d39c5e5404e5a1e33107d6.000003c9.honggfuzz.cov │ │ │ │ ├── 98426fc152062289adac59f0e2541b99.0000006f.honggfuzz.cov │ │ │ │ ├── 984a0cac057f5ffe3aa4a998220d0fdc.000000af.honggfuzz.cov │ │ │ │ ├── 98683392a16494ddbfc1e291e0a19c85.00000010.honggfuzz.cov │ │ │ │ ├── 98920cac055d5dde7dabfd6021f0f873.000000af.honggfuzz.cov │ │ │ │ ├── 9893d7dc9b2c18de7dabfd618aea4873.000000af.honggfuzz.cov │ │ │ │ ├── 98d5b5eed3edf16cb6aa9cdd9f757e42.00000669.honggfuzz.cov │ │ │ │ ├── 98dff8ebe92826fc191bf5c68ae8c788.0000014a.honggfuzz.cov │ │ │ │ ├── 9910d9e3f335600c6b3c9b0b93f3d98a.000003ec.honggfuzz.cov │ │ │ │ ├── 99156b8599646cbcb1bcdab693da3723.00000101.honggfuzz.cov │ │ │ │ ├── 9924ef8ddee5fb0da9dee6809285e3f4.000001a8.honggfuzz.cov │ │ │ │ ├── 99279f3b1f08169450993ef68cbec97f.000002df.honggfuzz.cov │ │ │ │ ├── 9927bb211e90771c323b1d31825b8e6a.000002aa.honggfuzz.cov │ │ │ │ ├── 9969aaba8e5347b3fda7be69244731ed.000002b4.honggfuzz.cov │ │ │ │ ├── 9969f7df21d0925c5654fe57c5610161.000003c9.honggfuzz.cov │ │ │ │ ├── 996d4b0393845bd07094de6a8f2eefe1.000006b1.honggfuzz.cov │ │ │ │ ├── 99cf36513a4e03b2f5523b8381774ba1.000002ad.honggfuzz.cov │ │ │ │ ├── 99f64c6c8673f4873b66a4bf46599ab9.000003c4.honggfuzz.cov │ │ │ │ ├── 9a03908c51fffc461ee8e9ab5a4ea634.0000005c.honggfuzz.cov │ │ │ │ ├── 9a831cb4612cb123646c4a01dd4ce805.0000011c.honggfuzz.cov │ │ │ │ ├── 9a8dc4ea9b8c2a5caa85dce96be1db09.00000800.honggfuzz.cov │ │ │ │ ├── 9a970868a9d43c34111d958416524e6d.00000669.honggfuzz.cov │ │ │ │ ├── 9b0919a7dad5c42ef2625a83fadb5d33.00000310.honggfuzz.cov │ │ │ │ ├── 9b8cccbdbe9c6437017343bdbcc9d4c0.00000139.honggfuzz.cov │ │ │ │ ├── 9bbe829ad879699feb4fb5e0a47a59fa.00000141.honggfuzz.cov │ │ │ │ ├── 9bd8f49e9b6c145066fb36d1f53acad3.000002e1.honggfuzz.cov │ │ │ │ ├── 9c4ab7c788fe70a91edc770d9a08ff7d.000000c0.honggfuzz.cov │ │ │ │ ├── 9c7b5cc7b9908a56e992abc1f31f97a4.00000175.honggfuzz.cov │ │ │ │ ├── 9c8a2d8d3b47650bb74d14ea72c08e34.00000252.honggfuzz.cov │ │ │ │ ├── 9c94c13edf23255cfbceb13ee452dd8d.00000152.honggfuzz.cov │ │ │ │ ├── 9c96e864b9c1f20b34f210ff41061914.0000004b.honggfuzz.cov │ │ │ │ ├── 9cb1fde066b80b1c9a384f6ea48f596d.000002ea.honggfuzz.cov │ │ │ │ ├── 9cba3d823f65e9374c7b6a8109471c9d.00000077.honggfuzz.cov │ │ │ │ ├── 9cec35844f071c9a0dec41e6b1ce100c.000001ce.honggfuzz.cov │ │ │ │ ├── 9d1f0df2fb865d3fb81769b5c1a1c441.0000077b.honggfuzz.cov │ │ │ │ ├── 9d71e45c6ec5936e39d6d8aa47222e49.0000011b.honggfuzz.cov │ │ │ │ ├── 9d98b9fd9d51b9b73a9eacc15197ac31.000001e1.honggfuzz.cov │ │ │ │ ├── 9de40d178afbac5def68f20c8de38d05.000000eb.honggfuzz.cov │ │ │ │ ├── 9df54323517489f3de01d1b37a42a6cb.00000025.honggfuzz.cov │ │ │ │ ├── 9e6343ef107b2aa91efc771dabb7d9c0.00000151.honggfuzz.cov │ │ │ │ ├── 9e6f259deecc24fbe00cf9c792ad1a38.0000040f.honggfuzz.cov │ │ │ │ ├── 9ea50e4f5b0798b4f0d0c70c05d24640.00000057.honggfuzz.cov │ │ │ │ ├── 9edd226c38aaa979736acf655f5a5bdd.000006ec.honggfuzz.cov │ │ │ │ ├── 9f62947f88a4d70e55741563f4740e5d.00000360.honggfuzz.cov │ │ │ │ ├── 9f823fad275308e581b78cab4f8311b6.00000360.honggfuzz.cov │ │ │ │ ├── 9fb0eece596add7672d02f685d51924d.00000020.honggfuzz.cov │ │ │ │ ├── README.md │ │ │ │ ├── a00211668ad141b4125dc8438678c6cd.000001ca.honggfuzz.cov │ │ │ │ ├── a04af04ebb9000a7ef40d4cab967464e.000002c2.honggfuzz.cov │ │ │ │ ├── a0aab49cf3a2f366dfd81e9c3eaed725.000000f4.honggfuzz.cov │ │ │ │ ├── a0f330b55b9b2e5c0c210a2097c11a32.00000162.honggfuzz.cov │ │ │ │ ├── a1266873c4ee2a1703828843e575d705.0000029e.honggfuzz.cov │ │ │ │ ├── a12936e2b2328d2467794d62db89c4f1.00000021.honggfuzz.cov │ │ │ │ ├── a17aa6e2b2328d24fb13dd62db89c498.00000021.honggfuzz.cov │ │ │ │ ├── a1803423e4f0db28967c951bc407f1c4.00000454.honggfuzz.cov │ │ │ │ ├── a18305c33a58ca8d15ccfc8e52917d73.00000800.honggfuzz.cov │ │ │ │ ├── a1a7350330456c067b86c2bdb44169d1.000000f8.honggfuzz.cov │ │ │ │ ├── a1f851c16245bda99b025ac7105347c0.00000101.honggfuzz.cov │ │ │ │ ├── a26a5e51057b0671b315d17728e0e9f2.00000651.honggfuzz.cov │ │ │ │ ├── a295c4eefe04559937e019efd4eefb40.00000038.honggfuzz.cov │ │ │ │ ├── a2976bd4791774e72ace2929d7143813.00000121.honggfuzz.cov │ │ │ │ ├── a33f0bef34d5e07315f9d32f0506005b.000001e2.honggfuzz.cov │ │ │ │ ├── a363ecd635252189435a1d0c1f20a442.000002ad.honggfuzz.cov │ │ │ │ ├── a3cd3e3d901805dcca0613b1d2af15d9.00000800.honggfuzz.cov │ │ │ │ ├── a3cee05db5f116e239f0bfc863d78618.00000186.honggfuzz.cov │ │ │ │ ├── a3de6260a74f48abfac618997845d8b4.00000669.honggfuzz.cov │ │ │ │ ├── a406ec3304aa31a79ce614a7037d4ce2.00000669.honggfuzz.cov │ │ │ │ ├── a418e0372615e751d5293747d392923d.00000011.honggfuzz.cov │ │ │ │ ├── a423617b7118805dee8bd433ee8380bb.000000f0.honggfuzz.cov │ │ │ │ ├── a42b6e80e6af96d6fe1481b3de6eff9f.00000021.honggfuzz.cov │ │ │ │ ├── a466402ffed1678dac1a0a24420a2386.00000252.honggfuzz.cov │ │ │ │ ├── a47c3cc04a3d57d0119ff1218424ea3d.000000f3.honggfuzz.cov │ │ │ │ ├── a482effedb9bcebc5188a69a6ac74b8a.00000800.honggfuzz.cov │ │ │ │ ├── a4a6e436229edbccdab6d20eaa5cae87.000005d8.honggfuzz.cov │ │ │ │ ├── a4afb03607f2f707b7e12380f48ca078.00000011.honggfuzz.cov │ │ │ │ ├── a5185c84160825c69492828d00ee0292.000003e0.honggfuzz.cov │ │ │ │ ├── a549068a104c7d1d0caab578560287d1.00000323.honggfuzz.cov │ │ │ │ ├── a56800c76d63305c10dc5534e3b23e22.00000438.honggfuzz.cov │ │ │ │ ├── a56efd118477d9c92b303d21f7253646.00000067.honggfuzz.cov │ │ │ │ ├── a572379cd1b368880c2daa3ebce1eef8.00000669.honggfuzz.cov │ │ │ │ ├── a5c74d91fff53fa9ccac48d9b480757c.0000001f.honggfuzz.cov │ │ │ │ ├── a60171912220166815e47e9e3b8ddab8.000001cc.honggfuzz.cov │ │ │ │ ├── a6058df1de36a6d2e376b155677fa7aa.00000207.honggfuzz.cov │ │ │ │ ├── a67f2ad49c3da07bd599701569e61785.0000068a.honggfuzz.cov │ │ │ │ ├── a72c5e92aa688af486c4976fb9468ab2.00000177.honggfuzz.cov │ │ │ │ ├── a72ee6082c848e08a9bbec4b5c525c5e.000002bf.honggfuzz.cov │ │ │ │ ├── a7537ca77039491b12fe57358f93a80d.000000f8.honggfuzz.cov │ │ │ │ ├── a7623081dff71545c18c742cad2fcc4b.000002e6.honggfuzz.cov │ │ │ │ ├── a76af960a8abfa3b2879c9e7cb6de487.000003e0.honggfuzz.cov │ │ │ │ ├── a7b983c491be399bd6512a206d49070b.00000252.honggfuzz.cov │ │ │ │ ├── a8211c3743a5cd89bcb1d0a405672313.00000123.honggfuzz.cov │ │ │ │ ├── a825082747b1dd899f3ee802da5d60b7.00000123.honggfuzz.cov │ │ │ │ ├── a82a7aec2570cdd94cb15d35de0f5309.00000123.honggfuzz.cov │ │ │ │ ├── a82a7aec2575cd894cb32d12de0ef87e.00000123.honggfuzz.cov │ │ │ │ ├── a82ab18d257598984cb32d12de0f230e.00000123.honggfuzz.cov │ │ │ │ ├── a8618763531e3260dc4658f6dbb2f86d.00000098.honggfuzz.cov │ │ │ │ ├── a87193443b4ddaf3e383aa64996b5e2b.000003ad.honggfuzz.cov │ │ │ │ ├── a8c0ef0d4442fbc580834b9e1108fab6.00000068.honggfuzz.cov │ │ │ │ ├── a8eb7111035872f17f2b84f9ebbc0945.00000189.honggfuzz.cov │ │ │ │ ├── a9018f12bc9164cbf8719b42d068eec2.00000069.honggfuzz.cov │ │ │ │ ├── a94c04546d7558d408fb339b4ed42f25.0000003f.honggfuzz.cov │ │ │ │ ├── a94d0a52f067330f2932ac9748ca6d9c.000007ad.honggfuzz.cov │ │ │ │ ├── a9d3e266d62eb2fb97dc7cf9b0fc4e80.000001e1.honggfuzz.cov │ │ │ │ ├── a9d720d8c82ae6d5e31e5baf963550e0.00000682.honggfuzz.cov │ │ │ │ ├── aa7620bcd67f1ff78bbca5efb1276e79.00000060.honggfuzz.cov │ │ │ │ ├── aaaf09a27650792732a87d3bd886a79c.000001e1.honggfuzz.cov │ │ │ │ ├── aadec2c4a76deb8845800034bb1ec507.00000694.honggfuzz.cov │ │ │ │ ├── ab00f1d88ba69d023ba09780b0c87dfc.00000040.honggfuzz.cov │ │ │ │ ├── ab0221d88ba69d023ba24550b0c87eff.00000040.honggfuzz.cov │ │ │ │ ├── ab027d5adda69d025a864450a6fc1552.00000040.honggfuzz.cov │ │ │ │ ├── ab0292056da69d02b1364550a6fdd35f.00000040.honggfuzz.cov │ │ │ │ ├── ab0347956da69d028137d450a6022d99.00000040.honggfuzz.cov │ │ │ │ ├── ab03d7056da69d0211374450a6fdd299.00000040.honggfuzz.cov │ │ │ │ ├── abcdc0155644ce59834af9cf436f4d37.00000101.honggfuzz.cov │ │ │ │ ├── ac016cc0e7f6d949fa6949b308e5f145.00000052.honggfuzz.cov │ │ │ │ ├── ac235bab6db17ed4f7904847eeb33df7.000001cb.honggfuzz.cov │ │ │ │ ├── ac287cc0e7f6d949d993c0c0f26ca145.00000052.honggfuzz.cov │ │ │ │ ├── ac31a6df55639367b4b0b1e487869608.00000087.honggfuzz.cov │ │ │ │ ├── ac54a4b97df469758dd603aacfde3cc0.00000800.honggfuzz.cov │ │ │ │ ├── ac675a5a5a105cba0bfbbddf56622a27.00000242.honggfuzz.cov │ │ │ │ ├── ac8afc1792a8113dc736ef6105cb3b78.00000025.honggfuzz.cov │ │ │ │ ├── acac5567cb463208a6d19b0539d9c1ce.0000007c.honggfuzz.cov │ │ │ │ ├── acf3c48e3fdae7ab9e3773ddef548c29.000002c2.honggfuzz.cov │ │ │ │ ├── ad04e2006b4b8cb14afc5e9360ecaa92.0000019d.honggfuzz.cov │ │ │ │ ├── ad24996f27a4cdca33e940f7ceb99580.000002cc.honggfuzz.cov │ │ │ │ ├── ad4a5ba16c668b106632f1b9fbcd36ac.00000143.honggfuzz.cov │ │ │ │ ├── ad8573392efaa167a6e43956865b1f58.00000237.honggfuzz.cov │ │ │ │ ├── addee04307c207f9256db6e363b6e628.00000800.honggfuzz.cov │ │ │ │ ├── address.0.wasm │ │ │ │ ├── adeaef10129e3a47d564d238bfdf3362.000007c0.honggfuzz.cov │ │ │ │ ├── ae281248101c66e5addf03f5bdf4343a.00000669.honggfuzz.cov │ │ │ │ ├── ae2a326b86ddd0051194eb49141c8177.00000669.honggfuzz.cov │ │ │ │ ├── ae3f2431c3b5d9b26a73238fc1d1e677.0000001e.honggfuzz.cov │ │ │ │ ├── ae3f24dfd0e16f5268edd385c1d1e677.0000001e.honggfuzz.cov │ │ │ │ ├── ae3f25eab3b5d9b26a73238e84d1e677.0000001e.honggfuzz.cov │ │ │ │ ├── ae507d8bc221b0076bd6151bb2ff81c1.00000290.honggfuzz.cov │ │ │ │ ├── ae5feb6f3e590bb895927b6a0f205669.00000669.honggfuzz.cov │ │ │ │ ├── ae78d45c0f3798c150b8a039b3f186ca.00000047.honggfuzz.cov │ │ │ │ ├── aeba44021d78241fabad4b592a4de348.00000121.honggfuzz.cov │ │ │ │ ├── aeba7ec4f7d26202eaa3d1faa0c4281d.0000000f.honggfuzz.cov │ │ │ │ ├── af90d1da1933c9adbea0fa04c45f2c0e.00000022.honggfuzz.cov │ │ │ │ ├── afb74e5d9228315d0442e308818c34e9.00000669.honggfuzz.cov │ │ │ │ ├── aff357627b6380f88ebc9bfe79d55851.000002c5.honggfuzz.cov │ │ │ │ ├── b0401767a2f0347d46233adac2d60daa.000006ec.honggfuzz.cov │ │ │ │ ├── b092eefaeed5a54f75f74d2d4942930b.00000051.honggfuzz.cov │ │ │ │ ├── b0a5fc500d73a40745c49b90ab2ea815.00000800.honggfuzz.cov │ │ │ │ ├── b0e800f3cc665537aa3cbd5de7b2e92e.000004ad.honggfuzz.cov │ │ │ │ ├── b0f4696b53daabf2b4ae1625fb3626f8.0000020e.honggfuzz.cov │ │ │ │ ├── b1157b48caa1feb50edba7d50e505906.0000011b.honggfuzz.cov │ │ │ │ ├── b153f3b1d828447a0ae38c17818da7a5.00000783.honggfuzz.cov │ │ │ │ ├── b1cdd23562dd616c463f6684c7c00203.00000023.honggfuzz.cov │ │ │ │ ├── b21a437284d5544bfee1627d5eb76f53.000005d8.honggfuzz.cov │ │ │ │ ├── b28068013346b20318886cc4b412ecf0.00000010.honggfuzz.cov │ │ │ │ ├── b281fe3494b94bea8b92031bf7b1541c.0000011c.honggfuzz.cov │ │ │ │ ├── b298a23e460c389ddd4195ba3ab3a3be.000000c4.honggfuzz.cov │ │ │ │ ├── b2d8f5c09a2f7da0ed9c4acc97b17229.00000124.honggfuzz.cov │ │ │ │ ├── b2da9f78aed513f32f92bd370bf84d2d.000003e1.honggfuzz.cov │ │ │ │ ├── b31393e046af30e98a2596dae9908a89.000000eb.honggfuzz.cov │ │ │ │ ├── b32081cae2b2796e55f6158b5b890d3a.00000417.honggfuzz.cov │ │ │ │ ├── b34ce36bab636211d42d64932753f463.00000711.honggfuzz.cov │ │ │ │ ├── b360c1caa2f2796e19d57d1778e49019.00000417.honggfuzz.cov │ │ │ │ ├── b37461b0d9a190b8833734dbf9b759a9.000003f9.honggfuzz.cov │ │ │ │ ├── b3893d1e3c35add8d7d6f6bf825c9a6b.000006a4.honggfuzz.cov │ │ │ │ ├── b3cd46eaad2881c34c582355ec769747.000001cc.honggfuzz.cov │ │ │ │ ├── b3cfa7ac2827a511c16c9c9ed81a6f67.00000711.honggfuzz.cov │ │ │ │ ├── b407f96bb662dfdab26dd4100c7e9c97.00000052.honggfuzz.cov │ │ │ │ ├── b42455884b110265c7bbaa4ff769f667.00000048.honggfuzz.cov │ │ │ │ ├── b437163119f3479d3eae29a3501a4d96.0000011c.honggfuzz.cov │ │ │ │ ├── b442378b6084507a124514bf7f7945ae.000001e4.honggfuzz.cov │ │ │ │ ├── b4918f4e0ee114f184d48bce55fbdb5a.00000017.honggfuzz.cov │ │ │ │ ├── b4d620bcd712bfd25bf2502a5a79eacd.00000060.honggfuzz.cov │ │ │ │ ├── b4dad73e6cfbfb8ea0b1342f2aa604ed.0000052b.honggfuzz.cov │ │ │ │ ├── b4f955212d7f10f552247108a5364618.000003d1.honggfuzz.cov │ │ │ │ ├── b50a41a2e06498fedf4577f1dc092643.00000025.honggfuzz.cov │ │ │ │ ├── b50a4bf3017489fede01d64ec6592643.00000025.honggfuzz.cov │ │ │ │ ├── b50a4ef3506498fedf44d34e96592643.00000025.honggfuzz.cov │ │ │ │ ├── b50a4ef356cfe8fed998d33e96592643.00000025.honggfuzz.cov │ │ │ │ ├── b50a4f43506498fedf44d2e58ce92643.00000025.honggfuzz.cov │ │ │ │ ├── b53c79a99ed89ddffc5997226dc7ed3a.000001e2.honggfuzz.cov │ │ │ │ ├── b5fed0b296646894ca27084882744bd8.00000038.honggfuzz.cov │ │ │ │ ├── b62da48464c5cc5dc8e97d1ff1c4e706.000002aa.honggfuzz.cov │ │ │ │ ├── b6343ae3a24e55f0d042eab947eb9f4a.0000001e.honggfuzz.cov │ │ │ │ ├── b63dbc8d43219cbfde91a2ecc308bffa.0000002a.honggfuzz.cov │ │ │ │ ├── b6a34377244b56f06260c98dc5b4c54a.0000001e.honggfuzz.cov │ │ │ │ ├── b6a34377244ba88626c0c98dc5b4c5b4.0000001e.honggfuzz.cov │ │ │ │ ├── b6a343772784a88626c2a41dc5b4c5b4.0000001e.honggfuzz.cov │ │ │ │ ├── b6a58377244ba88626c0c98dc1f481b4.0000001e.honggfuzz.cov │ │ │ │ ├── b6dd79090c8a96b8b0ab48551fce59d2.00000291.honggfuzz.cov │ │ │ │ ├── b6fd271377c442d67853d806122893e9.000004cc.honggfuzz.cov │ │ │ │ ├── b7062f276d581eb419b49bc6bd102596.000002c5.honggfuzz.cov │ │ │ │ ├── b73427af25363e31a61a589e54f75819.000000b2.honggfuzz.cov │ │ │ │ ├── b7450b81b0804bfa72199f4be90f17e4.00000669.honggfuzz.cov │ │ │ │ ├── b769aefa032c2696968336c8c09b20cd.000001a9.honggfuzz.cov │ │ │ │ ├── b836c80051a1c61e9c0cc6c3639e7953.00000323.honggfuzz.cov │ │ │ │ ├── b87be3f26c6659cf3d634ebac450c4d8.00000355.honggfuzz.cov │ │ │ │ ├── b881760a0d6adde6bccc20682c66d3a1.00000020.honggfuzz.cov │ │ │ │ ├── b8843c32f3506498c444d3c7ee231f4b.00000026.honggfuzz.cov │ │ │ │ ├── b890e87ceb8eaf0dbe1fdd65897b9d96.00000645.honggfuzz.cov │ │ │ │ ├── b8a17ba154a6bb313ff89b2a7a9f300c.0000011b.honggfuzz.cov │ │ │ │ ├── b8c832ac6ad42bc91a3b03d0d99e1790.00000693.honggfuzz.cov │ │ │ │ ├── b8e4a8f1f22562ae8f0f2e7df55c395d.000002ad.honggfuzz.cov │ │ │ │ ├── b9083c7bac40701d081d416283e47b9d.00000027.honggfuzz.cov │ │ │ │ ├── b96ef56d38dbde93889470c540e4bdc2.000006a4.honggfuzz.cov │ │ │ │ ├── b99ba5d5fd6f2dfa8e999cbdfa1683ad.000001a9.honggfuzz.cov │ │ │ │ ├── b9a577f26246226e3eae2eb7792202c7.0000001c.honggfuzz.cov │ │ │ │ ├── b9a577f2624623de3eae2eb77923d9b7.0000001c.honggfuzz.cov │ │ │ │ ├── ba4ff401331c69df07a31944c339fa5c.000000ae.honggfuzz.cov │ │ │ │ ├── ba4ff401f0df69dfc43a898b30a06ac5.000000ae.honggfuzz.cov │ │ │ │ ├── bb1c265be03f5cb003d1c41887c9fcf0.000002c2.honggfuzz.cov │ │ │ │ ├── bb2bef95b5e31ee8b5ec9076e560916a.00000669.honggfuzz.cov │ │ │ │ ├── bb8b9e5ccb5ac8b622e2a6f329e67ed5.000000f6.honggfuzz.cov │ │ │ │ ├── bb985f22578f722b7a71d86a1f5e0ac5.00000323.honggfuzz.cov │ │ │ │ ├── bb9afb13a4715ec8943ec88467bdac19.00000578.honggfuzz.cov │ │ │ │ ├── bba0ea9fc7db3b259b6f2f997c4839ca.0000011b.honggfuzz.cov │ │ │ │ ├── bba45ecc200b293e51a0ea049b6bb612.000000eb.honggfuzz.cov │ │ │ │ ├── bbe4e5baafc14e7308ace24c7e2ff66f.000001ed.honggfuzz.cov │ │ │ │ ├── bc203d5e641e8f9c1644e467f43aad66.000005d8.honggfuzz.cov │ │ │ │ ├── bce9b0d0ada6252246e6a6aeebea9e0c.00000275.honggfuzz.cov │ │ │ │ ├── bce9b867fed6252293e6bd96365c4561.00000275.honggfuzz.cov │ │ │ │ ├── bd0eca548f59ffbffe8f72f629e1150d.00000024.honggfuzz.cov │ │ │ │ ├── bdab7590697197b2720e6fe4266d4527.000002de.honggfuzz.cov │ │ │ │ ├── bdf8984bdf2b5f008b9411be50029df1.0000077b.honggfuzz.cov │ │ │ │ ├── be04361ada3c83ee89b7311e0b1628aa.00000669.honggfuzz.cov │ │ │ │ ├── be2f3f68815263ce3510215598e71d00.0000066e.honggfuzz.cov │ │ │ │ ├── be3981cba6f743908f3f78ea21df9f8f.00000417.honggfuzz.cov │ │ │ │ ├── be5946a10cea3417e41116e6f5f8df2a.00000417.honggfuzz.cov │ │ │ │ ├── be66cc159c0dfdc0598af2771abf0840.00000023.honggfuzz.cov │ │ │ │ ├── bed33484f40f37a2f82dd8dd8b599091.0000040b.honggfuzz.cov │ │ │ │ ├── bed468bb1e461a3079ef081fa9ff65cd.0000005c.honggfuzz.cov │ │ │ │ ├── bf3ac57692ee969316fe29708ad56a70.00000058.honggfuzz.cov │ │ │ │ ├── bf410a4c38d869cc52e0e74973b4b306.000003c4.honggfuzz.cov │ │ │ │ ├── bf452d2235ab02d99b1f2702c8cae400.00000669.honggfuzz.cov │ │ │ │ ├── bf55503fbdf942aa7a4a21c07a3b8e83.000003d1.honggfuzz.cov │ │ │ │ ├── bf775eb5e2e3a3b50dedeb7433220149.00000020.honggfuzz.cov │ │ │ │ ├── bf7f72a205aa2bbf01c0d95aa1152ff9.00000675.honggfuzz.cov │ │ │ │ ├── binary.0.wasm │ │ │ │ ├── binary.1.wasm │ │ │ │ ├── binary.2.wasm │ │ │ │ ├── binary.3.wasm │ │ │ │ ├── block.0.wasm │ │ │ │ ├── br.0.wasm │ │ │ │ ├── br_if.0.wasm │ │ │ │ ├── br_table.0.wasm │ │ │ │ ├── break-drop.0.wasm │ │ │ │ ├── c03252bb2eff6983517e27031023a739.00000018.honggfuzz.cov │ │ │ │ ├── c045ebb2adf19c913a404f40aaff4b46.000003a1.honggfuzz.cov │ │ │ │ ├── c0ce526c3a078023c3fd8443afd5a26f.000003e0.honggfuzz.cov │ │ │ │ ├── c0ef1b5650c02d7f6e133e18af9935ac.00000252.honggfuzz.cov │ │ │ │ ├── c16f74294f7f0a82c66e72b7216f6f44.00000211.honggfuzz.cov │ │ │ │ ├── c1b5e5c74a2b565c3cb523a968df4ee0.00000285.honggfuzz.cov │ │ │ │ ├── c1e6bd3acc445cf59c1a7fcf919526b0.00000800.honggfuzz.cov │ │ │ │ ├── c1ed2a0a8c3e995775a2a5f3a627c8b2.000001cc.honggfuzz.cov │ │ │ │ ├── c2251c985c046d1b739f744ca10f873d.000004e7.honggfuzz.cov │ │ │ │ ├── c23d97aa8266b41c75fc8a09367288f2.000003c9.honggfuzz.cov │ │ │ │ ├── c25ff6609ea2c7c9ce48a06d85c6b57c.00000121.honggfuzz.cov │ │ │ │ ├── c264b381baaf5bf8c7b35720241b3de6.00000121.honggfuzz.cov │ │ │ │ ├── c311a642b5ee1d20c0a7768030bb4a77.00000060.honggfuzz.cov │ │ │ │ ├── c32d79ed0277c0d3c4cb7c630639986d.0000014a.honggfuzz.cov │ │ │ │ ├── c35ebc79331cd0ed98de267636bca63a.000000f4.honggfuzz.cov │ │ │ │ ├── c373793e4293c26ab75a304af900256c.00000151.honggfuzz.cov │ │ │ │ ├── c3c886f7e788dad3edce9c634f43986d.0000014a.honggfuzz.cov │ │ │ │ ├── c3ec4ba03e581a0c9a90ed7d69012112.000002c2.honggfuzz.cov │ │ │ │ ├── c3f78ae300655985e89a7eecf0e220ea.000001e2.honggfuzz.cov │ │ │ │ ├── c45441dceceed9d45fe53381a7f479d4.000001cc.honggfuzz.cov │ │ │ │ ├── c467192303e1e4a0368dbf45f48b08a4.000006b6.honggfuzz.cov │ │ │ │ ├── c4a7ffd7e149031456533fb143dfb14d.0000011c.honggfuzz.cov │ │ │ │ ├── c4ac118ecba770047b5dd9f4a72e0456.00000014.honggfuzz.cov │ │ │ │ ├── c4ac125a4979b004215fa034a72ea319.00000014.honggfuzz.cov │ │ │ │ ├── c4c754c989e3bd5661d6de8b9bf887d4.00000084.honggfuzz.cov │ │ │ │ ├── c5741d2df45031a7686b28f0faf5ebb4.000002df.honggfuzz.cov │ │ │ │ ├── c60c2c72aac39e8ae6b7b5bb13e2e586.00000139.honggfuzz.cov │ │ │ │ ├── c691a02569466b71c444a8e3a2f505ba.00000231.honggfuzz.cov │ │ │ │ ├── c6a4ab9d71d00215bc60b291976a461c.0000011c.honggfuzz.cov │ │ │ │ ├── c6cabe90826d01c6a1c06caaa10a4bf7.00000051.honggfuzz.cov │ │ │ │ ├── c70f9f90f276de76afe992dbbc6c05a5.000002c2.honggfuzz.cov │ │ │ │ ├── c73f3b35e9f003d9a0a48cac999fba2e.00000252.honggfuzz.cov │ │ │ │ ├── c75273e3e2cc831e75b79c14fa2c9a47.00000669.honggfuzz.cov │ │ │ │ ├── c75e03772e63a88626ce120deb276ca0.0000001e.honggfuzz.cov │ │ │ │ ├── c75e3afd3608debc85c85848ee8a589f.00000139.honggfuzz.cov │ │ │ │ ├── c798032958bc496e93bc0fba12be9284.00000669.honggfuzz.cov │ │ │ │ ├── c7b6d14558e7d9c2df7cc953dc3ce712.000001c2.honggfuzz.cov │ │ │ │ ├── c7c8c7ab2aae7e7b7bbe144b70208bb2.00000569.honggfuzz.cov │ │ │ │ ├── c7c8f2f245cfcefd1a852ce8884aba9f.00000042.honggfuzz.cov │ │ │ │ ├── c7e134a7ab782c4b7dd04c0e480e2334.00000020.honggfuzz.cov │ │ │ │ ├── c8359229ab8cef811b6ad33f2b23520f.00000242.honggfuzz.cov │ │ │ │ ├── c87b7fb5ffd320e5e0d850c36d158422.00000669.honggfuzz.cov │ │ │ │ ├── c8864df57fc81aa2be20862c36d348a1.000000e4.honggfuzz.cov │ │ │ │ ├── c8a4a9b05439ed1e7f7d3bdd44346d19.000003ea.honggfuzz.cov │ │ │ │ ├── c92b2d75881782754ab0e134843deb1c.00000060.honggfuzz.cov │ │ │ │ ├── c92e76843cf6e6c9192a26169e8a2d2a.00000121.honggfuzz.cov │ │ │ │ ├── c95e891b84ce5592d8a730a92313ad4a.00000052.honggfuzz.cov │ │ │ │ ├── c9bdd73654736e0ccae3d5318df5b820.00000800.honggfuzz.cov │ │ │ │ ├── c9eb80124ce65f1ed110315374297256.0000003f.honggfuzz.cov │ │ │ │ ├── c9eb83e3850c3f1ed2702c9eeb4f5857.0000003f.honggfuzz.cov │ │ │ │ ├── ca049b9e83cad988b366a25497fb3161.00000252.honggfuzz.cov │ │ │ │ ├── ca31befa44efbd14ff30976b42bcb30b.000001b5.honggfuzz.cov │ │ │ │ ├── ca33d58af17b2e3c2f7ed524c22de647.00000020.honggfuzz.cov │ │ │ │ ├── ca7080612e65ae23d1074a71d1c9238d.0000053e.honggfuzz.cov │ │ │ │ ├── cab9f47b837be91fd5b291e30dffdcda.00000121.honggfuzz.cov │ │ │ │ ├── cabf69a238dfd29872d6c5f523e3e796.0000009c.honggfuzz.cov │ │ │ │ ├── cad0e25056567dc4bb767ccc4e64fa4d.00000053.honggfuzz.cov │ │ │ │ ├── call.0.wasm │ │ │ │ ├── call_indirect.0.wasm │ │ │ │ ├── cb059bd95726db2592cb944955397aab.0000014a.honggfuzz.cov │ │ │ │ ├── cb1db7b38b133daf6ec4f04a8d15bf2d.00000304.honggfuzz.cov │ │ │ │ ├── cb3b31f49adfcef41e5608d4bbb1b8cf.00000042.honggfuzz.cov │ │ │ │ ├── cb4beb0330bd8e72dd82ce14c017c44a.00000019.honggfuzz.cov │ │ │ │ ├── cb6a827e437a57f6fa970dae08d9f025.00000019.honggfuzz.cov │ │ │ │ ├── cbcb443af17b2e3ce5f46524c22c8ea0.00000020.honggfuzz.cov │ │ │ │ ├── cbf48822dc853147fdb2a77ed24cfa5a.00000151.honggfuzz.cov │ │ │ │ ├── cc0f251ece52ea3ae325976dcd70e170.00000323.honggfuzz.cov │ │ │ │ ├── cc4352f99a03f0fd00d02d3b6d4ef37a.000001d2.honggfuzz.cov │ │ │ │ ├── cc4433823f65e8f1d45a4389b167ec92.00000077.honggfuzz.cov │ │ │ │ ├── cc4bbafec75e0ec19861d29b96fbcaba.000003c9.honggfuzz.cov │ │ │ │ ├── cc617778c5cfed8356a8af05f0330ee9.00000121.honggfuzz.cov │ │ │ │ ├── ccad98888a58cdd9e1e88bb8bbf8a8ef.0000001f.honggfuzz.cov │ │ │ │ ├── ccfb42ec961ff048ba43ce7030c92298.0000001f.honggfuzz.cov │ │ │ │ ├── cd21fef5b907e1c2fc69a1189ebedad9.000002c5.honggfuzz.cov │ │ │ │ ├── cd948b24f7042e7c10acae1c8d9e7b5a.00000166.honggfuzz.cov │ │ │ │ ├── cd9e5b141b3f5d877af2d9554edbc38e.000000ae.honggfuzz.cov │ │ │ │ ├── cdadd92f7a8d36e6e101ca4db01c7b12.000002e1.honggfuzz.cov │ │ │ │ ├── cdddb3a94c4661d02033cdb22955408a.000002e1.honggfuzz.cov │ │ │ │ ├── ce04dc4cd561fd47dfde66f46e4fc5a6.000001ed.honggfuzz.cov │ │ │ │ ├── ce0e4550aff3e2f0618e3accb51fd5d3.00000783.honggfuzz.cov │ │ │ │ ├── ce3e68d06ba54c017dc10585ce8bb25d.00000057.honggfuzz.cov │ │ │ │ ├── ce3e8573a8a54c01431985ab76a524e5.00000057.honggfuzz.cov │ │ │ │ ├── ce3e8573a8fae9fb4343dfab2cff24e5.00000057.honggfuzz.cov │ │ │ │ ├── ce3e85aba8a54c01bb998546231dc9b0.00000057.honggfuzz.cov │ │ │ │ ├── ce3ed9928ce059011d9525899587e457.00000057.honggfuzz.cov │ │ │ │ ├── cecb00be159628af7c742b1ce5a16683.00000800.honggfuzz.cov │ │ │ │ ├── cf15c8322883a825ce4a71dc5575b47c.00000121.honggfuzz.cov │ │ │ │ ├── cf3a8ca376442c71ac76bc11e3b73be8.00000560.honggfuzz.cov │ │ │ │ ├── cfaf698390b774116eee27d971a6df50.00000014.honggfuzz.cov │ │ │ │ ├── cfdb3b65f301a8a1c9c8cd85338725ad.00000800.honggfuzz.cov │ │ │ │ ├── cfe0dbce64e4e894f8f4e1c213fa7632.00000017.honggfuzz.cov │ │ │ │ ├── cfe7fe26a6bd8a5fc2d54dc285f321b8.00000258.honggfuzz.cov │ │ │ │ ├── cffe20d0ddfab316c6408d0731ad8e34.0000050d.honggfuzz.cov │ │ │ │ ├── comments.0.wasm │ │ │ │ ├── comments.1.wasm │ │ │ │ ├── comments.2.wasm │ │ │ │ ├── comments.3.wasm │ │ │ │ ├── const.0.wasm │ │ │ │ ├── const.1.wasm │ │ │ │ ├── const.12.wasm │ │ │ │ ├── const.13.wasm │ │ │ │ ├── const.16.wasm │ │ │ │ ├── const.17.wasm │ │ │ │ ├── const.18.wasm │ │ │ │ ├── const.19.wasm │ │ │ │ ├── const.20.wasm │ │ │ │ ├── const.21.wasm │ │ │ │ ├── const.26.wasm │ │ │ │ ├── const.27.wasm │ │ │ │ ├── const.30.wasm │ │ │ │ ├── const.31.wasm │ │ │ │ ├── const.34.wasm │ │ │ │ ├── const.35.wasm │ │ │ │ ├── const.36.wasm │ │ │ │ ├── const.37.wasm │ │ │ │ ├── const.38.wasm │ │ │ │ ├── const.39.wasm │ │ │ │ ├── const.4.wasm │ │ │ │ ├── const.44.wasm │ │ │ │ ├── const.45.wasm │ │ │ │ ├── const.48.wasm │ │ │ │ ├── const.49.wasm │ │ │ │ ├── const.5.wasm │ │ │ │ ├── const.8.wasm │ │ │ │ ├── const.9.wasm │ │ │ │ ├── conversions.0.wasm │ │ │ │ ├── custom.0.wasm │ │ │ │ ├── custom.1.wasm │ │ │ │ ├── custom.2.wasm │ │ │ │ ├── custom_section.0.wasm │ │ │ │ ├── custom_section.1.wasm │ │ │ │ ├── custom_section.2.wasm │ │ │ │ ├── d07bedd7fabe538f31a69c8de4a6e954.00000120.honggfuzz.cov │ │ │ │ ├── d0a4c656a02931463a54b834bb2a04d5.00000800.honggfuzz.cov │ │ │ │ ├── d1452e59981153e730f13afa0c590461.0000023c.honggfuzz.cov │ │ │ │ ├── d1b64d314b7237733ec0bea6247cee66.00000479.honggfuzz.cov │ │ │ │ ├── d1d3b644ccea02815c332bf11ed0a4af.00000068.honggfuzz.cov │ │ │ │ ├── d1dc4b88e2e3c95bcfbf21054dee4029.000006d1.honggfuzz.cov │ │ │ │ ├── d23af77b9117e313ab93c12abfef3355.0000039d.honggfuzz.cov │ │ │ │ ├── d2453c36a8d74d4c8ce5d6c289a8b9b2.00000139.honggfuzz.cov │ │ │ │ ├── d2597ba589dd8f00d37a38545687a07f.0000007a.honggfuzz.cov │ │ │ │ ├── d29ebeb550f3ceb4c4da82c180f7fe0b.00000417.honggfuzz.cov │ │ │ │ ├── d2b35bb07c84158a4cb2587865e7e636.000006a4.honggfuzz.cov │ │ │ │ ├── d2b461d549c6de0dafe8d7db496db5a5.000002c2.honggfuzz.cov │ │ │ │ ├── d31dc4914d8acaa74ab346707634c9a5.00000189.honggfuzz.cov │ │ │ │ ├── d31f2361332d1779f3b901e352849058.00000763.honggfuzz.cov │ │ │ │ ├── d32180714b4a105ab06ef492872e2f09.0000001e.honggfuzz.cov │ │ │ │ ├── d3ca9339bab6a02ff9bbabe470828fbe.00000417.honggfuzz.cov │ │ │ │ ├── d3f461d397ff6bfdf9986d818fe15e7c.00000045.honggfuzz.cov │ │ │ │ ├── d402a7a655b79fafba2defad42a09b12.0000006b.honggfuzz.cov │ │ │ │ ├── d4211d2fcc3111d5f896026b2bb793af.00000025.honggfuzz.cov │ │ │ │ ├── d435dce1dfa3d4b49aaf5730ea48e7d4.000002b9.honggfuzz.cov │ │ │ │ ├── d43c471f858269895c1b4a51565cf09c.000001bd.honggfuzz.cov │ │ │ │ ├── d44c0662342331f33bce982911cfe4a5.00000121.honggfuzz.cov │ │ │ │ ├── d44c0663656624f37bce282911cf93b9.00000121.honggfuzz.cov │ │ │ │ ├── d44c066365a5d8cc971e28043e1f93fb.00000121.honggfuzz.cov │ │ │ │ ├── d489a00f0a150957048a3c4ad859b325.0000045e.honggfuzz.cov │ │ │ │ ├── d5090662342331f33b8fcc3c1174ef15.00000121.honggfuzz.cov │ │ │ │ ├── d590fc30fc96c65146466aa1a6bef908.0000040b.honggfuzz.cov │ │ │ │ ├── d62a132b19d30eef55418264c1636c37.000000ae.honggfuzz.cov │ │ │ │ ├── d63cbe7c0be2b26c821b00e19b434867.00000020.honggfuzz.cov │ │ │ │ ├── d64ebd976e74bd908fefca521e4673dd.00000088.honggfuzz.cov │ │ │ │ ├── d66d2885569f2ddb1aa17ef48179d504.00000121.honggfuzz.cov │ │ │ │ ├── d69475bc988b366ac10673018a5a21cc.0000011b.honggfuzz.cov │ │ │ │ ├── d6bb4dfeeffc9fd296876cfc68fffc9f.0000000c.honggfuzz.cov │ │ │ │ ├── d737df515b5c809f221cf0e348145267.0000009c.honggfuzz.cov │ │ │ │ ├── d75802eacefa9e85491ba54bf1bace87.000004ad.honggfuzz.cov │ │ │ │ ├── d75ad36858d9aa74bfad91e3d7f05cff.000004ad.honggfuzz.cov │ │ │ │ ├── d780c9636564f62357ecea05f032bf59.00000121.honggfuzz.cov │ │ │ │ ├── d7a2ee27a459e5e5199db76dcf3ca723.000000ad.honggfuzz.cov │ │ │ │ ├── d7a3fda901b0c90d290c32c6bec665e2.00000381.honggfuzz.cov │ │ │ │ ├── d7eec7bfb62ccc16dd81618e91a7adf4.0000011c.honggfuzz.cov │ │ │ │ ├── d85081cba6f7782ac693e872849a1a4e.00000417.honggfuzz.cov │ │ │ │ ├── d8b05047937303c8b524eabb1dbecde5.00000087.honggfuzz.cov │ │ │ │ ├── d8da18fc4ee9a313713fbe0688022331.00000197.honggfuzz.cov │ │ │ │ ├── d9064508392ae1f996bcfd94f2015bad.00000151.honggfuzz.cov │ │ │ │ ├── d93025893cce78c26328fe4c1efe3f30.00000252.honggfuzz.cov │ │ │ │ ├── d940117bd1db36728af25d341f5eefab.00000021.honggfuzz.cov │ │ │ │ ├── d987de3b6d972f65b3cfb797b1524e79.0000002c.honggfuzz.cov │ │ │ │ ├── d99f0954541b868c57fa465cfe9806b8.000003c9.honggfuzz.cov │ │ │ │ ├── da00c9636d6cf62bce4a706c55c5b57c.00000121.honggfuzz.cov │ │ │ │ ├── da1ea3c0261694937aa95f1e99d7e6c0.000002c5.honggfuzz.cov │ │ │ │ ├── da539ecccc8dea0030fb1008c0ba80c3.0000004d.honggfuzz.cov │ │ │ │ ├── da587480b48a379a977ac791bc4ca5df.000002f5.honggfuzz.cov │ │ │ │ ├── da743530ebae0da74489dcbc700dc4af.0000015b.honggfuzz.cov │ │ │ │ ├── da8481123a0ead0dddce0ae7d52fec60.0000001d.honggfuzz.cov │ │ │ │ ├── daa8064afe28221af06afbbddbbfdabb.00000074.honggfuzz.cov │ │ │ │ ├── daaad3ec25283a02ab02e7bc77d7577c.00000074.honggfuzz.cov │ │ │ │ ├── dacb43caa0918edfdf253334d77b143a.000000eb.honggfuzz.cov │ │ │ │ ├── data.0.wasm │ │ │ │ ├── data.1.wasm │ │ │ │ ├── data.10.wasm │ │ │ │ ├── data.11.wasm │ │ │ │ ├── data.12.wasm │ │ │ │ ├── data.13.wasm │ │ │ │ ├── data.14.wasm │ │ │ │ ├── data.15.wasm │ │ │ │ ├── data.16.wasm │ │ │ │ ├── data.17.wasm │ │ │ │ ├── data.18.wasm │ │ │ │ ├── data.19.wasm │ │ │ │ ├── data.2.wasm │ │ │ │ ├── data.20.wasm │ │ │ │ ├── data.21.wasm │ │ │ │ ├── data.22.wasm │ │ │ │ ├── data.23.wasm │ │ │ │ ├── data.24.wasm │ │ │ │ ├── data.25.wasm │ │ │ │ ├── data.26.wasm │ │ │ │ ├── data.27.wasm │ │ │ │ ├── data.28.wasm │ │ │ │ ├── data.29.wasm │ │ │ │ ├── data.3.wasm │ │ │ │ ├── data.30.wasm │ │ │ │ ├── data.31.wasm │ │ │ │ ├── data.32.wasm │ │ │ │ ├── data.33.wasm │ │ │ │ ├── data.34.wasm │ │ │ │ ├── data.35.wasm │ │ │ │ ├── data.36.wasm │ │ │ │ ├── data.37.wasm │ │ │ │ ├── data.38.wasm │ │ │ │ ├── data.4.wasm │ │ │ │ ├── data.5.wasm │ │ │ │ ├── data.6.wasm │ │ │ │ ├── data.7.wasm │ │ │ │ ├── data.8.wasm │ │ │ │ ├── data.9.wasm │ │ │ │ ├── db3481123a0ead0dddce0ae7d43ffd60.0000001d.honggfuzz.cov │ │ │ │ ├── db34eccf8a0ead0ddd9e5fe2d43ffd60.0000001d.honggfuzz.cov │ │ │ │ ├── db77e69bdb500d73104542a647ddb523.0000007a.honggfuzz.cov │ │ │ │ ├── dbbc592d7254899e06783042d1c21b3a.00000121.honggfuzz.cov │ │ │ │ ├── dbebe3a8c798ed6c75a97090c204c99d.000003d1.honggfuzz.cov │ │ │ │ ├── dcb975e079087e76c2da71626e3bb920.000000ae.honggfuzz.cov │ │ │ │ ├── dcc8d5733dc10865ee505fa10a6f7e92.0000053e.honggfuzz.cov │ │ │ │ ├── dccccc7191bd7e764061184eb9b95801.000002aa.honggfuzz.cov │ │ │ │ ├── dcf78fdfe1cfac1d4f2b39cf5ab66152.00000033.honggfuzz.cov │ │ │ │ ├── dd0a8d3acea1068e557db3d9fac76610.00000177.honggfuzz.cov │ │ │ │ ├── dd90d7d53242daa4d0685e125eecb723.0000001f.honggfuzz.cov │ │ │ │ ├── dd9167d53242daa4d0685e125eeda732.0000001f.honggfuzz.cov │ │ │ │ ├── dd97a7d53242dfb0d7059e125ee9e776.0000001f.honggfuzz.cov │ │ │ │ ├── dda8d42b19d30e76e8b600a5a5d15608.000000ae.honggfuzz.cov │ │ │ │ ├── dda95b141b111ea67f74d3e04efab923.000000ae.honggfuzz.cov │ │ │ │ ├── dda9642b19d30e76c2da71637e2ab920.000000ae.honggfuzz.cov │ │ │ │ ├── ddafb85229cf77467a80ba830cd50580.000000ae.honggfuzz.cov │ │ │ │ ├── ddcad7d53242dfb0d7059e125e8ab143.0000001f.honggfuzz.cov │ │ │ │ ├── ddf773a0cf1b7521362fcf2cb2b0fefe.000002fc.honggfuzz.cov │ │ │ │ ├── de9a52cc7fb880edfdac9b9a4a823c62.000002c5.honggfuzz.cov │ │ │ │ ├── deab141489273b47d2bfe74f32786024.000000f9.honggfuzz.cov │ │ │ │ ├── deb211056da2342dee7076e53f607148.00000052.honggfuzz.cov │ │ │ │ ├── deb9e942d335b04d1aa99c92c3eb00f1.00000800.honggfuzz.cov │ │ │ │ ├── df15c47aa095d660075ff78992db0b6a.00000669.honggfuzz.cov │ │ │ │ ├── df228d736fdbbe5d94d9ae4af844ed94.000005d8.honggfuzz.cov │ │ │ │ ├── df3c3bd4daa7404e0d700a62172633ca.000002e6.honggfuzz.cov │ │ │ │ ├── df4f24b2f43623f157ff983e632a33c4.000001ed.honggfuzz.cov │ │ │ │ ├── df531a0c5dd0869db8cb1830fe35760f.000006a4.honggfuzz.cov │ │ │ │ ├── df68a12997e7cf880b7c359417bcd0e7.0000041d.honggfuzz.cov │ │ │ │ ├── df83ee9d53f51432ae0a0204ced6510e.000001e2.honggfuzz.cov │ │ │ │ ├── df8bf54c1853595d89124647fb5ab04c.00000052.honggfuzz.cov │ │ │ │ ├── e004b1c6706b7bb24482e54f4a05e1ed.00000030.honggfuzz.cov │ │ │ │ ├── e012c3b84fa7f3702eb48d9e4aefd978.000003c9.honggfuzz.cov │ │ │ │ ├── e01d072fbd524ca909e5a8e3e0e343e3.000000c4.honggfuzz.cov │ │ │ │ ├── e0a9917fad9b67644ce41937c91ae324.000006c7.honggfuzz.cov │ │ │ │ ├── e0fd1d474e134c19091d6374c9491a56.000000ce.honggfuzz.cov │ │ │ │ ├── e10007e94ce5f8bf42db7684e7d3841c.00000072.honggfuzz.cov │ │ │ │ ├── e1368027f513ffa9b72afe1a4ce729d0.00000800.honggfuzz.cov │ │ │ │ ├── e13aa1a888d20330fe5bece275feb0f0.00000669.honggfuzz.cov │ │ │ │ ├── e14ddbe000f944c95ea765ce893fc595.000000eb.honggfuzz.cov │ │ │ │ ├── e18129867eadba62f03da43e6ac7472e.00000036.honggfuzz.cov │ │ │ │ ├── e18129e13eadba62f03ddca50709072e.00000036.honggfuzz.cov │ │ │ │ ├── e18b0daa5e6a4efce4151eef44bc5ba5.000007dc.honggfuzz.cov │ │ │ │ ├── e1a4b0000001e0b301365380f1b00000.0000000a.honggfuzz.cov │ │ │ │ ├── e1e95f3d3b810309076d06162b9feade.00000323.honggfuzz.cov │ │ │ │ ├── e240fd4766ce348abf0f059d715bf285.00000669.honggfuzz.cov │ │ │ │ ├── e2484f1399b09bfedde549f4d17076d4.000006b1.honggfuzz.cov │ │ │ │ ├── e248747d99b09bfe24f3010ea3e45300.000006b1.honggfuzz.cov │ │ │ │ ├── e27df3fdbc1b424b1079cee0bbc7a281.0000003d.honggfuzz.cov │ │ │ │ ├── e36d9658e9f1490f8e16b4775fe75749.00000072.honggfuzz.cov │ │ │ │ ├── e36d9658ece5490f6b02e5370be1fd8f.00000072.honggfuzz.cov │ │ │ │ ├── e36d9658eda0490f8a47f1671ee0573e.00000072.honggfuzz.cov │ │ │ │ ├── e36d9658fda1490f7a47f1760ffdfc53.00000072.honggfuzz.cov │ │ │ │ ├── e40c20b14ede4ac0454bf9aaf91e7808.000002b4.honggfuzz.cov │ │ │ │ ├── e4c29066145e8ee8ee3da732a56bd7df.000002df.honggfuzz.cov │ │ │ │ ├── e4e3a364bf2caa99fbe19073bb0ceb78.00000161.honggfuzz.cov │ │ │ │ ├── e50a32f9660f5813a432c2b9cbfb239b.00000024.honggfuzz.cov │ │ │ │ ├── e50a32fa563c5813a7fdc2b9cbfb239b.00000024.honggfuzz.cov │ │ │ │ ├── e5369dc15ff68f34f07d5cb5ff4050f4.00000022.honggfuzz.cov │ │ │ │ ├── e557c736297b098a9b5202e85d07b3b3.00000053.honggfuzz.cov │ │ │ │ ├── e5710b65563555e92c46ba0e431687c5.0000005d.honggfuzz.cov │ │ │ │ ├── e571d995563555e951b63f53c6ceda40.0000005d.honggfuzz.cov │ │ │ │ ├── e58c0731b4708c4ef2254e2ec48fc0dd.00000034.honggfuzz.cov │ │ │ │ ├── e5bb39fa610e76cfb7a005862618eb96.00000614.honggfuzz.cov │ │ │ │ ├── e5d948cb1b06df5c3f907fb604fd93f2.00000237.honggfuzz.cov │ │ │ │ ├── e62d2089f9ad8e897bd053c90059d715.000003c9.honggfuzz.cov │ │ │ │ ├── e646b10f806b7bfc20a4a74ff92d43d4.00000030.honggfuzz.cov │ │ │ │ ├── e646b19ea06b7bfc20a4a74f378fc932.00000030.honggfuzz.cov │ │ │ │ ├── e646b19f106b7bfc20a4a74f36de8c27.00000030.honggfuzz.cov │ │ │ │ ├── e66c853bc1e0a8bb1b74dc8f1a340000.00000583.honggfuzz.cov │ │ │ │ ├── e6cd2ccf8233e604a0dee022d1462027.00000047.honggfuzz.cov │ │ │ │ ├── e7c28f4e0ee114f12bd48bce55fbaeff.00000017.honggfuzz.cov │ │ │ │ ├── e827bef3ed134fe43edd526a475184d7.00000360.honggfuzz.cov │ │ │ │ ├── e841d857962c91420c33bed0e9c215b6.0000007e.honggfuzz.cov │ │ │ │ ├── e841d857d56105d836a0867263ea96af.0000007e.honggfuzz.cov │ │ │ │ ├── e846a857962c91420c33b9a0ebb210b6.0000007e.honggfuzz.cov │ │ │ │ ├── e86b686278f9138cf603ddb576db617d.0000011b.honggfuzz.cov │ │ │ │ ├── e87891ce995c51fdf224c5487eaf5cf8.000006b1.honggfuzz.cov │ │ │ │ ├── e88b6b0330bd8e72e7995414c017c462.00000019.honggfuzz.cov │ │ │ │ ├── e8b077ea7af21ffe2bb4fac54aff9732.0000007f.honggfuzz.cov │ │ │ │ ├── e8cbba0376d9e26169fef356f36c9862.00000167.honggfuzz.cov │ │ │ │ ├── e8cbe6acda032adaf3d51497326901f3.000002c5.honggfuzz.cov │ │ │ │ ├── e8f61d9a936d336eca3466cdc87f58d8.00000042.honggfuzz.cov │ │ │ │ ├── e941e48a719333fb480330cf03e01f18.00000087.honggfuzz.cov │ │ │ │ ├── e96b1becaa3af61744061b13f63f7481.000002d1.honggfuzz.cov │ │ │ │ ├── e9d43644834fef0794f86d12f6a89b77.00000023.honggfuzz.cov │ │ │ │ ├── e9f6cbf0d56f520db68a3b89d4746a85.000002aa.honggfuzz.cov │ │ │ │ ├── ea4160d70e0d7751e87c3e0659e02ae4.0000058b.honggfuzz.cov │ │ │ │ ├── ea5201a40f1f6f78205a57968a29ad18.000002c5.honggfuzz.cov │ │ │ │ ├── ea6747a3151b40e872731aff75293386.000001cf.honggfuzz.cov │ │ │ │ ├── ea74b9866ddf1e1344ff2264787b9cc0.0000040b.honggfuzz.cov │ │ │ │ ├── ea7d87872f593dc64e60be9b998ef228.000002c5.honggfuzz.cov │ │ │ │ ├── ea90e8230ba16dc66e87008020834efc.000002c5.honggfuzz.cov │ │ │ │ ├── ead6acc107ce0a4b436cf81e123a9ce0.00000049.honggfuzz.cov │ │ │ │ ├── ead6acc1f37e0a4b2959f81ee67e2c14.00000049.honggfuzz.cov │ │ │ │ ├── eadfb9c5fc8d8351d6df673f133a1ede.00000275.honggfuzz.cov │ │ │ │ ├── eb044c4efa0bbed905ee32afb309d15b.000000c4.honggfuzz.cov │ │ │ │ ├── eb4e95c5f174d252bf9eedf35aa87807.0000002a.honggfuzz.cov │ │ │ │ ├── ebf8963d955ce6c9018d4df36a50b16b.00000121.honggfuzz.cov │ │ │ │ ├── ec107a0b418285060c5fe2d6d54c8b7d.00000669.honggfuzz.cov │ │ │ │ ├── ec1268634262dab5feda38213c9ae50d.000000e9.honggfuzz.cov │ │ │ │ ├── ec17bb5a414c66c4ae7aaef3d16637a5.000003c9.honggfuzz.cov │ │ │ │ ├── ec72a10cfa9cae4eff87125da6898b1b.000002b4.honggfuzz.cov │ │ │ │ ├── ec7b27af91cf29abfd743716ee5e8e4e.000002c5.honggfuzz.cov │ │ │ │ ├── eca58377247a85ee85a7bc8dc1f49ffe.0000001e.honggfuzz.cov │ │ │ │ ├── ecb32d9c5d4c90ac4ea623f8fbf2890e.000002ea.honggfuzz.cov │ │ │ │ ├── ed746b0c8c5969d3badba7d40a509d07.0000011b.honggfuzz.cov │ │ │ │ ├── edb349d70557ad80746ea0857b982b36.000001e2.honggfuzz.cov │ │ │ │ ├── edb7c7fcb3dfb36cf64c9ba0bb728aa9.000003c9.honggfuzz.cov │ │ │ │ ├── edc702830ad69f99d4d67dfd71bf4eb4.00000063.honggfuzz.cov │ │ │ │ ├── ee06722bd50306aac0db830b9b3b666f.0000074b.honggfuzz.cov │ │ │ │ ├── ee8f8ede054cad7d29f6754b521a6eff.000002b4.honggfuzz.cov │ │ │ │ ├── eefb1e6f617f657be3a4eef1a66ea71c.00000284.honggfuzz.cov │ │ │ │ ├── ef031ae867062ead387e8ec9e4953e9a.00000177.honggfuzz.cov │ │ │ │ ├── ef2af8d213bf53a24d08d3745f6211dc.000003ea.honggfuzz.cov │ │ │ │ ├── ef3b7e6cd07d23290ad6bcd772dd533d.00000275.honggfuzz.cov │ │ │ │ ├── ef51f022d8ffa8859f849f48a52862c3.000002c5.honggfuzz.cov │ │ │ │ ├── ef648da33049c1f3a2fec042e4e12478.000006a1.honggfuzz.cov │ │ │ │ ├── ef99718a810a4969027f014db25eef08.00000363.honggfuzz.cov │ │ │ │ ├── ef9b2d15a9d2946b087609f4abc89e3f.00000047.honggfuzz.cov │ │ │ │ ├── efbc04e4d93bf1303c2652442a1b1a15.000000eb.honggfuzz.cov │ │ │ │ ├── efcd419e8d05486326bc5a8b6273e206.0000002c.honggfuzz.cov │ │ │ │ ├── elem.0.wasm │ │ │ │ ├── elem.1.wasm │ │ │ │ ├── elem.10.wasm │ │ │ │ ├── elem.11.wasm │ │ │ │ ├── elem.12.wasm │ │ │ │ ├── elem.13.wasm │ │ │ │ ├── elem.14.wasm │ │ │ │ ├── elem.15.wasm │ │ │ │ ├── elem.16.wasm │ │ │ │ ├── elem.17.wasm │ │ │ │ ├── elem.18.wasm │ │ │ │ ├── elem.19.wasm │ │ │ │ ├── elem.2.wasm │ │ │ │ ├── elem.20.wasm │ │ │ │ ├── elem.21.wasm │ │ │ │ ├── elem.22.wasm │ │ │ │ ├── elem.23.wasm │ │ │ │ ├── elem.24.wasm │ │ │ │ ├── elem.25.wasm │ │ │ │ ├── elem.26.wasm │ │ │ │ ├── elem.27.wasm │ │ │ │ ├── elem.28.wasm │ │ │ │ ├── elem.29.wasm │ │ │ │ ├── elem.3.wasm │ │ │ │ ├── elem.36.wasm │ │ │ │ ├── elem.37.wasm │ │ │ │ ├── elem.38.wasm │ │ │ │ ├── elem.39.wasm │ │ │ │ ├── elem.4.wasm │ │ │ │ ├── elem.40.wasm │ │ │ │ ├── elem.5.wasm │ │ │ │ ├── elem.6.wasm │ │ │ │ ├── elem.7.wasm │ │ │ │ ├── elem.8.wasm │ │ │ │ ├── elem.9.wasm │ │ │ │ ├── endianness.0.wasm │ │ │ │ ├── exports.0.wasm │ │ │ │ ├── exports.1.wasm │ │ │ │ ├── exports.10.wasm │ │ │ │ ├── exports.11.wasm │ │ │ │ ├── exports.12.wasm │ │ │ │ ├── exports.13.wasm │ │ │ │ ├── exports.2.wasm │ │ │ │ ├── exports.20.wasm │ │ │ │ ├── exports.21.wasm │ │ │ │ ├── exports.22.wasm │ │ │ │ ├── exports.23.wasm │ │ │ │ ├── exports.24.wasm │ │ │ │ ├── exports.25.wasm │ │ │ │ ├── exports.26.wasm │ │ │ │ ├── exports.27.wasm │ │ │ │ ├── exports.28.wasm │ │ │ │ ├── exports.29.wasm │ │ │ │ ├── exports.3.wasm │ │ │ │ ├── exports.30.wasm │ │ │ │ ├── exports.31.wasm │ │ │ │ ├── exports.38.wasm │ │ │ │ ├── exports.39.wasm │ │ │ │ ├── exports.4.wasm │ │ │ │ ├── exports.40.wasm │ │ │ │ ├── exports.41.wasm │ │ │ │ ├── exports.42.wasm │ │ │ │ ├── exports.43.wasm │ │ │ │ ├── exports.44.wasm │ │ │ │ ├── exports.45.wasm │ │ │ │ ├── exports.46.wasm │ │ │ │ ├── exports.47.wasm │ │ │ │ ├── exports.48.wasm │ │ │ │ ├── exports.49.wasm │ │ │ │ ├── exports.5.wasm │ │ │ │ ├── exports.50.wasm │ │ │ │ ├── exports.51.wasm │ │ │ │ ├── exports.57.wasm │ │ │ │ ├── exports.58.wasm │ │ │ │ ├── exports.59.wasm │ │ │ │ ├── exports.6.wasm │ │ │ │ ├── exports.60.wasm │ │ │ │ ├── exports.61.wasm │ │ │ │ ├── exports.62.wasm │ │ │ │ ├── exports.63.wasm │ │ │ │ ├── exports.64.wasm │ │ │ │ ├── exports.65.wasm │ │ │ │ ├── exports.66.wasm │ │ │ │ ├── exports.67.wasm │ │ │ │ ├── exports.68.wasm │ │ │ │ ├── exports.69.wasm │ │ │ │ ├── exports.7.wasm │ │ │ │ ├── exports.70.wasm │ │ │ │ ├── exports.8.wasm │ │ │ │ ├── exports.9.wasm │ │ │ │ ├── f0293c65cd1074ab330a5c35be1ce30c.000007e4.honggfuzz.cov │ │ │ │ ├── f031e4ca106f8a0baf33e3b3f08277cd.00000151.honggfuzz.cov │ │ │ │ ├── f034acbd2e26d3df344ed3f2acb237f1.000001a9.honggfuzz.cov │ │ │ │ ├── f05c9127e9d421d15831b57a5359b864.00000151.honggfuzz.cov │ │ │ │ ├── f07de39ee84652fb7b41c8cac73369fa.00000669.honggfuzz.cov │ │ │ │ ├── f0b797da960d52c49c1ee75a90c7a223.0000018e.honggfuzz.cov │ │ │ │ ├── f0bef6337f0e79af10afd62d737b34af.0000014a.honggfuzz.cov │ │ │ │ ├── f0de21cc548412a7c976587865e695cb.000006a4.honggfuzz.cov │ │ │ │ ├── f0f2a5f0a7f8dc9f1394ce5b4f4d43e6.000004b5.honggfuzz.cov │ │ │ │ ├── f18db98d550e94d0e797c41bb4f80b85.0000066e.honggfuzz.cov │ │ │ │ ├── f1c87b47e74cba0b77226cbdd7a3cb94.00000252.honggfuzz.cov │ │ │ │ ├── f1defeb7b8b2e9f26521fa6856a0ff90.000002c5.honggfuzz.cov │ │ │ │ ├── f1f2f5c7934bf882ac5a82927404aa3f.000001ed.honggfuzz.cov │ │ │ │ ├── f225b9ed295eb9d7c11c7557cf5e2362.00000020.honggfuzz.cov │ │ │ │ ├── f235dbf56da6b2de6df60283562807e6.00000040.honggfuzz.cov │ │ │ │ ├── f30c23233f2b029b69bfb4ad55dc3f82.00000051.honggfuzz.cov │ │ │ │ ├── f30dca6bb77758fe0a5a61a7097b2318.00000024.honggfuzz.cov │ │ │ │ ├── f30dcbdbb77758fe0a5bcabdb97b2318.00000024.honggfuzz.cov │ │ │ │ ├── f30f3618747758fefa3d5749b97b2318.00000024.honggfuzz.cov │ │ │ │ ├── f30fa64bb77758fe0a5bc8d0297b2318.00000024.honggfuzz.cov │ │ │ │ ├── f31454caa0a8e1a5dac546450711404e.00000151.honggfuzz.cov │ │ │ │ ├── f32.0.wasm │ │ │ │ ├── f32_bitwise.0.wasm │ │ │ │ ├── f32_cmp.0.wasm │ │ │ │ ├── f37a174e4fab032aea7bba8c658ee9cb.00000101.honggfuzz.cov │ │ │ │ ├── f3dfa251161f0f03f0cc9f9e71eceb64.00000045.honggfuzz.cov │ │ │ │ ├── f3e4c7239ecf4b4f03b8c4426e5e4250.000000b1.honggfuzz.cov │ │ │ │ ├── f49c82e558967411736501de725143df.00000015.honggfuzz.cov │ │ │ │ ├── f49d32e558967411736501dfa92143df.00000015.honggfuzz.cov │ │ │ │ ├── f49fb98ce896741173892ec4b4b143df.00000015.honggfuzz.cov │ │ │ │ ├── f49fbf4ce84f92e2c0f929a974b117b1.00000015.honggfuzz.cov │ │ │ │ ├── f4f546be0ad2a0d98ef7857e57407fd3.0000011b.honggfuzz.cov │ │ │ │ ├── f5015dfde41a1011a3acc94f585e7143.00000016.honggfuzz.cov │ │ │ │ ├── f5080f5d883f2f64b0526c3b224872ed.000002ad.honggfuzz.cov │ │ │ │ ├── f511de626bedd4c53f405553abe3a0c4.00000417.honggfuzz.cov │ │ │ │ ├── f51a7edbf9d73bd13de0a6528f37547a.000001d7.honggfuzz.cov │ │ │ │ ├── f5459092f8fae9fb956a460b2d30adf3.00000057.honggfuzz.cov │ │ │ │ ├── f55b55536f17da265333d33221294a11.0000013c.honggfuzz.cov │ │ │ │ ├── f5b3932c56ec3cdcea266dc0a8f2ad07.0000001f.honggfuzz.cov │ │ │ │ ├── f64.0.wasm │ │ │ │ ├── f64_bitwise.0.wasm │ │ │ │ ├── f64_cmp.0.wasm │ │ │ │ ├── f660000001e0b38b02d1f380f1b00000.00000009.honggfuzz.cov │ │ │ │ ├── f696b6100c38abdded0c6fd285e90517.0000003f.honggfuzz.cov │ │ │ │ ├── f6985bd478e718ebc37b3eb400bc2356.00000782.honggfuzz.cov │ │ │ │ ├── f6ac0afa8c21d289161e0cf5ed002e25.000000c4.honggfuzz.cov │ │ │ │ ├── f6b204b0000001e001196cc5f1b00000.0000000b.honggfuzz.cov │ │ │ │ ├── f6f715ceb766cff5e4b49de010c5d909.00000360.honggfuzz.cov │ │ │ │ ├── f6f855ff38eca5f34a49850297c85da0.0000011b.honggfuzz.cov │ │ │ │ ├── f70610a0000001e007c4b680f1b00000.0000000b.honggfuzz.cov │ │ │ │ ├── f7061110000001e00681b680f1b00000.0000000b.honggfuzz.cov │ │ │ │ ├── f7061270000001e0040bb680f1b00000.0000000b.honggfuzz.cov │ │ │ │ ├── f70614b0000001e0011fb680f1b00000.0000000b.honggfuzz.cov │ │ │ │ ├── f7061660000001e002d0b680f1b00000.0000000b.honggfuzz.cov │ │ │ │ ├── f70617d0000001e00395b680f1b00000.0000000b.honggfuzz.cov │ │ │ │ ├── f7061880000001e00a72b680f1b00000.0000000b.honggfuzz.cov │ │ │ │ ├── f7061930000001e00b37b680f1b00000.0000000b.honggfuzz.cov │ │ │ │ ├── f7061a50000001e009bdb680f1b00000.0000000b.honggfuzz.cov │ │ │ │ ├── f7061be0000001e008f8b680f1b00000.0000000b.honggfuzz.cov │ │ │ │ ├── f770cefe6a7b103aab42e39ac7d5197a.00000417.honggfuzz.cov │ │ │ │ ├── f7bf889124b32ad97744da050e47a6ec.000001ca.honggfuzz.cov │ │ │ │ ├── f7f148fe00b7f5556a8693e7ccbf5255.00000065.honggfuzz.cov │ │ │ │ ├── f82751b49b07ffbeffef0169cb3e9e4c.00000753.honggfuzz.cov │ │ │ │ ├── f8774d6949af41ddceda0b183108a457.0000003f.honggfuzz.cov │ │ │ │ ├── f8774f95237f41ddceda0b19f4e3fb27.0000003f.honggfuzz.cov │ │ │ │ ├── f878b8fe0c38abdd0dda6fd285e1af3f.0000003f.honggfuzz.cov │ │ │ │ ├── f8863563150ce3bf23892b7d6075dcfa.00000252.honggfuzz.cov │ │ │ │ ├── f89776c586e22416dc79cbfd9f982a83.00000381.honggfuzz.cov │ │ │ │ ├── f922c8af13c6136cd96b4dfeab31c6ec.00000800.honggfuzz.cov │ │ │ │ ├── f9278c22865383e8ad81811c49557a09.0000049d.honggfuzz.cov │ │ │ │ ├── f951369e321b14f30458e0376f97ff37.00000121.honggfuzz.cov │ │ │ │ ├── fa113ab1e707d2d89f2c0a965f8fa830.000001a9.honggfuzz.cov │ │ │ │ ├── fa1a2dddec7b3ef299b249eae585743d.00000669.honggfuzz.cov │ │ │ │ ├── fa98aee3ae543d0851c5bd7fbbadf727.000000f6.honggfuzz.cov │ │ │ │ ├── faa803b7f354bfbebcf9392b1db0a4ac.0000011c.honggfuzz.cov │ │ │ │ ├── fac.0.wasm │ │ │ │ ├── fad8ba5291d50d7027e916f9f8d594c0.00000121.honggfuzz.cov │ │ │ │ ├── fb308418bcfcf50e4519824d5d601d74.000000de.honggfuzz.cov │ │ │ │ ├── fb3272f0d08cf50ed344ac8848862340.000000de.honggfuzz.cov │ │ │ │ ├── fc2a7cb371d66bfb5e01896588e8d140.0000011c.honggfuzz.cov │ │ │ │ ├── fc39e80568facba6c913167154b05269.000002b4.honggfuzz.cov │ │ │ │ ├── fc92dbdb41c704dba06119bc1cb69c15.00000252.honggfuzz.cov │ │ │ │ ├── fcbefa1d8b53ffca4f10c80d6a274205.0000018e.honggfuzz.cov │ │ │ │ ├── fcda0c549ff2ee752ca540447c2a5631.0000007d.honggfuzz.cov │ │ │ │ ├── fcf939909b4df132f6f2ff03d3034619.00000051.honggfuzz.cov │ │ │ │ ├── fd15e0ac21e3fedb387ba5cc1dfc2f74.0000018e.honggfuzz.cov │ │ │ │ ├── fd28b719a88466ceff123f6cb83b8915.00000242.honggfuzz.cov │ │ │ │ ├── fd2c865069e2cef3fb9cf30aacb4f68c.0000018e.honggfuzz.cov │ │ │ │ ├── fd49a97a73de53ea33d9a1b209dd75b2.00000110.honggfuzz.cov │ │ │ │ ├── fd6a9d3c531e62e3e616d71b92d4440a.000000d4.honggfuzz.cov │ │ │ │ ├── fde8053a0f678cfa9ae1365e2f2e9715.0000058b.honggfuzz.cov │ │ │ │ ├── fe3b0d617c6d6e3a97411879d43a550f.00000669.honggfuzz.cov │ │ │ │ ├── fe437ab503d78f4cf3cc37907aae01e4.0000036f.honggfuzz.cov │ │ │ │ ├── fe47925d285399f24df0333d744ea0fa.00000022.honggfuzz.cov │ │ │ │ ├── fe892bf408622eb29ed87bd6231f7469.0000009c.honggfuzz.cov │ │ │ │ ├── fe90741d28ac0e70bfb7a537d0340eb1.0000001c.honggfuzz.cov │ │ │ │ ├── fea3830c5f56cf67a542aacc1aaafba7.000001a8.honggfuzz.cov │ │ │ │ ├── fedc0142542e759209a4f21f134eccaa.000006b4.honggfuzz.cov │ │ │ │ ├── fee05044d068d39537995e0942d86a91.0000050d.honggfuzz.cov │ │ │ │ ├── ff5a07ec9b9ffea9fae26cf0b8c87391.0000001f.honggfuzz.cov │ │ │ │ ├── ff916d0dfcbf337bc36645be140a6c5f.000003dd.honggfuzz.cov │ │ │ │ ├── ffc5cae770032ba7b71a91387cdd1101.000001a9.honggfuzz.cov │ │ │ │ ├── ffec0fc9c6f45e2ab79ff58b08b53bc3.00000252.honggfuzz.cov │ │ │ │ ├── ffef3671229576c7fa3e1b8381774ba1.000002ad.honggfuzz.cov │ │ │ │ ├── float_exprs.0.wasm │ │ │ │ ├── float_exprs.1.wasm │ │ │ │ ├── float_exprs.10.wasm │ │ │ │ ├── float_exprs.11.wasm │ │ │ │ ├── float_exprs.12.wasm │ │ │ │ ├── float_exprs.13.wasm │ │ │ │ ├── float_exprs.14.wasm │ │ │ │ ├── float_exprs.15.wasm │ │ │ │ ├── float_exprs.16.wasm │ │ │ │ ├── float_exprs.17.wasm │ │ │ │ ├── float_exprs.18.wasm │ │ │ │ ├── float_exprs.19.wasm │ │ │ │ ├── float_exprs.2.wasm │ │ │ │ ├── float_exprs.20.wasm │ │ │ │ ├── float_exprs.21.wasm │ │ │ │ ├── float_exprs.22.wasm │ │ │ │ ├── float_exprs.23.wasm │ │ │ │ ├── float_exprs.24.wasm │ │ │ │ ├── float_exprs.25.wasm │ │ │ │ ├── float_exprs.26.wasm │ │ │ │ ├── float_exprs.27.wasm │ │ │ │ ├── float_exprs.28.wasm │ │ │ │ ├── float_exprs.29.wasm │ │ │ │ ├── float_exprs.3.wasm │ │ │ │ ├── float_exprs.30.wasm │ │ │ │ ├── float_exprs.31.wasm │ │ │ │ ├── float_exprs.32.wasm │ │ │ │ ├── float_exprs.33.wasm │ │ │ │ ├── float_exprs.34.wasm │ │ │ │ ├── float_exprs.35.wasm │ │ │ │ ├── float_exprs.36.wasm │ │ │ │ ├── float_exprs.37.wasm │ │ │ │ ├── float_exprs.38.wasm │ │ │ │ ├── float_exprs.39.wasm │ │ │ │ ├── float_exprs.4.wasm │ │ │ │ ├── float_exprs.40.wasm │ │ │ │ ├── float_exprs.41.wasm │ │ │ │ ├── float_exprs.42.wasm │ │ │ │ ├── float_exprs.43.wasm │ │ │ │ ├── float_exprs.44.wasm │ │ │ │ ├── float_exprs.45.wasm │ │ │ │ ├── float_exprs.46.wasm │ │ │ │ ├── float_exprs.47.wasm │ │ │ │ ├── float_exprs.48.wasm │ │ │ │ ├── float_exprs.49.wasm │ │ │ │ ├── float_exprs.5.wasm │ │ │ │ ├── float_exprs.50.wasm │ │ │ │ ├── float_exprs.51.wasm │ │ │ │ ├── float_exprs.52.wasm │ │ │ │ ├── float_exprs.53.wasm │ │ │ │ ├── float_exprs.54.wasm │ │ │ │ ├── float_exprs.55.wasm │ │ │ │ ├── float_exprs.56.wasm │ │ │ │ ├── float_exprs.57.wasm │ │ │ │ ├── float_exprs.58.wasm │ │ │ │ ├── float_exprs.59.wasm │ │ │ │ ├── float_exprs.6.wasm │ │ │ │ ├── float_exprs.60.wasm │ │ │ │ ├── float_exprs.61.wasm │ │ │ │ ├── float_exprs.62.wasm │ │ │ │ ├── float_exprs.63.wasm │ │ │ │ ├── float_exprs.64.wasm │ │ │ │ ├── float_exprs.65.wasm │ │ │ │ ├── float_exprs.66.wasm │ │ │ │ ├── float_exprs.67.wasm │ │ │ │ ├── float_exprs.68.wasm │ │ │ │ ├── float_exprs.69.wasm │ │ │ │ ├── float_exprs.7.wasm │ │ │ │ ├── float_exprs.70.wasm │ │ │ │ ├── float_exprs.71.wasm │ │ │ │ ├── float_exprs.72.wasm │ │ │ │ ├── float_exprs.73.wasm │ │ │ │ ├── float_exprs.74.wasm │ │ │ │ ├── float_exprs.75.wasm │ │ │ │ ├── float_exprs.76.wasm │ │ │ │ ├── float_exprs.77.wasm │ │ │ │ ├── float_exprs.78.wasm │ │ │ │ ├── float_exprs.79.wasm │ │ │ │ ├── float_exprs.8.wasm │ │ │ │ ├── float_exprs.80.wasm │ │ │ │ ├── float_exprs.81.wasm │ │ │ │ ├── float_exprs.82.wasm │ │ │ │ ├── float_exprs.83.wasm │ │ │ │ ├── float_exprs.84.wasm │ │ │ │ ├── float_exprs.85.wasm │ │ │ │ ├── float_exprs.86.wasm │ │ │ │ ├── float_exprs.87.wasm │ │ │ │ ├── float_exprs.88.wasm │ │ │ │ ├── float_exprs.89.wasm │ │ │ │ ├── float_exprs.9.wasm │ │ │ │ ├── float_exprs.90.wasm │ │ │ │ ├── float_exprs.91.wasm │ │ │ │ ├── float_exprs.92.wasm │ │ │ │ ├── float_exprs.93.wasm │ │ │ │ ├── float_exprs.94.wasm │ │ │ │ ├── float_exprs.95.wasm │ │ │ │ ├── float_literals.0.wasm │ │ │ │ ├── float_literals.1.wasm │ │ │ │ ├── float_memory.0.wasm │ │ │ │ ├── float_memory.1.wasm │ │ │ │ ├── float_memory.2.wasm │ │ │ │ ├── float_memory.3.wasm │ │ │ │ ├── float_memory.4.wasm │ │ │ │ ├── float_memory.5.wasm │ │ │ │ ├── float_misc.0.wasm │ │ │ │ ├── forward.0.wasm │ │ │ │ ├── func.0.wasm │ │ │ │ ├── func.1.wasm │ │ │ │ ├── func.3.wasm │ │ │ │ ├── func_ptrs.0.wasm │ │ │ │ ├── func_ptrs.8.wasm │ │ │ │ ├── func_ptrs.9.wasm │ │ │ │ ├── get_local.0.wasm │ │ │ │ ├── globals.0.wasm │ │ │ │ ├── globals.16.wasm │ │ │ │ ├── globals.19.wasm │ │ │ │ ├── i32.0.wasm │ │ │ │ ├── i64.0.wasm │ │ │ │ ├── if.0.wasm │ │ │ │ ├── imports.0.wasm │ │ │ │ ├── imports.1.wasm │ │ │ │ ├── imports.10.wasm │ │ │ │ ├── imports.11.wasm │ │ │ │ ├── imports.115.wasm │ │ │ │ ├── imports.12.wasm │ │ │ │ ├── imports.13.wasm │ │ │ │ ├── imports.14.wasm │ │ │ │ ├── imports.15.wasm │ │ │ │ ├── imports.16.wasm │ │ │ │ ├── imports.17.wasm │ │ │ │ ├── imports.18.wasm │ │ │ │ ├── imports.19.wasm │ │ │ │ ├── imports.2.wasm │ │ │ │ ├── imports.20.wasm │ │ │ │ ├── imports.21.wasm │ │ │ │ ├── imports.22.wasm │ │ │ │ ├── imports.23.wasm │ │ │ │ ├── imports.24.wasm │ │ │ │ ├── imports.25.wasm │ │ │ │ ├── imports.26.wasm │ │ │ │ ├── imports.27.wasm │ │ │ │ ├── imports.28.wasm │ │ │ │ ├── imports.29.wasm │ │ │ │ ├── imports.3.wasm │ │ │ │ ├── imports.30.wasm │ │ │ │ ├── imports.31.wasm │ │ │ │ ├── imports.32.wasm │ │ │ │ ├── imports.33.wasm │ │ │ │ ├── imports.34.wasm │ │ │ │ ├── imports.35.wasm │ │ │ │ ├── imports.36.wasm │ │ │ │ ├── imports.37.wasm │ │ │ │ ├── imports.38.wasm │ │ │ │ ├── imports.39.wasm │ │ │ │ ├── imports.4.wasm │ │ │ │ ├── imports.40.wasm │ │ │ │ ├── imports.41.wasm │ │ │ │ ├── imports.42.wasm │ │ │ │ ├── imports.43.wasm │ │ │ │ ├── imports.44.wasm │ │ │ │ ├── imports.45.wasm │ │ │ │ ├── imports.49.wasm │ │ │ │ ├── imports.5.wasm │ │ │ │ ├── imports.50.wasm │ │ │ │ ├── imports.51.wasm │ │ │ │ ├── imports.52.wasm │ │ │ │ ├── imports.53.wasm │ │ │ │ ├── imports.54.wasm │ │ │ │ ├── imports.55.wasm │ │ │ │ ├── imports.56.wasm │ │ │ │ ├── imports.57.wasm │ │ │ │ ├── imports.58.wasm │ │ │ │ ├── imports.59.wasm │ │ │ │ ├── imports.6.wasm │ │ │ │ ├── imports.60.wasm │ │ │ │ ├── imports.61.wasm │ │ │ │ ├── imports.62.wasm │ │ │ │ ├── imports.63.wasm │ │ │ │ ├── imports.64.wasm │ │ │ │ ├── imports.65.wasm │ │ │ │ ├── imports.66.wasm │ │ │ │ ├── imports.67.wasm │ │ │ │ ├── imports.68.wasm │ │ │ │ ├── imports.69.wasm │ │ │ │ ├── imports.7.wasm │ │ │ │ ├── imports.70.wasm │ │ │ │ ├── imports.71.wasm │ │ │ │ ├── imports.75.wasm │ │ │ │ ├── imports.76.wasm │ │ │ │ ├── imports.77.wasm │ │ │ │ ├── imports.78.wasm │ │ │ │ ├── imports.79.wasm │ │ │ │ ├── imports.8.wasm │ │ │ │ ├── imports.80.wasm │ │ │ │ ├── imports.81.wasm │ │ │ │ ├── imports.82.wasm │ │ │ │ ├── imports.83.wasm │ │ │ │ ├── imports.84.wasm │ │ │ │ ├── imports.85.wasm │ │ │ │ ├── imports.86.wasm │ │ │ │ ├── imports.87.wasm │ │ │ │ ├── imports.88.wasm │ │ │ │ ├── imports.89.wasm │ │ │ │ ├── imports.9.wasm │ │ │ │ ├── imports.90.wasm │ │ │ │ ├── imports.91.wasm │ │ │ │ ├── imports.92.wasm │ │ │ │ ├── imports.93.wasm │ │ │ │ ├── imports.94.wasm │ │ │ │ ├── imports.95.wasm │ │ │ │ ├── imports.96.wasm │ │ │ │ ├── imports.97.wasm │ │ │ │ ├── imports.98.wasm │ │ │ │ ├── inline-module.0.wasm │ │ │ │ ├── int_exprs.0.wasm │ │ │ │ ├── int_exprs.1.wasm │ │ │ │ ├── int_exprs.10.wasm │ │ │ │ ├── int_exprs.11.wasm │ │ │ │ ├── int_exprs.12.wasm │ │ │ │ ├── int_exprs.13.wasm │ │ │ │ ├── int_exprs.14.wasm │ │ │ │ ├── int_exprs.15.wasm │ │ │ │ ├── int_exprs.16.wasm │ │ │ │ ├── int_exprs.17.wasm │ │ │ │ ├── int_exprs.18.wasm │ │ │ │ ├── int_exprs.2.wasm │ │ │ │ ├── int_exprs.3.wasm │ │ │ │ ├── int_exprs.4.wasm │ │ │ │ ├── int_exprs.5.wasm │ │ │ │ ├── int_exprs.6.wasm │ │ │ │ ├── int_exprs.7.wasm │ │ │ │ ├── int_exprs.8.wasm │ │ │ │ ├── int_exprs.9.wasm │ │ │ │ ├── int_literals.0.wasm │ │ │ │ ├── labels.0.wasm │ │ │ │ ├── left-to-right.0.wasm │ │ │ │ ├── linking.0.wasm │ │ │ │ ├── linking.1.wasm │ │ │ │ ├── linking.10.wasm │ │ │ │ ├── linking.11.wasm │ │ │ │ ├── linking.12.wasm │ │ │ │ ├── linking.13.wasm │ │ │ │ ├── linking.14.wasm │ │ │ │ ├── linking.15.wasm │ │ │ │ ├── linking.16.wasm │ │ │ │ ├── linking.17.wasm │ │ │ │ ├── linking.18.wasm │ │ │ │ ├── linking.19.wasm │ │ │ │ ├── linking.2.wasm │ │ │ │ ├── linking.20.wasm │ │ │ │ ├── linking.21.wasm │ │ │ │ ├── linking.22.wasm │ │ │ │ ├── linking.23.wasm │ │ │ │ ├── linking.24.wasm │ │ │ │ ├── linking.25.wasm │ │ │ │ ├── linking.3.wasm │ │ │ │ ├── linking.4.wasm │ │ │ │ ├── linking.5.wasm │ │ │ │ ├── linking.6.wasm │ │ │ │ ├── linking.7.wasm │ │ │ │ ├── linking.8.wasm │ │ │ │ ├── linking.9.wasm │ │ │ │ ├── loop.0.wasm │ │ │ │ ├── memory.0.wasm │ │ │ │ ├── memory.1.wasm │ │ │ │ ├── memory.2.wasm │ │ │ │ ├── memory.25.wasm │ │ │ │ ├── memory.26.wasm │ │ │ │ ├── memory.27.wasm │ │ │ │ ├── memory.28.wasm │ │ │ │ ├── memory.3.wasm │ │ │ │ ├── memory.38.wasm │ │ │ │ ├── memory.6.wasm │ │ │ │ ├── memory.7.wasm │ │ │ │ ├── memory.8.wasm │ │ │ │ ├── memory_redundancy.0.wasm │ │ │ │ ├── memory_trap.0.wasm │ │ │ │ ├── memory_trap.1.wasm │ │ │ │ ├── names.0.wasm │ │ │ │ ├── names.1.wasm │ │ │ │ ├── names.2.wasm │ │ │ │ ├── names.3.wasm │ │ │ │ ├── nop.0.wasm │ │ │ │ ├── resizing.0.wasm │ │ │ │ ├── resizing.1.wasm │ │ │ │ ├── resizing.2.wasm │ │ │ │ ├── return.0.wasm │ │ │ │ ├── select.0.wasm │ │ │ │ ├── set_local.0.wasm │ │ │ │ ├── skip-stack-guard-page.0.wasm │ │ │ │ ├── stack.0.wasm │ │ │ │ ├── start.3.wasm │ │ │ │ ├── start.4.wasm │ │ │ │ ├── start.5.wasm │ │ │ │ ├── start.6.wasm │ │ │ │ ├── start.7.wasm │ │ │ │ ├── start.8.wasm │ │ │ │ ├── switch.0.wasm │ │ │ │ ├── tee_local.0.wasm │ │ │ │ ├── traps.0.wasm │ │ │ │ ├── traps.1.wasm │ │ │ │ ├── traps.2.wasm │ │ │ │ ├── traps.3.wasm │ │ │ │ ├── type.0.wasm │ │ │ │ ├── unreachable.0.wasm │ │ │ │ └── unwind.0.wasm │ │ │ ├── fuzz_driver.cpp │ │ │ ├── fuzz_parser.cpp │ │ │ ├── old_afl_out │ │ │ │ ├── .cur_input │ │ │ │ ├── crashes │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── id:000000,sig:06,src:000000,op:flip1,pos:0 │ │ │ │ │ ├── id:000001,sig:06,src:000000,op:flip1,pos:10 │ │ │ │ │ ├── id:000002,sig:06,src:000000,op:havoc,rep:4 │ │ │ │ │ ├── id:000003,sig:06,src:000000,op:havoc,rep:128 │ │ │ │ │ ├── id:000004,sig:06,src:000000,op:havoc,rep:128 │ │ │ │ │ └── id:000005,sig:06,src:000001,op:flip1,pos:0 │ │ │ │ ├── fuzz_bitmap │ │ │ │ ├── fuzzer_stats │ │ │ │ ├── plot_data │ │ │ │ └── queue │ │ │ │ │ ├── .state │ │ │ │ │ ├── auto_extras │ │ │ │ │ │ ├── auto_000000 │ │ │ │ │ │ ├── auto_000001 │ │ │ │ │ │ ├── auto_000002 │ │ │ │ │ │ ├── auto_000003 │ │ │ │ │ │ ├── auto_000004 │ │ │ │ │ │ ├── auto_000005 │ │ │ │ │ │ ├── auto_000006 │ │ │ │ │ │ ├── auto_000007 │ │ │ │ │ │ ├── auto_000008 │ │ │ │ │ │ ├── auto_000009 │ │ │ │ │ │ ├── auto_000010 │ │ │ │ │ │ ├── auto_000011 │ │ │ │ │ │ ├── auto_000012 │ │ │ │ │ │ ├── auto_000013 │ │ │ │ │ │ ├── auto_000014 │ │ │ │ │ │ ├── auto_000015 │ │ │ │ │ │ ├── auto_000016 │ │ │ │ │ │ ├── auto_000017 │ │ │ │ │ │ ├── auto_000018 │ │ │ │ │ │ ├── auto_000019 │ │ │ │ │ │ ├── auto_000020 │ │ │ │ │ │ ├── auto_000021 │ │ │ │ │ │ ├── auto_000022 │ │ │ │ │ │ ├── auto_000023 │ │ │ │ │ │ ├── auto_000024 │ │ │ │ │ │ ├── auto_000025 │ │ │ │ │ │ ├── auto_000026 │ │ │ │ │ │ ├── auto_000027 │ │ │ │ │ │ ├── auto_000028 │ │ │ │ │ │ ├── auto_000029 │ │ │ │ │ │ ├── auto_000030 │ │ │ │ │ │ ├── auto_000031 │ │ │ │ │ │ ├── auto_000032 │ │ │ │ │ │ ├── auto_000033 │ │ │ │ │ │ ├── auto_000034 │ │ │ │ │ │ ├── auto_000035 │ │ │ │ │ │ ├── auto_000036 │ │ │ │ │ │ ├── auto_000037 │ │ │ │ │ │ ├── auto_000038 │ │ │ │ │ │ ├── auto_000039 │ │ │ │ │ │ ├── auto_000040 │ │ │ │ │ │ ├── auto_000041 │ │ │ │ │ │ ├── auto_000042 │ │ │ │ │ │ ├── auto_000043 │ │ │ │ │ │ ├── auto_000044 │ │ │ │ │ │ ├── auto_000045 │ │ │ │ │ │ ├── auto_000046 │ │ │ │ │ │ ├── auto_000047 │ │ │ │ │ │ ├── auto_000048 │ │ │ │ │ │ └── auto_000049 │ │ │ │ │ ├── deterministic_done │ │ │ │ │ │ ├── id:000000,orig:eosio.msig.wasm │ │ │ │ │ │ └── id:000001,orig:eosio.sudo.wasm │ │ │ │ │ └── redundant_edges │ │ │ │ │ │ ├── id:000002,orig:eosio.system.wasm │ │ │ │ │ │ └── id:000003,orig:eosio.token.wasm │ │ │ │ │ ├── id:000000,orig:inery.msig.wasm │ │ │ │ │ ├── id:000001,orig:inery.sudo.wasm │ │ │ │ │ ├── id:000002,orig:inery.system.wasm │ │ │ │ │ └── id:000003,orig:inery.token.wasm │ │ │ └── test │ │ ├── guarded_ptr_tests.cpp │ │ ├── host.wasm │ │ ├── host.wast │ │ ├── host_functions_tests.cpp │ │ ├── host_functions_tests_0.wasm.hpp │ │ ├── host_functions_tests_1.py │ │ ├── host_functions_tests_1.wasm.hpp │ │ ├── implementation_limits.hpp │ │ ├── implementation_limits.wast │ │ ├── implementation_limits_tests.cpp │ │ ├── instantiation_tests.cpp │ │ ├── main.cpp │ │ ├── memory_tests │ │ │ ├── CMakeLists.txt │ │ │ └── growable_allocator_test.cpp │ │ ├── outcome_tests.cpp │ │ ├── parse_tests.cpp │ │ ├── reentry.wasm.hpp │ │ ├── reentry_tests.cpp │ │ ├── signals_tests.cpp │ │ ├── spec │ │ │ ├── address_tests.cpp │ │ │ ├── align_tests.cpp │ │ │ ├── binary-leb128_tests.cpp │ │ │ ├── binary_tests.cpp │ │ │ ├── block_tests.cpp │ │ │ ├── br_if_tests.cpp │ │ │ ├── br_table_tests.cpp │ │ │ ├── br_tests.cpp │ │ │ ├── break-drop_tests.cpp │ │ │ ├── call_indirect_tests.cpp │ │ │ ├── call_tests.cpp │ │ │ ├── const_tests.cpp │ │ │ ├── const_tests.cpp.bak │ │ │ ├── conversions_tests.cpp │ │ │ ├── custom_tests.cpp │ │ │ ├── data_tests.cpp │ │ │ ├── e_block_tests.cpp │ │ │ ├── e_function_tests.cpp │ │ │ ├── e_globals_tests.cpp │ │ │ ├── e_locals_tests.cpp │ │ │ ├── e_memory_tests.cpp │ │ │ ├── e_module_tests.cpp │ │ │ ├── e_table_tests.cpp │ │ │ ├── elem_tests.cpp │ │ │ ├── elem_tests.cpp.bak │ │ │ ├── endianness_tests.cpp │ │ │ ├── extra │ │ │ │ ├── block.wast │ │ │ │ ├── function.wast │ │ │ │ ├── globals.wast │ │ │ │ ├── locals.wast │ │ │ │ ├── memory.wast │ │ │ │ ├── module.wast │ │ │ │ └── table.wast │ │ │ ├── f32_bitwise_tests.cpp │ │ │ ├── f32_cmp_tests.cpp │ │ │ ├── f32_tests.cpp │ │ │ ├── f64_bitwise_tests.cpp │ │ │ ├── f64_cmp_tests.cpp │ │ │ ├── f64_tests.cpp │ │ │ ├── fac_tests.cpp │ │ │ ├── float_exprs_tests.cpp │ │ │ ├── float_literals_tests.cpp │ │ │ ├── float_memory_tests.cpp │ │ │ ├── float_misc_tests.cpp │ │ │ ├── forward_tests.cpp │ │ │ ├── func_ptrs_tests.cpp │ │ │ ├── func_tests.cpp │ │ │ ├── globals_tests.cpp │ │ │ ├── i32_tests.cpp │ │ │ ├── i64_tests.cpp │ │ │ ├── if_tests.cpp │ │ │ ├── int_exprs_tests.cpp │ │ │ ├── int_literals_tests.cpp │ │ │ ├── labels_tests.cpp │ │ │ ├── left-to-right_tests.cpp │ │ │ ├── load_tests.cpp │ │ │ ├── local_get_tests.cpp │ │ │ ├── local_set_tests.cpp │ │ │ ├── local_tee_tests.cpp │ │ │ ├── loop_tests.cpp │ │ │ ├── memory_grow_tests.cpp │ │ │ ├── memory_redundancy_tests.cpp │ │ │ ├── memory_size_tests.cpp │ │ │ ├── memory_tests.cpp │ │ │ ├── memory_trap_tests.cpp │ │ │ ├── names_tests.cpp │ │ │ ├── nop_tests.cpp │ │ │ ├── return_tests.cpp │ │ │ ├── select_tests.cpp │ │ │ ├── stack_tests.cpp │ │ │ ├── start_tests.cpp │ │ │ ├── store_tests.cpp │ │ │ ├── switch_tests.cpp │ │ │ ├── traps_tests.cpp │ │ │ ├── type_tests.cpp │ │ │ ├── typecheck_tests.cpp │ │ │ ├── unreachable_tests.cpp │ │ │ ├── unreached-invalid_tests.cpp │ │ │ ├── unwind_tests.cpp │ │ │ ├── utf8-custom-section-id_tests.cpp │ │ │ ├── utf8-import-field_tests.cpp │ │ │ ├── utf8-import-module_tests.cpp │ │ │ └── utf8-invalid-encoding_tests.cpp │ │ ├── spec_test_generator │ │ │ └── spec_test_generator.cpp │ │ ├── stack_restriction_tests.cpp │ │ ├── test.types │ │ ├── types_types_array.py │ │ ├── update-wasm.sh │ │ ├── utils.hpp │ │ ├── variant_tests.cpp │ │ ├── varint_tests.cpp │ │ ├── vector_tests.cpp │ │ ├── wasm_config.hpp.in │ │ ├── wasm_stack_tests.cpp │ │ └── watchdog_tests.cpp │ └── tools │ │ ├── CMakeLists.txt │ │ ├── bench_interp.cpp │ │ ├── hello.wasm.hpp │ │ ├── hello_driver.cpp │ │ └── interp.cpp ├── softfloat │ ├── .gitignore │ ├── CMakeLists.txt │ ├── COPYING.txt │ ├── README.html │ ├── README.md │ ├── README.txt │ ├── build │ │ ├── Linux-386-GCC │ │ │ ├── Makefile │ │ │ └── platform.h │ │ ├── Linux-386-SSE2-GCC │ │ │ ├── Makefile │ │ │ └── platform.h │ │ ├── Linux-ARM-VFPv2-GCC │ │ │ ├── Makefile │ │ │ └── platform.h │ │ ├── Linux-x86_64-GCC │ │ │ ├── Makefile │ │ │ └── platform.h │ │ ├── Win32-MinGW │ │ │ ├── Makefile │ │ │ └── platform.h │ │ ├── Win32-SSE2-MinGW │ │ │ ├── Makefile │ │ │ └── platform.h │ │ ├── Win64-MinGW-w64 │ │ │ ├── Makefile │ │ │ └── platform.h │ │ ├── template-FAST_INT64 │ │ │ ├── Makefile │ │ │ └── platform.h │ │ └── template-not-FAST_INT64 │ │ │ ├── Makefile │ │ │ └── platform.h │ ├── doc │ │ ├── SoftFloat-history.html │ │ ├── SoftFloat-source.html │ │ └── SoftFloat.html │ └── source │ │ ├── 8086 │ │ ├── extF80M_isSignalingNaN.c │ │ ├── f128M_isSignalingNaN.c │ │ ├── s_commonNaNToExtF80M.c │ │ ├── s_commonNaNToExtF80UI.c │ │ ├── s_commonNaNToF128M.c │ │ ├── s_commonNaNToF128UI.c │ │ ├── s_commonNaNToF16UI.c │ │ ├── s_commonNaNToF32UI.c │ │ ├── s_commonNaNToF64UI.c │ │ ├── s_extF80MToCommonNaN.c │ │ ├── s_extF80UIToCommonNaN.c │ │ ├── s_f128MToCommonNaN.c │ │ ├── s_f128UIToCommonNaN.c │ │ ├── s_f16UIToCommonNaN.c │ │ ├── s_f32UIToCommonNaN.c │ │ ├── s_f64UIToCommonNaN.c │ │ ├── s_propagateNaNExtF80M.c │ │ ├── s_propagateNaNExtF80UI.c │ │ ├── s_propagateNaNF128M.c │ │ ├── s_propagateNaNF128UI.c │ │ ├── s_propagateNaNF16UI.c │ │ ├── s_propagateNaNF32UI.c │ │ ├── s_propagateNaNF64UI.c │ │ ├── softfloat_raiseFlags.c │ │ └── specialize.h │ │ ├── 8086-SSE │ │ ├── extF80M_isSignalingNaN.c │ │ ├── f128M_isSignalingNaN.c │ │ ├── s_commonNaNToExtF80M.c │ │ ├── s_commonNaNToExtF80UI.c │ │ ├── s_commonNaNToF128M.c │ │ ├── s_commonNaNToF128UI.c │ │ ├── s_commonNaNToF16UI.c │ │ ├── s_commonNaNToF32UI.c │ │ ├── s_commonNaNToF64UI.c │ │ ├── s_extF80MToCommonNaN.c │ │ ├── s_extF80UIToCommonNaN.c │ │ ├── s_f128MToCommonNaN.c │ │ ├── s_f128UIToCommonNaN.c │ │ ├── s_f16UIToCommonNaN.c │ │ ├── s_f32UIToCommonNaN.c │ │ ├── s_f64UIToCommonNaN.c │ │ ├── s_propagateNaNExtF80M.c │ │ ├── s_propagateNaNExtF80UI.c │ │ ├── s_propagateNaNF128M.c │ │ ├── s_propagateNaNF128UI.c │ │ ├── s_propagateNaNF16UI.c │ │ ├── s_propagateNaNF32UI.c │ │ ├── s_propagateNaNF64UI.c │ │ ├── softfloat_raiseFlags.c │ │ └── specialize.h │ │ ├── ARM-VFPv2-defaultNaN │ │ ├── extF80M_isSignalingNaN.c │ │ ├── f128M_isSignalingNaN.c │ │ ├── s_commonNaNToExtF80M.c │ │ ├── s_commonNaNToExtF80UI.c │ │ ├── s_commonNaNToF128M.c │ │ ├── s_commonNaNToF128UI.c │ │ ├── s_commonNaNToF16UI.c │ │ ├── s_commonNaNToF32UI.c │ │ ├── s_commonNaNToF64UI.c │ │ ├── s_extF80MToCommonNaN.c │ │ ├── s_extF80UIToCommonNaN.c │ │ ├── s_f128MToCommonNaN.c │ │ ├── s_f128UIToCommonNaN.c │ │ ├── s_f16UIToCommonNaN.c │ │ ├── s_f32UIToCommonNaN.c │ │ ├── s_f64UIToCommonNaN.c │ │ ├── s_propagateNaNExtF80M.c │ │ ├── s_propagateNaNExtF80UI.c │ │ ├── s_propagateNaNF128M.c │ │ ├── s_propagateNaNF128UI.c │ │ ├── s_propagateNaNF16UI.c │ │ ├── s_propagateNaNF32UI.c │ │ ├── s_propagateNaNF64UI.c │ │ ├── softfloat_raiseFlags.c │ │ └── specialize.h │ │ ├── ARM-VFPv2 │ │ ├── extF80M_isSignalingNaN.c │ │ ├── f128M_isSignalingNaN.c │ │ ├── s_commonNaNToExtF80M.c │ │ ├── s_commonNaNToExtF80UI.c │ │ ├── s_commonNaNToF128M.c │ │ ├── s_commonNaNToF128UI.c │ │ ├── s_commonNaNToF16UI.c │ │ ├── s_commonNaNToF32UI.c │ │ ├── s_commonNaNToF64UI.c │ │ ├── s_extF80MToCommonNaN.c │ │ ├── s_extF80UIToCommonNaN.c │ │ ├── s_f128MToCommonNaN.c │ │ ├── s_f128UIToCommonNaN.c │ │ ├── s_f16UIToCommonNaN.c │ │ ├── s_f32UIToCommonNaN.c │ │ ├── s_f64UIToCommonNaN.c │ │ ├── s_propagateNaNExtF80M.c │ │ ├── s_propagateNaNExtF80UI.c │ │ ├── s_propagateNaNF128M.c │ │ ├── s_propagateNaNF128UI.c │ │ ├── s_propagateNaNF16UI.c │ │ ├── s_propagateNaNF32UI.c │ │ ├── s_propagateNaNF64UI.c │ │ ├── softfloat_raiseFlags.c │ │ └── specialize.h │ │ ├── RISCV │ │ ├── extF80M_isSignalingNaN.c │ │ ├── f128M_isSignalingNaN.c │ │ ├── s_commonNaNToExtF80M.c │ │ ├── s_commonNaNToExtF80UI.c │ │ ├── s_commonNaNToF128M.c │ │ ├── s_commonNaNToF128UI.c │ │ ├── s_commonNaNToF16UI.c │ │ ├── s_commonNaNToF32UI.c │ │ ├── s_commonNaNToF64UI.c │ │ ├── s_extF80MToCommonNaN.c │ │ ├── s_extF80UIToCommonNaN.c │ │ ├── s_f128MToCommonNaN.c │ │ ├── s_f128UIToCommonNaN.c │ │ ├── s_f16UIToCommonNaN.c │ │ ├── s_f32UIToCommonNaN.c │ │ ├── s_f64UIToCommonNaN.c │ │ ├── s_propagateNaNExtF80M.c │ │ ├── s_propagateNaNExtF80UI.c │ │ ├── s_propagateNaNF128M.c │ │ ├── s_propagateNaNF128UI.c │ │ ├── s_propagateNaNF16UI.c │ │ ├── s_propagateNaNF32UI.c │ │ ├── s_propagateNaNF64UI.c │ │ ├── softfloat_raiseFlags.c │ │ └── specialize.h │ │ ├── extF80M_add.c │ │ ├── extF80M_div.c │ │ ├── extF80M_eq.c │ │ ├── extF80M_eq_signaling.c │ │ ├── extF80M_le.c │ │ ├── extF80M_le_quiet.c │ │ ├── extF80M_lt.c │ │ ├── extF80M_lt_quiet.c │ │ ├── extF80M_mul.c │ │ ├── extF80M_rem.c │ │ ├── extF80M_roundToInt.c │ │ ├── extF80M_sqrt.c │ │ ├── extF80M_sub.c │ │ ├── extF80M_to_f128M.c │ │ ├── extF80M_to_f16.c │ │ ├── extF80M_to_f32.c │ │ ├── extF80M_to_f64.c │ │ ├── extF80M_to_i32.c │ │ ├── extF80M_to_i32_r_minMag.c │ │ ├── extF80M_to_i64.c │ │ ├── extF80M_to_i64_r_minMag.c │ │ ├── extF80M_to_ui32.c │ │ ├── extF80M_to_ui32_r_minMag.c │ │ ├── extF80M_to_ui64.c │ │ ├── extF80M_to_ui64_r_minMag.c │ │ ├── extF80_add.c │ │ ├── extF80_div.c │ │ ├── extF80_eq.c │ │ ├── extF80_eq_signaling.c │ │ ├── extF80_isSignalingNaN.c │ │ ├── extF80_le.c │ │ ├── extF80_le_quiet.c │ │ ├── extF80_lt.c │ │ ├── extF80_lt_quiet.c │ │ ├── extF80_mul.c │ │ ├── extF80_rem.c │ │ ├── extF80_roundToInt.c │ │ ├── extF80_sqrt.c │ │ ├── extF80_sub.c │ │ ├── extF80_to_f128.c │ │ ├── extF80_to_f16.c │ │ ├── extF80_to_f32.c │ │ ├── extF80_to_f64.c │ │ ├── extF80_to_i32.c │ │ ├── extF80_to_i32_r_minMag.c │ │ ├── extF80_to_i64.c │ │ ├── extF80_to_i64_r_minMag.c │ │ ├── extF80_to_ui32.c │ │ ├── extF80_to_ui32_r_minMag.c │ │ ├── extF80_to_ui64.c │ │ ├── extF80_to_ui64_r_minMag.c │ │ ├── f128M_add.c │ │ ├── f128M_div.c │ │ ├── f128M_eq.c │ │ ├── f128M_eq_signaling.c │ │ ├── f128M_le.c │ │ ├── f128M_le_quiet.c │ │ ├── f128M_lt.c │ │ ├── f128M_lt_quiet.c │ │ ├── f128M_mul.c │ │ ├── f128M_mulAdd.c │ │ ├── f128M_rem.c │ │ ├── f128M_roundToInt.c │ │ ├── f128M_sqrt.c │ │ ├── f128M_sub.c │ │ ├── f128M_to_extF80M.c │ │ ├── f128M_to_f16.c │ │ ├── f128M_to_f32.c │ │ ├── f128M_to_f64.c │ │ ├── f128M_to_i32.c │ │ ├── f128M_to_i32_r_minMag.c │ │ ├── f128M_to_i64.c │ │ ├── f128M_to_i64_r_minMag.c │ │ ├── f128M_to_ui32.c │ │ ├── f128M_to_ui32_r_minMag.c │ │ ├── f128M_to_ui64.c │ │ ├── f128M_to_ui64_r_minMag.c │ │ ├── f128_add.c │ │ ├── f128_div.c │ │ ├── f128_eq.c │ │ ├── f128_eq_signaling.c │ │ ├── f128_isSignalingNaN.c │ │ ├── f128_isnan.c │ │ ├── f128_le.c │ │ ├── f128_le_quiet.c │ │ ├── f128_lt.c │ │ ├── f128_lt_quiet.c │ │ ├── f128_mul.c │ │ ├── f128_mulAdd.c │ │ ├── f128_rem.c │ │ ├── f128_roundToInt.c │ │ ├── f128_sqrt.c │ │ ├── f128_sub.c │ │ ├── f128_to_extF80.c │ │ ├── f128_to_f16.c │ │ ├── f128_to_f32.c │ │ ├── f128_to_f64.c │ │ ├── f128_to_i32.c │ │ ├── f128_to_i32_r_minMag.c │ │ ├── f128_to_i64.c │ │ ├── f128_to_i64_r_minMag.c │ │ ├── f128_to_ui32.c │ │ ├── f128_to_ui32_r_minMag.c │ │ ├── f128_to_ui64.c │ │ ├── f128_to_ui64_r_minMag.c │ │ ├── f16_add.c │ │ ├── f16_div.c │ │ ├── f16_eq.c │ │ ├── f16_eq_signaling.c │ │ ├── f16_isSignalingNaN.c │ │ ├── f16_le.c │ │ ├── f16_le_quiet.c │ │ ├── f16_lt.c │ │ ├── f16_lt_quiet.c │ │ ├── f16_mul.c │ │ ├── f16_mulAdd.c │ │ ├── f16_rem.c │ │ ├── f16_roundToInt.c │ │ ├── f16_sqrt.c │ │ ├── f16_sub.c │ │ ├── f16_to_extF80.c │ │ ├── f16_to_extF80M.c │ │ ├── f16_to_f128.c │ │ ├── f16_to_f128M.c │ │ ├── f16_to_f32.c │ │ ├── f16_to_f64.c │ │ ├── f16_to_i32.c │ │ ├── f16_to_i32_r_minMag.c │ │ ├── f16_to_i64.c │ │ ├── f16_to_i64_r_minMag.c │ │ ├── f16_to_ui32.c │ │ ├── f16_to_ui32_r_minMag.c │ │ ├── f16_to_ui64.c │ │ ├── f16_to_ui64_r_minMag.c │ │ ├── f32_add.c │ │ ├── f32_div.c │ │ ├── f32_eq.c │ │ ├── f32_eq_signaling.c │ │ ├── f32_isSignalingNaN.c │ │ ├── f32_le.c │ │ ├── f32_le_quiet.c │ │ ├── f32_lt.c │ │ ├── f32_lt_quiet.c │ │ ├── f32_mul.c │ │ ├── f32_mulAdd.c │ │ ├── f32_rem.c │ │ ├── f32_roundToInt.c │ │ ├── f32_sqrt.c │ │ ├── f32_sub.c │ │ ├── f32_to_extF80.c │ │ ├── f32_to_extF80M.c │ │ ├── f32_to_f128.c │ │ ├── f32_to_f128M.c │ │ ├── f32_to_f16.c │ │ ├── f32_to_f64.c │ │ ├── f32_to_i32.c │ │ ├── f32_to_i32_r_minMag.c │ │ ├── f32_to_i64.c │ │ ├── f32_to_i64_r_minMag.c │ │ ├── f32_to_ui32.c │ │ ├── f32_to_ui32_r_minMag.c │ │ ├── f32_to_ui64.c │ │ ├── f32_to_ui64_r_minMag.c │ │ ├── f64_add.c │ │ ├── f64_div.c │ │ ├── f64_eq.c │ │ ├── f64_eq_signaling.c │ │ ├── f64_isSignalingNaN.c │ │ ├── f64_le.c │ │ ├── f64_le_quiet.c │ │ ├── f64_lt.c │ │ ├── f64_lt_quiet.c │ │ ├── f64_mul.c │ │ ├── f64_mulAdd.c │ │ ├── f64_rem.c │ │ ├── f64_roundToInt.c │ │ ├── f64_sqrt.c │ │ ├── f64_sub.c │ │ ├── f64_to_extF80.c │ │ ├── f64_to_extF80M.c │ │ ├── f64_to_f128.c │ │ ├── f64_to_f128M.c │ │ ├── f64_to_f16.c │ │ ├── f64_to_f32.c │ │ ├── f64_to_i32.c │ │ ├── f64_to_i32_r_minMag.c │ │ ├── f64_to_i64.c │ │ ├── f64_to_i64_r_minMag.c │ │ ├── f64_to_ui32.c │ │ ├── f64_to_ui32_r_minMag.c │ │ ├── f64_to_ui64.c │ │ ├── f64_to_ui64_r_minMag.c │ │ ├── i32_to_extF80.c │ │ ├── i32_to_extF80M.c │ │ ├── i32_to_f128.c │ │ ├── i32_to_f128M.c │ │ ├── i32_to_f16.c │ │ ├── i32_to_f32.c │ │ ├── i32_to_f64.c │ │ ├── i64_to_extF80.c │ │ ├── i64_to_extF80M.c │ │ ├── i64_to_f128.c │ │ ├── i64_to_f128M.c │ │ ├── i64_to_f16.c │ │ ├── i64_to_f32.c │ │ ├── i64_to_f64.c │ │ ├── include │ │ ├── internals.h │ │ ├── opts-GCC.h │ │ ├── primitiveTypes.h │ │ ├── primitives.h │ │ ├── softfloat.h │ │ ├── softfloat.hpp │ │ └── softfloat_types.h │ │ ├── s_add128.c │ │ ├── s_add256M.c │ │ ├── s_addCarryM.c │ │ ├── s_addComplCarryM.c │ │ ├── s_addExtF80M.c │ │ ├── s_addF128M.c │ │ ├── s_addM.c │ │ ├── s_addMagsExtF80.c │ │ ├── s_addMagsF128.c │ │ ├── s_addMagsF16.c │ │ ├── s_addMagsF32.c │ │ ├── s_addMagsF64.c │ │ ├── s_approxRecip32_1.c │ │ ├── s_approxRecipSqrt32_1.c │ │ ├── s_approxRecipSqrt_1Ks.c │ │ ├── s_approxRecip_1Ks.c │ │ ├── s_compare128M.c │ │ ├── s_compare96M.c │ │ ├── s_compareNonnormExtF80M.c │ │ ├── s_countLeadingZeros16.c │ │ ├── s_countLeadingZeros32.c │ │ ├── s_countLeadingZeros64.c │ │ ├── s_countLeadingZeros8.c │ │ ├── s_eq128.c │ │ ├── s_invalidExtF80M.c │ │ ├── s_invalidF128M.c │ │ ├── s_isNaNF128M.c │ │ ├── s_le128.c │ │ ├── s_lt128.c │ │ ├── s_mul128By32.c │ │ ├── s_mul128MTo256M.c │ │ ├── s_mul128To256M.c │ │ ├── s_mul64ByShifted32To128.c │ │ ├── s_mul64To128.c │ │ ├── s_mul64To128M.c │ │ ├── s_mulAddF128.c │ │ ├── s_mulAddF128M.c │ │ ├── s_mulAddF16.c │ │ ├── s_mulAddF32.c │ │ ├── s_mulAddF64.c │ │ ├── s_negXM.c │ │ ├── s_normExtF80SigM.c │ │ ├── s_normRoundPackMToExtF80M.c │ │ ├── s_normRoundPackMToF128M.c │ │ ├── s_normRoundPackToExtF80.c │ │ ├── s_normRoundPackToF128.c │ │ ├── s_normRoundPackToF16.c │ │ ├── s_normRoundPackToF32.c │ │ ├── s_normRoundPackToF64.c │ │ ├── s_normSubnormalExtF80Sig.c │ │ ├── s_normSubnormalF128Sig.c │ │ ├── s_normSubnormalF128SigM.c │ │ ├── s_normSubnormalF16Sig.c │ │ ├── s_normSubnormalF32Sig.c │ │ ├── s_normSubnormalF64Sig.c │ │ ├── s_remStepMBy32.c │ │ ├── s_roundMToI64.c │ │ ├── s_roundMToUI64.c │ │ ├── s_roundPackMToExtF80M.c │ │ ├── s_roundPackMToF128M.c │ │ ├── s_roundPackToExtF80.c │ │ ├── s_roundPackToF128.c │ │ ├── s_roundPackToF16.c │ │ ├── s_roundPackToF32.c │ │ ├── s_roundPackToF64.c │ │ ├── s_roundToI32.c │ │ ├── s_roundToI64.c │ │ ├── s_roundToUI32.c │ │ ├── s_roundToUI64.c │ │ ├── s_shiftLeftM.c │ │ ├── s_shiftNormSigF128M.c │ │ ├── s_shiftRightJam128.c │ │ ├── s_shiftRightJam128Extra.c │ │ ├── s_shiftRightJam256M.c │ │ ├── s_shiftRightJam32.c │ │ ├── s_shiftRightJam64.c │ │ ├── s_shiftRightJam64Extra.c │ │ ├── s_shiftRightJamM.c │ │ ├── s_shiftRightM.c │ │ ├── s_shortShiftLeft128.c │ │ ├── s_shortShiftLeft64To96M.c │ │ ├── s_shortShiftLeftM.c │ │ ├── s_shortShiftRight128.c │ │ ├── s_shortShiftRightExtendM.c │ │ ├── s_shortShiftRightJam128.c │ │ ├── s_shortShiftRightJam128Extra.c │ │ ├── s_shortShiftRightJam64.c │ │ ├── s_shortShiftRightJam64Extra.c │ │ ├── s_shortShiftRightJamM.c │ │ ├── s_shortShiftRightM.c │ │ ├── s_sub128.c │ │ ├── s_sub1XM.c │ │ ├── s_sub256M.c │ │ ├── s_subM.c │ │ ├── s_subMagsExtF80.c │ │ ├── s_subMagsF128.c │ │ ├── s_subMagsF16.c │ │ ├── s_subMagsF32.c │ │ ├── s_subMagsF64.c │ │ ├── s_tryPropagateNaNExtF80M.c │ │ ├── s_tryPropagateNaNF128M.c │ │ ├── softfloat_state.c │ │ ├── ui32_to_extF80.c │ │ ├── ui32_to_extF80M.c │ │ ├── ui32_to_f128.c │ │ ├── ui32_to_f128M.c │ │ ├── ui32_to_f16.c │ │ ├── ui32_to_f32.c │ │ ├── ui32_to_f64.c │ │ ├── ui64_to_extF80.c │ │ ├── ui64_to_extF80M.c │ │ ├── ui64_to_f128.c │ │ ├── ui64_to_f128M.c │ │ ├── ui64_to_f16.c │ │ ├── ui64_to_f32.c │ │ └── ui64_to_f64.c ├── testing │ ├── CMakeLists.txt │ ├── include │ │ └── inery │ │ │ └── testing │ │ │ ├── chainbase_fixture.hpp │ │ │ ├── tester.hpp │ │ │ └── tester_network.hpp │ ├── tester.cpp │ └── tester_network.cpp ├── version │ ├── CMakeLists.txt │ ├── include │ │ └── inery │ │ │ └── version │ │ │ └── version.hpp │ └── src │ │ ├── version.cpp │ │ ├── version_impl.cpp.in │ │ └── version_impl.hpp ├── wabt │ ├── .appveyor.yml │ ├── .clang-format │ ├── .gitattributes │ ├── .gitignore │ ├── .gitmodules │ ├── .style.yapf │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── Contributing.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── cmake │ │ ├── FindRE2C.cmake │ │ └── README.md │ ├── demo │ │ ├── custom.css │ │ ├── index.html │ │ ├── libwabt.js │ │ ├── third_party │ │ │ ├── codemirror │ │ │ │ ├── LICENSE │ │ │ │ ├── codemirror.css │ │ │ │ ├── codemirror.js │ │ │ │ ├── javascript.js │ │ │ │ └── simple-mode.js │ │ │ └── split │ │ │ │ ├── horizontal.png │ │ │ │ ├── split.min.js │ │ │ │ └── vertical.png │ │ ├── wasm2wat │ │ │ ├── demo.js │ │ │ ├── examples.js │ │ │ └── index.html │ │ ├── wast-mode.js │ │ └── wat2wasm │ │ │ ├── demo.js │ │ │ ├── examples.js │ │ │ └── index.html │ ├── fuzz-in │ │ ├── wasm │ │ │ └── stuff.wasm │ │ ├── wast.dict │ │ └── wast │ │ │ └── basic.txt │ ├── man │ │ ├── wasm-interp.1 │ │ ├── wasm-objdump.1 │ │ ├── wasm2c.1 │ │ ├── wasm2wat.1 │ │ ├── wat-desugar.1 │ │ └── wat2wasm.1 │ ├── scripts │ │ ├── appveyor-after-test.bat │ │ ├── coverage.sh │ │ ├── fuzz-wasm2wat.sh │ │ ├── fuzz-wat2wasm.sh │ │ ├── gen-emscripten-exported-json.py │ │ ├── sha256sum.py │ │ ├── travis-before-deploy.sh │ │ ├── travis-before-install.sh │ │ ├── travis-build.sh │ │ ├── travis-common.sh │ │ ├── travis-emcc.sh │ │ └── travis-test.sh │ ├── src │ │ ├── apply-names.cc │ │ ├── apply-names.h │ │ ├── binary-reader-interp.cc │ │ ├── binary-reader-interp.h │ │ ├── binary-reader-ir.cc │ │ ├── binary-reader-ir.h │ │ ├── binary-reader-logging.cc │ │ ├── binary-reader-logging.h │ │ ├── binary-reader-nop.h │ │ ├── binary-reader-objdump.cc │ │ ├── binary-reader-objdump.h │ │ ├── binary-reader-opcnt.cc │ │ ├── binary-reader-opcnt.h │ │ ├── binary-reader.cc │ │ ├── binary-reader.h │ │ ├── binary-writer-spec.cc │ │ ├── binary-writer-spec.h │ │ ├── binary-writer.cc │ │ ├── binary-writer.h │ │ ├── binary.cc │ │ ├── binary.h │ │ ├── binding-hash.cc │ │ ├── binding-hash.h │ │ ├── c-writer.cc │ │ ├── c-writer.h │ │ ├── cast.h │ │ ├── circular-array.h │ │ ├── color.cc │ │ ├── color.h │ │ ├── common.cc │ │ ├── common.h │ │ ├── config.cc │ │ ├── config.h.in │ │ ├── emscripten-exported.json │ │ ├── emscripten-helpers.cc │ │ ├── error-formatter.cc │ │ ├── error-formatter.h │ │ ├── error.h │ │ ├── expr-visitor.cc │ │ ├── expr-visitor.h │ │ ├── feature.cc │ │ ├── feature.def │ │ ├── feature.h │ │ ├── filenames.cc │ │ ├── filenames.h │ │ ├── generate-names.cc │ │ ├── generate-names.h │ │ ├── hash-util.cc │ │ ├── hash-util.h │ │ ├── interp.cc │ │ ├── interp.h │ │ ├── intrusive-list.h │ │ ├── ir.cc │ │ ├── ir.h │ │ ├── leb128.cc │ │ ├── leb128.h │ │ ├── lexer-source-line-finder.cc │ │ ├── lexer-source-line-finder.h │ │ ├── lexer-source.cc │ │ ├── lexer-source.h │ │ ├── literal.cc │ │ ├── literal.h │ │ ├── make-unique.h │ │ ├── opcode-code-table.c │ │ ├── opcode-code-table.h │ │ ├── opcode.cc │ │ ├── opcode.def │ │ ├── opcode.h │ │ ├── option-parser.cc │ │ ├── option-parser.h │ │ ├── prebuilt │ │ │ ├── wasm2c.include.c │ │ │ ├── wasm2c.include.h │ │ │ └── wast-lexer-gen.cc │ │ ├── range.h │ │ ├── resolve-names.cc │ │ ├── resolve-names.h │ │ ├── result.h │ │ ├── stream.cc │ │ ├── stream.h │ │ ├── string-view.cc │ │ ├── string-view.h │ │ ├── test-circular-array.cc │ │ ├── test-filenames.cc │ │ ├── test-hexfloat.cc │ │ ├── test-interp.cc │ │ ├── test-intrusive-list.cc │ │ ├── test-literal.cc │ │ ├── test-string-view.cc │ │ ├── test-utf8.cc │ │ ├── test-wast-parser.cc │ │ ├── token.cc │ │ ├── token.def │ │ ├── token.h │ │ ├── tools │ │ │ ├── spectest-interp.cc │ │ │ ├── wasm-interp.cc │ │ │ ├── wasm-objdump.cc │ │ │ ├── wasm-opcodecnt.cc │ │ │ ├── wasm-strip.cc │ │ │ ├── wasm-validate.cc │ │ │ ├── wasm2c.cc │ │ │ ├── wasm2wat.cc │ │ │ ├── wast2json.cc │ │ │ ├── wat-desugar.cc │ │ │ └── wat2wasm.cc │ │ ├── tracing.cc │ │ ├── tracing.h │ │ ├── type-checker.cc │ │ ├── type-checker.h │ │ ├── utf8.cc │ │ ├── utf8.h │ │ ├── validator.cc │ │ ├── validator.h │ │ ├── wabt.post.js │ │ ├── wasm2c.c.tmpl │ │ ├── wasm2c.h.tmpl │ │ ├── wasm2c_tmpl.py │ │ ├── wast-lexer.cc │ │ ├── wast-lexer.h │ │ ├── wast-parser.cc │ │ ├── wast-parser.h │ │ ├── wat-writer.cc │ │ └── wat-writer.h │ ├── test │ │ ├── README.md │ │ ├── binary │ │ │ ├── bad-data-size.txt │ │ │ ├── bad-duplicate-section-around-custom.txt │ │ │ ├── bad-duplicate-section.txt │ │ │ ├── bad-duplicate-subsection.txt │ │ │ ├── bad-export-func.txt │ │ │ ├── bad-extra-end.txt │ │ │ ├── bad-function-body-count.txt │ │ │ ├── bad-function-body-size.txt │ │ │ ├── bad-function-local-count.txt │ │ │ ├── bad-function-local-type.txt │ │ │ ├── bad-function-names-too-many.txt │ │ │ ├── bad-function-param-type.txt │ │ │ ├── bad-function-result-type.txt │ │ │ ├── bad-function-sig.txt │ │ │ ├── bad-function-too-many-results.txt │ │ │ ├── bad-import-sig.txt │ │ │ ├── bad-linking-metadata.txt │ │ │ ├── bad-logging-basic.txt │ │ │ ├── bad-magic.txt │ │ │ ├── bad-memory-init-max-size.txt │ │ │ ├── bad-memory-init-size.txt │ │ │ ├── bad-memory-max-size.txt │ │ │ ├── bad-name-section-invalid-index.txt │ │ │ ├── bad-name-section-location.txt │ │ │ ├── bad-names-duplicate-locals.txt │ │ │ ├── bad-names-duplicates.txt │ │ │ ├── bad-names-function-locals-out-of-order.txt │ │ │ ├── bad-names-locals-out-of-order.txt │ │ │ ├── bad-names-out-of-order.txt │ │ │ ├── bad-op-after-end.txt │ │ │ ├── bad-opcode-prefix.txt │ │ │ ├── bad-opcode.txt │ │ │ ├── bad-section-ends-early.txt │ │ │ ├── bad-section-size-zero.txt │ │ │ ├── bad-segment-no-memory.txt │ │ │ ├── bad-simd-type.txt │ │ │ ├── bad-start-func.txt │ │ │ ├── bad-subsection-out-of-order.txt │ │ │ ├── bad-subsection-size.txt │ │ │ ├── bad-subsection-unfinished.txt │ │ │ ├── bad-too-many-locals.txt │ │ │ ├── bad-type-form.txt │ │ │ ├── bad-typecheck-fail.txt │ │ │ ├── bad-typecheck-missing-drop.txt │ │ │ ├── bad-version.txt │ │ │ ├── basic.txt │ │ │ ├── duplicate-names.txt │ │ │ ├── gen-wasm-parse-error.txt │ │ │ ├── ignore-custom-section-error-objdump.txt │ │ │ ├── ignore-custom-section-error-wasm2wat.txt │ │ │ ├── invalid-name.txt │ │ │ ├── linking-section.txt │ │ │ ├── names.txt │ │ │ ├── no-global-names.txt │ │ │ ├── no-names.txt │ │ │ ├── relocs.txt │ │ │ └── user-section.txt │ │ ├── desugar │ │ │ ├── basic.txt │ │ │ ├── implicit-func-type.txt │ │ │ └── try.txt │ │ ├── dump │ │ │ ├── atomic.txt │ │ │ ├── bad-version-logging.txt │ │ │ ├── bad-version.txt │ │ │ ├── basic.txt │ │ │ ├── basic_dump_only.txt │ │ │ ├── binary.txt │ │ │ ├── block-257-exprs-br.txt │ │ │ ├── block-257-exprs.txt │ │ │ ├── block-multi.txt │ │ │ ├── block.txt │ │ │ ├── br-block-named.txt │ │ │ ├── br-block.txt │ │ │ ├── br-loop-inner-expr.txt │ │ │ ├── br-loop-inner.txt │ │ │ ├── br-loop.txt │ │ │ ├── brif-loop.txt │ │ │ ├── brif.txt │ │ │ ├── brtable-empty.txt │ │ │ ├── brtable.txt │ │ │ ├── call.txt │ │ │ ├── callimport.txt │ │ │ ├── callindirect.txt │ │ │ ├── cast.txt │ │ │ ├── compare.txt │ │ │ ├── const.txt │ │ │ ├── convert-sat.txt │ │ │ ├── convert.txt │ │ │ ├── current-memory.txt │ │ │ ├── debug-import-names.txt │ │ │ ├── debug-names.txt │ │ │ ├── dedupe-sig.txt │ │ │ ├── drop.txt │ │ │ ├── except.txt │ │ │ ├── export-multi.txt │ │ │ ├── expr-br.txt │ │ │ ├── expr-brif.txt │ │ │ ├── func-exported.txt │ │ │ ├── func-multi.txt │ │ │ ├── func-named.txt │ │ │ ├── func-result-multi.txt │ │ │ ├── getglobal.txt │ │ │ ├── getlocal-param.txt │ │ │ ├── getlocal.txt │ │ │ ├── global.txt │ │ │ ├── grow-memory.txt │ │ │ ├── hexfloat_f32.txt │ │ │ ├── hexfloat_f64.txt │ │ │ ├── if-multi.txt │ │ │ ├── if-then-else-list.txt │ │ │ ├── if-then-list.txt │ │ │ ├── if.txt │ │ │ ├── if_except-multi.txt │ │ │ ├── if_except.txt │ │ │ ├── import.txt │ │ │ ├── invalid-data-segment-no-memory.txt │ │ │ ├── invalid-data-segment-offset.txt │ │ │ ├── invalid-elem-segment-no-table.txt │ │ │ ├── invalid-elem-segment-offset.txt │ │ │ ├── load-aligned.txt │ │ │ ├── load.txt │ │ │ ├── locals.txt │ │ │ ├── loop-257-exprs-br.txt │ │ │ ├── loop-257-exprs.txt │ │ │ ├── loop-multi.txt │ │ │ ├── loop.txt │ │ │ ├── memory-1-byte.txt │ │ │ ├── memory-data-size.txt │ │ │ ├── memory-hex.txt │ │ │ ├── memory.txt │ │ │ ├── module-name.txt │ │ │ ├── multi_file.txt │ │ │ ├── mutable-global.txt │ │ │ ├── no-canonicalize.txt │ │ │ ├── nocheck.txt │ │ │ ├── nop.txt │ │ │ ├── param-multi.txt │ │ │ ├── relocations.txt │ │ │ ├── result.txt │ │ │ ├── rethrow.txt │ │ │ ├── return.txt │ │ │ ├── select.txt │ │ │ ├── setglobal.txt │ │ │ ├── setlocal-param.txt │ │ │ ├── setlocal.txt │ │ │ ├── signatures.txt │ │ │ ├── start.txt │ │ │ ├── store-aligned.txt │ │ │ ├── store.txt │ │ │ ├── string-escape.txt │ │ │ ├── string-hex.txt │ │ │ ├── table.txt │ │ │ ├── tee_local.txt │ │ │ ├── throw.txt │ │ │ ├── try-multi.txt │ │ │ ├── try.txt │ │ │ ├── unary-extend.txt │ │ │ ├── unary.txt │ │ │ └── unreachable.txt │ │ ├── find_exe.py │ │ ├── gen-spec-empty-prefix.js │ │ ├── gen-spec-js.py │ │ ├── gen-spec-js │ │ │ ├── action.txt │ │ │ ├── assert_exhaustion.txt │ │ │ ├── assert_malformed-quote.txt │ │ │ ├── assert_malformed.txt │ │ │ ├── assert_return.txt │ │ │ ├── assert_return_nan.txt │ │ │ ├── assert_trap.txt │ │ │ ├── assert_uninstantiable.txt │ │ │ ├── assert_unlinkable.txt │ │ │ ├── basic.txt │ │ │ ├── many-modules.txt │ │ │ └── register.txt │ │ ├── gen-spec-prefix.js │ │ ├── gen-wasm.py │ │ ├── help │ │ │ ├── spectest-interp.txt │ │ │ ├── wasm-interp.txt │ │ │ ├── wasm-objdump.txt │ │ │ ├── wasm-opcodecnt.txt │ │ │ ├── wasm-validate.txt │ │ │ ├── wasm2wat.txt │ │ │ ├── wast2json.txt │ │ │ ├── wat-desugar.txt │ │ │ └── wat2wasm.txt │ │ ├── interp │ │ │ ├── atomic-load.txt │ │ │ ├── atomic-rmw-add.txt │ │ │ ├── atomic-rmw-and.txt │ │ │ ├── atomic-rmw-cmpxchg.txt │ │ │ ├── atomic-rmw-or.txt │ │ │ ├── atomic-rmw-sub.txt │ │ │ ├── atomic-rmw-xchg.txt │ │ │ ├── atomic-rmw-xor.txt │ │ │ ├── atomic-store.txt │ │ │ ├── basic-logging.txt │ │ │ ├── basic-tracing.txt │ │ │ ├── basic.txt │ │ │ ├── binary.txt │ │ │ ├── block-multi.txt │ │ │ ├── br.txt │ │ │ ├── brif-loop.txt │ │ │ ├── brif.txt │ │ │ ├── brtable.txt │ │ │ ├── call-multi-result.txt │ │ │ ├── call-zero-args.txt │ │ │ ├── call.txt │ │ │ ├── callimport-zero-args.txt │ │ │ ├── callindirect.txt │ │ │ ├── cast.txt │ │ │ ├── compare.txt │ │ │ ├── convert-sat.txt │ │ │ ├── convert.txt │ │ │ ├── empty.txt │ │ │ ├── expr-block.txt │ │ │ ├── expr-br.txt │ │ │ ├── expr-brif.txt │ │ │ ├── expr-if.txt │ │ │ ├── if-multi.txt │ │ │ ├── if.txt │ │ │ ├── import.txt │ │ │ ├── load.txt │ │ │ ├── logging-all-opcodes.txt │ │ │ ├── loop-multi.txt │ │ │ ├── loop.txt │ │ │ ├── memory-empty-segment.txt │ │ │ ├── nested-if.txt │ │ │ ├── return-void.txt │ │ │ ├── return.txt │ │ │ ├── run-non-func-export.txt │ │ │ ├── select.txt │ │ │ ├── simd-basic.txt │ │ │ ├── simd-binary.txt │ │ │ ├── simd-bitselect.txt │ │ │ ├── simd-compare.txt │ │ │ ├── simd-lane.txt │ │ │ ├── simd-load-store.txt │ │ │ ├── simd-shift.txt │ │ │ ├── simd-splat.txt │ │ │ ├── simd-unary.txt │ │ │ ├── start.txt │ │ │ ├── store.txt │ │ │ ├── tracing-all-opcodes.txt │ │ │ ├── trap-with-callstack.txt │ │ │ ├── unary-extend.txt │ │ │ ├── unary.txt │ │ │ └── unreachable.txt │ │ ├── opcodecnt │ │ │ ├── basic.txt │ │ │ ├── cutoff.txt │ │ │ └── immediates.txt │ │ ├── parse │ │ │ ├── assert │ │ │ │ ├── assert-after-module.txt │ │ │ │ ├── assert-return-arithmetic-nan.txt │ │ │ │ ├── assert-return-canonical-nan.txt │ │ │ │ ├── assertinvalid-binary-module.txt │ │ │ │ ├── assertinvalid.txt │ │ │ │ ├── assertmalformed.txt │ │ │ │ ├── assertreturn.txt │ │ │ │ ├── bad-assert-before-module.txt │ │ │ │ ├── bad-assert-return-arithmetic-nan-invalid-return-type.txt │ │ │ │ ├── bad-assert-return-arithmetic-nan-too-few.txt │ │ │ │ ├── bad-assert-return-arithmetic-nan-too-many.txt │ │ │ │ ├── bad-assert-return-arithmetic-nan-unknown-function.txt │ │ │ │ ├── bad-assert-return-canonical-nan-invalid-return-type.txt │ │ │ │ ├── bad-assert-return-canonical-nan-too-few.txt │ │ │ │ ├── bad-assert-return-canonical-nan-too-many.txt │ │ │ │ ├── bad-assert-return-canonical-nan-unknown-function.txt │ │ │ │ ├── bad-assertreturn-non-const.txt │ │ │ │ ├── bad-assertreturn-too-few.txt │ │ │ │ ├── bad-assertreturn-too-many.txt │ │ │ │ ├── bad-assertreturn-unknown-function.txt │ │ │ │ ├── bad-invoke-no-module.txt │ │ │ │ ├── bad-invoke-too-few.txt │ │ │ │ ├── bad-invoke-too-many.txt │ │ │ │ ├── bad-invoke-unknown-function.txt │ │ │ │ └── invoke.txt │ │ │ ├── bad-crlf.txt │ │ │ ├── bad-error-long-line.txt │ │ │ ├── bad-error-long-token.txt │ │ │ ├── bad-single-semicolon.txt │ │ │ ├── bad-string-eof.txt │ │ │ ├── bad-string-escape.txt │ │ │ ├── bad-string-hex-escape.txt │ │ │ ├── bad-toplevel.txt │ │ │ ├── basic.txt │ │ │ ├── empty-file.txt │ │ │ ├── export-mutable-global.txt │ │ │ ├── expr │ │ │ │ ├── atomic-align.txt │ │ │ │ ├── atomic-disabled.txt │ │ │ │ ├── atomic.txt │ │ │ │ ├── bad-atomic-unnatural-align.txt │ │ │ │ ├── bad-binary-one-expr.txt │ │ │ │ ├── bad-block-end-label.txt │ │ │ │ ├── bad-block-mismatch-label.txt │ │ │ │ ├── bad-block-sig-multi.txt │ │ │ │ ├── bad-br-bad-depth.txt │ │ │ │ ├── bad-br-defined-later.txt │ │ │ │ ├── bad-br-name-undefined.txt │ │ │ │ ├── bad-br-name.txt │ │ │ │ ├── bad-br-no-depth.txt │ │ │ │ ├── bad-br-undefined.txt │ │ │ │ ├── bad-brtable-bad-depth.txt │ │ │ │ ├── bad-compare-one-expr.txt │ │ │ │ ├── bad-const-f32-trailing.txt │ │ │ │ ├── bad-const-i32-garbage.txt │ │ │ │ ├── bad-const-i32-just-negative-sign.txt │ │ │ │ ├── bad-const-i32-overflow.txt │ │ │ │ ├── bad-const-i32-trailing.txt │ │ │ │ ├── bad-const-i32-underflow.txt │ │ │ │ ├── bad-const-i64-overflow.txt │ │ │ │ ├── bad-const-type-i32-in-non-simd-const.txt │ │ │ │ ├── bad-const-v128-nat-expected.txt │ │ │ │ ├── bad-const-v128-nat-overflow.txt │ │ │ │ ├── bad-const-v128-type-i32-expected.txt │ │ │ │ ├── bad-convert-float-sign.txt │ │ │ │ ├── bad-convert-int-no-sign.txt │ │ │ │ ├── bad-getglobal-name-undefined.txt │ │ │ │ ├── bad-getglobal-undefined.txt │ │ │ │ ├── bad-getlocal-name-undefined.txt │ │ │ │ ├── bad-getlocal-name.txt │ │ │ │ ├── bad-getlocal-undefined.txt │ │ │ │ ├── bad-if-end-label.txt │ │ │ │ ├── bad-if-mismatch-label.txt │ │ │ │ ├── bad-if-no-then.txt │ │ │ │ ├── bad-if-sig-multi.txt │ │ │ │ ├── bad-if_except-sig-multi.txt │ │ │ │ ├── bad-load-align-misspelled.txt │ │ │ │ ├── bad-load-align-negative.txt │ │ │ │ ├── bad-load-align-not-pot.txt │ │ │ │ ├── bad-load-align.txt │ │ │ │ ├── bad-load-float-sign.txt │ │ │ │ ├── bad-load-offset-negative.txt │ │ │ │ ├── bad-load-type.txt │ │ │ │ ├── bad-loop-end-label.txt │ │ │ │ ├── bad-loop-mismatch-label.txt │ │ │ │ ├── bad-loop-sig-multi.txt │ │ │ │ ├── bad-nop.txt │ │ │ │ ├── bad-return-multi.txt │ │ │ │ ├── bad-setglobal-name-undefined.txt │ │ │ │ ├── bad-setglobal-undefined.txt │ │ │ │ ├── bad-setlocal-name-undefined.txt │ │ │ │ ├── bad-setlocal-name.txt │ │ │ │ ├── bad-setlocal-no-value.txt │ │ │ │ ├── bad-setlocal-undefined.txt │ │ │ │ ├── bad-simd-shuffle-lane-index-overflow.txt │ │ │ │ ├── bad-simd-shuffle-nat-expected.txt │ │ │ │ ├── bad-store-align-not-pot.txt │ │ │ │ ├── bad-store-align.txt │ │ │ │ ├── bad-store-float.sign.txt │ │ │ │ ├── bad-store-offset-negative.txt │ │ │ │ ├── bad-store-type.txt │ │ │ │ ├── bad-try-multiple-catch.txt │ │ │ │ ├── bad-try-no-catch.txt │ │ │ │ ├── bad-try-sig-multi.txt │ │ │ │ ├── bad-unexpected.txt │ │ │ │ ├── binary.txt │ │ │ │ ├── block-multi-named.txt │ │ │ │ ├── block-multi.txt │ │ │ │ ├── block-named.txt │ │ │ │ ├── block-return.txt │ │ │ │ ├── block.txt │ │ │ │ ├── br-block.txt │ │ │ │ ├── br-loop.txt │ │ │ │ ├── br-named.txt │ │ │ │ ├── br.txt │ │ │ │ ├── brif-named.txt │ │ │ │ ├── brif.txt │ │ │ │ ├── brtable-multi.txt │ │ │ │ ├── brtable-named.txt │ │ │ │ ├── brtable.txt │ │ │ │ ├── call-defined-later.txt │ │ │ │ ├── call-name-prefix.txt │ │ │ │ ├── call-named.txt │ │ │ │ ├── call.txt │ │ │ │ ├── callimport-defined-later.txt │ │ │ │ ├── callimport-named.txt │ │ │ │ ├── callimport-type.txt │ │ │ │ ├── callimport.txt │ │ │ │ ├── callindirect-named.txt │ │ │ │ ├── callindirect.txt │ │ │ │ ├── cast.txt │ │ │ │ ├── compare.txt │ │ │ │ ├── const.txt │ │ │ │ ├── convert-sat-disabled.txt │ │ │ │ ├── convert-sat.txt │ │ │ │ ├── convert.txt │ │ │ │ ├── current-memory.txt │ │ │ │ ├── drop.txt │ │ │ │ ├── exceptions-disabled.txt │ │ │ │ ├── expr-br.txt │ │ │ │ ├── expr-brif.txt │ │ │ │ ├── getglobal-named.txt │ │ │ │ ├── getglobal.txt │ │ │ │ ├── getlocal-index-after-param.txt │ │ │ │ ├── getlocal-index-mixed-named-unnamed.txt │ │ │ │ ├── getlocal-named.txt │ │ │ │ ├── getlocal-param-named.txt │ │ │ │ ├── getlocal-param.txt │ │ │ │ ├── getlocal.txt │ │ │ │ ├── grow-memory.txt │ │ │ │ ├── if-multi-named.txt │ │ │ │ ├── if-multi.txt │ │ │ │ ├── if-return.txt │ │ │ │ ├── if-then-br-named.txt │ │ │ │ ├── if-then-br.txt │ │ │ │ ├── if-then-else-br-named.txt │ │ │ │ ├── if-then-else-br.txt │ │ │ │ ├── if-then-else-list.txt │ │ │ │ ├── if-then-else.txt │ │ │ │ ├── if.txt │ │ │ │ ├── if_except-multi.txt │ │ │ │ ├── if_except.txt │ │ │ │ ├── load-aligned.txt │ │ │ │ ├── load-offset.txt │ │ │ │ ├── load.txt │ │ │ │ ├── loop-multi-named.txt │ │ │ │ ├── loop-multi.txt │ │ │ │ ├── loop-named.txt │ │ │ │ ├── loop.txt │ │ │ │ ├── nop.txt │ │ │ │ ├── rethrow.txt │ │ │ │ ├── return-block.txt │ │ │ │ ├── return-if.txt │ │ │ │ ├── return-void.txt │ │ │ │ ├── return.txt │ │ │ │ ├── select.txt │ │ │ │ ├── setglobal-named.txt │ │ │ │ ├── setglobal.txt │ │ │ │ ├── setlocal-index-after-param.txt │ │ │ │ ├── setlocal-index-mixed-named-unnamed.txt │ │ │ │ ├── setlocal-named.txt │ │ │ │ ├── setlocal-param-named.txt │ │ │ │ ├── setlocal-param.txt │ │ │ │ ├── setlocal.txt │ │ │ │ ├── simd.txt │ │ │ │ ├── store-aligned.txt │ │ │ │ ├── store-offset.txt │ │ │ │ ├── store.txt │ │ │ │ ├── tee_local.txt │ │ │ │ ├── throw.txt │ │ │ │ ├── try-multi.txt │ │ │ │ ├── try.txt │ │ │ │ ├── unary-extend-disabled.txt │ │ │ │ ├── unary-extend.txt │ │ │ │ ├── unary.txt │ │ │ │ └── unreachable.txt │ │ │ ├── force-color.txt │ │ │ ├── func │ │ │ │ ├── bad-func-name.txt │ │ │ │ ├── bad-local-binding-no-type.txt │ │ │ │ ├── bad-local-binding.txt │ │ │ │ ├── bad-local-name.txt │ │ │ │ ├── bad-local-type-list.txt │ │ │ │ ├── bad-local-type.txt │ │ │ │ ├── bad-param-binding.txt │ │ │ │ ├── bad-param-name.txt │ │ │ │ ├── bad-param-redefinition.txt │ │ │ │ ├── bad-param-type-list.txt │ │ │ │ ├── bad-param.txt │ │ │ │ ├── bad-result-multi.txt │ │ │ │ ├── bad-result-type.txt │ │ │ │ ├── bad-sig-param-type-mismatch.txt │ │ │ │ ├── bad-sig-params-empty.txt │ │ │ │ ├── bad-sig-result-type-mismatch.txt │ │ │ │ ├── bad-sig-result-type-not-void.txt │ │ │ │ ├── bad-sig-result-type-void.txt │ │ │ │ ├── bad-sig-too-few-params.txt │ │ │ │ ├── bad-sig-too-many-params.txt │ │ │ │ ├── func-named.txt │ │ │ │ ├── local-empty.txt │ │ │ │ ├── local-multi.txt │ │ │ │ ├── local.txt │ │ │ │ ├── no-space.txt │ │ │ │ ├── param-binding.txt │ │ │ │ ├── param-multi.txt │ │ │ │ ├── param-type-1.txt │ │ │ │ ├── param-type-2.txt │ │ │ │ ├── result-empty.txt │ │ │ │ ├── result-multi.txt │ │ │ │ ├── result.txt │ │ │ │ ├── sig-match.txt │ │ │ │ └── sig.txt │ │ │ ├── line-comment.txt │ │ │ ├── module │ │ │ │ ├── bad-binary-module-magic.txt │ │ │ │ ├── bad-export-func-empty.txt │ │ │ │ ├── bad-export-func-name-undefined.txt │ │ │ │ ├── bad-export-func-name.txt │ │ │ │ ├── bad-export-func-no-string.txt │ │ │ │ ├── bad-export-func-too-many.txt │ │ │ │ ├── bad-export-func-undefined.txt │ │ │ │ ├── bad-export-global-name-undefined.txt │ │ │ │ ├── bad-export-global-undefined.txt │ │ │ │ ├── bad-export-memory-name-undefined.txt │ │ │ │ ├── bad-export-memory-undefined.txt │ │ │ │ ├── bad-export-table-name-undefined.txt │ │ │ │ ├── bad-export-table-undefined.txt │ │ │ │ ├── bad-func-redefinition.txt │ │ │ │ ├── bad-global-invalid-expr.txt │ │ │ │ ├── bad-global-invalid-getglobal.txt │ │ │ │ ├── bad-import-func-not-param.txt │ │ │ │ ├── bad-import-func-not-result.txt │ │ │ │ ├── bad-import-func-one-string.txt │ │ │ │ ├── bad-import-func-redefinition.txt │ │ │ │ ├── bad-import-global-redefinition.txt │ │ │ │ ├── bad-import-memory-redefinition.txt │ │ │ │ ├── bad-import-table-redefinition.txt │ │ │ │ ├── bad-import-table-shared.txt │ │ │ │ ├── bad-memory-empty.txt │ │ │ │ ├── bad-memory-init-size-negative.txt │ │ │ │ ├── bad-memory-init-size-too-big.txt │ │ │ │ ├── bad-memory-init-size.txt │ │ │ │ ├── bad-memory-max-less-than-init.txt │ │ │ │ ├── bad-memory-max-size-negative.txt │ │ │ │ ├── bad-memory-max-size-too-big.txt │ │ │ │ ├── bad-memory-max-size.txt │ │ │ │ ├── bad-memory-segment-address.txt │ │ │ │ ├── bad-memory-shared-nomax.txt │ │ │ │ ├── bad-memory-too-many.txt │ │ │ │ ├── bad-module-multi.txt │ │ │ │ ├── bad-module-no-close.txt │ │ │ │ ├── bad-module-with-assert.txt │ │ │ │ ├── bad-start-not-nullary.txt │ │ │ │ ├── bad-start-not-void.txt │ │ │ │ ├── bad-start-too-many.txt │ │ │ │ ├── bad-table-invalid-function.txt │ │ │ │ ├── bad-table-too-many.txt │ │ │ │ ├── binary-module.txt │ │ │ │ ├── data-offset.txt │ │ │ │ ├── elem-offset.txt │ │ │ │ ├── except.txt │ │ │ │ ├── export-except.txt │ │ │ │ ├── export-func-multi.txt │ │ │ │ ├── export-func-named.txt │ │ │ │ ├── export-func.txt │ │ │ │ ├── export-global.txt │ │ │ │ ├── export-memory-multi.txt │ │ │ │ ├── export-memory.txt │ │ │ │ ├── export-table.txt │ │ │ │ ├── global.txt │ │ │ │ ├── import-except.txt │ │ │ │ ├── import-func-no-param.txt │ │ │ │ ├── import-func-type.txt │ │ │ │ ├── import-func.txt │ │ │ │ ├── import-global-getglobal.txt │ │ │ │ ├── import-global.txt │ │ │ │ ├── import-memory-shared.txt │ │ │ │ ├── import-memory.txt │ │ │ │ ├── import-mutable-global.txt │ │ │ │ ├── import-table.txt │ │ │ │ ├── memory-init-max-size.txt │ │ │ │ ├── memory-init-size.txt │ │ │ │ ├── memory-segment-1.txt │ │ │ │ ├── memory-segment-long.txt │ │ │ │ ├── memory-segment-many.txt │ │ │ │ ├── memory-segment-multi-string.txt │ │ │ │ ├── memory-shared.txt │ │ │ │ ├── module-empty.txt │ │ │ │ ├── start-named.txt │ │ │ │ ├── start.txt │ │ │ │ ├── table-named.txt │ │ │ │ ├── table.txt │ │ │ │ ├── type-empty-param.txt │ │ │ │ ├── type-empty.txt │ │ │ │ ├── type-multi-param.txt │ │ │ │ ├── type-no-param.txt │ │ │ │ └── type.txt │ │ │ ├── nested-comments.txt │ │ │ ├── string-escape.txt │ │ │ └── string-hex.txt │ │ ├── regress │ │ │ ├── regress-1.txt │ │ │ ├── regress-10.txt │ │ │ ├── regress-11.txt │ │ │ ├── regress-12.txt │ │ │ ├── regress-13.txt │ │ │ ├── regress-14.txt │ │ │ ├── regress-15.txt │ │ │ ├── regress-16.txt │ │ │ ├── regress-17.txt │ │ │ ├── regress-18.txt │ │ │ ├── regress-19.txt │ │ │ ├── regress-2.txt │ │ │ ├── regress-20.txt │ │ │ ├── regress-21.txt │ │ │ ├── regress-3.txt │ │ │ ├── regress-4.txt │ │ │ ├── regress-5.txt │ │ │ ├── regress-6.txt │ │ │ ├── regress-7.txt │ │ │ ├── regress-8.txt │ │ │ └── regress-9.txt │ │ ├── roundtrip │ │ │ ├── apply-global-names.txt │ │ │ ├── debug-import-names.txt │ │ │ ├── debug-names-after-data.txt │ │ │ ├── debug-names.txt │ │ │ ├── fold-atomic.txt │ │ │ ├── fold-basic.txt │ │ │ ├── fold-block.txt │ │ │ ├── fold-call-import-gen-names.txt │ │ │ ├── fold-call.txt │ │ │ ├── fold-fac.txt │ │ │ ├── fold-getset-global.txt │ │ │ ├── fold-getset-local.txt │ │ │ ├── fold-if_except.txt │ │ │ ├── fold-load-store.txt │ │ │ ├── fold-nop.txt │ │ │ ├── fold-rethrow.txt │ │ │ ├── fold-throw.txt │ │ │ ├── fold-try.txt │ │ │ ├── fold-unreachable.txt │ │ │ ├── func-index.txt │ │ │ ├── generate-except-names.txt │ │ │ ├── generate-existing-name.txt │ │ │ ├── generate-from-export-name.txt │ │ │ ├── generate-from-import-name.txt │ │ │ ├── generate-func-names.txt │ │ │ ├── generate-func-type-names.txt │ │ │ ├── generate-global-names.txt │ │ │ ├── generate-if-label-names.txt │ │ │ ├── generate-import-names.txt │ │ │ ├── generate-label-names.txt │ │ │ ├── generate-local-names.txt │ │ │ ├── generate-some-names.txt │ │ │ ├── global-index.txt │ │ │ ├── inline-export-func-name.txt │ │ │ ├── inline-export-func.txt │ │ │ ├── inline-export-global.txt │ │ │ ├── inline-export-memory.txt │ │ │ ├── inline-export-multi.txt │ │ │ ├── inline-export-table.txt │ │ │ ├── inline-import-export.txt │ │ │ ├── inline-import-func.txt │ │ │ ├── inline-import-global.txt │ │ │ ├── inline-import-memory.txt │ │ │ ├── inline-import-table.txt │ │ │ ├── invalid-br-var.txt │ │ │ ├── invalid-local-index.txt │ │ │ ├── label.txt │ │ │ ├── memory-index.txt │ │ │ └── table-index.txt │ │ ├── run-roundtrip.py │ │ ├── run-spec-wasm2c.py │ │ ├── run-tests.py │ │ ├── spec-wasm2c-prefix.c │ │ ├── spec │ │ │ ├── address.txt │ │ │ ├── align.txt │ │ │ ├── binary.txt │ │ │ ├── block.txt │ │ │ ├── br.txt │ │ │ ├── br_if.txt │ │ │ ├── br_table.txt │ │ │ ├── break-drop.txt │ │ │ ├── call.txt │ │ │ ├── call_indirect.txt │ │ │ ├── comments.txt │ │ │ ├── const.txt │ │ │ ├── conversions.txt │ │ │ ├── custom.txt │ │ │ ├── custom_section.txt │ │ │ ├── data.txt │ │ │ ├── elem.txt │ │ │ ├── endianness.txt │ │ │ ├── exports.txt │ │ │ ├── f32.txt │ │ │ ├── f32_bitwise.txt │ │ │ ├── f32_cmp.txt │ │ │ ├── f64.txt │ │ │ ├── f64_bitwise.txt │ │ │ ├── f64_cmp.txt │ │ │ ├── fac.txt │ │ │ ├── float_exprs.txt │ │ │ ├── float_literals.txt │ │ │ ├── float_memory.txt │ │ │ ├── float_misc.txt │ │ │ ├── forward.txt │ │ │ ├── func.txt │ │ │ ├── func_ptrs.txt │ │ │ ├── get_local.txt │ │ │ ├── globals.txt │ │ │ ├── i32.txt │ │ │ ├── i64.txt │ │ │ ├── if.txt │ │ │ ├── imports.txt │ │ │ ├── inline-module.txt │ │ │ ├── int_exprs.txt │ │ │ ├── int_literals.txt │ │ │ ├── labels.txt │ │ │ ├── left-to-right.txt │ │ │ ├── linking.txt │ │ │ ├── loop.txt │ │ │ ├── memory.txt │ │ │ ├── memory_grow.txt │ │ │ ├── memory_redundancy.txt │ │ │ ├── memory_trap.txt │ │ │ ├── multi-value │ │ │ │ ├── block.txt │ │ │ │ ├── br.txt │ │ │ │ ├── call.txt │ │ │ │ ├── call_indirect.txt │ │ │ │ ├── fac.txt │ │ │ │ ├── func.txt │ │ │ │ ├── if.txt │ │ │ │ ├── loop.txt │ │ │ │ └── type.txt │ │ │ ├── names.txt │ │ │ ├── nop.txt │ │ │ ├── resizing.txt │ │ │ ├── return.txt │ │ │ ├── select.txt │ │ │ ├── set_local.txt │ │ │ ├── skip-stack-guard-page.txt │ │ │ ├── stack.txt │ │ │ ├── start.txt │ │ │ ├── store_retval.txt │ │ │ ├── switch.txt │ │ │ ├── tee_local.txt │ │ │ ├── token.txt │ │ │ ├── traps.txt │ │ │ ├── type.txt │ │ │ ├── typecheck.txt │ │ │ ├── unreachable.txt │ │ │ ├── unreached-invalid.txt │ │ │ ├── unwind.txt │ │ │ ├── utf8-custom-section-id.txt │ │ │ ├── utf8-import-field.txt │ │ │ ├── utf8-import-module.txt │ │ │ └── utf8-invalid-encoding.txt │ │ ├── strip │ │ │ ├── basic.txt │ │ │ ├── names.txt │ │ │ └── no-custom-sections.txt │ │ ├── too-many-arguments.txt │ │ ├── two-commands.txt │ │ ├── typecheck │ │ │ ├── bad-assertreturn-invoke-type-mismatch.txt │ │ │ ├── bad-assertreturn-type-mismatch.txt │ │ │ ├── bad-atomic-no-shared-memory.txt │ │ │ ├── bad-atomic-type-mismatch.txt │ │ │ ├── bad-binary-type-mismatch-1.txt │ │ │ ├── bad-binary-type-mismatch-2.txt │ │ │ ├── bad-block-multi-mismatch.txt │ │ │ ├── bad-brtable-type-mismatch.txt │ │ │ ├── bad-call-result-mismatch.txt │ │ │ ├── bad-call-type-mismatch.txt │ │ │ ├── bad-callimport-type-mismatch.txt │ │ │ ├── bad-callindirect-func-type-mismatch.txt │ │ │ ├── bad-callindirect-type-mismatch.txt │ │ │ ├── bad-cast-type-mismatch.txt │ │ │ ├── bad-compare-type-mismatch-1.txt │ │ │ ├── bad-compare-type-mismatch-2.txt │ │ │ ├── bad-convert-type-mismatch.txt │ │ │ ├── bad-expr-if.txt │ │ │ ├── bad-function-result-type-mismatch.txt │ │ │ ├── bad-global-getglobal-type-mismatch.txt │ │ │ ├── bad-global-no-init-expr.txt │ │ │ ├── bad-global-type-mismatch.txt │ │ │ ├── bad-grow-memory-type-mismatch.txt │ │ │ ├── bad-if-condition-type-mismatch.txt │ │ │ ├── bad-if-multi-mismatch.txt │ │ │ ├── bad-if-type-mismatch.txt │ │ │ ├── bad-if-value-void.txt │ │ │ ├── bad-invoke-type-mismatch.txt │ │ │ ├── bad-load-type-mismatch.txt │ │ │ ├── bad-loop-multi-mismatch.txt │ │ │ ├── bad-nested-br.txt │ │ │ ├── bad-no-shared-memory.txt │ │ │ ├── bad-return-type-mismatch.txt │ │ │ ├── bad-select-cond.txt │ │ │ ├── bad-select-value0.txt │ │ │ ├── bad-select-value1.txt │ │ │ ├── bad-setlocal-type-mismatch.txt │ │ │ ├── bad-simd-lane.txt │ │ │ ├── bad-store-index-type-mismatch.txt │ │ │ ├── bad-unary-type-mismatch.txt │ │ │ ├── br-multi.txt │ │ │ ├── br-table-loop.txt │ │ │ ├── brif-multi.txt │ │ │ ├── brtable-multi.txt │ │ │ ├── if-then-br.txt │ │ │ ├── if-value.txt │ │ │ ├── label-redefinition.txt │ │ │ ├── nested-br.txt │ │ │ ├── nocheck.txt │ │ │ ├── return-drop-value-2.txt │ │ │ ├── return-drop-value.txt │ │ │ └── return-value.txt │ │ ├── update-spec-tests.py │ │ ├── utils.py │ │ └── wasm2c │ │ │ ├── bad-enable-feature.txt │ │ │ └── spec │ │ │ ├── address.txt │ │ │ ├── align.txt │ │ │ ├── binary.txt │ │ │ ├── block.txt │ │ │ ├── br.txt │ │ │ ├── br_if.txt │ │ │ ├── br_table.txt │ │ │ ├── break-drop.txt │ │ │ ├── call.txt │ │ │ ├── call_indirect.txt │ │ │ ├── comments.txt │ │ │ ├── const.txt │ │ │ ├── conversions.txt │ │ │ ├── custom.txt │ │ │ ├── custom_section.txt │ │ │ ├── data.txt │ │ │ ├── elem.txt │ │ │ ├── endianness.txt │ │ │ ├── exports.txt │ │ │ ├── f32.txt │ │ │ ├── f32_bitwise.txt │ │ │ ├── f32_cmp.txt │ │ │ ├── f64.txt │ │ │ ├── f64_bitwise.txt │ │ │ ├── f64_cmp.txt │ │ │ ├── fac.txt │ │ │ ├── float_exprs.txt │ │ │ ├── float_literals.txt │ │ │ ├── float_memory.txt │ │ │ ├── float_misc.txt │ │ │ ├── forward.txt │ │ │ ├── func.txt │ │ │ ├── func_ptrs.txt │ │ │ ├── get_local.txt │ │ │ ├── globals.txt │ │ │ ├── i32.txt │ │ │ ├── i64.txt │ │ │ ├── if.txt │ │ │ ├── imports.txt │ │ │ ├── inline-module.txt │ │ │ ├── int_exprs.txt │ │ │ ├── int_literals.txt │ │ │ ├── labels.txt │ │ │ ├── left-to-right.txt │ │ │ ├── linking.txt │ │ │ ├── loop.txt │ │ │ ├── memory.txt │ │ │ ├── memory_grow.txt │ │ │ ├── memory_redundancy.txt │ │ │ ├── memory_trap.txt │ │ │ ├── names.txt │ │ │ ├── nop.txt │ │ │ ├── resizing.txt │ │ │ ├── return.txt │ │ │ ├── select.txt │ │ │ ├── set_local.txt │ │ │ ├── skip-stack-guard-page.txt │ │ │ ├── stack.txt │ │ │ ├── start.txt │ │ │ ├── store_retval.txt │ │ │ ├── switch.txt │ │ │ ├── tee_local.txt │ │ │ ├── token.txt │ │ │ ├── traps.txt │ │ │ ├── type.txt │ │ │ ├── typecheck.txt │ │ │ ├── unreachable.txt │ │ │ ├── unreached-invalid.txt │ │ │ ├── unwind.txt │ │ │ ├── utf8-custom-section-id.txt │ │ │ ├── utf8-import-field.txt │ │ │ ├── utf8-import-module.txt │ │ │ └── utf8-invalid-encoding.txt │ ├── third_party │ │ ├── gtest │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── WORKSPACE │ │ │ ├── appveyor.yml │ │ │ ├── ci │ │ │ │ ├── build-linux-autotools.sh │ │ │ │ ├── build-linux-bazel.sh │ │ │ │ ├── env-linux.sh │ │ │ │ ├── env-osx.sh │ │ │ │ ├── get-nprocessors.sh │ │ │ │ ├── install-linux.sh │ │ │ │ ├── install-osx.sh │ │ │ │ ├── log-config.sh │ │ │ │ └── travis.sh │ │ │ ├── configure.ac │ │ │ ├── googlemock │ │ │ │ ├── CHANGES │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile.am │ │ │ │ ├── README.md │ │ │ │ ├── cmake │ │ │ │ │ ├── gmock.pc.in │ │ │ │ │ └── gmock_main.pc.in │ │ │ │ ├── configure.ac │ │ │ │ ├── docs │ │ │ │ │ ├── CheatSheet.md │ │ │ │ │ ├── CookBook.md │ │ │ │ │ ├── DesignDoc.md │ │ │ │ │ ├── Documentation.md │ │ │ │ │ ├── ForDummies.md │ │ │ │ │ ├── FrequentlyAskedQuestions.md │ │ │ │ │ └── KnownIssues.md │ │ │ │ ├── include │ │ │ │ │ └── gmock │ │ │ │ │ │ ├── gmock-actions.h │ │ │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ │ │ ├── gmock-generated-function-mockers.h │ │ │ │ │ │ ├── gmock-generated-function-mockers.h.pump │ │ │ │ │ │ ├── gmock-generated-matchers.h │ │ │ │ │ │ ├── gmock-generated-matchers.h.pump │ │ │ │ │ │ ├── gmock-generated-nice-strict.h │ │ │ │ │ │ ├── gmock-generated-nice-strict.h.pump │ │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ │ ├── gmock-more-actions.h │ │ │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ │ │ ├── gmock.h │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── custom │ │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ │ └── gmock-port.h │ │ │ │ │ │ ├── gmock-generated-internal-utils.h │ │ │ │ │ │ ├── gmock-generated-internal-utils.h.pump │ │ │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ │ │ └── gmock-port.h │ │ │ │ ├── make │ │ │ │ │ └── Makefile │ │ │ │ ├── msvc │ │ │ │ │ ├── 2005 │ │ │ │ │ │ ├── gmock.sln │ │ │ │ │ │ ├── gmock.vcproj │ │ │ │ │ │ ├── gmock_config.vsprops │ │ │ │ │ │ ├── gmock_main.vcproj │ │ │ │ │ │ └── gmock_test.vcproj │ │ │ │ │ ├── 2010 │ │ │ │ │ │ ├── gmock.sln │ │ │ │ │ │ ├── gmock.vcxproj │ │ │ │ │ │ ├── gmock_config.props │ │ │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ │ │ └── gmock_test.vcxproj │ │ │ │ │ └── 2015 │ │ │ │ │ │ ├── gmock.sln │ │ │ │ │ │ ├── gmock.vcxproj │ │ │ │ │ │ ├── gmock_config.props │ │ │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ │ │ └── gmock_test.vcxproj │ │ │ │ ├── scripts │ │ │ │ │ ├── fuse_gmock_files.py │ │ │ │ │ ├── generator │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── README.cppclean │ │ │ │ │ │ ├── cpp │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── ast.py │ │ │ │ │ │ │ ├── gmock_class.py │ │ │ │ │ │ │ ├── gmock_class_test.py │ │ │ │ │ │ │ ├── keywords.py │ │ │ │ │ │ │ ├── tokenize.py │ │ │ │ │ │ │ └── utils.py │ │ │ │ │ │ └── gmock_gen.py │ │ │ │ │ ├── gmock-config.in │ │ │ │ │ ├── gmock_doctor.py │ │ │ │ │ ├── upload.py │ │ │ │ │ └── upload_gmock.py │ │ │ │ ├── src │ │ │ │ │ ├── gmock-all.cc │ │ │ │ │ ├── gmock-cardinalities.cc │ │ │ │ │ ├── gmock-internal-utils.cc │ │ │ │ │ ├── gmock-matchers.cc │ │ │ │ │ ├── gmock-spec-builders.cc │ │ │ │ │ ├── gmock.cc │ │ │ │ │ └── gmock_main.cc │ │ │ │ └── test │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── gmock-actions_test.cc │ │ │ │ │ ├── gmock-cardinalities_test.cc │ │ │ │ │ ├── gmock-generated-actions_test.cc │ │ │ │ │ ├── gmock-generated-function-mockers_test.cc │ │ │ │ │ ├── gmock-generated-internal-utils_test.cc │ │ │ │ │ ├── gmock-generated-matchers_test.cc │ │ │ │ │ ├── gmock-internal-utils_test.cc │ │ │ │ │ ├── gmock-matchers_test.cc │ │ │ │ │ ├── gmock-more-actions_test.cc │ │ │ │ │ ├── gmock-nice-strict_test.cc │ │ │ │ │ ├── gmock-port_test.cc │ │ │ │ │ ├── gmock-spec-builders_test.cc │ │ │ │ │ ├── gmock_all_test.cc │ │ │ │ │ ├── gmock_ex_test.cc │ │ │ │ │ ├── gmock_leak_test.py │ │ │ │ │ ├── gmock_leak_test_.cc │ │ │ │ │ ├── gmock_link2_test.cc │ │ │ │ │ ├── gmock_link_test.cc │ │ │ │ │ ├── gmock_link_test.h │ │ │ │ │ ├── gmock_output_test.py │ │ │ │ │ ├── gmock_output_test_.cc │ │ │ │ │ ├── gmock_output_test_golden.txt │ │ │ │ │ ├── gmock_stress_test.cc │ │ │ │ │ ├── gmock_test.cc │ │ │ │ │ └── gmock_test_utils.py │ │ │ └── googletest │ │ │ │ ├── CHANGES │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile.am │ │ │ │ ├── README.md │ │ │ │ ├── cmake │ │ │ │ ├── gtest.pc.in │ │ │ │ ├── gtest_main.pc.in │ │ │ │ └── internal_utils.cmake │ │ │ │ ├── codegear │ │ │ │ ├── gtest.cbproj │ │ │ │ ├── gtest.groupproj │ │ │ │ ├── gtest_all.cc │ │ │ │ ├── gtest_link.cc │ │ │ │ ├── gtest_main.cbproj │ │ │ │ └── gtest_unittest.cbproj │ │ │ │ ├── configure.ac │ │ │ │ ├── docs │ │ │ │ ├── AdvancedGuide.md │ │ │ │ ├── Documentation.md │ │ │ │ ├── FAQ.md │ │ │ │ ├── Pkgconfig.md │ │ │ │ ├── Primer.md │ │ │ │ ├── PumpManual.md │ │ │ │ ├── Samples.md │ │ │ │ └── XcodeGuide.md │ │ │ │ ├── include │ │ │ │ └── gtest │ │ │ │ │ ├── gtest-death-test.h │ │ │ │ │ ├── gtest-message.h │ │ │ │ │ ├── gtest-param-test.h │ │ │ │ │ ├── gtest-param-test.h.pump │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ ├── gtest-spi.h │ │ │ │ │ ├── gtest-test-part.h │ │ │ │ │ ├── gtest-typed-test.h │ │ │ │ │ ├── gtest.h │ │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ │ ├── gtest_prod.h │ │ │ │ │ └── internal │ │ │ │ │ ├── custom │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ └── gtest.h │ │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ │ ├── gtest-filepath.h │ │ │ │ │ ├── gtest-internal.h │ │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ │ │ ├── gtest-param-util.h │ │ │ │ │ ├── gtest-port-arch.h │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ ├── gtest-string.h │ │ │ │ │ ├── gtest-tuple.h │ │ │ │ │ ├── gtest-tuple.h.pump │ │ │ │ │ ├── gtest-type-util.h │ │ │ │ │ └── gtest-type-util.h.pump │ │ │ │ ├── m4 │ │ │ │ ├── acx_pthread.m4 │ │ │ │ └── gtest.m4 │ │ │ │ ├── make │ │ │ │ └── Makefile │ │ │ │ ├── msvc │ │ │ │ └── 2010 │ │ │ │ │ ├── gtest-md.sln │ │ │ │ │ ├── gtest-md.vcxproj │ │ │ │ │ ├── gtest-md.vcxproj.filters │ │ │ │ │ ├── gtest.sln │ │ │ │ │ ├── gtest.vcxproj │ │ │ │ │ ├── gtest.vcxproj.filters │ │ │ │ │ ├── gtest_main-md.vcxproj │ │ │ │ │ ├── gtest_main-md.vcxproj.filters │ │ │ │ │ ├── gtest_main.vcxproj │ │ │ │ │ ├── gtest_main.vcxproj.filters │ │ │ │ │ ├── gtest_prod_test-md.vcxproj │ │ │ │ │ ├── gtest_prod_test-md.vcxproj.filters │ │ │ │ │ ├── gtest_prod_test.vcxproj │ │ │ │ │ ├── gtest_prod_test.vcxproj.filters │ │ │ │ │ ├── gtest_unittest-md.vcxproj │ │ │ │ │ ├── gtest_unittest-md.vcxproj.filters │ │ │ │ │ ├── gtest_unittest.vcxproj │ │ │ │ │ └── gtest_unittest.vcxproj.filters │ │ │ │ ├── samples │ │ │ │ ├── prime_tables.h │ │ │ │ ├── sample1.cc │ │ │ │ ├── sample1.h │ │ │ │ ├── sample10_unittest.cc │ │ │ │ ├── sample1_unittest.cc │ │ │ │ ├── sample2.cc │ │ │ │ ├── sample2.h │ │ │ │ ├── sample2_unittest.cc │ │ │ │ ├── sample3-inl.h │ │ │ │ ├── sample3_unittest.cc │ │ │ │ ├── sample4.cc │ │ │ │ ├── sample4.h │ │ │ │ ├── sample4_unittest.cc │ │ │ │ ├── sample5_unittest.cc │ │ │ │ ├── sample6_unittest.cc │ │ │ │ ├── sample7_unittest.cc │ │ │ │ ├── sample8_unittest.cc │ │ │ │ └── sample9_unittest.cc │ │ │ │ ├── scripts │ │ │ │ ├── common.py │ │ │ │ ├── fuse_gtest_files.py │ │ │ │ ├── gen_gtest_pred_impl.py │ │ │ │ ├── gtest-config.in │ │ │ │ ├── pump.py │ │ │ │ ├── release_docs.py │ │ │ │ ├── test │ │ │ │ │ └── Makefile │ │ │ │ ├── upload.py │ │ │ │ └── upload_gtest.py │ │ │ │ ├── src │ │ │ │ ├── gtest-all.cc │ │ │ │ ├── gtest-death-test.cc │ │ │ │ ├── gtest-filepath.cc │ │ │ │ ├── gtest-internal-inl.h │ │ │ │ ├── gtest-port.cc │ │ │ │ ├── gtest-printers.cc │ │ │ │ ├── gtest-test-part.cc │ │ │ │ ├── gtest-typed-test.cc │ │ │ │ ├── gtest.cc │ │ │ │ └── gtest_main.cc │ │ │ │ ├── test │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── gtest-death-test_ex_test.cc │ │ │ │ ├── gtest-death-test_test.cc │ │ │ │ ├── gtest-filepath_test.cc │ │ │ │ ├── gtest-linked_ptr_test.cc │ │ │ │ ├── gtest-listener_test.cc │ │ │ │ ├── gtest-message_test.cc │ │ │ │ ├── gtest-options_test.cc │ │ │ │ ├── gtest-param-test2_test.cc │ │ │ │ ├── gtest-param-test_test.cc │ │ │ │ ├── gtest-param-test_test.h │ │ │ │ ├── gtest-port_test.cc │ │ │ │ ├── gtest-printers_test.cc │ │ │ │ ├── gtest-test-part_test.cc │ │ │ │ ├── gtest-tuple_test.cc │ │ │ │ ├── gtest-typed-test2_test.cc │ │ │ │ ├── gtest-typed-test_test.cc │ │ │ │ ├── gtest-typed-test_test.h │ │ │ │ ├── gtest-unittest-api_test.cc │ │ │ │ ├── gtest_all_test.cc │ │ │ │ ├── gtest_assert_by_exception_test.cc │ │ │ │ ├── gtest_break_on_failure_unittest.py │ │ │ │ ├── gtest_break_on_failure_unittest_.cc │ │ │ │ ├── gtest_catch_exceptions_test.py │ │ │ │ ├── gtest_catch_exceptions_test_.cc │ │ │ │ ├── gtest_color_test.py │ │ │ │ ├── gtest_color_test_.cc │ │ │ │ ├── gtest_env_var_test.py │ │ │ │ ├── gtest_env_var_test_.cc │ │ │ │ ├── gtest_environment_test.cc │ │ │ │ ├── gtest_filter_unittest.py │ │ │ │ ├── gtest_filter_unittest_.cc │ │ │ │ ├── gtest_help_test.py │ │ │ │ ├── gtest_help_test_.cc │ │ │ │ ├── gtest_json_outfiles_test.py │ │ │ │ ├── gtest_json_output_unittest.py │ │ │ │ ├── gtest_json_test_utils.py │ │ │ │ ├── gtest_list_tests_unittest.py │ │ │ │ ├── gtest_list_tests_unittest_.cc │ │ │ │ ├── gtest_main_unittest.cc │ │ │ │ ├── gtest_no_test_unittest.cc │ │ │ │ ├── gtest_output_test.py │ │ │ │ ├── gtest_output_test_.cc │ │ │ │ ├── gtest_output_test_golden_lin.txt │ │ │ │ ├── gtest_pred_impl_unittest.cc │ │ │ │ ├── gtest_premature_exit_test.cc │ │ │ │ ├── gtest_prod_test.cc │ │ │ │ ├── gtest_repeat_test.cc │ │ │ │ ├── gtest_shuffle_test.py │ │ │ │ ├── gtest_shuffle_test_.cc │ │ │ │ ├── gtest_sole_header_test.cc │ │ │ │ ├── gtest_stress_test.cc │ │ │ │ ├── gtest_test_utils.py │ │ │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ │ │ ├── gtest_throw_on_failure_test.py │ │ │ │ ├── gtest_throw_on_failure_test_.cc │ │ │ │ ├── gtest_uninitialized_test.py │ │ │ │ ├── gtest_uninitialized_test_.cc │ │ │ │ ├── gtest_unittest.cc │ │ │ │ ├── gtest_xml_outfile1_test_.cc │ │ │ │ ├── gtest_xml_outfile2_test_.cc │ │ │ │ ├── gtest_xml_outfiles_test.py │ │ │ │ ├── gtest_xml_output_unittest.py │ │ │ │ ├── gtest_xml_output_unittest_.cc │ │ │ │ ├── gtest_xml_test_utils.py │ │ │ │ ├── production.cc │ │ │ │ └── production.h │ │ │ │ └── xcode │ │ │ │ ├── Config │ │ │ │ ├── DebugProject.xcconfig │ │ │ │ ├── FrameworkTarget.xcconfig │ │ │ │ ├── General.xcconfig │ │ │ │ ├── ReleaseProject.xcconfig │ │ │ │ ├── StaticLibraryTarget.xcconfig │ │ │ │ └── TestTarget.xcconfig │ │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ │ ├── Samples │ │ │ │ └── FrameworkSample │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── WidgetFramework.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── runtests.sh │ │ │ │ │ ├── widget.cc │ │ │ │ │ ├── widget.h │ │ │ │ │ └── widget_test.cc │ │ │ │ ├── Scripts │ │ │ │ ├── runtests.sh │ │ │ │ └── versiongenerate.py │ │ │ │ └── gtest.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── ply │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── ANNOUNCE │ │ │ ├── CHANGES │ │ │ ├── MANIFEST.in │ │ │ ├── README.md │ │ │ ├── TODO │ │ │ ├── doc │ │ │ │ ├── internal.html │ │ │ │ ├── makedoc.py │ │ │ │ └── ply.html │ │ │ ├── example │ │ │ │ ├── BASIC │ │ │ │ │ ├── README │ │ │ │ │ ├── basic.py │ │ │ │ │ ├── basiclex.py │ │ │ │ │ ├── basiclog.py │ │ │ │ │ ├── basinterp.py │ │ │ │ │ ├── basparse.py │ │ │ │ │ ├── dim.bas │ │ │ │ │ ├── func.bas │ │ │ │ │ ├── gcd.bas │ │ │ │ │ ├── gosub.bas │ │ │ │ │ ├── hello.bas │ │ │ │ │ ├── linear.bas │ │ │ │ │ ├── maxsin.bas │ │ │ │ │ ├── powers.bas │ │ │ │ │ ├── rand.bas │ │ │ │ │ ├── sales.bas │ │ │ │ │ ├── sears.bas │ │ │ │ │ ├── sqrt1.bas │ │ │ │ │ └── sqrt2.bas │ │ │ │ ├── GardenSnake │ │ │ │ │ ├── GardenSnake.py │ │ │ │ │ └── README │ │ │ │ ├── README │ │ │ │ ├── ansic │ │ │ │ │ ├── README │ │ │ │ │ ├── clex.py │ │ │ │ │ └── cparse.py │ │ │ │ ├── calc │ │ │ │ │ └── calc.py │ │ │ │ ├── calcdebug │ │ │ │ │ └── calc.py │ │ │ │ ├── calceof │ │ │ │ │ └── calc.py │ │ │ │ ├── classcalc │ │ │ │ │ └── calc.py │ │ │ │ ├── cleanup.sh │ │ │ │ ├── closurecalc │ │ │ │ │ └── calc.py │ │ │ │ ├── hedit │ │ │ │ │ └── hedit.py │ │ │ │ ├── newclasscalc │ │ │ │ │ └── calc.py │ │ │ │ ├── optcalc │ │ │ │ │ ├── README │ │ │ │ │ └── calc.py │ │ │ │ ├── unicalc │ │ │ │ │ └── calc.py │ │ │ │ └── yply │ │ │ │ │ ├── README │ │ │ │ │ ├── ylex.py │ │ │ │ │ ├── yparse.py │ │ │ │ │ └── yply.py │ │ │ ├── ply │ │ │ │ ├── __init__.py │ │ │ │ ├── cpp.py │ │ │ │ ├── ctokens.py │ │ │ │ ├── lex.py │ │ │ │ ├── yacc.py │ │ │ │ └── ygen.py │ │ │ ├── setup.cfg │ │ │ ├── setup.py │ │ │ └── test │ │ │ │ ├── README │ │ │ │ ├── calclex.py │ │ │ │ ├── cleanup.sh │ │ │ │ ├── lex_closure.py │ │ │ │ ├── lex_doc1.py │ │ │ │ ├── lex_dup1.py │ │ │ │ ├── lex_dup2.py │ │ │ │ ├── lex_dup3.py │ │ │ │ ├── lex_empty.py │ │ │ │ ├── lex_error1.py │ │ │ │ ├── lex_error2.py │ │ │ │ ├── lex_error3.py │ │ │ │ ├── lex_error4.py │ │ │ │ ├── lex_hedit.py │ │ │ │ ├── lex_ignore.py │ │ │ │ ├── lex_ignore2.py │ │ │ │ ├── lex_literal1.py │ │ │ │ ├── lex_literal2.py │ │ │ │ ├── lex_literal3.py │ │ │ │ ├── lex_many_tokens.py │ │ │ │ ├── lex_module.py │ │ │ │ ├── lex_module_import.py │ │ │ │ ├── lex_object.py │ │ │ │ ├── lex_opt_alias.py │ │ │ │ ├── lex_optimize.py │ │ │ │ ├── lex_optimize2.py │ │ │ │ ├── lex_optimize3.py │ │ │ │ ├── lex_re1.py │ │ │ │ ├── lex_re2.py │ │ │ │ ├── lex_re3.py │ │ │ │ ├── lex_rule1.py │ │ │ │ ├── lex_rule2.py │ │ │ │ ├── lex_rule3.py │ │ │ │ ├── lex_state1.py │ │ │ │ ├── lex_state2.py │ │ │ │ ├── lex_state3.py │ │ │ │ ├── lex_state4.py │ │ │ │ ├── lex_state5.py │ │ │ │ ├── lex_state_noerror.py │ │ │ │ ├── lex_state_norule.py │ │ │ │ ├── lex_state_try.py │ │ │ │ ├── lex_token1.py │ │ │ │ ├── lex_token2.py │ │ │ │ ├── lex_token3.py │ │ │ │ ├── lex_token4.py │ │ │ │ ├── lex_token5.py │ │ │ │ ├── lex_token_dup.py │ │ │ │ ├── pkg_test1 │ │ │ │ ├── __init__.py │ │ │ │ └── parsing │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── calclex.py │ │ │ │ │ └── calcparse.py │ │ │ │ ├── pkg_test2 │ │ │ │ ├── __init__.py │ │ │ │ └── parsing │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── calclex.py │ │ │ │ │ └── calcparse.py │ │ │ │ ├── pkg_test3 │ │ │ │ ├── __init__.py │ │ │ │ ├── generated │ │ │ │ │ └── __init__.py │ │ │ │ └── parsing │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── calclex.py │ │ │ │ │ └── calcparse.py │ │ │ │ ├── pkg_test4 │ │ │ │ ├── __init__.py │ │ │ │ └── parsing │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── calclex.py │ │ │ │ │ └── calcparse.py │ │ │ │ ├── pkg_test5 │ │ │ │ ├── __init__.py │ │ │ │ └── parsing │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── calclex.py │ │ │ │ │ └── calcparse.py │ │ │ │ ├── pkg_test6 │ │ │ │ ├── __init__.py │ │ │ │ └── parsing │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── calclex.py │ │ │ │ │ ├── calcparse.py │ │ │ │ │ ├── expression.py │ │ │ │ │ └── statement.py │ │ │ │ ├── testlex.py │ │ │ │ ├── testyacc.py │ │ │ │ ├── yacc_badargs.py │ │ │ │ ├── yacc_badid.py │ │ │ │ ├── yacc_badprec.py │ │ │ │ ├── yacc_badprec2.py │ │ │ │ ├── yacc_badprec3.py │ │ │ │ ├── yacc_badrule.py │ │ │ │ ├── yacc_badtok.py │ │ │ │ ├── yacc_dup.py │ │ │ │ ├── yacc_error1.py │ │ │ │ ├── yacc_error2.py │ │ │ │ ├── yacc_error3.py │ │ │ │ ├── yacc_error4.py │ │ │ │ ├── yacc_error5.py │ │ │ │ ├── yacc_error6.py │ │ │ │ ├── yacc_error7.py │ │ │ │ ├── yacc_inf.py │ │ │ │ ├── yacc_literal.py │ │ │ │ ├── yacc_misplaced.py │ │ │ │ ├── yacc_missing1.py │ │ │ │ ├── yacc_nested.py │ │ │ │ ├── yacc_nodoc.py │ │ │ │ ├── yacc_noerror.py │ │ │ │ ├── yacc_nop.py │ │ │ │ ├── yacc_notfunc.py │ │ │ │ ├── yacc_notok.py │ │ │ │ ├── yacc_prec1.py │ │ │ │ ├── yacc_rr.py │ │ │ │ ├── yacc_rr_unused.py │ │ │ │ ├── yacc_simple.py │ │ │ │ ├── yacc_sr.py │ │ │ │ ├── yacc_term1.py │ │ │ │ ├── yacc_unicode_literals.py │ │ │ │ ├── yacc_unused.py │ │ │ │ ├── yacc_unused_rule.py │ │ │ │ ├── yacc_uprec.py │ │ │ │ └── yacc_uprec2.py │ │ └── testsuite │ │ │ ├── .gitignore │ │ │ ├── Contributing.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── address.wast │ │ │ ├── align.wast │ │ │ ├── binary.wast │ │ │ ├── block.wast │ │ │ ├── br.wast │ │ │ ├── br_if.wast │ │ │ ├── br_table.wast │ │ │ ├── break-drop.wast │ │ │ ├── call.wast │ │ │ ├── call_indirect.wast │ │ │ ├── comments.wast │ │ │ ├── const.wast │ │ │ ├── conversions.wast │ │ │ ├── custom.wast │ │ │ ├── custom_section.wast │ │ │ ├── data.wast │ │ │ ├── elem.wast │ │ │ ├── endianness.wast │ │ │ ├── exports.wast │ │ │ ├── extract-parts.sh │ │ │ ├── f32.wast │ │ │ ├── f32_bitwise.wast │ │ │ ├── f32_cmp.wast │ │ │ ├── f64.wast │ │ │ ├── f64_bitwise.wast │ │ │ ├── f64_cmp.wast │ │ │ ├── fac.wast │ │ │ ├── float_exprs.wast │ │ │ ├── float_literals.wast │ │ │ ├── float_memory.wast │ │ │ ├── float_misc.wast │ │ │ ├── forward.wast │ │ │ ├── func.wast │ │ │ ├── func_ptrs.wast │ │ │ ├── get_local.wast │ │ │ ├── globals.wast │ │ │ ├── i32.wast │ │ │ ├── i64.wast │ │ │ ├── if.wast │ │ │ ├── imports.wast │ │ │ ├── inline-module.wast │ │ │ ├── int_exprs.wast │ │ │ ├── int_literals.wast │ │ │ ├── labels.wast │ │ │ ├── left-to-right.wast │ │ │ ├── linking.wast │ │ │ ├── loop.wast │ │ │ ├── memory.wast │ │ │ ├── memory_grow.wast │ │ │ ├── memory_redundancy.wast │ │ │ ├── memory_trap.wast │ │ │ ├── names.wast │ │ │ ├── nop.wast │ │ │ ├── proposals │ │ │ ├── multi-value │ │ │ │ ├── block.wast │ │ │ │ ├── br.wast │ │ │ │ ├── call.wast │ │ │ │ ├── call_indirect.wast │ │ │ │ ├── fac.wast │ │ │ │ ├── func.wast │ │ │ │ ├── if.wast │ │ │ │ ├── loop.wast │ │ │ │ └── type.wast │ │ │ ├── mutable-global │ │ │ │ ├── globals.wast │ │ │ │ └── linking.wast │ │ │ ├── nontrapping-float-to-int-conversions │ │ │ │ └── conversions.wast │ │ │ ├── sign-extension-ops │ │ │ │ ├── i32.wast │ │ │ │ └── i64.wast │ │ │ └── threads │ │ │ │ ├── atomic.wast │ │ │ │ ├── exports.wast │ │ │ │ ├── imports.wast │ │ │ │ └── memory.wast │ │ │ ├── resizing.wast │ │ │ ├── return.wast │ │ │ ├── select.wast │ │ │ ├── set_local.wast │ │ │ ├── skip-stack-guard-page.wast │ │ │ ├── stack.wast │ │ │ ├── start.wast │ │ │ ├── store_retval.wast │ │ │ ├── switch.wast │ │ │ ├── tee_local.wast │ │ │ ├── token.wast │ │ │ ├── traps.wast │ │ │ ├── type.wast │ │ │ ├── typecheck.wast │ │ │ ├── unreachable.wast │ │ │ ├── unreached-invalid.wast │ │ │ ├── unwind.wast │ │ │ ├── update-testsuite.sh │ │ │ ├── utf8-custom-section-id.wast │ │ │ ├── utf8-import-field.wast │ │ │ ├── utf8-import-module.wast │ │ │ └── utf8-invalid-encoding.wast │ ├── ubsan.blacklist │ └── wasm2c │ │ ├── README.md │ │ ├── examples │ │ └── fac │ │ │ ├── fac.c │ │ │ ├── fac.h │ │ │ ├── fac.wasm │ │ │ ├── fac.wat │ │ │ └── main.c │ │ ├── wasm-rt-impl.c │ │ ├── wasm-rt-impl.h │ │ └── wasm-rt.h ├── wasm-jit │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── Include │ │ ├── Emscripten │ │ │ └── Emscripten.h │ │ ├── IR │ │ │ ├── IR.h │ │ │ ├── Module.h │ │ │ ├── OperatorPrinter.h │ │ │ ├── Operators.h │ │ │ ├── Types.h │ │ │ └── Validate.h │ │ ├── Inline │ │ │ ├── BasicTypes.h │ │ │ ├── CMakeLists.txt │ │ │ ├── DenseStaticIntSet.h │ │ │ ├── Errors.h │ │ │ ├── Floats.h │ │ │ ├── Serialization.h │ │ │ ├── Timing.h │ │ │ └── UTF8.h │ │ ├── Logging │ │ │ └── Logging.h │ │ ├── Platform │ │ │ └── Platform.h │ │ ├── Runtime │ │ │ ├── Intrinsics.h │ │ │ ├── Linker.h │ │ │ ├── Runtime.h │ │ │ └── TaggedValue.h │ │ ├── WASM │ │ │ └── WASM.h │ │ └── WAST │ │ │ ├── TestScript.h │ │ │ └── WAST.h │ ├── LICENSE │ ├── README.md │ ├── Source │ │ ├── IR │ │ │ ├── CMakeLists.txt │ │ │ ├── DisassemblyNames.cpp │ │ │ ├── Operators.cpp │ │ │ ├── Types.cpp │ │ │ └── Validate.cpp │ │ ├── Logging │ │ │ ├── CMakeLists.txt │ │ │ └── Logging.cpp │ │ ├── Platform │ │ │ ├── CMakeLists.txt │ │ │ ├── POSIX.cpp │ │ │ └── Windows.cpp │ │ ├── Runtime │ │ │ ├── CMakeLists.txt │ │ │ ├── Intrinsics.cpp │ │ │ ├── LLVMJIT.h │ │ │ ├── Linker.cpp │ │ │ ├── ObjectGC.cpp │ │ │ ├── RuntimePrivate.h │ │ │ └── WAVMIntrinsics.cpp │ │ ├── ThirdParty │ │ │ ├── dtoa.c │ │ │ └── xxhash │ │ │ │ ├── LICENSE │ │ │ │ ├── xxhash.c │ │ │ │ └── xxhash.h │ │ ├── WASM │ │ │ ├── CMakeLists.txt │ │ │ └── WASMSerialization.cpp │ │ └── WAST │ │ │ ├── CMakeLists.txt │ │ │ ├── Lexer.cpp │ │ │ ├── Lexer.h │ │ │ ├── NFA.cpp │ │ │ ├── NFA.h │ │ │ ├── Parse.cpp │ │ │ ├── Parse.h │ │ │ ├── ParseFunction.cpp │ │ │ ├── ParseModule.cpp │ │ │ ├── ParseNumbers.cpp │ │ │ ├── ParseTests.cpp │ │ │ ├── Print.cpp │ │ │ ├── Regexp.cpp │ │ │ └── Regexp.h │ ├── Test │ │ ├── Benchmark │ │ │ ├── Benchmark.cpp │ │ │ └── Benchmark.wast │ │ ├── Blake2b │ │ │ └── blake2b.wast │ │ ├── fuzz │ │ │ ├── address.wast │ │ │ ├── echo.wast │ │ │ ├── func_ptrs.wast │ │ │ ├── globals.wast │ │ │ ├── helloworld.wast │ │ │ ├── i32.wast │ │ │ ├── labels.wast │ │ │ ├── loop.wast │ │ │ ├── resizing.wast │ │ │ ├── return.wast │ │ │ ├── tee.wast │ │ │ └── tee_local.wast │ │ ├── spec │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── WAVM_known_failures.wast │ │ │ ├── address.wast │ │ │ ├── align.wast │ │ │ ├── atomic.wast │ │ │ ├── binary.wast │ │ │ ├── block.wast │ │ │ ├── br.wast │ │ │ ├── br_if.wast │ │ │ ├── br_table.wast │ │ │ ├── break-drop.wast │ │ │ ├── call.wast │ │ │ ├── call_indirect.wast │ │ │ ├── comments.wast │ │ │ ├── const.wast │ │ │ ├── conversions.wast │ │ │ ├── custom_section.wast │ │ │ ├── elem.wast │ │ │ ├── endianness.wast │ │ │ ├── exports.wast │ │ │ ├── f32.wast │ │ │ ├── f32_bitwise.wast │ │ │ ├── f32_cmp.wast │ │ │ ├── f64.wast │ │ │ ├── f64_bitwise.wast │ │ │ ├── f64_cmp.wast │ │ │ ├── fac.wast │ │ │ ├── float_exprs.wast │ │ │ ├── float_literals.wast │ │ │ ├── float_memory.wast │ │ │ ├── float_misc.wast │ │ │ ├── forward.wast │ │ │ ├── func.wast │ │ │ ├── func_ptrs.wast │ │ │ ├── get_local.wast │ │ │ ├── globals.wast │ │ │ ├── i32.wast │ │ │ ├── i64.wast │ │ │ ├── if.wast │ │ │ ├── imports.wast │ │ │ ├── int_exprs.wast │ │ │ ├── int_literals.wast │ │ │ ├── labels.wast │ │ │ ├── left-to-right.wast │ │ │ ├── linking.wast │ │ │ ├── loop.wast │ │ │ ├── memory.wast │ │ │ ├── memory_redundancy.wast │ │ │ ├── memory_trap.wast │ │ │ ├── names.wast │ │ │ ├── nop.wast │ │ │ ├── resizing.wast │ │ │ ├── return.wast │ │ │ ├── select.wast │ │ │ ├── set_local.wast │ │ │ ├── skip-stack-guard-page.wast │ │ │ ├── stack.wast │ │ │ ├── start.wast │ │ │ ├── store_retval.wast │ │ │ ├── switch.wast │ │ │ ├── tee_local.wast │ │ │ ├── token.wast │ │ │ ├── traps.wast │ │ │ ├── type.wast │ │ │ ├── typecheck.wast │ │ │ ├── unreachable.wast │ │ │ ├── unreached-invalid.wast │ │ │ ├── unwind.wast │ │ │ ├── utf8-custom-section-id.wast │ │ │ ├── utf8-import-field.wast │ │ │ ├── utf8-import-module.wast │ │ │ └── utf8-invalid-encoding.wast │ │ ├── wast │ │ │ ├── echo.wast │ │ │ ├── helloworld.wast │ │ │ ├── skip-stack-guard-page.wast │ │ │ └── tee.wast │ │ └── zlib │ │ │ └── zlib.wast │ ├── afl │ │ ├── readme │ │ ├── run-afl-fuzz │ │ ├── simplify-crashes │ │ └── wast.dict │ └── travis-build.sh └── yubihsm │ ├── .ci │ ├── client-combined.pem.enc │ └── server-crt.pem │ ├── .clang-format │ ├── .gitignore │ ├── .pre-commit-config.yaml │ ├── .travis.yml │ ├── CHANGELOG │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README │ ├── README.adoc │ ├── aes_cmac │ ├── aes.c │ ├── aes.h │ ├── aes_cmac.c │ ├── aes_cmac.h │ └── tests │ │ └── aes_cmac_tests.c │ ├── cmake │ ├── FindGcov.cmake │ ├── FindLcov.cmake │ ├── Findcodecov.cmake │ ├── cppcheck.cmake │ ├── gengetopt.cmake │ ├── help2man.cmake │ ├── mingw32.cmake │ └── mingw64.cmake │ ├── common │ ├── debug.h │ ├── hash.c │ ├── hash.h │ ├── insecure_memzero.h │ ├── openssl-compat.c │ ├── openssl-compat.h │ ├── parsing.c │ ├── parsing.h │ ├── pkcs5.c │ ├── pkcs5.h │ ├── rand.c │ ├── rand.h │ ├── util.c │ └── util.h │ ├── doc │ └── API_Changes.adoc │ ├── examples │ ├── CMakeLists.txt │ ├── attest.c │ ├── attestation_template.pem │ ├── change_authkey.c │ ├── decrypt_ec.c │ ├── decrypt_rsa.c │ ├── echo.c │ ├── ed25519_pvtkey.pem │ ├── generate_ec.c │ ├── generate_hmac.c │ ├── generate_rsa.c │ ├── import_authkey.c │ ├── import_ec.c │ ├── import_ed.c │ ├── import_rsa.c │ ├── info.c │ ├── logs.c │ ├── p11_generate_rsa.c │ ├── p256_pvtkey.pem │ ├── rsa2048_pvtkey.pem │ ├── ssh.c │ ├── ssh_ca_pvtkey.pem │ ├── ssh_req.dat │ ├── wrap.c │ ├── wrap_data.c │ └── yubico_otp.c │ ├── lib │ ├── CMakeLists.txt │ ├── Doxyfile │ ├── README.adoc │ ├── debug_lib.h │ ├── error.c │ ├── internal.h │ ├── lib_util.c │ ├── scp.h │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── test_parsing.c │ │ ├── test_pbkdf2.c │ │ ├── test_usb_url.c │ │ └── test_util.c │ ├── version.rc.in │ ├── version_winhttp.rc.in │ ├── version_winusb.rc.in │ ├── yubihsm.c │ ├── yubihsm.h │ ├── yubihsm.pc.in │ ├── yubihsm_curl.c │ ├── yubihsm_libusb.c │ ├── yubihsm_usb.c │ ├── yubihsm_usb.h │ ├── yubihsm_winhttp.c │ └── yubihsm_winusb.c │ ├── pkcs11 │ ├── CMakeLists.txt │ ├── README.adoc │ ├── cmdline.ggo │ ├── debug_p11.c │ ├── debug_p11.h │ ├── list.c │ ├── list.h │ ├── pkcs11.h │ ├── pkcs11y.h │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── ecdh_derive_test.c │ │ ├── engine_tests.sh │ │ └── pkcs11test.sh │ ├── util_pkcs11.c │ ├── util_pkcs11.h │ ├── yubihsm_pkcs11.c │ └── yubihsm_pkcs11.h │ ├── src │ ├── CMakeLists.txt │ ├── README.adoc │ ├── cmdline.ggo │ ├── commands.c │ ├── commands.h │ ├── main.c │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── data.txt │ │ ├── sig.out │ │ ├── tests.sh │ │ ├── wrapped_tests.sh │ │ └── yubihsm_shell_tests.c │ ├── version.rc.in │ └── yubihsm-shell.h │ ├── yhauth │ ├── CMakeLists.txt │ ├── cmdline.ggo │ └── main.c │ ├── yhwrap │ ├── CMakeLists.txt │ ├── README.adoc │ ├── cmdline.ggo │ ├── main.c │ └── version.rc.in │ └── ykyh │ ├── CMakeLists.txt │ ├── error.c │ ├── internal.h │ ├── ykyh.c │ ├── ykyh.h │ └── ykyh.pc.in ├── plugins ├── CMakeLists.txt ├── COMMUNITY.md ├── chain_api_plugin │ ├── CMakeLists.txt │ ├── chain.swagger.yaml │ ├── chain_api_plugin.cpp │ └── include │ │ └── inery │ │ └── chain_api_plugin │ │ └── chain_api_plugin.hpp ├── chain_interface │ └── include │ │ └── inery │ │ └── chain │ │ └── plugin_interface.hpp ├── chain_plugin │ ├── CMakeLists.txt │ ├── account_query_db.cpp │ ├── chain_plugin.cpp │ └── include │ │ └── inery │ │ └── chain_plugin │ │ ├── account_query_db.hpp │ │ └── chain_plugin.hpp ├── db_size_api_plugin │ ├── CMakeLists.txt │ ├── db_size.swagger.yaml │ ├── db_size_api_plugin.cpp │ └── include │ │ └── inery │ │ └── db_size_api_plugin │ │ └── db_size_api_plugin.hpp ├── faucet_testnet_plugin │ ├── CMakeLists.txt │ ├── faucet_testnet_plugin.cpp │ └── include │ │ └── inery │ │ └── faucet_testnet_plugin │ │ └── faucet_testnet_plugin.hpp ├── history_api_plugin │ ├── CMakeLists.txt │ ├── history_api_plugin.cpp │ └── include │ │ └── inery │ │ └── history_api_plugin │ │ └── history_api_plugin.hpp ├── history_plugin │ ├── CMakeLists.txt │ ├── history_plugin.cpp │ └── include │ │ └── inery │ │ └── history_plugin │ │ ├── account_control_history_object.hpp │ │ ├── history_plugin.hpp │ │ └── public_key_history_object.hpp ├── http_client_plugin │ ├── CMakeLists.txt │ ├── http_client_plugin.cpp │ └── include │ │ └── inery │ │ └── http_client_plugin │ │ └── http_client_plugin.hpp ├── http_plugin │ ├── CMakeLists.txt │ ├── http_plugin.cpp │ └── include │ │ └── inery │ │ └── http_plugin │ │ ├── http_plugin.hpp │ │ └── local_endpoint.hpp ├── inery-make_new_plugin.sh ├── login_plugin │ ├── .clang-format │ ├── CMakeLists.txt │ ├── include │ │ └── inery │ │ │ └── login_plugin │ │ │ └── login_plugin.hpp │ └── login_plugin.cpp ├── mongo_db_plugin │ ├── CMakeLists.txt │ ├── include │ │ └── inery │ │ │ └── mongo_db_plugin │ │ │ ├── bson.hpp │ │ │ └── mongo_db_plugin.hpp │ └── mongo_db_plugin.cpp ├── net_api_plugin │ ├── CMakeLists.txt │ ├── include │ │ └── inery │ │ │ └── net_api_plugin │ │ │ └── net_api_plugin.hpp │ ├── net.swagger.yaml │ └── net_api_plugin.cpp ├── net_plugin │ ├── CMakeLists.txt │ ├── include │ │ └── inery │ │ │ └── net_plugin │ │ │ ├── net_plugin.hpp │ │ │ └── protocol.hpp │ └── net_plugin.cpp ├── producer_api_plugin │ ├── CMakeLists.txt │ ├── include │ │ └── inery │ │ │ └── producer_api_plugin │ │ │ └── producer_api_plugin.hpp │ ├── producer.swagger.yaml │ └── producer_api_plugin.cpp ├── producer_plugin │ ├── CMakeLists.txt │ ├── include │ │ └── inery │ │ │ └── producer_plugin │ │ │ └── producer_plugin.hpp │ └── producer_plugin.cpp ├── state_history_plugin │ ├── .clang-format │ ├── CMakeLists.txt │ ├── include │ │ └── inery │ │ │ └── state_history_plugin │ │ │ ├── state_history_log.hpp │ │ │ ├── state_history_plugin.hpp │ │ │ └── state_history_serialization.hpp │ ├── state_history_plugin.cpp │ └── state_history_plugin_abi.cpp ├── template_plugin │ ├── CMakeLists.txt │ ├── include │ │ └── inery │ │ │ └── template_plugin │ │ │ └── template_plugin.hpp │ └── template_plugin.cpp ├── test_control_api_plugin │ ├── CMakeLists.txt │ ├── include │ │ └── inery │ │ │ └── test_control_api_plugin │ │ │ └── test_control_api_plugin.hpp │ ├── test_control.swagger.yaml │ └── test_control_api_plugin.cpp ├── test_control_plugin │ ├── CMakeLists.txt │ ├── include │ │ └── inery │ │ │ └── test_control_plugin │ │ │ └── test_control_plugin.hpp │ └── test_control_plugin.cpp ├── trace_api_plugin │ ├── .clang-format │ ├── CMakeLists.txt │ ├── abi_data_handler.cpp │ ├── compressed_file.cpp │ ├── examples │ │ └── abis │ │ │ ├── inery.abi │ │ │ ├── inery.msig.abi │ │ │ ├── inery.token.abi │ │ │ └── inery.wrap.abi │ ├── include │ │ └── inery │ │ │ └── trace_api │ │ │ ├── abi_data_handler.hpp │ │ │ ├── chain_extraction.hpp │ │ │ ├── common.hpp │ │ │ ├── compressed_file.hpp │ │ │ ├── configuration_utils.hpp │ │ │ ├── data_log.hpp │ │ │ ├── extract_util.hpp │ │ │ ├── metadata_log.hpp │ │ │ ├── request_handler.hpp │ │ │ ├── store_provider.hpp │ │ │ ├── trace.hpp │ │ │ └── trace_api_plugin.hpp │ ├── request_handler.cpp │ ├── store_provider.cpp │ ├── test │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── inery │ │ │ │ └── trace_api │ │ │ │ └── test_common.hpp │ │ ├── test_compressed_file.cpp │ │ ├── test_configuration_utils.cpp │ │ ├── test_data_handlers.cpp │ │ ├── test_extraction.cpp │ │ ├── test_responses.cpp │ │ └── test_trace_file.cpp │ ├── trace_api.swagger.yaml │ ├── trace_api_plugin.cpp │ └── utils │ │ ├── CMakeLists.txt │ │ ├── compress_cmd.cpp │ │ ├── include │ │ └── inery │ │ │ └── trace_api │ │ │ └── cmd_registration.hpp │ │ └── trace_api_util.cpp ├── txn_test_gen_plugin │ ├── CMakeLists.txt │ ├── README.md │ ├── include │ │ └── inery │ │ │ └── txn_test_gen_plugin │ │ │ └── txn_test_gen_plugin.hpp │ └── txn_test_gen_plugin.cpp ├── wallet_api_plugin │ ├── CMakeLists.txt │ ├── include │ │ └── inery │ │ │ └── wallet_api_plugin │ │ │ └── wallet_api_plugin.hpp │ └── wallet_api_plugin.cpp └── wallet_plugin │ ├── CMakeLists.txt │ ├── include │ └── inery │ │ └── wallet_plugin │ │ ├── macos_user_auth.h │ │ ├── se_wallet.hpp │ │ ├── wallet.hpp │ │ ├── wallet_api.hpp │ │ ├── wallet_manager.hpp │ │ ├── wallet_plugin.hpp │ │ └── yubihsm_wallet.hpp │ ├── macos_user_auth.m │ ├── se_wallet.cpp │ ├── wallet.cpp │ ├── wallet_manager.cpp │ ├── wallet_plugin.cpp │ └── yubihsm_wallet.cpp ├── programs ├── CMakeLists.txt ├── cline │ ├── CLI11.hpp │ ├── CMakeLists.txt │ ├── config.hpp.in │ ├── help_text.cpp.in │ ├── help_text.hpp │ ├── httpc.cpp │ ├── httpc.hpp │ ├── inec.pot │ ├── localize.hpp │ └── main.cpp ├── inery-blocklog │ ├── CMakeLists.txt │ └── main.cpp ├── inery-launcher │ ├── CMakeLists.txt │ ├── config.hpp.in │ └── main.cpp ├── kined │ ├── CMakeLists.txt │ ├── config.hpp.in │ └── main.cpp └── nodine │ ├── CMakeLists.txt │ ├── config.hpp.in │ ├── logging.json │ └── main.cpp ├── scripts ├── .build_vars ├── .environment ├── CMakeLists.txt ├── abi_is_json.py ├── clang-devtoolset8-support.patch ├── complete.sh ├── generate_bottle.sh ├── generate_deb.sh ├── generate_package.sh.in ├── generate_rpm.sh ├── generate_tarball.sh ├── helpers │ ├── general.sh │ └── inery.sh ├── inery-tn_bounce.sh ├── inery-tn_down.sh ├── inery-tn_roll.sh ├── inery-tn_up.sh ├── inery_build.sh ├── inery_build_amazonlinux.sh ├── inery_build_amazonlinux2_deps ├── inery_build_centos.sh ├── inery_build_centos7_deps ├── inery_build_darwin.sh ├── inery_build_darwin_deps ├── inery_build_ubuntu.sh ├── inery_build_ubuntu_deps ├── inery_install.sh ├── inery_uninstall.sh ├── long-running-test.sh ├── mongod.conf ├── parallel-test.sh ├── pinned_toolchain.cmake ├── serial-test.sh └── wasm-spec-test.sh └── tools ├── CMakeLists.txt ├── ctestwrapper.sh ├── llvm-gcov.sh ├── mas_sign.sh └── validate_reflection.py /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeModules/FindGperftools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/CMakeModules/FindGperftools.cmake -------------------------------------------------------------------------------- /CMakeModules/IneryTester.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/CMakeModules/IneryTester.cmake.in -------------------------------------------------------------------------------- /CMakeModules/MASSigning.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/CMakeModules/MASSigning.cmake -------------------------------------------------------------------------------- /CMakeModules/VersionUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/CMakeModules/VersionUtils.cmake -------------------------------------------------------------------------------- /CMakeModules/doxygen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/CMakeModules/doxygen.cmake -------------------------------------------------------------------------------- /CMakeModules/inery-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/CMakeModules/inery-config.cmake.in -------------------------------------------------------------------------------- /CMakeModules/package.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/CMakeModules/package.cmake -------------------------------------------------------------------------------- /CMakeModules/utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/CMakeModules/utils.cmake -------------------------------------------------------------------------------- /IMPORTANT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/IMPORTANT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/README.md -------------------------------------------------------------------------------- /docs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/docs.json -------------------------------------------------------------------------------- /ine.doxygen.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/ine.doxygen.in -------------------------------------------------------------------------------- /inery.version.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/inery.version.in -------------------------------------------------------------------------------- /libraries/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/appbase/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/appbase/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/appbase/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/appbase/LICENSE.md -------------------------------------------------------------------------------- /libraries/appbase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/appbase/README.md -------------------------------------------------------------------------------- /libraries/appbase/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/appbase/application.cpp -------------------------------------------------------------------------------- /libraries/appbase/examples/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/appbase/examples/main.cpp -------------------------------------------------------------------------------- /libraries/appbase/version.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/appbase/version.cmake.in -------------------------------------------------------------------------------- /libraries/appbase/version.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/appbase/version.cpp.in -------------------------------------------------------------------------------- /libraries/builtins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/builtins/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/builtins/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/builtins/README.txt -------------------------------------------------------------------------------- /libraries/builtins/fixdfti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/builtins/fixdfti.c -------------------------------------------------------------------------------- /libraries/builtins/fixsfti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/builtins/fixsfti.c -------------------------------------------------------------------------------- /libraries/builtins/fixtfti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/builtins/fixtfti.c -------------------------------------------------------------------------------- /libraries/builtins/fixunsdfti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/builtins/fixunsdfti.c -------------------------------------------------------------------------------- /libraries/builtins/fixunssfti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/builtins/fixunssfti.c -------------------------------------------------------------------------------- /libraries/builtins/fixunstfti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/builtins/fixunstfti.c -------------------------------------------------------------------------------- /libraries/builtins/floattidf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/builtins/floattidf.c -------------------------------------------------------------------------------- /libraries/builtins/floatuntidf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/builtins/floatuntidf.c -------------------------------------------------------------------------------- /libraries/builtins/fp128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/builtins/fp128.h -------------------------------------------------------------------------------- /libraries/builtins/fp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/builtins/fp32.h -------------------------------------------------------------------------------- /libraries/builtins/fp64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/builtins/fp64.h -------------------------------------------------------------------------------- /libraries/builtins/int_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/builtins/int_t.h -------------------------------------------------------------------------------- /libraries/chain/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/chain/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/chain/abi_serializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/chain/abi_serializer.cpp -------------------------------------------------------------------------------- /libraries/chain/apply_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/chain/apply_context.cpp -------------------------------------------------------------------------------- /libraries/chain/asset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/chain/asset.cpp -------------------------------------------------------------------------------- /libraries/chain/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/chain/block.cpp -------------------------------------------------------------------------------- /libraries/chain/block_header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/chain/block_header.cpp -------------------------------------------------------------------------------- /libraries/chain/block_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/chain/block_log.cpp -------------------------------------------------------------------------------- /libraries/chain/block_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/chain/block_state.cpp -------------------------------------------------------------------------------- /libraries/chain/chain_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/chain/chain_config.cpp -------------------------------------------------------------------------------- /libraries/chain/chain_id_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/chain/chain_id_type.cpp -------------------------------------------------------------------------------- /libraries/chain/controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/chain/controller.cpp -------------------------------------------------------------------------------- /libraries/chain/fork_database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/chain/fork_database.cpp -------------------------------------------------------------------------------- /libraries/chain/genesis_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/chain/genesis_state.cpp -------------------------------------------------------------------------------- /libraries/chain/include/inery/chain/protocol.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /libraries/chain/inery_contract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/chain/inery_contract.cpp -------------------------------------------------------------------------------- /libraries/chain/merkle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/chain/merkle.cpp -------------------------------------------------------------------------------- /libraries/chain/name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/chain/name.cpp -------------------------------------------------------------------------------- /libraries/chain/resource_limits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/chain/resource_limits.cpp -------------------------------------------------------------------------------- /libraries/chain/snapshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/chain/snapshot.cpp -------------------------------------------------------------------------------- /libraries/chain/thread_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/chain/thread_utils.cpp -------------------------------------------------------------------------------- /libraries/chain/trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/chain/trace.cpp -------------------------------------------------------------------------------- /libraries/chain/transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/chain/transaction.cpp -------------------------------------------------------------------------------- /libraries/chain/wasm_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/chain/wasm_interface.cpp -------------------------------------------------------------------------------- /libraries/chain/wast_to_wasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/chain/wast_to_wasm.cpp -------------------------------------------------------------------------------- /libraries/chain/webassembly/ine-vm-oc/llvmWARshim.llvmwar: -------------------------------------------------------------------------------- 1 | llvmWARshim.cpp -------------------------------------------------------------------------------- /libraries/chainbase/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/chainbase/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/chainbase/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/chainbase/LICENSE.md -------------------------------------------------------------------------------- /libraries/chainbase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/chainbase/README.md -------------------------------------------------------------------------------- /libraries/chainbase/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/chainbase/test/test.cpp -------------------------------------------------------------------------------- /libraries/fc/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/.gitmodules -------------------------------------------------------------------------------- /libraries/fc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/fc/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/LICENSE.txt -------------------------------------------------------------------------------- /libraries/fc/include/fc/actor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/include/fc/actor.hpp -------------------------------------------------------------------------------- /libraries/fc/include/fc/aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/include/fc/aligned.hpp -------------------------------------------------------------------------------- /libraries/fc/include/fc/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/include/fc/any.hpp -------------------------------------------------------------------------------- /libraries/fc/include/fc/api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/include/fc/api.hpp -------------------------------------------------------------------------------- /libraries/fc/include/fc/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/include/fc/array.hpp -------------------------------------------------------------------------------- /libraries/fc/include/fc/bitutil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/include/fc/bitutil.hpp -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/data/abcde.txt: -------------------------------------------------------------------------------- 1 | abcde -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail11.json: -------------------------------------------------------------------------------- 1 | {"Illegal expression": 1 + 2} -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail12.json: -------------------------------------------------------------------------------- 1 | {"Illegal invocation": alert()} -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail13.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot have leading zeroes": 013} -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail14.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot be hex": 0x14} -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail15.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \x15"] -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail16.json: -------------------------------------------------------------------------------- 1 | [\naked] -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail17.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \017"] -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail19.json: -------------------------------------------------------------------------------- 1 | {"Missing colon" null} -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail2.json: -------------------------------------------------------------------------------- 1 | ["Unclosed array" -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail20.json: -------------------------------------------------------------------------------- 1 | {"Double colon":: null} -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail21.json: -------------------------------------------------------------------------------- 1 | {"Comma instead of colon", null} -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail22.json: -------------------------------------------------------------------------------- 1 | ["Colon instead of comma": false] -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail23.json: -------------------------------------------------------------------------------- 1 | ["Bad value", truth] -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail24.json: -------------------------------------------------------------------------------- 1 | ['single quote'] -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail25.json: -------------------------------------------------------------------------------- 1 | [" tab character in string "] -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail27.json: -------------------------------------------------------------------------------- 1 | ["line 2 | break"] -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail28.json: -------------------------------------------------------------------------------- 1 | ["line\ 2 | break"] -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail29.json: -------------------------------------------------------------------------------- 1 | [0e] -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail30.json: -------------------------------------------------------------------------------- 1 | [0e+] -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail31.json: -------------------------------------------------------------------------------- 1 | [0e+-1] -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail32.json: -------------------------------------------------------------------------------- 1 | {"Comma instead if closing brace": true, -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail33.json: -------------------------------------------------------------------------------- 1 | ["mismatch"} -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail4.json: -------------------------------------------------------------------------------- 1 | ["extra comma",] -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail5.json: -------------------------------------------------------------------------------- 1 | ["double extra comma",,] -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail6.json: -------------------------------------------------------------------------------- 1 | [ , "<-- missing value"] -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail7.json: -------------------------------------------------------------------------------- 1 | ["Comma after the close"], -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail8.json: -------------------------------------------------------------------------------- 1 | ["Extra close"]] -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/bin/jsonchecker/fail9.json: -------------------------------------------------------------------------------- 1 | {"Extra comma": true,} -------------------------------------------------------------------------------- /libraries/fc/include/fc/crypto/webauthn_json/thirdparty/gtest/googlemock/scripts/generator/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/fc/include/fc/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/include/fc/fwd.hpp -------------------------------------------------------------------------------- /libraries/fc/include/fc/io/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/include/fc/io/json.hpp -------------------------------------------------------------------------------- /libraries/fc/include/fc/io/raw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/include/fc/io/raw.hpp -------------------------------------------------------------------------------- /libraries/fc/include/fc/real128.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/include/fc/real128.hpp -------------------------------------------------------------------------------- /libraries/fc/include/fc/rpc/cli.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/include/fc/rpc/cli.hpp -------------------------------------------------------------------------------- /libraries/fc/include/fc/safe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/include/fc/safe.hpp -------------------------------------------------------------------------------- /libraries/fc/include/fc/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/include/fc/string.hpp -------------------------------------------------------------------------------- /libraries/fc/include/fc/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/include/fc/time.hpp -------------------------------------------------------------------------------- /libraries/fc/include/fc/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/include/fc/tuple.hpp -------------------------------------------------------------------------------- /libraries/fc/include/fc/uint128.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/include/fc/uint128.hpp -------------------------------------------------------------------------------- /libraries/fc/include/fc/utf8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/include/fc/utf8.hpp -------------------------------------------------------------------------------- /libraries/fc/include/fc/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/include/fc/utility.hpp -------------------------------------------------------------------------------- /libraries/fc/include/fc/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/include/fc/variant.hpp -------------------------------------------------------------------------------- /libraries/fc/include/fc/vector.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /libraries/fc/secp256k1/upstream/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | autoreconf -if --warnings=all 4 | -------------------------------------------------------------------------------- /libraries/fc/secp256k1/upstream/obj/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/fc/src/byteswap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/byteswap.hpp -------------------------------------------------------------------------------- /libraries/fc/src/compress/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/compress/miniz.c -------------------------------------------------------------------------------- /libraries/fc/src/compress/smaz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/compress/smaz.cpp -------------------------------------------------------------------------------- /libraries/fc/src/compress/zlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/compress/zlib.cpp -------------------------------------------------------------------------------- /libraries/fc/src/crypto/aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/crypto/aes.cpp -------------------------------------------------------------------------------- /libraries/fc/src/crypto/base32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/crypto/base32.cpp -------------------------------------------------------------------------------- /libraries/fc/src/crypto/base36.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/crypto/base36.cpp -------------------------------------------------------------------------------- /libraries/fc/src/crypto/base58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/crypto/base58.cpp -------------------------------------------------------------------------------- /libraries/fc/src/crypto/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/crypto/base64.cpp -------------------------------------------------------------------------------- /libraries/fc/src/crypto/bigint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/crypto/bigint.cpp -------------------------------------------------------------------------------- /libraries/fc/src/crypto/city.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/crypto/city.cpp -------------------------------------------------------------------------------- /libraries/fc/src/crypto/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/crypto/crc.cpp -------------------------------------------------------------------------------- /libraries/fc/src/crypto/dh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/crypto/dh.cpp -------------------------------------------------------------------------------- /libraries/fc/src/crypto/hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/crypto/hex.cpp -------------------------------------------------------------------------------- /libraries/fc/src/crypto/openssl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/crypto/openssl.cpp -------------------------------------------------------------------------------- /libraries/fc/src/crypto/pke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/crypto/pke.cpp -------------------------------------------------------------------------------- /libraries/fc/src/crypto/rand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/crypto/rand.cpp -------------------------------------------------------------------------------- /libraries/fc/src/crypto/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/crypto/sha1.cpp -------------------------------------------------------------------------------- /libraries/fc/src/crypto/sha224.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/crypto/sha224.cpp -------------------------------------------------------------------------------- /libraries/fc/src/crypto/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/crypto/sha256.cpp -------------------------------------------------------------------------------- /libraries/fc/src/crypto/sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/crypto/sha512.cpp -------------------------------------------------------------------------------- /libraries/fc/src/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/exception.cpp -------------------------------------------------------------------------------- /libraries/fc/src/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/filesystem.cpp -------------------------------------------------------------------------------- /libraries/fc/src/io/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/io/console.cpp -------------------------------------------------------------------------------- /libraries/fc/src/io/datastream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/io/datastream.cpp -------------------------------------------------------------------------------- /libraries/fc/src/io/fstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/io/fstream.cpp -------------------------------------------------------------------------------- /libraries/fc/src/io/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/io/json.cpp -------------------------------------------------------------------------------- /libraries/fc/src/io/sstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/io/sstream.cpp -------------------------------------------------------------------------------- /libraries/fc/src/io/varint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/io/varint.cpp -------------------------------------------------------------------------------- /libraries/fc/src/log/appender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/log/appender.cpp -------------------------------------------------------------------------------- /libraries/fc/src/log/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/log/logger.cpp -------------------------------------------------------------------------------- /libraries/fc/src/network/LICENSE.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/network/LICENSE.go -------------------------------------------------------------------------------- /libraries/fc/src/network/gntp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/network/gntp.cpp -------------------------------------------------------------------------------- /libraries/fc/src/network/ip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/network/ip.cpp -------------------------------------------------------------------------------- /libraries/fc/src/network/ntp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/network/ntp.cpp -------------------------------------------------------------------------------- /libraries/fc/src/network/url.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/network/url.cpp -------------------------------------------------------------------------------- /libraries/fc/src/real128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/real128.cpp -------------------------------------------------------------------------------- /libraries/fc/src/rpc/bstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/rpc/bstate.cpp -------------------------------------------------------------------------------- /libraries/fc/src/rpc/cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/rpc/cli.cpp -------------------------------------------------------------------------------- /libraries/fc/src/rpc/http_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/rpc/http_api.cpp -------------------------------------------------------------------------------- /libraries/fc/src/rpc/state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/rpc/state.cpp -------------------------------------------------------------------------------- /libraries/fc/src/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/string.cpp -------------------------------------------------------------------------------- /libraries/fc/src/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/time.cpp -------------------------------------------------------------------------------- /libraries/fc/src/uint128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/uint128.cpp -------------------------------------------------------------------------------- /libraries/fc/src/utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/utf8.cpp -------------------------------------------------------------------------------- /libraries/fc/src/utf8/ReleaseNotes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/utf8/ReleaseNotes -------------------------------------------------------------------------------- /libraries/fc/src/utf8/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/utf8/checked.h -------------------------------------------------------------------------------- /libraries/fc/src/utf8/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/utf8/core.h -------------------------------------------------------------------------------- /libraries/fc/src/utf8/unchecked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/utf8/unchecked.h -------------------------------------------------------------------------------- /libraries/fc/src/utf8/utf8cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/utf8/utf8cpp.html -------------------------------------------------------------------------------- /libraries/fc/src/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/variant.cpp -------------------------------------------------------------------------------- /libraries/fc/src/variant_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/src/variant_object.cpp -------------------------------------------------------------------------------- /libraries/fc/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/test/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/fc/test/io/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/test/io/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/fc/test/io/test_cfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/test/io/test_cfile.cpp -------------------------------------------------------------------------------- /libraries/fc/test/io/test_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/test/io/test_json.cpp -------------------------------------------------------------------------------- /libraries/fc/test/test_base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/fc/test/test_base64.cpp -------------------------------------------------------------------------------- /libraries/ine-vm/.cicd/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/ine-vm/.cicd/build.sh -------------------------------------------------------------------------------- /libraries/ine-vm/.cicd/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/ine-vm/.cicd/pipeline.yml -------------------------------------------------------------------------------- /libraries/ine-vm/.cicd/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/ine-vm/.cicd/tests.sh -------------------------------------------------------------------------------- /libraries/ine-vm/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/ine-vm/.clang-format -------------------------------------------------------------------------------- /libraries/ine-vm/.cmake-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/ine-vm/.cmake-format.py -------------------------------------------------------------------------------- /libraries/ine-vm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/ine-vm/.gitignore -------------------------------------------------------------------------------- /libraries/ine-vm/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/ine-vm/.gitmodules -------------------------------------------------------------------------------- /libraries/ine-vm/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/ine-vm/.travis.yml -------------------------------------------------------------------------------- /libraries/ine-vm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/ine-vm/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/ine-vm/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/ine-vm/CONTRIBUTING.md -------------------------------------------------------------------------------- /libraries/ine-vm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/ine-vm/LICENSE -------------------------------------------------------------------------------- /libraries/ine-vm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/ine-vm/README.md -------------------------------------------------------------------------------- /libraries/ine-vm/docs/OVERVIEW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/ine-vm/docs/OVERVIEW.md -------------------------------------------------------------------------------- /libraries/ine-vm/external/Catch2/projects/XCode/OCTest/OCTest/Main.mm: -------------------------------------------------------------------------------- 1 | #define CATCH_CONFIG_MAIN 2 | #import "catch.hpp" 3 | -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/.clang-format-ignore: -------------------------------------------------------------------------------- 1 | single-header/.* 2 | -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/.quickcpplib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/doc/html/none.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/doc/html/theme-original/variant-blue.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/doc/src/content/_footer.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/doc/src/content/_header.md: -------------------------------------------------------------------------------- 1 | Outcome 2.1 library documentation -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/doc/src/themes/boostdoc/archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | +++ 3 | -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/doc/src/themes/boostdoc/layouts/shortcodes/mermaid.html: -------------------------------------------------------------------------------- 1 | {{ $foo := .Inner }} -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/doc/src/themes/docdock/layouts/partials/custom-footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/doc/src/themes/docdock/layouts/partials/menu-footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/doc/src/themes/docdock/layouts/shortcodes/pagetreesearch.html: -------------------------------------------------------------------------------- 1 | {{.Inner}} -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/doc/src/themes/docdock/layouts/shortcodes/section.html: -------------------------------------------------------------------------------- 1 | {{.Inner}} -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/doc/src/themes/docdock/static/none.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/doc/src/themes/docdock/static/theme-original/variant-blue.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/include/outcome/quickcpplib/.gitignore: -------------------------------------------------------------------------------- 1 | *.cache 2 | -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/include/outcome/quickcpplib/.quickcpplib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/include/outcome/quickcpplib/include/byte/.buckconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/include/outcome/quickcpplib/pcpp/pcpp/ply/test/pkg_test1/parsing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/include/outcome/quickcpplib/pcpp/pcpp/ply/test/pkg_test2/parsing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/include/outcome/quickcpplib/pcpp/pcpp/ply/test/pkg_test3/generated/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/include/outcome/quickcpplib/pcpp/pcpp/ply/test/pkg_test3/parsing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/include/outcome/quickcpplib/pcpp/pcpp/ply/test/pkg_test4/parsing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/include/outcome/quickcpplib/pcpp/pcpp/ply/test/pkg_test5/parsing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/include/outcome/quickcpplib/pcpp/pcpp/ply/test/pkg_test6/parsing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/include/outcome/quickcpplib/pcpp/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/include/outcome/quickcpplib/pcpp/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/include/outcome/quickcpplib/pcpp/tests/test-c/unbal1.h: -------------------------------------------------------------------------------- 1 | /* unbal1.h */ 2 | #endif 3 | -------------------------------------------------------------------------------- /libraries/ine-vm/external/outcome/test/constexprs/.boostish: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/inery.system.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/ine-vm/inery.system.wasm -------------------------------------------------------------------------------- /libraries/ine-vm/spec_restrictions: -------------------------------------------------------------------------------- 1 | no imports other than functions 2 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/a.out.pdf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_in/fuzz1.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  n -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_in/fuzz11.wasm: -------------------------------------------------------------------------------- 1 | asm` -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_in/fuzz13.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_in/fuzz14.wasm: -------------------------------------------------------------------------------- 1 | asmmf -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_in/fuzz8.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_in/leak_no_destructor.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_in/leak_readExports.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_in/leak_readFunctions_2.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |   -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_in/leak_readFunctions_3.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_in/leak_readGlobals.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_in/leak_readImports.wasm: -------------------------------------------------------------------------------- 1 | asm' -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_in/leak_wasm_binary_cpp_L1249.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/auto_extras/auto_000049: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000001,orig:80k_deep_loop_with_void.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000002,orig:asserter.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000003,orig:big_allocation.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000004,orig:crash_section_size_too_big.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000008,orig:eosio.sudo.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000009,orig:eosio.system.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000012,orig:fuzz1.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000013,orig:fuzz10.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000015,orig:fuzz12.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000016,orig:fuzz13.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000017,orig:fuzz14.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000019,orig:fuzz2.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000021,orig:fuzz4.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000023,orig:fuzz6.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000024,orig:fuzz7.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000026,orig:fuzz9.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000029,orig:identity.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000032,orig:leak_readExports.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000033,orig:leak_readFunctions.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000035,orig:leak_readFunctions_3.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000036,orig:leak_readGlobals.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000037,orig:leak_readImports.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000038,orig:leak_wasm_binary_cpp_L1249.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000039,orig:locals-s.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000040,orig:locals-yc.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000045,src:000002,op:flip1,pos:64,+cov: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000046,src:000002,op:havoc,rep:128: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000047,src:000004,op:havoc,rep:16,+cov: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/deterministic_done/id:000049,src:000002,op:havoc,rep:64: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000000,orig:80k_deep_loop_with_ret.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000001,orig:80k_deep_loop_with_void.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000003,orig:big_allocation.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000004,orig:crash_section_size_too_big.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000005,orig:deep_loops_ext_report.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000006,orig:dice.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000007,orig:eosio.msig.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000008,orig:eosio.sudo.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000009,orig:eosio.system.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000010,orig:eosio.token.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000011,orig:exchange.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000012,orig:fuzz1.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000013,orig:fuzz10.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000014,orig:fuzz11.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000015,orig:fuzz12.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000018,orig:fuzz15.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000019,orig:fuzz2.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000020,orig:fuzz3.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000021,orig:fuzz4.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000022,orig:fuzz5.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000023,orig:fuzz6.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000024,orig:fuzz7.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000025,orig:fuzz8.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000026,orig:fuzz9.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000027,orig:getcode_deepindent.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000028,orig:hello.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000029,orig:identity.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000030,orig:indent-mismatch.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000031,orig:leak_no_destructor.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000033,orig:leak_readFunctions.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000034,orig:leak_readFunctions_2.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000035,orig:leak_readFunctions_3.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000036,orig:leak_readGlobals.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000037,orig:leak_readImports.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000040,orig:locals-yc.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000041,orig:noop.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000042,orig:proxy.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000043,orig:readFunctions_slowness_out_of_memory.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000044,orig:slowwasm_localsets.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/redundant_edges/id:000046,src:000002,op:havoc,rep:128: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/variable_behavior/id:000019,orig:fuzz2.wasm: -------------------------------------------------------------------------------- 1 | ../../id:000019,orig:fuzz2.wasm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/.state/variable_behavior/id:000021,orig:fuzz4.wasm: -------------------------------------------------------------------------------- 1 | ../../id:000021,orig:fuzz4.wasm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/id:000012,orig:fuzz1.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  n -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/id:000014,orig:fuzz11.wasm: -------------------------------------------------------------------------------- 1 | asm` -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/id:000016,orig:fuzz13.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/id:000017,orig:fuzz14.wasm: -------------------------------------------------------------------------------- 1 | asmmf -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/id:000025,orig:fuzz8.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/id:000031,orig:leak_no_destructor.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/id:000032,orig:leak_readExports.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/id:000034,orig:leak_readFunctions_2.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |   -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/id:000035,orig:leak_readFunctions_3.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/id:000036,orig:leak_readGlobals.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/id:000037,orig:leak_readImports.wasm: -------------------------------------------------------------------------------- 1 | asm' -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/afl_out/queue/id:000038,orig:leak_wasm_binary_cpp_L1249.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/ine-vm/tests/fuzz/build -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/00000001e0b38bb0005bf380f1b00000.00000008.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/0000834706150000005ab681b5f50000.0000000e.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/01b000000000000001b0000000000000.00000001.honggfuzz.cov: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/01e0b38bb0000000005bf380f1b00000.00000005.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/01f2a7e559d37410722001b0eac006df.00000015.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/02d00132f460d270040ea00af1b003cf.0000000f.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/0cd6e0d049c87053aa9dbedecb3dc50a.0000001b.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asm` 2 | A -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/283f698390b774116eee27047c76df50.00000014.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/2d0ea291e4e9d1accfb1e1aee6761b6a.00000016.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asmp A -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/2d0ea291ffe9d1accfac56aee6761b6a.00000016.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asmp A -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/2efdb98390b774116eee256e81b6df50.00000014.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/2eff698390b774116eee270311b6df50.00000014.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/2f4f338390b774116ea39502cac6df50.00000014.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/320665324304c0894794db125fff99e0.0000001e.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asmspectesttablep -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/328519392dc2f706ed0a7680d753111c.00000011.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asm-7794 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/4b629050bd8e73eb4238bb14c0147959.00000018.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asmtestfunc -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/6c46df4e0ee114f184d48bce55ef552e.00000017.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asmQ a -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/6c528f4e0ee114f184d48bce55fb052e.00000017.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asmA a -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/6d03df4e0ee114f184d48bce55ef546b.00000017.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asmQ a -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/764bce64e4e894afcef4e1c213775ce0.00000016.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asm A -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/77528e0b0ee114f184d48bce54be1899.00000017.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asmA a -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/77528f4e0d8400f184d19c78b5fb1899.00000017.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asmA a -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/77528f4e0ee114f184d48bce55fb1899.00000017.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asmA a -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/9118e81edc16191f504de68782dc5998.0000001e.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asmspectestmemory -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/a12936e2b2328d2467794d62db89c4f1.00000021.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asmtest memory-2-inf -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/a17aa6e2b2328d24fb13dd62db89c498.00000021.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asmtest memory-2-infm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/bf775eb5e2e3a3b50dedeb7433220149.00000020.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asm`}}}`||| -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/binary.0.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/binary.1.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/binary.2.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/binary.3.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/c03252bb2eff6983517e27031023a739.00000018.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asm ab -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/ca33d58af17b2e3c2f7ed524c22de647.00000020.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asmtest table-10-inf -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/cb4beb0330bd8e72dd82ce14c017c44a.00000019.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asmtestfuncp80 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/cbcb443af17b2e3ce5f46524c22c8ea0.00000020.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asmtest table-10-inf -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/comments.0.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/comments.1.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/comments.2.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/comments.3.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/const.0.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/const.12.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | B -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/const.16.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | C -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/const.4.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | A -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/const.8.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | B -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/custom.0.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/custom.1.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/custom.2.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | addTwo 3 |  j -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/custom_section.0.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/custom_section.1.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/custom_section.2.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | addTwo 3 |  j -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/d32180714b4a105ab06ef492872e2f09.0000001e.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asm 3966614162950746 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/d63cbe7c0be2b26c821b00e19b434867.00000020.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asmspectestunk33926976 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/d6bb4dfeeffc9fd296876cfc68fffc9f.0000000c.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asG3134522 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/da8481123a0ead0dddce0ae7d52fec60.0000001d.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asm` testfunc -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/data.1.wasm: -------------------------------------------------------------------------------- 1 | asm A a -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/data.12.wasm: -------------------------------------------------------------------------------- 1 | asm A -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/data.13.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory A -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/data.14.wasm: -------------------------------------------------------------------------------- 1 | asm A -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/data.16.wasm: -------------------------------------------------------------------------------- 1 | asm A -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/data.17.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory A -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/data.18.wasm: -------------------------------------------------------------------------------- 1 | asm A -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/data.19.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory A a -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/data.2.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory A a -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/data.20.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory A a -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/data.23.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory A a -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/data.24.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory A a -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/data.25.wasm: -------------------------------------------------------------------------------- 1 | asm A a -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/data.26.wasm: -------------------------------------------------------------------------------- 1 | asm A a -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/data.27.wasm: -------------------------------------------------------------------------------- 1 | asm A a -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/data.28.wasm: -------------------------------------------------------------------------------- 1 | asm A -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/data.29.wasm: -------------------------------------------------------------------------------- 1 | asm A -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/data.30.wasm: -------------------------------------------------------------------------------- 1 | asmspectest 2 | global_i32 # a -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/data.35.wasm: -------------------------------------------------------------------------------- 1 | asm A a -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/data.36.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory A a -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/data.5.wasm: -------------------------------------------------------------------------------- 1 | asmspectest 2 | global_i32 # a -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/data.7.wasm: -------------------------------------------------------------------------------- 1 | asmspectest 2 | global_i32 # a -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/db3481123a0ead0dddce0ae7d43ffd60.0000001d.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asm` testfunc -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/db34eccf8a0ead0ddd9e5fe2d43ffd60.0000001d.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asm` testfunc -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/dd90d7d53242daa4d0685e125eecb723.0000001f.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asmspecpesttablep -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/dd9167d53242daa4d0685e125eeda732.0000001f.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asmspecpesttablep -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/ddcad7d53242dfb0d7059e125e8ab143.0000001f.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asmspectesttablepo -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/e1a4b0000001e0b301365380f1b00000.0000000a.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/e88b6b0330bd8e72e7995414c017c462.00000019.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asmtestfuncp 2 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/elem.1.wasm: -------------------------------------------------------------------------------- 1 | asm`p 2 | A  3 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/elem.10.wasm: -------------------------------------------------------------------------------- 1 | asmp A -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/elem.11.wasm: -------------------------------------------------------------------------------- 1 | asmspectesttablep A -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/elem.12.wasm: -------------------------------------------------------------------------------- 1 | asmp A -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/elem.13.wasm: -------------------------------------------------------------------------------- 1 | asmp A -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/elem.17.wasm: -------------------------------------------------------------------------------- 1 | asm`spectesttablep A  2 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/elem.19.wasm: -------------------------------------------------------------------------------- 1 | asm`p A  2 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/elem.21.wasm: -------------------------------------------------------------------------------- 1 | asmp A -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/elem.22.wasm: -------------------------------------------------------------------------------- 1 | asm`p 2 | A 3 |  4 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/elem.23.wasm: -------------------------------------------------------------------------------- 1 | asm`spectesttablep 2 |  A 3 |  4 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/elem.24.wasm: -------------------------------------------------------------------------------- 1 | asm`p 2 |  A 3 |  4 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/elem.25.wasm: -------------------------------------------------------------------------------- 1 | asm`spectesttablep 2 |  A 3 |  4 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/elem.26.wasm: -------------------------------------------------------------------------------- 1 | asm`p 2 | A  3 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/elem.27.wasm: -------------------------------------------------------------------------------- 1 | asm`spectesttablep 2 |  A  3 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/elem.28.wasm: -------------------------------------------------------------------------------- 1 | asm`p 2 | Av  3 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/elem.29.wasm: -------------------------------------------------------------------------------- 1 | asm`spectesttablep 2 |  Av  3 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/elem.8.wasm: -------------------------------------------------------------------------------- 1 | asm`p 2 | A  3 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/elem.9.wasm: -------------------------------------------------------------------------------- 1 | asm`spectesttablep 2 |  A  3 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.0.wasm: -------------------------------------------------------------------------------- 1 | asm`a 2 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.1.wasm: -------------------------------------------------------------------------------- 1 | asm` ab 2 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.10.wasm: -------------------------------------------------------------------------------- 1 | asm`a 2 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.11.wasm: -------------------------------------------------------------------------------- 1 | asm`e 2 | 3 |  Aj -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.12.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.13.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.20.wasm: -------------------------------------------------------------------------------- 1 | asmA a -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.21.wasm: -------------------------------------------------------------------------------- 1 | asmA  ab -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.23.wasm: -------------------------------------------------------------------------------- 1 | asmA a -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.24.wasm: -------------------------------------------------------------------------------- 1 | asmA a -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.25.wasm: -------------------------------------------------------------------------------- 1 | asmA a -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.26.wasm: -------------------------------------------------------------------------------- 1 | asmA a -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.27.wasm: -------------------------------------------------------------------------------- 1 | asmA a -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.28.wasm: -------------------------------------------------------------------------------- 1 | asmA a -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.29.wasm: -------------------------------------------------------------------------------- 1 | asmA* e -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.3.wasm: -------------------------------------------------------------------------------- 1 | asm`a 2 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.30.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.31.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.38.wasm: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.39.wasm: -------------------------------------------------------------------------------- 1 | asmp ab -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.40.wasm: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.41.wasm: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.42.wasm: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.43.wasm: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.44.wasm: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.45.wasm: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.46.wasm: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.47.wasm: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.48.wasm: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.49.wasm: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.5.wasm: -------------------------------------------------------------------------------- 1 | asm` ab 2 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.50.wasm: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.51.wasm: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.57.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.58.wasm: -------------------------------------------------------------------------------- 1 | asm ab -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.59.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.6.wasm: -------------------------------------------------------------------------------- 1 | asm`a 2 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.60.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.61.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.62.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.63.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.64.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.65.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.66.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.67.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.68.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.69.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.7.wasm: -------------------------------------------------------------------------------- 1 | asm`a 2 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.70.wasm: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.8.wasm: -------------------------------------------------------------------------------- 1 | asm`a 2 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/exports.9.wasm: -------------------------------------------------------------------------------- 1 | asm`a 2 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/f49c82e558967411736501de725143df.00000015.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/f49d32e558967411736501dfa92143df.00000015.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asma -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/f5015dfde41a1011a3acc94f585e7143.00000016.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asmpa -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/f5b3932c56ec3cdcea266dc0a8f2ad07.0000001f.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asmspectestunknown -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/f660000001e0b38b02d1f380f1b00000.00000009.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/f6b204b0000001e001196cc5f1b00000.0000000b.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/f70610a0000001e007c4b680f1b00000.0000000b.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/f7061110000001e00681b680f1b00000.0000000b.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/f7061270000001e0040bb680f1b00000.0000000b.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/f70614b0000001e0011fb680f1b00000.0000000b.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/f7061660000001e002d0b680f1b00000.0000000b.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/f70617d0000001e00395b680f1b00000.0000000b.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/f7061880000001e00a72b680f1b00000.0000000b.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/f7061930000001e00b37b680f1b00000.0000000b.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asm  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/f7061a50000001e009bdb680f1b00000.0000000b.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asm  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/f7061be0000001e008f8b680f1b00000.0000000b.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asm 2 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/fe90741d28ac0e70bfb7a537d0340eb1.0000001c.honggfuzz.cov: -------------------------------------------------------------------------------- 1 | asmtestfunc-i32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/globals.16.wasm: -------------------------------------------------------------------------------- 1 | asmspectest 2 | global_i32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/globals.19.wasm: -------------------------------------------------------------------------------- 1 | asmA -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.10.wasm: -------------------------------------------------------------------------------- 1 | asm`spectestunknown -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.11.wasm: -------------------------------------------------------------------------------- 1 | asm` testfunc -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.12.wasm: -------------------------------------------------------------------------------- 1 | asm` testfunc -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.13.wasm: -------------------------------------------------------------------------------- 1 | asm` testfunc -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.14.wasm: -------------------------------------------------------------------------------- 1 | asm`testfunc-i32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.15.wasm: -------------------------------------------------------------------------------- 1 | asm`testfunc-i32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.16.wasm: -------------------------------------------------------------------------------- 1 | asm`}testfunc-i32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.17.wasm: -------------------------------------------------------------------------------- 1 | asm`~testfunc-i32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.18.wasm: -------------------------------------------------------------------------------- 1 | asm`testfunc-i32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.19.wasm: -------------------------------------------------------------------------------- 1 | asm`test func->i32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.2.wasm: -------------------------------------------------------------------------------- 1 | asm` testfunc -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.20.wasm: -------------------------------------------------------------------------------- 1 | asm`test func->i32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.21.wasm: -------------------------------------------------------------------------------- 1 | asm`}test func->i32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.22.wasm: -------------------------------------------------------------------------------- 1 | asm`~test func->i32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.23.wasm: -------------------------------------------------------------------------------- 1 | asm`test func->i32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.24.wasm: -------------------------------------------------------------------------------- 1 | asm`test func-i32->i32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.25.wasm: -------------------------------------------------------------------------------- 1 | asm`test func-i32->i32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.26.wasm: -------------------------------------------------------------------------------- 1 | asm`test func-i32->i32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.27.wasm: -------------------------------------------------------------------------------- 1 | asm`test 2 | global-i32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.28.wasm: -------------------------------------------------------------------------------- 1 | asm`test table-10-inf -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.29.wasm: -------------------------------------------------------------------------------- 1 | asm`test memory-2-inf -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.3.wasm: -------------------------------------------------------------------------------- 1 | asm`testfunc-i32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.30.wasm: -------------------------------------------------------------------------------- 1 | asm`spectest 2 | global_i32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.31.wasm: -------------------------------------------------------------------------------- 1 | asm`spectesttable -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.32.wasm: -------------------------------------------------------------------------------- 1 | asm`spectestmemory -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.34.wasm: -------------------------------------------------------------------------------- 1 | asmtest 2 | global-i32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.35.wasm: -------------------------------------------------------------------------------- 1 | asmtest 2 | global-f32} -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.36.wasm: -------------------------------------------------------------------------------- 1 | asmtestunknown -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.37.wasm: -------------------------------------------------------------------------------- 1 | asmspectestunknown -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.38.wasm: -------------------------------------------------------------------------------- 1 | asmtestfunc -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.39.wasm: -------------------------------------------------------------------------------- 1 | asmtest table-10-inf -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.4.wasm: -------------------------------------------------------------------------------- 1 | asm`}testfunc-f32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.40.wasm: -------------------------------------------------------------------------------- 1 | asmtest memory-2-inf -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.41.wasm: -------------------------------------------------------------------------------- 1 | asmspectest print_i32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.42.wasm: -------------------------------------------------------------------------------- 1 | asmspectesttable -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.43.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.49.wasm: -------------------------------------------------------------------------------- 1 | asmtest table-10-infp 2 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.5.wasm: -------------------------------------------------------------------------------- 1 | asm`test func->i32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.50.wasm: -------------------------------------------------------------------------------- 1 | asmtest table-10-infp -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.51.wasm: -------------------------------------------------------------------------------- 1 | asmtest table-10-infp -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.52.wasm: -------------------------------------------------------------------------------- 1 | asmspectesttablep 2 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.53.wasm: -------------------------------------------------------------------------------- 1 | asmspectesttablep -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.54.wasm: -------------------------------------------------------------------------------- 1 | asmspectesttablep -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.55.wasm: -------------------------------------------------------------------------------- 1 | asmspectesttablep 2 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.56.wasm: -------------------------------------------------------------------------------- 1 | asmspectesttablep -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.57.wasm: -------------------------------------------------------------------------------- 1 | asmspectesttablep -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.58.wasm: -------------------------------------------------------------------------------- 1 | asmspectesttablep 2 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.59.wasm: -------------------------------------------------------------------------------- 1 | asmspectesttablep -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.6.wasm: -------------------------------------------------------------------------------- 1 | asm`}test func->f32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.60.wasm: -------------------------------------------------------------------------------- 1 | asmtestunknownp 2 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.61.wasm: -------------------------------------------------------------------------------- 1 | asmspectestunknownp 2 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.62.wasm: -------------------------------------------------------------------------------- 1 | asmtest table-10-infp -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.63.wasm: -------------------------------------------------------------------------------- 1 | asmtest table-10-infp 2 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.64.wasm: -------------------------------------------------------------------------------- 1 | asmspectesttablep -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.65.wasm: -------------------------------------------------------------------------------- 1 | asmspectesttablep 2 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.66.wasm: -------------------------------------------------------------------------------- 1 | asmtestfuncp 2 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.67.wasm: -------------------------------------------------------------------------------- 1 | asmtest 2 | global-i32p 3 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.68.wasm: -------------------------------------------------------------------------------- 1 | asmtest memory-2-infp 2 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.69.wasm: -------------------------------------------------------------------------------- 1 | asmspectest print_i32p 2 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.7.wasm: -------------------------------------------------------------------------------- 1 | asm`test func-i32->i32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.75.wasm: -------------------------------------------------------------------------------- 1 | asmtest memory-2-inf -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.76.wasm: -------------------------------------------------------------------------------- 1 | asmtest memory-2-inf -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.77.wasm: -------------------------------------------------------------------------------- 1 | asmtest memory-2-inf -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.78.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.79.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.8.wasm: -------------------------------------------------------------------------------- 1 | asm`~~test func-i64->i64 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.80.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.81.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.82.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.83.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.84.wasm: -------------------------------------------------------------------------------- 1 | asmtestunknown -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.85.wasm: -------------------------------------------------------------------------------- 1 | asmspectestunknown -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.86.wasm: -------------------------------------------------------------------------------- 1 | asmtest memory-2-inf -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.87.wasm: -------------------------------------------------------------------------------- 1 | asmtest memory-2-inf -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.88.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.89.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.9.wasm: -------------------------------------------------------------------------------- 1 | asm`testunknown -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.90.wasm: -------------------------------------------------------------------------------- 1 | asmtestfunc-i32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.91.wasm: -------------------------------------------------------------------------------- 1 | asmtest 2 | global-i32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.92.wasm: -------------------------------------------------------------------------------- 1 | asmtest table-10-inf -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.93.wasm: -------------------------------------------------------------------------------- 1 | asmspectest print_i32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.94.wasm: -------------------------------------------------------------------------------- 1 | asmspectest 2 | global_i32 -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.95.wasm: -------------------------------------------------------------------------------- 1 | asmspectesttable -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.96.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.97.wasm: -------------------------------------------------------------------------------- 1 | asmspectestmemory -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/imports.98.wasm: -------------------------------------------------------------------------------- 1 | asm`spectestmemorygrow 2 |  @ -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/linking.0.wasm: -------------------------------------------------------------------------------- 1 | asm`call 2 |  A -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/linking.10.wasm: -------------------------------------------------------------------------------- 1 | asm` Mttabp A  2 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/linking.11.wasm: -------------------------------------------------------------------------------- 1 | asmA g -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/linking.12.wasm: -------------------------------------------------------------------------------- 1 | asm G1g# g -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/linking.13.wasm: -------------------------------------------------------------------------------- 1 | asm` Mttabp A 2 |  3 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/linking.22.wasm: -------------------------------------------------------------------------------- 1 | asm` Mmmemgrow 2 |  @ -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/linking.3.wasm: -------------------------------------------------------------------------------- 1 | asm`~ 2 | reexport_fprint -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/linking.4.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | reexport_fprint -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/linking.5.wasm: -------------------------------------------------------------------------------- 1 | asm`A* globget 2 | # -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/memory.0.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/memory.1.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/memory.25.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A- -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/memory.26.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A/ -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/memory.27.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A( -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/memory.28.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | 3 | A* -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/names.0.wasm: -------------------------------------------------------------------------------- 1 | asm`foo 2 | A -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/names.1.wasm: -------------------------------------------------------------------------------- 1 | asm`foo 2 | A -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/resizing.1.wasm: -------------------------------------------------------------------------------- 1 | asm`grow 2 |  @ -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/resizing.2.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | grow 3 |  @ -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/start.5.wasm: -------------------------------------------------------------------------------- 1 | asm``spectest print_i32 2 | A -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/start.6.wasm: -------------------------------------------------------------------------------- 1 | asm``spectest print_i32 2 | A -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/start.7.wasm: -------------------------------------------------------------------------------- 1 | asm`spectestprint -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/corpus/start.8.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/old_afl_out/queue/.state/auto_extras/auto_000012: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/old_afl_out/queue/.state/auto_extras/auto_000039: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/old_afl_out/queue/.state/auto_extras/auto_000041: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/old_afl_out/queue/.state/auto_extras/auto_000043: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/old_afl_out/queue/.state/auto_extras/auto_000045: -------------------------------------------------------------------------------- 1 | - -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/old_afl_out/queue/.state/auto_extras/auto_000047: -------------------------------------------------------------------------------- 1 | O -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/old_afl_out/queue/.state/auto_extras/auto_000048: -------------------------------------------------------------------------------- 1 | /A -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/old_afl_out/queue/.state/auto_extras/auto_000049: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/old_afl_out/queue/.state/deterministic_done/id:000000,orig:eosio.msig.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/old_afl_out/queue/.state/deterministic_done/id:000001,orig:eosio.sudo.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/old_afl_out/queue/.state/redundant_edges/id:000002,orig:eosio.system.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/old_afl_out/queue/.state/redundant_edges/id:000003,orig:eosio.token.wasm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/fuzz/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/ine-vm/tests/fuzz/test -------------------------------------------------------------------------------- /libraries/ine-vm/tests/host.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/ine-vm/tests/host.wasm -------------------------------------------------------------------------------- /libraries/ine-vm/tests/host.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/ine-vm/tests/host.wast -------------------------------------------------------------------------------- /libraries/ine-vm/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/ine-vm/tests/main.cpp -------------------------------------------------------------------------------- /libraries/ine-vm/tests/spec/const_tests.cpp.bak: -------------------------------------------------------------------------------- 1 | Cannot open file: const.json 2 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/spec/utf8-invalid-encoding_tests.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/ine-vm/tests/test.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/ine-vm/tests/test.types -------------------------------------------------------------------------------- /libraries/ine-vm/tests/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/ine-vm/tests/utils.hpp -------------------------------------------------------------------------------- /libraries/ine-vm/tools/interp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/ine-vm/tools/interp.cpp -------------------------------------------------------------------------------- /libraries/softfloat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/softfloat/.gitignore -------------------------------------------------------------------------------- /libraries/softfloat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/softfloat/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/softfloat/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/softfloat/COPYING.txt -------------------------------------------------------------------------------- /libraries/softfloat/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/softfloat/README.html -------------------------------------------------------------------------------- /libraries/softfloat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/softfloat/README.md -------------------------------------------------------------------------------- /libraries/softfloat/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/softfloat/README.txt -------------------------------------------------------------------------------- /libraries/softfloat/source/f16_eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/softfloat/source/f16_eq.c -------------------------------------------------------------------------------- /libraries/softfloat/source/f16_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/softfloat/source/f16_le.c -------------------------------------------------------------------------------- /libraries/softfloat/source/f16_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/softfloat/source/f16_lt.c -------------------------------------------------------------------------------- /libraries/softfloat/source/f32_eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/softfloat/source/f32_eq.c -------------------------------------------------------------------------------- /libraries/softfloat/source/f32_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/softfloat/source/f32_le.c -------------------------------------------------------------------------------- /libraries/softfloat/source/f32_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/softfloat/source/f32_lt.c -------------------------------------------------------------------------------- /libraries/softfloat/source/f64_eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/softfloat/source/f64_eq.c -------------------------------------------------------------------------------- /libraries/softfloat/source/f64_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/softfloat/source/f64_le.c -------------------------------------------------------------------------------- /libraries/softfloat/source/f64_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/softfloat/source/f64_lt.c -------------------------------------------------------------------------------- /libraries/softfloat/source/s_addM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/softfloat/source/s_addM.c -------------------------------------------------------------------------------- /libraries/softfloat/source/s_subM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/softfloat/source/s_subM.c -------------------------------------------------------------------------------- /libraries/testing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/testing/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/testing/tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/testing/tester.cpp -------------------------------------------------------------------------------- /libraries/version/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/version/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/version/src/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/version/src/version.cpp -------------------------------------------------------------------------------- /libraries/wabt/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/.appveyor.yml -------------------------------------------------------------------------------- /libraries/wabt/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: Chromium 2 | -------------------------------------------------------------------------------- /libraries/wabt/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/.gitattributes -------------------------------------------------------------------------------- /libraries/wabt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/.gitignore -------------------------------------------------------------------------------- /libraries/wabt/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/.gitmodules -------------------------------------------------------------------------------- /libraries/wabt/.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/.style.yapf -------------------------------------------------------------------------------- /libraries/wabt/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/.travis.yml -------------------------------------------------------------------------------- /libraries/wabt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/wabt/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/Contributing.md -------------------------------------------------------------------------------- /libraries/wabt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/LICENSE -------------------------------------------------------------------------------- /libraries/wabt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/Makefile -------------------------------------------------------------------------------- /libraries/wabt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/README.md -------------------------------------------------------------------------------- /libraries/wabt/cmake/FindRE2C.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/cmake/FindRE2C.cmake -------------------------------------------------------------------------------- /libraries/wabt/cmake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/cmake/README.md -------------------------------------------------------------------------------- /libraries/wabt/demo/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/demo/custom.css -------------------------------------------------------------------------------- /libraries/wabt/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/demo/index.html -------------------------------------------------------------------------------- /libraries/wabt/demo/libwabt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/demo/libwabt.js -------------------------------------------------------------------------------- /libraries/wabt/demo/wast-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/demo/wast-mode.js -------------------------------------------------------------------------------- /libraries/wabt/fuzz-in/wast.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/fuzz-in/wast.dict -------------------------------------------------------------------------------- /libraries/wabt/man/wasm-interp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/man/wasm-interp.1 -------------------------------------------------------------------------------- /libraries/wabt/man/wasm-objdump.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/man/wasm-objdump.1 -------------------------------------------------------------------------------- /libraries/wabt/man/wasm2c.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/man/wasm2c.1 -------------------------------------------------------------------------------- /libraries/wabt/man/wasm2wat.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/man/wasm2wat.1 -------------------------------------------------------------------------------- /libraries/wabt/man/wat-desugar.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/man/wat-desugar.1 -------------------------------------------------------------------------------- /libraries/wabt/man/wat2wasm.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/man/wat2wasm.1 -------------------------------------------------------------------------------- /libraries/wabt/scripts/coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/scripts/coverage.sh -------------------------------------------------------------------------------- /libraries/wabt/scripts/sha256sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/scripts/sha256sum.py -------------------------------------------------------------------------------- /libraries/wabt/src/apply-names.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/apply-names.cc -------------------------------------------------------------------------------- /libraries/wabt/src/apply-names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/apply-names.h -------------------------------------------------------------------------------- /libraries/wabt/src/binary-reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/binary-reader.cc -------------------------------------------------------------------------------- /libraries/wabt/src/binary-reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/binary-reader.h -------------------------------------------------------------------------------- /libraries/wabt/src/binary-writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/binary-writer.cc -------------------------------------------------------------------------------- /libraries/wabt/src/binary-writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/binary-writer.h -------------------------------------------------------------------------------- /libraries/wabt/src/binary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/binary.cc -------------------------------------------------------------------------------- /libraries/wabt/src/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/binary.h -------------------------------------------------------------------------------- /libraries/wabt/src/binding-hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/binding-hash.cc -------------------------------------------------------------------------------- /libraries/wabt/src/binding-hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/binding-hash.h -------------------------------------------------------------------------------- /libraries/wabt/src/c-writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/c-writer.cc -------------------------------------------------------------------------------- /libraries/wabt/src/c-writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/c-writer.h -------------------------------------------------------------------------------- /libraries/wabt/src/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/cast.h -------------------------------------------------------------------------------- /libraries/wabt/src/circular-array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/circular-array.h -------------------------------------------------------------------------------- /libraries/wabt/src/color.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/color.cc -------------------------------------------------------------------------------- /libraries/wabt/src/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/color.h -------------------------------------------------------------------------------- /libraries/wabt/src/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/common.cc -------------------------------------------------------------------------------- /libraries/wabt/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/common.h -------------------------------------------------------------------------------- /libraries/wabt/src/config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/config.cc -------------------------------------------------------------------------------- /libraries/wabt/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/config.h.in -------------------------------------------------------------------------------- /libraries/wabt/src/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/error.h -------------------------------------------------------------------------------- /libraries/wabt/src/expr-visitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/expr-visitor.cc -------------------------------------------------------------------------------- /libraries/wabt/src/expr-visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/expr-visitor.h -------------------------------------------------------------------------------- /libraries/wabt/src/feature.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/feature.cc -------------------------------------------------------------------------------- /libraries/wabt/src/feature.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/feature.def -------------------------------------------------------------------------------- /libraries/wabt/src/feature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/feature.h -------------------------------------------------------------------------------- /libraries/wabt/src/filenames.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/filenames.cc -------------------------------------------------------------------------------- /libraries/wabt/src/filenames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/filenames.h -------------------------------------------------------------------------------- /libraries/wabt/src/generate-names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/generate-names.h -------------------------------------------------------------------------------- /libraries/wabt/src/hash-util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/hash-util.cc -------------------------------------------------------------------------------- /libraries/wabt/src/hash-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/hash-util.h -------------------------------------------------------------------------------- /libraries/wabt/src/interp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/interp.cc -------------------------------------------------------------------------------- /libraries/wabt/src/interp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/interp.h -------------------------------------------------------------------------------- /libraries/wabt/src/intrusive-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/intrusive-list.h -------------------------------------------------------------------------------- /libraries/wabt/src/ir.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/ir.cc -------------------------------------------------------------------------------- /libraries/wabt/src/ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/ir.h -------------------------------------------------------------------------------- /libraries/wabt/src/leb128.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/leb128.cc -------------------------------------------------------------------------------- /libraries/wabt/src/leb128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/leb128.h -------------------------------------------------------------------------------- /libraries/wabt/src/lexer-source.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/lexer-source.cc -------------------------------------------------------------------------------- /libraries/wabt/src/lexer-source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/lexer-source.h -------------------------------------------------------------------------------- /libraries/wabt/src/literal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/literal.cc -------------------------------------------------------------------------------- /libraries/wabt/src/literal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/literal.h -------------------------------------------------------------------------------- /libraries/wabt/src/make-unique.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/make-unique.h -------------------------------------------------------------------------------- /libraries/wabt/src/opcode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/opcode.cc -------------------------------------------------------------------------------- /libraries/wabt/src/opcode.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/opcode.def -------------------------------------------------------------------------------- /libraries/wabt/src/opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/opcode.h -------------------------------------------------------------------------------- /libraries/wabt/src/option-parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/option-parser.cc -------------------------------------------------------------------------------- /libraries/wabt/src/option-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/option-parser.h -------------------------------------------------------------------------------- /libraries/wabt/src/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/range.h -------------------------------------------------------------------------------- /libraries/wabt/src/resolve-names.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/resolve-names.cc -------------------------------------------------------------------------------- /libraries/wabt/src/resolve-names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/resolve-names.h -------------------------------------------------------------------------------- /libraries/wabt/src/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/result.h -------------------------------------------------------------------------------- /libraries/wabt/src/stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/stream.cc -------------------------------------------------------------------------------- /libraries/wabt/src/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/stream.h -------------------------------------------------------------------------------- /libraries/wabt/src/string-view.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/string-view.cc -------------------------------------------------------------------------------- /libraries/wabt/src/string-view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/string-view.h -------------------------------------------------------------------------------- /libraries/wabt/src/test-hexfloat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/test-hexfloat.cc -------------------------------------------------------------------------------- /libraries/wabt/src/test-interp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/test-interp.cc -------------------------------------------------------------------------------- /libraries/wabt/src/test-literal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/test-literal.cc -------------------------------------------------------------------------------- /libraries/wabt/src/test-utf8.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/test-utf8.cc -------------------------------------------------------------------------------- /libraries/wabt/src/token.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/token.cc -------------------------------------------------------------------------------- /libraries/wabt/src/token.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/token.def -------------------------------------------------------------------------------- /libraries/wabt/src/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/token.h -------------------------------------------------------------------------------- /libraries/wabt/src/tools/wasm2c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/tools/wasm2c.cc -------------------------------------------------------------------------------- /libraries/wabt/src/tracing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/tracing.cc -------------------------------------------------------------------------------- /libraries/wabt/src/tracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/tracing.h -------------------------------------------------------------------------------- /libraries/wabt/src/type-checker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/type-checker.cc -------------------------------------------------------------------------------- /libraries/wabt/src/type-checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/type-checker.h -------------------------------------------------------------------------------- /libraries/wabt/src/utf8.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/utf8.cc -------------------------------------------------------------------------------- /libraries/wabt/src/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/utf8.h -------------------------------------------------------------------------------- /libraries/wabt/src/validator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/validator.cc -------------------------------------------------------------------------------- /libraries/wabt/src/validator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/validator.h -------------------------------------------------------------------------------- /libraries/wabt/src/wabt.post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/wabt.post.js -------------------------------------------------------------------------------- /libraries/wabt/src/wasm2c.c.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/wasm2c.c.tmpl -------------------------------------------------------------------------------- /libraries/wabt/src/wasm2c.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/wasm2c.h.tmpl -------------------------------------------------------------------------------- /libraries/wabt/src/wasm2c_tmpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/wasm2c_tmpl.py -------------------------------------------------------------------------------- /libraries/wabt/src/wast-lexer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/wast-lexer.cc -------------------------------------------------------------------------------- /libraries/wabt/src/wast-lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/wast-lexer.h -------------------------------------------------------------------------------- /libraries/wabt/src/wast-parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/wast-parser.cc -------------------------------------------------------------------------------- /libraries/wabt/src/wast-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/wast-parser.h -------------------------------------------------------------------------------- /libraries/wabt/src/wat-writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/wat-writer.cc -------------------------------------------------------------------------------- /libraries/wabt/src/wat-writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/src/wat-writer.h -------------------------------------------------------------------------------- /libraries/wabt/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/README.md -------------------------------------------------------------------------------- /libraries/wabt/test/desugar/try.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/desugar/try.txt -------------------------------------------------------------------------------- /libraries/wabt/test/dump/atomic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/dump/atomic.txt -------------------------------------------------------------------------------- /libraries/wabt/test/dump/basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/dump/basic.txt -------------------------------------------------------------------------------- /libraries/wabt/test/dump/binary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/dump/binary.txt -------------------------------------------------------------------------------- /libraries/wabt/test/dump/block.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/dump/block.txt -------------------------------------------------------------------------------- /libraries/wabt/test/dump/brif.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/dump/brif.txt -------------------------------------------------------------------------------- /libraries/wabt/test/dump/call.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/dump/call.txt -------------------------------------------------------------------------------- /libraries/wabt/test/dump/cast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/dump/cast.txt -------------------------------------------------------------------------------- /libraries/wabt/test/dump/const.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/dump/const.txt -------------------------------------------------------------------------------- /libraries/wabt/test/dump/drop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/dump/drop.txt -------------------------------------------------------------------------------- /libraries/wabt/test/dump/except.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/dump/except.txt -------------------------------------------------------------------------------- /libraries/wabt/test/dump/global.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/dump/global.txt -------------------------------------------------------------------------------- /libraries/wabt/test/dump/if.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/dump/if.txt -------------------------------------------------------------------------------- /libraries/wabt/test/dump/nop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/dump/nop.txt -------------------------------------------------------------------------------- /libraries/wabt/test/dump/try.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/dump/try.txt -------------------------------------------------------------------------------- /libraries/wabt/test/find_exe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/find_exe.py -------------------------------------------------------------------------------- /libraries/wabt/test/gen-spec-empty-prefix.js: -------------------------------------------------------------------------------- 1 | // A deliberately empty file for testing. 2 | -------------------------------------------------------------------------------- /libraries/wabt/test/gen-wasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/gen-wasm.py -------------------------------------------------------------------------------- /libraries/wabt/test/interp/memory-empty-segment.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp 2 | (module (memory (data ""))) 3 | -------------------------------------------------------------------------------- /libraries/wabt/test/parse/expr/nop.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func nop)) 3 | -------------------------------------------------------------------------------- /libraries/wabt/test/parse/expr/return-void.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func return)) 3 | -------------------------------------------------------------------------------- /libraries/wabt/test/parse/expr/unreachable.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func unreachable)) 3 | -------------------------------------------------------------------------------- /libraries/wabt/test/parse/func/func-named.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func $foo)) 3 | -------------------------------------------------------------------------------- /libraries/wabt/test/parse/func/local-empty.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func (local))) 3 | -------------------------------------------------------------------------------- /libraries/wabt/test/parse/func/local.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func (local i32))) 3 | -------------------------------------------------------------------------------- /libraries/wabt/test/parse/func/param-binding.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func (param $foo i32))) 3 | -------------------------------------------------------------------------------- /libraries/wabt/test/parse/func/param-type-1.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func (param i32))) 3 | -------------------------------------------------------------------------------- /libraries/wabt/test/parse/func/param-type-2.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func (param i32 f32))) 3 | -------------------------------------------------------------------------------- /libraries/wabt/test/parse/func/result-empty.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func (result))) 3 | -------------------------------------------------------------------------------- /libraries/wabt/test/parse/module/memory-init-max-size.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (memory 1 2)) 3 | -------------------------------------------------------------------------------- /libraries/wabt/test/parse/module/memory-init-size.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (memory 1)) 3 | -------------------------------------------------------------------------------- /libraries/wabt/test/parse/module/module-empty.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module) 3 | -------------------------------------------------------------------------------- /libraries/wabt/test/parse/module/type-empty.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (type (func))) 3 | -------------------------------------------------------------------------------- /libraries/wabt/test/run-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/run-tests.py -------------------------------------------------------------------------------- /libraries/wabt/test/spec/br.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/spec/br.txt -------------------------------------------------------------------------------- /libraries/wabt/test/spec/f32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/spec/f32.txt -------------------------------------------------------------------------------- /libraries/wabt/test/spec/f64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/spec/f64.txt -------------------------------------------------------------------------------- /libraries/wabt/test/spec/fac.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/spec/fac.txt -------------------------------------------------------------------------------- /libraries/wabt/test/spec/i32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/spec/i32.txt -------------------------------------------------------------------------------- /libraries/wabt/test/spec/i64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/spec/i64.txt -------------------------------------------------------------------------------- /libraries/wabt/test/spec/if.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/spec/if.txt -------------------------------------------------------------------------------- /libraries/wabt/test/spec/nop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/spec/nop.txt -------------------------------------------------------------------------------- /libraries/wabt/test/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/test/utils.py -------------------------------------------------------------------------------- /libraries/wabt/third_party/gtest/googlemock/scripts/generator/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/wabt/third_party/ply/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /libraries/wabt/third_party/ply/test/pkg_test1/parsing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/wabt/third_party/ply/test/pkg_test2/parsing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/wabt/third_party/ply/test/pkg_test3/generated/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/wabt/third_party/ply/test/pkg_test3/parsing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/wabt/third_party/ply/test/pkg_test4/parsing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/wabt/third_party/ply/test/pkg_test5/parsing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/wabt/third_party/ply/test/pkg_test6/parsing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/wabt/third_party/testsuite/.gitignore: -------------------------------------------------------------------------------- 1 | /commit_message 2 | /repos/ 3 | -------------------------------------------------------------------------------- /libraries/wabt/ubsan.blacklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/ubsan.blacklist -------------------------------------------------------------------------------- /libraries/wabt/wasm2c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/wasm2c/README.md -------------------------------------------------------------------------------- /libraries/wabt/wasm2c/wasm-rt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wabt/wasm2c/wasm-rt.h -------------------------------------------------------------------------------- /libraries/wasm-jit/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wasm-jit/.travis.yml -------------------------------------------------------------------------------- /libraries/wasm-jit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wasm-jit/LICENSE -------------------------------------------------------------------------------- /libraries/wasm-jit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wasm-jit/README.md -------------------------------------------------------------------------------- /libraries/wasm-jit/afl/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wasm-jit/afl/readme -------------------------------------------------------------------------------- /libraries/wasm-jit/afl/wast.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/wasm-jit/afl/wast.dict -------------------------------------------------------------------------------- /libraries/yubihsm/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/.clang-format -------------------------------------------------------------------------------- /libraries/yubihsm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/.gitignore -------------------------------------------------------------------------------- /libraries/yubihsm/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/.travis.yml -------------------------------------------------------------------------------- /libraries/yubihsm/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/CHANGELOG -------------------------------------------------------------------------------- /libraries/yubihsm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/yubihsm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/LICENSE -------------------------------------------------------------------------------- /libraries/yubihsm/README: -------------------------------------------------------------------------------- 1 | README.adoc -------------------------------------------------------------------------------- /libraries/yubihsm/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/README.adoc -------------------------------------------------------------------------------- /libraries/yubihsm/aes_cmac/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/aes_cmac/aes.c -------------------------------------------------------------------------------- /libraries/yubihsm/aes_cmac/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/aes_cmac/aes.h -------------------------------------------------------------------------------- /libraries/yubihsm/common/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/common/debug.h -------------------------------------------------------------------------------- /libraries/yubihsm/common/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/common/hash.c -------------------------------------------------------------------------------- /libraries/yubihsm/common/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/common/hash.h -------------------------------------------------------------------------------- /libraries/yubihsm/common/pkcs5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/common/pkcs5.c -------------------------------------------------------------------------------- /libraries/yubihsm/common/pkcs5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/common/pkcs5.h -------------------------------------------------------------------------------- /libraries/yubihsm/common/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/common/rand.c -------------------------------------------------------------------------------- /libraries/yubihsm/common/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/common/rand.h -------------------------------------------------------------------------------- /libraries/yubihsm/common/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/common/util.c -------------------------------------------------------------------------------- /libraries/yubihsm/common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/common/util.h -------------------------------------------------------------------------------- /libraries/yubihsm/examples/ssh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/examples/ssh.c -------------------------------------------------------------------------------- /libraries/yubihsm/lib/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/lib/Doxyfile -------------------------------------------------------------------------------- /libraries/yubihsm/lib/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/lib/error.c -------------------------------------------------------------------------------- /libraries/yubihsm/lib/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/lib/internal.h -------------------------------------------------------------------------------- /libraries/yubihsm/lib/lib_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/lib/lib_util.c -------------------------------------------------------------------------------- /libraries/yubihsm/lib/scp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/lib/scp.h -------------------------------------------------------------------------------- /libraries/yubihsm/lib/yubihsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/lib/yubihsm.c -------------------------------------------------------------------------------- /libraries/yubihsm/lib/yubihsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/lib/yubihsm.h -------------------------------------------------------------------------------- /libraries/yubihsm/pkcs11/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/pkcs11/list.c -------------------------------------------------------------------------------- /libraries/yubihsm/pkcs11/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/pkcs11/list.h -------------------------------------------------------------------------------- /libraries/yubihsm/src/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/src/commands.c -------------------------------------------------------------------------------- /libraries/yubihsm/src/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/src/commands.h -------------------------------------------------------------------------------- /libraries/yubihsm/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/src/main.c -------------------------------------------------------------------------------- /libraries/yubihsm/src/tests/data.txt: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /libraries/yubihsm/src/tests/sig.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/yubihsm/yhauth/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/yhauth/main.c -------------------------------------------------------------------------------- /libraries/yubihsm/yhwrap/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/yhwrap/main.c -------------------------------------------------------------------------------- /libraries/yubihsm/ykyh/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/ykyh/error.c -------------------------------------------------------------------------------- /libraries/yubihsm/ykyh/ykyh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/ykyh/ykyh.c -------------------------------------------------------------------------------- /libraries/yubihsm/ykyh/ykyh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/libraries/yubihsm/ykyh/ykyh.h -------------------------------------------------------------------------------- /plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/COMMUNITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/plugins/COMMUNITY.md -------------------------------------------------------------------------------- /plugins/inery-make_new_plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/plugins/inery-make_new_plugin.sh -------------------------------------------------------------------------------- /plugins/wallet_plugin/wallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/plugins/wallet_plugin/wallet.cpp -------------------------------------------------------------------------------- /programs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/programs/CMakeLists.txt -------------------------------------------------------------------------------- /programs/cline/CLI11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/programs/cline/CLI11.hpp -------------------------------------------------------------------------------- /programs/cline/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/programs/cline/CMakeLists.txt -------------------------------------------------------------------------------- /programs/cline/config.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/programs/cline/config.hpp.in -------------------------------------------------------------------------------- /programs/cline/help_text.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/programs/cline/help_text.cpp.in -------------------------------------------------------------------------------- /programs/cline/help_text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/programs/cline/help_text.hpp -------------------------------------------------------------------------------- /programs/cline/httpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/programs/cline/httpc.cpp -------------------------------------------------------------------------------- /programs/cline/httpc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/programs/cline/httpc.hpp -------------------------------------------------------------------------------- /programs/cline/inec.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/programs/cline/inec.pot -------------------------------------------------------------------------------- /programs/cline/localize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/programs/cline/localize.hpp -------------------------------------------------------------------------------- /programs/cline/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/programs/cline/main.cpp -------------------------------------------------------------------------------- /programs/inery-blocklog/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/programs/inery-blocklog/main.cpp -------------------------------------------------------------------------------- /programs/inery-launcher/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/programs/inery-launcher/main.cpp -------------------------------------------------------------------------------- /programs/kined/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/programs/kined/CMakeLists.txt -------------------------------------------------------------------------------- /programs/kined/config.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/programs/kined/config.hpp.in -------------------------------------------------------------------------------- /programs/kined/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/programs/kined/main.cpp -------------------------------------------------------------------------------- /programs/nodine/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/programs/nodine/CMakeLists.txt -------------------------------------------------------------------------------- /programs/nodine/config.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/programs/nodine/config.hpp.in -------------------------------------------------------------------------------- /programs/nodine/logging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/programs/nodine/logging.json -------------------------------------------------------------------------------- /programs/nodine/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/programs/nodine/main.cpp -------------------------------------------------------------------------------- /scripts/.build_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/.build_vars -------------------------------------------------------------------------------- /scripts/.environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/.environment -------------------------------------------------------------------------------- /scripts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/CMakeLists.txt -------------------------------------------------------------------------------- /scripts/abi_is_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/abi_is_json.py -------------------------------------------------------------------------------- /scripts/complete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/complete.sh -------------------------------------------------------------------------------- /scripts/generate_bottle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/generate_bottle.sh -------------------------------------------------------------------------------- /scripts/generate_deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/generate_deb.sh -------------------------------------------------------------------------------- /scripts/generate_package.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/generate_package.sh.in -------------------------------------------------------------------------------- /scripts/generate_rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/generate_rpm.sh -------------------------------------------------------------------------------- /scripts/generate_tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/generate_tarball.sh -------------------------------------------------------------------------------- /scripts/helpers/general.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/helpers/general.sh -------------------------------------------------------------------------------- /scripts/helpers/inery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/helpers/inery.sh -------------------------------------------------------------------------------- /scripts/inery-tn_bounce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/inery-tn_bounce.sh -------------------------------------------------------------------------------- /scripts/inery-tn_down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/inery-tn_down.sh -------------------------------------------------------------------------------- /scripts/inery-tn_roll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/inery-tn_roll.sh -------------------------------------------------------------------------------- /scripts/inery-tn_up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/inery-tn_up.sh -------------------------------------------------------------------------------- /scripts/inery_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/inery_build.sh -------------------------------------------------------------------------------- /scripts/inery_build_centos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/inery_build_centos.sh -------------------------------------------------------------------------------- /scripts/inery_build_centos7_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/inery_build_centos7_deps -------------------------------------------------------------------------------- /scripts/inery_build_darwin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/inery_build_darwin.sh -------------------------------------------------------------------------------- /scripts/inery_build_darwin_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/inery_build_darwin_deps -------------------------------------------------------------------------------- /scripts/inery_build_ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/inery_build_ubuntu.sh -------------------------------------------------------------------------------- /scripts/inery_build_ubuntu_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/inery_build_ubuntu_deps -------------------------------------------------------------------------------- /scripts/inery_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/inery_install.sh -------------------------------------------------------------------------------- /scripts/inery_uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/inery_uninstall.sh -------------------------------------------------------------------------------- /scripts/long-running-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/long-running-test.sh -------------------------------------------------------------------------------- /scripts/mongod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/mongod.conf -------------------------------------------------------------------------------- /scripts/parallel-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/parallel-test.sh -------------------------------------------------------------------------------- /scripts/pinned_toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/pinned_toolchain.cmake -------------------------------------------------------------------------------- /scripts/serial-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/serial-test.sh -------------------------------------------------------------------------------- /scripts/wasm-spec-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/scripts/wasm-spec-test.sh -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/ctestwrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/tools/ctestwrapper.sh -------------------------------------------------------------------------------- /tools/llvm-gcov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/tools/llvm-gcov.sh -------------------------------------------------------------------------------- /tools/mas_sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/tools/mas_sign.sh -------------------------------------------------------------------------------- /tools/validate_reflection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodesBlocks/inery/HEAD/tools/validate_reflection.py --------------------------------------------------------------------------------