├── .gitignore ├── 3rdparty └── benchmark │ ├── .clang-format │ ├── .gitignore │ ├── .travis-libcxx-setup.sh │ ├── .travis.yml │ ├── .ycm_extra_conf.py │ ├── AUTHORS │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── README.md │ ├── WORKSPACE │ ├── appveyor.yml │ ├── cmake │ ├── AddCXXCompilerFlag.cmake │ ├── CXXFeatureCheck.cmake │ ├── Config.cmake.in │ ├── GetGitVersion.cmake │ ├── HandleGTest.cmake │ ├── benchmark.pc.in │ ├── gnu_posix_regex.cpp │ ├── llvm-toolchain.cmake │ ├── posix_regex.cpp │ ├── split_list.cmake │ ├── std_regex.cpp │ ├── steady_clock.cpp │ └── thread_safety_attributes.cpp │ ├── docs │ ├── AssemblyTests.md │ └── tools.md │ ├── googletest │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── README.md │ ├── appveyor.yml │ ├── googlemock │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── build-aux │ │ │ └── .keep │ │ ├── configure.ac │ │ ├── docs │ │ │ ├── CheatSheet.md │ │ │ ├── CookBook.md │ │ │ ├── DesignDoc.md │ │ │ ├── DevGuide.md │ │ │ ├── Documentation.md │ │ │ ├── ForDummies.md │ │ │ ├── FrequentlyAskedQuestions.md │ │ │ ├── KnownIssues.md │ │ │ ├── v1_5 │ │ │ │ ├── CheatSheet.md │ │ │ │ ├── CookBook.md │ │ │ │ ├── Documentation.md │ │ │ │ ├── ForDummies.md │ │ │ │ └── FrequentlyAskedQuestions.md │ │ │ ├── v1_6 │ │ │ │ ├── CheatSheet.md │ │ │ │ ├── CookBook.md │ │ │ │ ├── Documentation.md │ │ │ │ ├── ForDummies.md │ │ │ │ └── FrequentlyAskedQuestions.md │ │ │ └── v1_7 │ │ │ │ ├── CheatSheet.md │ │ │ │ ├── CookBook.md │ │ │ │ ├── Documentation.md │ │ │ │ ├── ForDummies.md │ │ │ │ └── FrequentlyAskedQuestions.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 │ │ │ ├── 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 │ │ ├── .gitignore │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── build-aux │ │ │ └── .keep │ │ ├── cmake │ │ │ └── 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 │ │ │ ├── DevGuide.md │ │ │ ├── Documentation.md │ │ │ ├── FAQ.md │ │ │ ├── Primer.md │ │ │ ├── PumpManual.md │ │ │ ├── Samples.md │ │ │ ├── V1_5_AdvancedGuide.md │ │ │ ├── V1_5_Documentation.md │ │ │ ├── V1_5_FAQ.md │ │ │ ├── V1_5_Primer.md │ │ │ ├── V1_5_PumpManual.md │ │ │ ├── V1_5_XcodeGuide.md │ │ │ ├── V1_6_AdvancedGuide.md │ │ │ ├── V1_6_Documentation.md │ │ │ ├── V1_6_FAQ.md │ │ │ ├── V1_6_Primer.md │ │ │ ├── V1_6_PumpManual.md │ │ │ ├── V1_6_Samples.md │ │ │ ├── V1_6_XcodeGuide.md │ │ │ ├── V1_7_AdvancedGuide.md │ │ │ ├── V1_7_Documentation.md │ │ │ ├── V1_7_FAQ.md │ │ │ ├── V1_7_Primer.md │ │ │ ├── V1_7_PumpManual.md │ │ │ ├── V1_7_Samples.md │ │ │ ├── V1_7_XcodeGuide.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 │ │ ├── msvc │ │ │ ├── gtest-md.sln │ │ │ ├── gtest-md.vcproj │ │ │ ├── gtest.sln │ │ │ ├── gtest.vcproj │ │ │ ├── gtest_main-md.vcproj │ │ │ ├── gtest_main.vcproj │ │ │ ├── gtest_prod_test-md.vcproj │ │ │ ├── gtest_prod_test.vcproj │ │ │ ├── gtest_unittest-md.vcproj │ │ │ └── gtest_unittest.vcproj │ │ ├── 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 │ │ │ ├── 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_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_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 │ └── travis.sh │ ├── include │ └── benchmark │ │ └── benchmark.h │ ├── mingw.py │ ├── releasing.md │ ├── src │ ├── CMakeLists.txt │ ├── arraysize.h │ ├── benchmark.cc │ ├── benchmark_api_internal.h │ ├── benchmark_main.cc │ ├── benchmark_register.cc │ ├── benchmark_register.h │ ├── check.h │ ├── colorprint.cc │ ├── colorprint.h │ ├── commandlineflags.cc │ ├── commandlineflags.h │ ├── complexity.cc │ ├── complexity.h │ ├── console_reporter.cc │ ├── counter.cc │ ├── counter.h │ ├── csv_reporter.cc │ ├── cycleclock.h │ ├── internal_macros.h │ ├── json_reporter.cc │ ├── log.h │ ├── mutex.h │ ├── re.h │ ├── reporter.cc │ ├── sleep.cc │ ├── sleep.h │ ├── statistics.cc │ ├── statistics.h │ ├── string_util.cc │ ├── string_util.h │ ├── sysinfo.cc │ ├── thread_manager.h │ ├── thread_timer.h │ ├── timers.cc │ └── timers.h │ ├── test │ ├── AssemblyTests.cmake │ ├── CMakeLists.txt │ ├── basic_test.cc │ ├── benchmark_gtest.cc │ ├── benchmark_test.cc │ ├── clobber_memory_assembly_test.cc │ ├── complexity_test.cc │ ├── cxx03_test.cc │ ├── diagnostics_test.cc │ ├── donotoptimize_assembly_test.cc │ ├── donotoptimize_test.cc │ ├── filter_test.cc │ ├── fixture_test.cc │ ├── link_main_test.cc │ ├── map_test.cc │ ├── multiple_ranges_test.cc │ ├── options_test.cc │ ├── output_test.h │ ├── output_test_helper.cc │ ├── register_benchmark_test.cc │ ├── reporter_output_test.cc │ ├── skip_with_error_test.cc │ ├── state_assembly_test.cc │ ├── statistics_gtest.cc │ ├── templated_fixture_test.cc │ ├── user_counters_tabular_test.cc │ └── user_counters_test.cc │ └── tools │ ├── compare.py │ ├── compare_bench.py │ ├── gbench │ ├── Inputs │ │ ├── test1_run1.json │ │ ├── test1_run2.json │ │ └── test2_run.json │ ├── __init__.py │ ├── report.py │ └── util.py │ └── strip_asm.py ├── CMakeLists.txt ├── README.md ├── benchmark ├── CMakeLists.txt └── Kernel │ └── Containers │ └── list_bench.cpp ├── src ├── Data │ ├── Drd │ │ ├── drd_info.cpp │ │ ├── drd_info.hpp │ │ ├── drd_mode.hpp │ │ ├── drd_std.cpp │ │ ├── drd_std.hpp │ │ ├── tag_info.cpp │ │ ├── tag_info.hpp │ │ ├── vars.cpp │ │ └── vars.hpp │ ├── String │ │ ├── analyze.cpp │ │ └── analyze.hpp │ └── Tree │ │ ├── tree_cursor.cpp │ │ └── tree_cursor.hpp ├── Kernel │ ├── Abstractions │ │ ├── basic.cpp │ │ ├── basic.hpp │ │ ├── blackbox.hpp │ │ ├── observer.cpp │ │ └── observer.hpp │ ├── Containers │ │ ├── array.cpp │ │ ├── array.hpp │ │ ├── hashfunc.cpp │ │ ├── hashfunc.hpp │ │ ├── hashmap.cpp │ │ ├── hashmap.hpp │ │ ├── hashmap_extra.cpp │ │ ├── hashset.cpp │ │ ├── hashset.hpp │ │ ├── hashtree.cpp │ │ ├── hashtree.hpp │ │ ├── iterator.cpp │ │ ├── iterator.hpp │ │ ├── list.cpp │ │ ├── list.hpp │ │ ├── ntuple.hpp │ │ ├── promise.hpp │ │ ├── rel_hashmap.cpp │ │ ├── rel_hashmap.hpp │ │ └── unary_function.hpp │ └── Types │ │ ├── generic_tree.hpp │ │ ├── modification.cpp │ │ ├── modification.hpp │ │ ├── parse_string.cpp │ │ ├── parse_string.hpp │ │ ├── path.cpp │ │ ├── path.hpp │ │ ├── string.cpp │ │ ├── string.hpp │ │ ├── tree.cpp │ │ ├── tree.hpp │ │ ├── tree_label.cpp │ │ └── tree_label.hpp └── System │ ├── Files │ ├── tm_ostream.cpp │ └── tm_ostream.hpp │ └── Misc │ ├── fast_alloc.cpp │ ├── fast_alloc.hpp │ └── tm_configure.hpp └── tests ├── CMakeLists.txt ├── Data └── String │ └── analyze_test.cpp └── Kernel ├── Containers ├── array_test.cpp ├── hashmap_test.cpp └── list_test.cpp └── Types ├── string_test.cpp └── tree_test.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/.gitignore -------------------------------------------------------------------------------- /3rdparty/benchmark/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/.clang-format -------------------------------------------------------------------------------- /3rdparty/benchmark/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/.gitignore -------------------------------------------------------------------------------- /3rdparty/benchmark/.travis-libcxx-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/.travis-libcxx-setup.sh -------------------------------------------------------------------------------- /3rdparty/benchmark/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/.travis.yml -------------------------------------------------------------------------------- /3rdparty/benchmark/.ycm_extra_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/.ycm_extra_conf.py -------------------------------------------------------------------------------- /3rdparty/benchmark/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/AUTHORS -------------------------------------------------------------------------------- /3rdparty/benchmark/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/BUILD.bazel -------------------------------------------------------------------------------- /3rdparty/benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/benchmark/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/CONTRIBUTING.md -------------------------------------------------------------------------------- /3rdparty/benchmark/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/CONTRIBUTORS -------------------------------------------------------------------------------- /3rdparty/benchmark/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/LICENSE -------------------------------------------------------------------------------- /3rdparty/benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/README.md -------------------------------------------------------------------------------- /3rdparty/benchmark/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/WORKSPACE -------------------------------------------------------------------------------- /3rdparty/benchmark/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/appveyor.yml -------------------------------------------------------------------------------- /3rdparty/benchmark/cmake/AddCXXCompilerFlag.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/cmake/AddCXXCompilerFlag.cmake -------------------------------------------------------------------------------- /3rdparty/benchmark/cmake/CXXFeatureCheck.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/cmake/CXXFeatureCheck.cmake -------------------------------------------------------------------------------- /3rdparty/benchmark/cmake/Config.cmake.in: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/@targets_export_name@.cmake") 2 | -------------------------------------------------------------------------------- /3rdparty/benchmark/cmake/GetGitVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/cmake/GetGitVersion.cmake -------------------------------------------------------------------------------- /3rdparty/benchmark/cmake/HandleGTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/cmake/HandleGTest.cmake -------------------------------------------------------------------------------- /3rdparty/benchmark/cmake/benchmark.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/cmake/benchmark.pc.in -------------------------------------------------------------------------------- /3rdparty/benchmark/cmake/gnu_posix_regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/cmake/gnu_posix_regex.cpp -------------------------------------------------------------------------------- /3rdparty/benchmark/cmake/llvm-toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/cmake/llvm-toolchain.cmake -------------------------------------------------------------------------------- /3rdparty/benchmark/cmake/posix_regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/cmake/posix_regex.cpp -------------------------------------------------------------------------------- /3rdparty/benchmark/cmake/split_list.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/cmake/split_list.cmake -------------------------------------------------------------------------------- /3rdparty/benchmark/cmake/std_regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/cmake/std_regex.cpp -------------------------------------------------------------------------------- /3rdparty/benchmark/cmake/steady_clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/cmake/steady_clock.cpp -------------------------------------------------------------------------------- /3rdparty/benchmark/cmake/thread_safety_attributes.cpp: -------------------------------------------------------------------------------- 1 | #define HAVE_THREAD_SAFETY_ATTRIBUTES 2 | #include "../src/mutex.h" 3 | 4 | int main() {} 5 | -------------------------------------------------------------------------------- /3rdparty/benchmark/docs/AssemblyTests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/docs/AssemblyTests.md -------------------------------------------------------------------------------- /3rdparty/benchmark/docs/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/docs/tools.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/.gitignore -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/.travis.yml -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/README.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/appveyor.yml -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/CHANGES -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/CONTRIBUTORS -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/LICENSE -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/Makefile.am -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/README.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/configure.ac -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/docs/CheatSheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/docs/CheatSheet.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/docs/CookBook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/docs/CookBook.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/docs/DesignDoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/docs/DesignDoc.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/docs/DevGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/docs/DevGuide.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/docs/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/docs/Documentation.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/docs/ForDummies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/docs/ForDummies.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/docs/FrequentlyAskedQuestions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/docs/FrequentlyAskedQuestions.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/docs/KnownIssues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/docs/KnownIssues.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/docs/v1_5/CheatSheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/docs/v1_5/CheatSheet.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/docs/v1_5/CookBook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/docs/v1_5/CookBook.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/docs/v1_5/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/docs/v1_5/Documentation.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/docs/v1_5/ForDummies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/docs/v1_5/ForDummies.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/docs/v1_5/FrequentlyAskedQuestions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/docs/v1_5/FrequentlyAskedQuestions.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/docs/v1_6/CheatSheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/docs/v1_6/CheatSheet.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/docs/v1_6/CookBook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/docs/v1_6/CookBook.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/docs/v1_6/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/docs/v1_6/Documentation.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/docs/v1_6/ForDummies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/docs/v1_6/ForDummies.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/docs/v1_6/FrequentlyAskedQuestions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/docs/v1_6/FrequentlyAskedQuestions.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/docs/v1_7/CheatSheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/docs/v1_7/CheatSheet.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/docs/v1_7/CookBook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/docs/v1_7/CookBook.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/docs/v1_7/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/docs/v1_7/Documentation.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/docs/v1_7/ForDummies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/docs/v1_7/ForDummies.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/docs/v1_7/FrequentlyAskedQuestions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/docs/v1_7/FrequentlyAskedQuestions.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-actions.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-cardinalities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-cardinalities.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-generated-actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-generated-actions.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-generated-actions.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-generated-actions.h.pump -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-generated-function-mockers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-generated-function-mockers.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-generated-function-mockers.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-generated-function-mockers.h.pump -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-generated-matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-generated-matchers.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-generated-matchers.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-generated-matchers.h.pump -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-generated-nice-strict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-generated-nice-strict.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-generated-nice-strict.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-generated-nice-strict.h.pump -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-matchers.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-more-actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-more-actions.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-more-matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-more-matchers.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-spec-builders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/include/gmock/gmock-spec-builders.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/include/gmock/gmock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/include/gmock/gmock.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/include/gmock/internal/custom/gmock-generated-actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/include/gmock/internal/custom/gmock-generated-actions.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/include/gmock/internal/custom/gmock-generated-actions.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/include/gmock/internal/custom/gmock-generated-actions.h.pump -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/include/gmock/internal/custom/gmock-matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/include/gmock/internal/custom/gmock-matchers.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/include/gmock/internal/custom/gmock-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/include/gmock/internal/custom/gmock-port.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/include/gmock/internal/gmock-generated-internal-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/include/gmock/internal/gmock-generated-internal-utils.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/include/gmock/internal/gmock-generated-internal-utils.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/include/gmock/internal/gmock-generated-internal-utils.h.pump -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/include/gmock/internal/gmock-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/include/gmock/internal/gmock-port.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/msvc/2005/gmock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/msvc/2005/gmock.sln -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/msvc/2005/gmock.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/msvc/2005/gmock.vcproj -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/msvc/2005/gmock_config.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/msvc/2005/gmock_config.vsprops -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/msvc/2005/gmock_main.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/msvc/2005/gmock_main.vcproj -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/msvc/2005/gmock_test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/msvc/2005/gmock_test.vcproj -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/msvc/2010/gmock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/msvc/2010/gmock.sln -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/msvc/2010/gmock.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/msvc/2010/gmock.vcxproj -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/msvc/2010/gmock_config.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/msvc/2010/gmock_config.props -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/msvc/2010/gmock_main.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/msvc/2010/gmock_main.vcxproj -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/msvc/2010/gmock_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/msvc/2010/gmock_test.vcxproj -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/msvc/2015/gmock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/msvc/2015/gmock.sln -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/msvc/2015/gmock.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/msvc/2015/gmock.vcxproj -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/msvc/2015/gmock_config.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/msvc/2015/gmock_config.props -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/msvc/2015/gmock_main.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/msvc/2015/gmock_main.vcxproj -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/msvc/2015/gmock_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/msvc/2015/gmock_test.vcxproj -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/scripts/fuse_gmock_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/scripts/fuse_gmock_files.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/scripts/generator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/scripts/generator/LICENSE -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/scripts/generator/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/scripts/generator/README -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/scripts/generator/README.cppclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/scripts/generator/README.cppclean -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/scripts/generator/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/scripts/generator/cpp/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/scripts/generator/cpp/ast.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/scripts/generator/cpp/gmock_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/scripts/generator/cpp/gmock_class.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/scripts/generator/cpp/gmock_class_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/scripts/generator/cpp/gmock_class_test.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/scripts/generator/cpp/keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/scripts/generator/cpp/keywords.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/scripts/generator/cpp/tokenize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/scripts/generator/cpp/tokenize.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/scripts/generator/cpp/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/scripts/generator/cpp/utils.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/scripts/generator/gmock_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/scripts/generator/gmock_gen.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/scripts/gmock-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/scripts/gmock-config.in -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/scripts/gmock_doctor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/scripts/gmock_doctor.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/scripts/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/scripts/upload.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/scripts/upload_gmock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/scripts/upload_gmock.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/src/gmock-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/src/gmock-all.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/src/gmock-cardinalities.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/src/gmock-cardinalities.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/src/gmock-internal-utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/src/gmock-internal-utils.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/src/gmock-matchers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/src/gmock-matchers.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/src/gmock-spec-builders.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/src/gmock-spec-builders.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/src/gmock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/src/gmock.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/src/gmock_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/src/gmock_main.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/test/gmock-actions_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/test/gmock-actions_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/test/gmock-cardinalities_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/test/gmock-cardinalities_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/test/gmock-generated-actions_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/test/gmock-generated-actions_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/test/gmock-generated-function-mockers_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/test/gmock-generated-function-mockers_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/test/gmock-generated-internal-utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/test/gmock-generated-internal-utils_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/test/gmock-generated-matchers_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/test/gmock-generated-matchers_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/test/gmock-internal-utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/test/gmock-internal-utils_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/test/gmock-matchers_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/test/gmock-matchers_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/test/gmock-more-actions_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/test/gmock-more-actions_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/test/gmock-nice-strict_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/test/gmock-nice-strict_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/test/gmock-port_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/test/gmock-port_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/test/gmock-spec-builders_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/test/gmock-spec-builders_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/test/gmock_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/test/gmock_all_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/test/gmock_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/test/gmock_ex_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/test/gmock_leak_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/test/gmock_leak_test.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/test/gmock_leak_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/test/gmock_leak_test_.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/test/gmock_link2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/test/gmock_link2_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/test/gmock_link_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/test/gmock_link_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/test/gmock_link_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/test/gmock_link_test.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/test/gmock_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/test/gmock_output_test.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/test/gmock_output_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/test/gmock_output_test_.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/test/gmock_output_test_golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/test/gmock_output_test_golden.txt -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/test/gmock_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/test/gmock_stress_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/test/gmock_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/test/gmock_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googlemock/test/gmock_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googlemock/test/gmock_test_utils.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/.gitignore: -------------------------------------------------------------------------------- 1 | # python 2 | *.pyc 3 | -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/CHANGES -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/CONTRIBUTORS -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/LICENSE -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/Makefile.am -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/README.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/cmake/internal_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/cmake/internal_utils.cmake -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/codegear/gtest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/codegear/gtest.cbproj -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/codegear/gtest.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/codegear/gtest.groupproj -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/codegear/gtest_all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/codegear/gtest_all.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/codegear/gtest_link.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/codegear/gtest_link.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/codegear/gtest_main.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/codegear/gtest_main.cbproj -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/codegear/gtest_unittest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/codegear/gtest_unittest.cbproj -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/configure.ac -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/AdvancedGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/AdvancedGuide.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/DevGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/DevGuide.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/Documentation.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/FAQ.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/Primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/Primer.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/PumpManual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/PumpManual.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/Samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/Samples.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/V1_5_AdvancedGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/V1_5_AdvancedGuide.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/V1_5_Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/V1_5_Documentation.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/V1_5_FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/V1_5_FAQ.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/V1_5_Primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/V1_5_Primer.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/V1_5_PumpManual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/V1_5_PumpManual.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/V1_5_XcodeGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/V1_5_XcodeGuide.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/V1_6_AdvancedGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/V1_6_AdvancedGuide.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/V1_6_Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/V1_6_Documentation.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/V1_6_FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/V1_6_FAQ.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/V1_6_Primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/V1_6_Primer.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/V1_6_PumpManual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/V1_6_PumpManual.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/V1_6_Samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/V1_6_Samples.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/V1_6_XcodeGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/V1_6_XcodeGuide.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/V1_7_AdvancedGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/V1_7_AdvancedGuide.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/V1_7_Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/V1_7_Documentation.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/V1_7_FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/V1_7_FAQ.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/V1_7_Primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/V1_7_Primer.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/V1_7_PumpManual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/V1_7_PumpManual.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/V1_7_Samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/V1_7_Samples.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/V1_7_XcodeGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/V1_7_XcodeGuide.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/docs/XcodeGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/docs/XcodeGuide.md -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/gtest-param-test.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/gtest-param-test.h.pump -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/gtest-printers.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/gtest.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/internal/custom/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/internal/custom/gtest-port.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/internal/custom/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/internal/custom/gtest-printers.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/internal/custom/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/internal/custom/gtest.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-death-test-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-death-test-internal.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-filepath.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-internal.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-linked_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-linked_ptr.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-param-util-generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-param-util-generated.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-param-util-generated.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-param-util-generated.h.pump -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-param-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-param-util.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-port-arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-port-arch.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-port.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-string.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-tuple.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-tuple.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-tuple.h.pump -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-type-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-type-util.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-type-util.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/include/gtest/internal/gtest-type-util.h.pump -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/m4/gtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/m4/gtest.m4 -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/msvc/gtest-md.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/msvc/gtest-md.sln -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/msvc/gtest-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/msvc/gtest-md.vcproj -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/msvc/gtest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/msvc/gtest.sln -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/msvc/gtest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/msvc/gtest.vcproj -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/msvc/gtest_main-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/msvc/gtest_main-md.vcproj -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/msvc/gtest_main.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/msvc/gtest_main.vcproj -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/msvc/gtest_prod_test-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/msvc/gtest_prod_test-md.vcproj -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/msvc/gtest_prod_test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/msvc/gtest_prod_test.vcproj -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/msvc/gtest_unittest-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/msvc/gtest_unittest-md.vcproj -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/msvc/gtest_unittest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/msvc/gtest_unittest.vcproj -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/samples/prime_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/samples/prime_tables.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/samples/sample1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/samples/sample1.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/samples/sample1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/samples/sample1.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/samples/sample10_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/samples/sample10_unittest.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/samples/sample1_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/samples/sample1_unittest.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/samples/sample2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/samples/sample2.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/samples/sample2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/samples/sample2.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/samples/sample2_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/samples/sample2_unittest.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/samples/sample3-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/samples/sample3-inl.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/samples/sample3_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/samples/sample3_unittest.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/samples/sample4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/samples/sample4.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/samples/sample4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/samples/sample4.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/samples/sample4_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/samples/sample4_unittest.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/samples/sample5_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/samples/sample5_unittest.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/samples/sample6_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/samples/sample6_unittest.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/samples/sample7_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/samples/sample7_unittest.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/samples/sample8_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/samples/sample8_unittest.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/samples/sample9_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/samples/sample9_unittest.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/scripts/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/scripts/common.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/scripts/fuse_gtest_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/scripts/fuse_gtest_files.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/scripts/gen_gtest_pred_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/scripts/gen_gtest_pred_impl.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/scripts/gtest-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/scripts/gtest-config.in -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/scripts/pump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/scripts/pump.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/scripts/release_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/scripts/release_docs.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/scripts/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/scripts/upload.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/scripts/upload_gtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/scripts/upload_gtest.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/src/gtest-all.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/src/gtest-death-test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/src/gtest-port.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/src/gtest-printers.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/src/gtest.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/src/gtest_main.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest-death-test_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest-death-test_ex_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest-death-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest-death-test_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest-filepath_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest-filepath_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest-linked_ptr_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest-linked_ptr_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest-listener_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest-listener_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest-message_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest-message_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest-options_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest-options_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest-param-test2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest-param-test2_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest-param-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest-param-test_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest-param-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest-param-test_test.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest-port_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest-port_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest-printers_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest-printers_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest-test-part_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest-test-part_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest-tuple_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest-tuple_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest-typed-test2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest-typed-test2_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest-typed-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest-typed-test_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest-typed-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest-typed-test_test.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest-unittest-api_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest-unittest-api_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_all_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_break_on_failure_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_break_on_failure_unittest.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_break_on_failure_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_break_on_failure_unittest_.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_catch_exceptions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_catch_exceptions_test.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_catch_exceptions_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_catch_exceptions_test_.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_color_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_color_test.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_color_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_color_test_.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_env_var_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_env_var_test.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_env_var_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_env_var_test_.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_environment_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_environment_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_filter_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_filter_unittest.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_filter_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_filter_unittest_.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_help_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_help_test.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_help_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_help_test_.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_list_tests_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_list_tests_unittest.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_list_tests_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_list_tests_unittest_.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_main_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_main_unittest.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_no_test_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_no_test_unittest.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_output_test.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_output_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_output_test_.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_output_test_golden_lin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_output_test_golden_lin.txt -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_pred_impl_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_pred_impl_unittest.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_premature_exit_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_premature_exit_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_prod_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_prod_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_repeat_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_repeat_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_shuffle_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_shuffle_test.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_shuffle_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_shuffle_test_.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_sole_header_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_sole_header_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_stress_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_test_utils.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_throw_on_failure_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_throw_on_failure_ex_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_throw_on_failure_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_throw_on_failure_test.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_throw_on_failure_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_throw_on_failure_test_.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_uninitialized_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_uninitialized_test.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_uninitialized_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_uninitialized_test_.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_unittest.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_xml_outfile1_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_xml_outfile1_test_.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_xml_outfile2_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_xml_outfile2_test_.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_xml_outfiles_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_xml_outfiles_test.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_xml_output_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_xml_output_unittest.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_xml_output_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_xml_output_unittest_.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/gtest_xml_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/gtest_xml_test_utils.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/production.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/production.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/test/production.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/test/production.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/xcode/Config/DebugProject.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/xcode/Config/DebugProject.xcconfig -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/xcode/Config/FrameworkTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/xcode/Config/FrameworkTarget.xcconfig -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/xcode/Config/General.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/xcode/Config/General.xcconfig -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/xcode/Config/ReleaseProject.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/xcode/Config/ReleaseProject.xcconfig -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/xcode/Config/StaticLibraryTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/xcode/Config/StaticLibraryTarget.xcconfig -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/xcode/Config/TestTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/xcode/Config/TestTarget.xcconfig -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/xcode/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/xcode/Resources/Info.plist -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/xcode/Samples/FrameworkSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/xcode/Samples/FrameworkSample/Info.plist -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/xcode/Samples/FrameworkSample/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/xcode/Samples/FrameworkSample/runtests.sh -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/xcode/Samples/FrameworkSample/widget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/xcode/Samples/FrameworkSample/widget.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/xcode/Samples/FrameworkSample/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/xcode/Samples/FrameworkSample/widget.h -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/xcode/Samples/FrameworkSample/widget_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/xcode/Samples/FrameworkSample/widget_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/xcode/Scripts/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/xcode/Scripts/runtests.sh -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/xcode/Scripts/versiongenerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/xcode/Scripts/versiongenerate.py -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/googletest/xcode/gtest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/googletest/xcode/gtest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /3rdparty/benchmark/googletest/travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/googletest/travis.sh -------------------------------------------------------------------------------- /3rdparty/benchmark/include/benchmark/benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/include/benchmark/benchmark.h -------------------------------------------------------------------------------- /3rdparty/benchmark/mingw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/mingw.py -------------------------------------------------------------------------------- /3rdparty/benchmark/releasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/releasing.md -------------------------------------------------------------------------------- /3rdparty/benchmark/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/benchmark/src/arraysize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/arraysize.h -------------------------------------------------------------------------------- /3rdparty/benchmark/src/benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/benchmark.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/src/benchmark_api_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/benchmark_api_internal.h -------------------------------------------------------------------------------- /3rdparty/benchmark/src/benchmark_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/benchmark_main.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/src/benchmark_register.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/benchmark_register.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/src/benchmark_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/benchmark_register.h -------------------------------------------------------------------------------- /3rdparty/benchmark/src/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/check.h -------------------------------------------------------------------------------- /3rdparty/benchmark/src/colorprint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/colorprint.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/src/colorprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/colorprint.h -------------------------------------------------------------------------------- /3rdparty/benchmark/src/commandlineflags.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/commandlineflags.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/src/commandlineflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/commandlineflags.h -------------------------------------------------------------------------------- /3rdparty/benchmark/src/complexity.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/complexity.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/src/complexity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/complexity.h -------------------------------------------------------------------------------- /3rdparty/benchmark/src/console_reporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/console_reporter.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/src/counter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/counter.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/src/counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/counter.h -------------------------------------------------------------------------------- /3rdparty/benchmark/src/csv_reporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/csv_reporter.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/src/cycleclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/cycleclock.h -------------------------------------------------------------------------------- /3rdparty/benchmark/src/internal_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/internal_macros.h -------------------------------------------------------------------------------- /3rdparty/benchmark/src/json_reporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/json_reporter.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/log.h -------------------------------------------------------------------------------- /3rdparty/benchmark/src/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/mutex.h -------------------------------------------------------------------------------- /3rdparty/benchmark/src/re.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/re.h -------------------------------------------------------------------------------- /3rdparty/benchmark/src/reporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/reporter.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/src/sleep.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/sleep.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/src/sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/sleep.h -------------------------------------------------------------------------------- /3rdparty/benchmark/src/statistics.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/statistics.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/src/statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/statistics.h -------------------------------------------------------------------------------- /3rdparty/benchmark/src/string_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/string_util.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/src/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/string_util.h -------------------------------------------------------------------------------- /3rdparty/benchmark/src/sysinfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/sysinfo.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/src/thread_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/thread_manager.h -------------------------------------------------------------------------------- /3rdparty/benchmark/src/thread_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/thread_timer.h -------------------------------------------------------------------------------- /3rdparty/benchmark/src/timers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/timers.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/src/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/src/timers.h -------------------------------------------------------------------------------- /3rdparty/benchmark/test/AssemblyTests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/test/AssemblyTests.cmake -------------------------------------------------------------------------------- /3rdparty/benchmark/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/test/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/benchmark/test/basic_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/test/basic_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/test/benchmark_gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/test/benchmark_gtest.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/test/benchmark_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/test/benchmark_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/test/clobber_memory_assembly_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/test/clobber_memory_assembly_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/test/complexity_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/test/complexity_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/test/cxx03_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/test/cxx03_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/test/diagnostics_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/test/diagnostics_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/test/donotoptimize_assembly_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/test/donotoptimize_assembly_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/test/donotoptimize_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/test/donotoptimize_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/test/filter_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/test/filter_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/test/fixture_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/test/fixture_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/test/link_main_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/test/link_main_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/test/map_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/test/map_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/test/multiple_ranges_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/test/multiple_ranges_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/test/options_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/test/options_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/test/output_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/test/output_test.h -------------------------------------------------------------------------------- /3rdparty/benchmark/test/output_test_helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/test/output_test_helper.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/test/register_benchmark_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/test/register_benchmark_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/test/reporter_output_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/test/reporter_output_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/test/skip_with_error_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/test/skip_with_error_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/test/state_assembly_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/test/state_assembly_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/test/statistics_gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/test/statistics_gtest.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/test/templated_fixture_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/test/templated_fixture_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/test/user_counters_tabular_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/test/user_counters_tabular_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/test/user_counters_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/test/user_counters_test.cc -------------------------------------------------------------------------------- /3rdparty/benchmark/tools/compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/tools/compare.py -------------------------------------------------------------------------------- /3rdparty/benchmark/tools/compare_bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/tools/compare_bench.py -------------------------------------------------------------------------------- /3rdparty/benchmark/tools/gbench/Inputs/test1_run1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/tools/gbench/Inputs/test1_run1.json -------------------------------------------------------------------------------- /3rdparty/benchmark/tools/gbench/Inputs/test1_run2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/tools/gbench/Inputs/test1_run2.json -------------------------------------------------------------------------------- /3rdparty/benchmark/tools/gbench/Inputs/test2_run.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/tools/gbench/Inputs/test2_run.json -------------------------------------------------------------------------------- /3rdparty/benchmark/tools/gbench/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/tools/gbench/__init__.py -------------------------------------------------------------------------------- /3rdparty/benchmark/tools/gbench/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/tools/gbench/report.py -------------------------------------------------------------------------------- /3rdparty/benchmark/tools/gbench/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/tools/gbench/util.py -------------------------------------------------------------------------------- /3rdparty/benchmark/tools/strip_asm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/3rdparty/benchmark/tools/strip_asm.py -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /benchmark/Kernel/Containers/list_bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/benchmark/Kernel/Containers/list_bench.cpp -------------------------------------------------------------------------------- /src/Data/Drd/drd_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Data/Drd/drd_info.cpp -------------------------------------------------------------------------------- /src/Data/Drd/drd_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Data/Drd/drd_info.hpp -------------------------------------------------------------------------------- /src/Data/Drd/drd_mode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Data/Drd/drd_mode.hpp -------------------------------------------------------------------------------- /src/Data/Drd/drd_std.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Data/Drd/drd_std.cpp -------------------------------------------------------------------------------- /src/Data/Drd/drd_std.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Data/Drd/drd_std.hpp -------------------------------------------------------------------------------- /src/Data/Drd/tag_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Data/Drd/tag_info.cpp -------------------------------------------------------------------------------- /src/Data/Drd/tag_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Data/Drd/tag_info.hpp -------------------------------------------------------------------------------- /src/Data/Drd/vars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Data/Drd/vars.cpp -------------------------------------------------------------------------------- /src/Data/Drd/vars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Data/Drd/vars.hpp -------------------------------------------------------------------------------- /src/Data/String/analyze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Data/String/analyze.cpp -------------------------------------------------------------------------------- /src/Data/String/analyze.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Data/String/analyze.hpp -------------------------------------------------------------------------------- /src/Data/Tree/tree_cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Data/Tree/tree_cursor.cpp -------------------------------------------------------------------------------- /src/Data/Tree/tree_cursor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Data/Tree/tree_cursor.hpp -------------------------------------------------------------------------------- /src/Kernel/Abstractions/basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Abstractions/basic.cpp -------------------------------------------------------------------------------- /src/Kernel/Abstractions/basic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Abstractions/basic.hpp -------------------------------------------------------------------------------- /src/Kernel/Abstractions/blackbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Abstractions/blackbox.hpp -------------------------------------------------------------------------------- /src/Kernel/Abstractions/observer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Abstractions/observer.cpp -------------------------------------------------------------------------------- /src/Kernel/Abstractions/observer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Abstractions/observer.hpp -------------------------------------------------------------------------------- /src/Kernel/Containers/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Containers/array.cpp -------------------------------------------------------------------------------- /src/Kernel/Containers/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Containers/array.hpp -------------------------------------------------------------------------------- /src/Kernel/Containers/hashfunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Containers/hashfunc.cpp -------------------------------------------------------------------------------- /src/Kernel/Containers/hashfunc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Containers/hashfunc.hpp -------------------------------------------------------------------------------- /src/Kernel/Containers/hashmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Containers/hashmap.cpp -------------------------------------------------------------------------------- /src/Kernel/Containers/hashmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Containers/hashmap.hpp -------------------------------------------------------------------------------- /src/Kernel/Containers/hashmap_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Containers/hashmap_extra.cpp -------------------------------------------------------------------------------- /src/Kernel/Containers/hashset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Containers/hashset.cpp -------------------------------------------------------------------------------- /src/Kernel/Containers/hashset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Containers/hashset.hpp -------------------------------------------------------------------------------- /src/Kernel/Containers/hashtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Containers/hashtree.cpp -------------------------------------------------------------------------------- /src/Kernel/Containers/hashtree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Containers/hashtree.hpp -------------------------------------------------------------------------------- /src/Kernel/Containers/iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Containers/iterator.cpp -------------------------------------------------------------------------------- /src/Kernel/Containers/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Containers/iterator.hpp -------------------------------------------------------------------------------- /src/Kernel/Containers/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Containers/list.cpp -------------------------------------------------------------------------------- /src/Kernel/Containers/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Containers/list.hpp -------------------------------------------------------------------------------- /src/Kernel/Containers/ntuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Containers/ntuple.hpp -------------------------------------------------------------------------------- /src/Kernel/Containers/promise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Containers/promise.hpp -------------------------------------------------------------------------------- /src/Kernel/Containers/rel_hashmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Containers/rel_hashmap.cpp -------------------------------------------------------------------------------- /src/Kernel/Containers/rel_hashmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Containers/rel_hashmap.hpp -------------------------------------------------------------------------------- /src/Kernel/Containers/unary_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Containers/unary_function.hpp -------------------------------------------------------------------------------- /src/Kernel/Types/generic_tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Types/generic_tree.hpp -------------------------------------------------------------------------------- /src/Kernel/Types/modification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Types/modification.cpp -------------------------------------------------------------------------------- /src/Kernel/Types/modification.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Types/modification.hpp -------------------------------------------------------------------------------- /src/Kernel/Types/parse_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Types/parse_string.cpp -------------------------------------------------------------------------------- /src/Kernel/Types/parse_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Types/parse_string.hpp -------------------------------------------------------------------------------- /src/Kernel/Types/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Types/path.cpp -------------------------------------------------------------------------------- /src/Kernel/Types/path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Types/path.hpp -------------------------------------------------------------------------------- /src/Kernel/Types/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Types/string.cpp -------------------------------------------------------------------------------- /src/Kernel/Types/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Types/string.hpp -------------------------------------------------------------------------------- /src/Kernel/Types/tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Types/tree.cpp -------------------------------------------------------------------------------- /src/Kernel/Types/tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Types/tree.hpp -------------------------------------------------------------------------------- /src/Kernel/Types/tree_label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Types/tree_label.cpp -------------------------------------------------------------------------------- /src/Kernel/Types/tree_label.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/Kernel/Types/tree_label.hpp -------------------------------------------------------------------------------- /src/System/Files/tm_ostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/System/Files/tm_ostream.cpp -------------------------------------------------------------------------------- /src/System/Files/tm_ostream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/System/Files/tm_ostream.hpp -------------------------------------------------------------------------------- /src/System/Misc/fast_alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/System/Misc/fast_alloc.cpp -------------------------------------------------------------------------------- /src/System/Misc/fast_alloc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/System/Misc/fast_alloc.hpp -------------------------------------------------------------------------------- /src/System/Misc/tm_configure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/src/System/Misc/tm_configure.hpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/Data/String/analyze_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/tests/Data/String/analyze_test.cpp -------------------------------------------------------------------------------- /tests/Kernel/Containers/array_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/tests/Kernel/Containers/array_test.cpp -------------------------------------------------------------------------------- /tests/Kernel/Containers/hashmap_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/tests/Kernel/Containers/hashmap_test.cpp -------------------------------------------------------------------------------- /tests/Kernel/Containers/list_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/tests/Kernel/Containers/list_test.cpp -------------------------------------------------------------------------------- /tests/Kernel/Types/string_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/tests/Kernel/Types/string_test.cpp -------------------------------------------------------------------------------- /tests/Kernel/Types/tree_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texmacs/kernel/HEAD/tests/Kernel/Types/tree_test.cpp --------------------------------------------------------------------------------