├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── .vscode └── snippets │ ├── cmake.json │ ├── cpp.json │ ├── css.json │ ├── javascript.json │ ├── python.json │ └── shellscript.json ├── Authors.md ├── CMakeLists.txt ├── ChangeLog.md ├── Doxyfile ├── Licence_CeCILL-C-en.txt ├── Licence_CeCILL-C-fr.txt ├── README.md ├── cmake ├── FindGMock.cmake ├── FindHwloc.cmake ├── FindNpm.cmake ├── FindNumactl.cmake ├── FindPintool.cmake ├── FindPip.cmake ├── macros.cmake └── unittest-macros.cmake ├── configure ├── dev ├── gen-archive.sh └── update-version.sh ├── doc └── bibliography.md ├── extern-deps ├── CMakeLists.txt ├── from-fftw │ └── cycle.h ├── from-htopml │ ├── CMakeLists.txt │ ├── Readme.txt │ └── json │ │ ├── CMakeLists.txt │ │ ├── ConvertToJson.cpp │ │ ├── ConvertToJson.h │ │ ├── ConvertToJson_impl.h │ │ ├── FastBufferdStream.hpp │ │ ├── JsonState.cpp │ │ ├── JsonState.h │ │ └── JsonState_impl.h ├── from-malt-v2 │ ├── CMakeLists.txt │ ├── Debug.cpp │ ├── Debug.hpp │ ├── FormattedMessage.cpp │ ├── FormattedMessage.hpp │ ├── LinuxProcMapReader.cpp │ ├── LinuxProcMapReader.hpp │ ├── SymbolRegistry.cpp │ └── SymbolRegistry.hpp ├── from-numactl │ ├── MovePages.cpp │ └── MovePages.hpp ├── gmock-1.12.1 │ ├── .clang-format │ ├── .github │ │ ├── ISSUE_TEMPLATE │ │ │ ├── 00-bug_report.md │ │ │ ├── 10-feature_request.md │ │ │ └── config.yml │ │ └── workflows │ │ │ └── gtest-ci.yml │ ├── .gitignore │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── README.md │ ├── WORKSPACE │ ├── ci │ │ ├── linux-presubmit.sh │ │ └── macos-presubmit.sh │ ├── docs │ │ ├── _config.yml │ │ ├── _data │ │ │ └── navigation.yml │ │ ├── _layouts │ │ │ └── default.html │ │ ├── _sass │ │ │ └── main.scss │ │ ├── advanced.md │ │ ├── assets │ │ │ └── css │ │ │ │ └── style.scss │ │ ├── community_created_documentation.md │ │ ├── faq.md │ │ ├── gmock_cheat_sheet.md │ │ ├── gmock_cook_book.md │ │ ├── gmock_faq.md │ │ ├── gmock_for_dummies.md │ │ ├── index.md │ │ ├── pkgconfig.md │ │ ├── platforms.md │ │ ├── primer.md │ │ ├── quickstart-bazel.md │ │ ├── quickstart-cmake.md │ │ ├── reference │ │ │ ├── actions.md │ │ │ ├── assertions.md │ │ │ ├── matchers.md │ │ │ ├── mocking.md │ │ │ └── testing.md │ │ └── samples.md │ ├── googlemock │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── cmake │ │ │ ├── gmock.pc.in │ │ │ └── gmock_main.pc.in │ │ ├── docs │ │ │ └── README.md │ │ ├── include │ │ │ └── gmock │ │ │ │ ├── gmock-actions.h │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ ├── gmock-function-mocker.h │ │ │ │ ├── gmock-matchers.h │ │ │ │ ├── gmock-more-actions.h │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ ├── gmock-nice-strict.h │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ ├── gmock.h │ │ │ │ └── internal │ │ │ │ ├── custom │ │ │ │ ├── README.md │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ ├── gmock-matchers.h │ │ │ │ └── gmock-port.h │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ ├── gmock-port.h │ │ │ │ └── gmock-pp.h │ │ ├── src │ │ │ ├── gmock-all.cc │ │ │ ├── gmock-cardinalities.cc │ │ │ ├── gmock-internal-utils.cc │ │ │ ├── gmock-matchers.cc │ │ │ ├── gmock-spec-builders.cc │ │ │ ├── gmock.cc │ │ │ └── gmock_main.cc │ │ └── test │ │ │ ├── BUILD.bazel │ │ │ ├── gmock-actions_test.cc │ │ │ ├── gmock-cardinalities_test.cc │ │ │ ├── gmock-function-mocker_test.cc │ │ │ ├── gmock-internal-utils_test.cc │ │ │ ├── gmock-matchers-arithmetic_test.cc │ │ │ ├── gmock-matchers-comparisons_test.cc │ │ │ ├── gmock-matchers-containers_test.cc │ │ │ ├── gmock-matchers-misc_test.cc │ │ │ ├── gmock-matchers_test.h │ │ │ ├── gmock-more-actions_test.cc │ │ │ ├── gmock-nice-strict_test.cc │ │ │ ├── gmock-port_test.cc │ │ │ ├── gmock-pp-string_test.cc │ │ │ ├── gmock-pp_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 │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── cmake │ │ ├── Config.cmake.in │ │ ├── gtest.pc.in │ │ ├── gtest_main.pc.in │ │ ├── internal_utils.cmake │ │ └── libgtest.la.in │ │ ├── docs │ │ └── README.md │ │ ├── include │ │ └── gtest │ │ │ ├── gtest-assertion-result.h │ │ │ ├── gtest-death-test.h │ │ │ ├── gtest-matchers.h │ │ │ ├── gtest-message.h │ │ │ ├── gtest-param-test.h │ │ │ ├── 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 │ │ │ ├── README.md │ │ │ ├── gtest-port.h │ │ │ ├── gtest-printers.h │ │ │ └── gtest.h │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port-arch.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ └── gtest-type-util.h │ │ ├── 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 │ │ ├── src │ │ ├── gtest-all.cc │ │ ├── gtest-assertion-result.cc │ │ ├── gtest-death-test.cc │ │ ├── gtest-filepath.cc │ │ ├── gtest-internal-inl.h │ │ ├── gtest-matchers.cc │ │ ├── gtest-port.cc │ │ ├── gtest-printers.cc │ │ ├── gtest-test-part.cc │ │ ├── gtest-typed-test.cc │ │ ├── gtest.cc │ │ └── gtest_main.cc │ │ └── test │ │ ├── BUILD.bazel │ │ ├── googletest-break-on-failure-unittest.py │ │ ├── googletest-break-on-failure-unittest_.cc │ │ ├── googletest-catch-exceptions-test.py │ │ ├── googletest-catch-exceptions-test_.cc │ │ ├── googletest-color-test.py │ │ ├── googletest-color-test_.cc │ │ ├── googletest-death-test-test.cc │ │ ├── googletest-death-test_ex_test.cc │ │ ├── googletest-env-var-test.py │ │ ├── googletest-env-var-test_.cc │ │ ├── googletest-failfast-unittest.py │ │ ├── googletest-failfast-unittest_.cc │ │ ├── googletest-filepath-test.cc │ │ ├── googletest-filter-unittest.py │ │ ├── googletest-filter-unittest_.cc │ │ ├── googletest-global-environment-unittest.py │ │ ├── googletest-global-environment-unittest_.cc │ │ ├── googletest-json-outfiles-test.py │ │ ├── googletest-json-output-unittest.py │ │ ├── googletest-list-tests-unittest.py │ │ ├── googletest-list-tests-unittest_.cc │ │ ├── googletest-listener-test.cc │ │ ├── googletest-message-test.cc │ │ ├── googletest-options-test.cc │ │ ├── googletest-output-test-golden-lin.txt │ │ ├── googletest-output-test.py │ │ ├── googletest-output-test_.cc │ │ ├── googletest-param-test-invalid-name1-test.py │ │ ├── googletest-param-test-invalid-name1-test_.cc │ │ ├── googletest-param-test-invalid-name2-test.py │ │ ├── googletest-param-test-invalid-name2-test_.cc │ │ ├── googletest-param-test-test.cc │ │ ├── googletest-param-test-test.h │ │ ├── googletest-param-test2-test.cc │ │ ├── googletest-port-test.cc │ │ ├── googletest-printers-test.cc │ │ ├── googletest-setuptestsuite-test.py │ │ ├── googletest-setuptestsuite-test_.cc │ │ ├── googletest-shuffle-test.py │ │ ├── googletest-shuffle-test_.cc │ │ ├── googletest-test-part-test.cc │ │ ├── googletest-throw-on-failure-test.py │ │ ├── googletest-throw-on-failure-test_.cc │ │ ├── googletest-uninitialized-test.py │ │ ├── googletest-uninitialized-test_.cc │ │ ├── gtest-typed-test2_test.cc │ │ ├── gtest-typed-test_test.cc │ │ ├── gtest-typed-test_test.h │ │ ├── gtest-unittest-api_test.cc │ │ ├── gtest_all_test.cc │ │ ├── gtest_assert_by_exception_test.cc │ │ ├── gtest_environment_test.cc │ │ ├── gtest_help_test.py │ │ ├── gtest_help_test_.cc │ │ ├── gtest_json_test_utils.py │ │ ├── gtest_list_output_unittest.py │ │ ├── gtest_list_output_unittest_.cc │ │ ├── gtest_main_unittest.cc │ │ ├── gtest_no_test_unittest.cc │ │ ├── gtest_pred_impl_unittest.cc │ │ ├── gtest_premature_exit_test.cc │ │ ├── gtest_prod_test.cc │ │ ├── gtest_repeat_test.cc │ │ ├── gtest_skip_check_output_test.py │ │ ├── gtest_skip_environment_check_output_test.py │ │ ├── gtest_skip_in_environment_setup_test.cc │ │ ├── gtest_skip_test.cc │ │ ├── gtest_sole_header_test.cc │ │ ├── gtest_stress_test.cc │ │ ├── gtest_test_macro_stack_footprint_test.cc │ │ ├── gtest_test_utils.py │ │ ├── gtest_testbridge_test.py │ │ ├── gtest_testbridge_test_.cc │ │ ├── gtest_throw_on_failure_ex_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 ├── iniparser │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── INSTALL │ ├── LICENSE │ ├── Makefile │ ├── README │ ├── html │ │ ├── bc_s.png │ │ ├── closed.png │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── globals_func.html │ │ ├── index.html │ │ ├── iniparser_8h.html │ │ ├── iniparser_8main.html │ │ ├── nav_f.png │ │ ├── nav_h.png │ │ ├── open.png │ │ ├── tab_a.png │ │ ├── tab_b.gif │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_l.gif │ │ ├── tab_r.gif │ │ ├── tab_s.png │ │ └── tabs.css │ ├── src │ │ ├── CMakeLists.txt │ │ ├── dictionary.c │ │ ├── dictionary.h │ │ ├── iniparser.c │ │ └── iniparser.h │ └── test │ │ ├── Makefile │ │ ├── iniexample.c │ │ ├── parse.c │ │ ├── twisted-errors.ini │ │ ├── twisted-genhuge.py │ │ ├── twisted-ofkey.ini │ │ ├── twisted-ofval.ini │ │ └── twisted.ini ├── jsoncpp │ ├── .clang-format │ ├── .travis.yml │ └── dist │ │ ├── CMakeLists.txt │ │ ├── json │ │ ├── json-forwards.h │ │ └── json.h │ │ ├── jsoncpp-doxygen-warning.log │ │ └── jsoncpp.cpp └── openpa │ ├── README.md │ └── opa_queue.h ├── options └── src ├── CMakeLists.txt ├── integration ├── CMakeLists.txt ├── pintool │ ├── CMakeLists.txt │ ├── Makefile.pin.in │ ├── makefile.rules.in │ ├── numaprof.cpp │ └── scala.sh └── scripts │ ├── CMakeLists.txt │ ├── numaprof-pintool.sh.in │ └── numaprof-to-callgrind.py ├── lib ├── CMakeLists.txt ├── caches │ ├── CMakeLists.txt │ ├── CpuCache.cpp │ ├── CpuCache.hpp │ ├── CpuCacheBuilder.cpp │ ├── CpuCacheBuilder.hpp │ ├── CpuCacheDummy.cpp │ ├── CpuCacheDummy.hpp │ ├── CpuSimpleFlatCache.cpp │ ├── CpuSimpleFlatCache.hpp │ ├── CpuSimpleFlatCacheStatic.hpp │ └── CpuSimpleFlatCacheStatic_impl.hpp ├── common │ ├── CMakeLists.txt │ ├── Debug.cpp │ ├── Debug.hpp │ ├── FormattedMessage.cpp │ ├── FormattedMessage.hpp │ ├── Helper.cpp │ ├── Helper.hpp │ ├── Options.cpp │ ├── Options.hpp │ ├── StaticAssoCache.hpp │ └── StaticAssoCache_impl.hpp ├── core │ ├── AccessMatrix.cpp │ ├── AccessMatrix.hpp │ ├── CMakeLists.txt │ ├── MallocTracker.cpp │ ├── MallocTracker.hpp │ ├── PageTable.cpp │ ├── PageTable.hpp │ ├── ProcessTracker.cpp │ ├── ProcessTracker.hpp │ ├── Stack.cpp │ ├── Stack.hpp │ ├── Stats.cpp │ ├── Stats.hpp │ ├── ThreadTracker.cpp │ └── ThreadTracker.hpp ├── portability │ ├── CMakeLists.txt │ ├── Clock.cpp │ ├── Clock.hpp │ ├── Mutex.hpp │ ├── NumaTopo.cpp │ ├── NumaTopo.hpp │ ├── OS.cpp │ ├── OS.hpp │ ├── TopoHwloc.cpp │ └── TopoHwloc.hpp └── tests │ ├── BenchCpuCache.cpp │ ├── BenchInstrCache.cpp │ ├── BenchTBLVsPageTable.cpp │ ├── CMakeLists.txt │ ├── ReplayAllocTracker.cpp │ ├── TestCpuCacheBuilder.cpp │ ├── TestCpuCacheDummy.cpp │ ├── TestCpuSimpleFlatCache.cpp │ ├── TestCpuSimpleFlatCacheStatic.cpp │ ├── TestFormattedMessage.cpp │ ├── TestHelper.cpp │ ├── TestMallocTracker.cpp │ ├── TestMovePages.cpp │ ├── TestPageTable.cpp │ ├── TestStack.cpp │ └── TestStaticAssoCache.cpp ├── manpages ├── CMakeLists.txt ├── Makefile ├── numaprof-passwd.1.bz2 ├── numaprof-passwd.1.html ├── numaprof-passwd.ronn ├── numaprof-qt5.1.bz2 ├── numaprof-qt5.1.html ├── numaprof-qt5.ronn ├── numaprof-webview.1.bz2 ├── numaprof-webview.1.html ├── numaprof-webview.ronn ├── numaprof.1.bz2 ├── numaprof.1.html └── numaprof.ronn ├── qtview ├── CMakeLists.txt └── main.cpp ├── testcase ├── CMakeLists.txt ├── case-omp-stack-issue.cpp ├── case-openmp-loop.cpp ├── main-1G-big-alloc.cpp ├── main-1G-small-alloc.cpp ├── main-simple.cpp └── main-threads.cpp └── webview ├── CMakeLists.txt ├── Helper.py ├── ProfileHandler.py ├── bower.json ├── nhtpasswd.py ├── nhtpasswd.sh ├── nocache.py ├── prepare.sh ├── server.py ├── server.sh ├── static ├── css │ ├── prism.css │ ├── sources.css │ └── style.css └── js │ ├── details.js │ ├── helper.js │ ├── index.js │ ├── metrics.js │ ├── prism.js │ ├── selector.js │ ├── source-editor.js │ ├── sources.js │ └── threads.js ├── templates ├── asm.html ├── details.html ├── help.html ├── index.html ├── layout.html ├── sources.html └── threads.html ├── webview-htpasswd.sh.in └── webview.sh.in /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/snippets/cmake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/.vscode/snippets/cmake.json -------------------------------------------------------------------------------- /.vscode/snippets/cpp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/.vscode/snippets/cpp.json -------------------------------------------------------------------------------- /.vscode/snippets/css.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/.vscode/snippets/css.json -------------------------------------------------------------------------------- /.vscode/snippets/javascript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/.vscode/snippets/javascript.json -------------------------------------------------------------------------------- /.vscode/snippets/python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/.vscode/snippets/python.json -------------------------------------------------------------------------------- /.vscode/snippets/shellscript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/.vscode/snippets/shellscript.json -------------------------------------------------------------------------------- /Authors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/Authors.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/Doxyfile -------------------------------------------------------------------------------- /Licence_CeCILL-C-en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/Licence_CeCILL-C-en.txt -------------------------------------------------------------------------------- /Licence_CeCILL-C-fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/Licence_CeCILL-C-fr.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/README.md -------------------------------------------------------------------------------- /cmake/FindGMock.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/cmake/FindGMock.cmake -------------------------------------------------------------------------------- /cmake/FindHwloc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/cmake/FindHwloc.cmake -------------------------------------------------------------------------------- /cmake/FindNpm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/cmake/FindNpm.cmake -------------------------------------------------------------------------------- /cmake/FindNumactl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/cmake/FindNumactl.cmake -------------------------------------------------------------------------------- /cmake/FindPintool.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/cmake/FindPintool.cmake -------------------------------------------------------------------------------- /cmake/FindPip.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/cmake/FindPip.cmake -------------------------------------------------------------------------------- /cmake/macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/cmake/macros.cmake -------------------------------------------------------------------------------- /cmake/unittest-macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/cmake/unittest-macros.cmake -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/configure -------------------------------------------------------------------------------- /dev/gen-archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/dev/gen-archive.sh -------------------------------------------------------------------------------- /dev/update-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/dev/update-version.sh -------------------------------------------------------------------------------- /doc/bibliography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/doc/bibliography.md -------------------------------------------------------------------------------- /extern-deps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/CMakeLists.txt -------------------------------------------------------------------------------- /extern-deps/from-fftw/cycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/from-fftw/cycle.h -------------------------------------------------------------------------------- /extern-deps/from-htopml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/from-htopml/CMakeLists.txt -------------------------------------------------------------------------------- /extern-deps/from-htopml/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/from-htopml/Readme.txt -------------------------------------------------------------------------------- /extern-deps/from-htopml/json/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/from-htopml/json/CMakeLists.txt -------------------------------------------------------------------------------- /extern-deps/from-htopml/json/ConvertToJson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/from-htopml/json/ConvertToJson.cpp -------------------------------------------------------------------------------- /extern-deps/from-htopml/json/ConvertToJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/from-htopml/json/ConvertToJson.h -------------------------------------------------------------------------------- /extern-deps/from-htopml/json/ConvertToJson_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/from-htopml/json/ConvertToJson_impl.h -------------------------------------------------------------------------------- /extern-deps/from-htopml/json/FastBufferdStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/from-htopml/json/FastBufferdStream.hpp -------------------------------------------------------------------------------- /extern-deps/from-htopml/json/JsonState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/from-htopml/json/JsonState.cpp -------------------------------------------------------------------------------- /extern-deps/from-htopml/json/JsonState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/from-htopml/json/JsonState.h -------------------------------------------------------------------------------- /extern-deps/from-htopml/json/JsonState_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/from-htopml/json/JsonState_impl.h -------------------------------------------------------------------------------- /extern-deps/from-malt-v2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/from-malt-v2/CMakeLists.txt -------------------------------------------------------------------------------- /extern-deps/from-malt-v2/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/from-malt-v2/Debug.cpp -------------------------------------------------------------------------------- /extern-deps/from-malt-v2/Debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/from-malt-v2/Debug.hpp -------------------------------------------------------------------------------- /extern-deps/from-malt-v2/FormattedMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/from-malt-v2/FormattedMessage.cpp -------------------------------------------------------------------------------- /extern-deps/from-malt-v2/FormattedMessage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/from-malt-v2/FormattedMessage.hpp -------------------------------------------------------------------------------- /extern-deps/from-malt-v2/LinuxProcMapReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/from-malt-v2/LinuxProcMapReader.cpp -------------------------------------------------------------------------------- /extern-deps/from-malt-v2/LinuxProcMapReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/from-malt-v2/LinuxProcMapReader.hpp -------------------------------------------------------------------------------- /extern-deps/from-malt-v2/SymbolRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/from-malt-v2/SymbolRegistry.cpp -------------------------------------------------------------------------------- /extern-deps/from-malt-v2/SymbolRegistry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/from-malt-v2/SymbolRegistry.hpp -------------------------------------------------------------------------------- /extern-deps/from-numactl/MovePages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/from-numactl/MovePages.cpp -------------------------------------------------------------------------------- /extern-deps/from-numactl/MovePages.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/from-numactl/MovePages.hpp -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/.clang-format -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/.github/ISSUE_TEMPLATE/00-bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/.github/ISSUE_TEMPLATE/00-bug_report.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/.github/ISSUE_TEMPLATE/10-feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/.github/ISSUE_TEMPLATE/10-feature_request.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/.github/workflows/gtest-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/.github/workflows/gtest-ci.yml -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/.gitignore -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/BUILD.bazel -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/CMakeLists.txt -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/CONTRIBUTING.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/CONTRIBUTORS -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/LICENSE -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/README.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/WORKSPACE -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/ci/linux-presubmit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/ci/linux-presubmit.sh -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/ci/macos-presubmit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/ci/macos-presubmit.sh -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/docs/_config.yml: -------------------------------------------------------------------------------- 1 | title: GoogleTest 2 | -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/docs/_data/navigation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/docs/_data/navigation.yml -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/docs/_layouts/default.html -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/docs/_sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/docs/_sass/main.scss -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/docs/advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/docs/advanced.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/docs/assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/docs/assets/css/style.scss -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/docs/community_created_documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/docs/community_created_documentation.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/docs/faq.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/docs/gmock_cheat_sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/docs/gmock_cheat_sheet.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/docs/gmock_cook_book.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/docs/gmock_cook_book.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/docs/gmock_faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/docs/gmock_faq.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/docs/gmock_for_dummies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/docs/gmock_for_dummies.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/docs/index.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/docs/pkgconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/docs/pkgconfig.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/docs/platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/docs/platforms.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/docs/primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/docs/primer.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/docs/quickstart-bazel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/docs/quickstart-bazel.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/docs/quickstart-cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/docs/quickstart-cmake.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/docs/reference/actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/docs/reference/actions.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/docs/reference/assertions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/docs/reference/assertions.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/docs/reference/matchers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/docs/reference/matchers.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/docs/reference/mocking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/docs/reference/mocking.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/docs/reference/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/docs/reference/testing.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/docs/samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/docs/samples.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/CMakeLists.txt -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/README.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/cmake/gmock.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/cmake/gmock.pc.in -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/cmake/gmock_main.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/cmake/gmock_main.pc.in -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/docs/README.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/include/gmock/gmock-actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/include/gmock/gmock-actions.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/include/gmock/gmock-cardinalities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/include/gmock/gmock-cardinalities.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/include/gmock/gmock-function-mocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/include/gmock/gmock-function-mocker.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/include/gmock/gmock-matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/include/gmock/gmock-matchers.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/include/gmock/gmock-more-actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/include/gmock/gmock-more-actions.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/include/gmock/gmock-more-matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/include/gmock/gmock-more-matchers.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/include/gmock/gmock-nice-strict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/include/gmock/gmock-nice-strict.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/include/gmock/gmock-spec-builders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/include/gmock/gmock-spec-builders.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/include/gmock/gmock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/include/gmock/gmock.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/include/gmock/internal/custom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/include/gmock/internal/custom/README.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/include/gmock/internal/custom/gmock-generated-actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/include/gmock/internal/custom/gmock-generated-actions.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/include/gmock/internal/custom/gmock-matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/include/gmock/internal/custom/gmock-matchers.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/include/gmock/internal/custom/gmock-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/include/gmock/internal/custom/gmock-port.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/include/gmock/internal/gmock-internal-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/include/gmock/internal/gmock-internal-utils.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/include/gmock/internal/gmock-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/include/gmock/internal/gmock-port.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/include/gmock/internal/gmock-pp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/include/gmock/internal/gmock-pp.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/src/gmock-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/src/gmock-all.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/src/gmock-cardinalities.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/src/gmock-cardinalities.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/src/gmock-internal-utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/src/gmock-internal-utils.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/src/gmock-matchers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/src/gmock-matchers.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/src/gmock-spec-builders.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/src/gmock-spec-builders.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/src/gmock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/src/gmock.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/src/gmock_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/src/gmock_main.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/BUILD.bazel -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock-actions_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock-actions_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock-cardinalities_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock-cardinalities_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock-function-mocker_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock-function-mocker_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock-internal-utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock-internal-utils_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock-matchers-arithmetic_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock-matchers-arithmetic_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock-matchers-comparisons_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock-matchers-comparisons_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock-matchers-containers_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock-matchers-containers_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock-matchers-misc_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock-matchers-misc_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock-matchers_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock-matchers_test.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock-more-actions_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock-more-actions_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock-nice-strict_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock-nice-strict_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock-port_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock-port_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock-pp-string_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock-pp-string_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock-pp_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock-pp_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock-spec-builders_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock-spec-builders_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock_all_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock_ex_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock_leak_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock_leak_test.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock_leak_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock_leak_test_.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock_link2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock_link2_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock_link_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock_link_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock_link_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock_link_test.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock_output_test.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock_output_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock_output_test_.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock_output_test_golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock_output_test_golden.txt -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock_stress_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googlemock/test/gmock_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googlemock/test/gmock_test_utils.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/CMakeLists.txt -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/README.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/cmake/Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/cmake/Config.cmake.in -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/cmake/gtest.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/cmake/gtest.pc.in -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/cmake/gtest_main.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/cmake/gtest_main.pc.in -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/cmake/internal_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/cmake/internal_utils.cmake -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/cmake/libgtest.la.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/cmake/libgtest.la.in -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/docs/README.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/include/gtest/gtest-assertion-result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/include/gtest/gtest-assertion-result.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/include/gtest/gtest-matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/include/gtest/gtest-matchers.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/include/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/include/gtest/gtest-printers.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/include/gtest/gtest.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/include/gtest/internal/custom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/include/gtest/internal/custom/README.md -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/include/gtest/internal/custom/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/include/gtest/internal/custom/gtest-port.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/include/gtest/internal/custom/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/include/gtest/internal/custom/gtest-printers.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/include/gtest/internal/custom/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/include/gtest/internal/custom/gtest.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/include/gtest/internal/gtest-death-test-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/include/gtest/internal/gtest-death-test-internal.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/include/gtest/internal/gtest-filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/include/gtest/internal/gtest-filepath.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/include/gtest/internal/gtest-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/include/gtest/internal/gtest-internal.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/include/gtest/internal/gtest-param-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/include/gtest/internal/gtest-param-util.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/include/gtest/internal/gtest-port-arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/include/gtest/internal/gtest-port-arch.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/include/gtest/internal/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/include/gtest/internal/gtest-port.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/include/gtest/internal/gtest-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/include/gtest/internal/gtest-string.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/include/gtest/internal/gtest-type-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/include/gtest/internal/gtest-type-util.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/samples/prime_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/samples/prime_tables.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/samples/sample1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/samples/sample1.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/samples/sample1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/samples/sample1.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/samples/sample10_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/samples/sample10_unittest.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/samples/sample1_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/samples/sample1_unittest.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/samples/sample2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/samples/sample2.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/samples/sample2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/samples/sample2.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/samples/sample2_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/samples/sample2_unittest.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/samples/sample3-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/samples/sample3-inl.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/samples/sample3_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/samples/sample3_unittest.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/samples/sample4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/samples/sample4.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/samples/sample4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/samples/sample4.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/samples/sample4_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/samples/sample4_unittest.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/samples/sample5_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/samples/sample5_unittest.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/samples/sample6_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/samples/sample6_unittest.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/samples/sample7_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/samples/sample7_unittest.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/samples/sample8_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/samples/sample8_unittest.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/samples/sample9_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/samples/sample9_unittest.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/src/gtest-all.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/src/gtest-assertion-result.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/src/gtest-assertion-result.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/src/gtest-death-test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/src/gtest-matchers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/src/gtest-matchers.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/src/gtest-port.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/src/gtest-printers.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/src/gtest.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/src/gtest_main.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/BUILD.bazel -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-break-on-failure-unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-break-on-failure-unittest.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-break-on-failure-unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-break-on-failure-unittest_.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-catch-exceptions-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-catch-exceptions-test.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-catch-exceptions-test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-catch-exceptions-test_.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-color-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-color-test.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-color-test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-color-test_.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-death-test-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-death-test-test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-death-test_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-death-test_ex_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-env-var-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-env-var-test.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-env-var-test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-env-var-test_.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-failfast-unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-failfast-unittest.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-failfast-unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-failfast-unittest_.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-filepath-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-filepath-test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-filter-unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-filter-unittest.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-filter-unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-filter-unittest_.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-global-environment-unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-global-environment-unittest.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-global-environment-unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-global-environment-unittest_.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-json-outfiles-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-json-outfiles-test.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-json-output-unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-json-output-unittest.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-list-tests-unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-list-tests-unittest.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-list-tests-unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-list-tests-unittest_.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-listener-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-listener-test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-message-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-message-test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-options-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-options-test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-output-test-golden-lin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-output-test-golden-lin.txt -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-output-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-output-test.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-output-test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-output-test_.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-param-test-invalid-name1-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-param-test-invalid-name1-test.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-param-test-invalid-name1-test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-param-test-invalid-name1-test_.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-param-test-invalid-name2-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-param-test-invalid-name2-test.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-param-test-invalid-name2-test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-param-test-invalid-name2-test_.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-param-test-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-param-test-test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-param-test-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-param-test-test.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-param-test2-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-param-test2-test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-port-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-port-test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-printers-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-printers-test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-setuptestsuite-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-setuptestsuite-test.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-setuptestsuite-test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-setuptestsuite-test_.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-shuffle-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-shuffle-test.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-shuffle-test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-shuffle-test_.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-test-part-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-test-part-test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-throw-on-failure-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-throw-on-failure-test.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-throw-on-failure-test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-throw-on-failure-test_.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-uninitialized-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-uninitialized-test.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/googletest-uninitialized-test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/googletest-uninitialized-test_.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest-typed-test2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest-typed-test2_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest-typed-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest-typed-test_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest-typed-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest-typed-test_test.h -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest-unittest-api_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest-unittest-api_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_all_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_assert_by_exception_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_assert_by_exception_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_environment_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_environment_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_help_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_help_test.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_help_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_help_test_.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_json_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_json_test_utils.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_list_output_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_list_output_unittest.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_list_output_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_list_output_unittest_.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_main_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_main_unittest.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_no_test_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_no_test_unittest.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_pred_impl_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_pred_impl_unittest.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_premature_exit_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_premature_exit_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_prod_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_prod_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_repeat_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_repeat_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_skip_check_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_skip_check_output_test.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_skip_environment_check_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_skip_environment_check_output_test.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_skip_in_environment_setup_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_skip_in_environment_setup_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_skip_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_skip_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_sole_header_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_sole_header_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_stress_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_test_macro_stack_footprint_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_test_macro_stack_footprint_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_test_utils.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_testbridge_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_testbridge_test.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_testbridge_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_testbridge_test_.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_throw_on_failure_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_throw_on_failure_ex_test.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_unittest.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_xml_outfile1_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_xml_outfile1_test_.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_xml_outfile2_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_xml_outfile2_test_.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_xml_outfiles_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_xml_outfiles_test.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_xml_output_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_xml_output_unittest.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_xml_output_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_xml_output_unittest_.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/gtest_xml_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/gtest_xml_test_utils.py -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/production.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/production.cc -------------------------------------------------------------------------------- /extern-deps/gmock-1.12.1/googletest/test/production.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/gmock-1.12.1/googletest/test/production.h -------------------------------------------------------------------------------- /extern-deps/iniparser/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/AUTHORS -------------------------------------------------------------------------------- /extern-deps/iniparser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/CMakeLists.txt -------------------------------------------------------------------------------- /extern-deps/iniparser/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/INSTALL -------------------------------------------------------------------------------- /extern-deps/iniparser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/LICENSE -------------------------------------------------------------------------------- /extern-deps/iniparser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/Makefile -------------------------------------------------------------------------------- /extern-deps/iniparser/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/README -------------------------------------------------------------------------------- /extern-deps/iniparser/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/html/bc_s.png -------------------------------------------------------------------------------- /extern-deps/iniparser/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/html/closed.png -------------------------------------------------------------------------------- /extern-deps/iniparser/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/html/doxygen.css -------------------------------------------------------------------------------- /extern-deps/iniparser/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/html/doxygen.png -------------------------------------------------------------------------------- /extern-deps/iniparser/html/globals_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/html/globals_func.html -------------------------------------------------------------------------------- /extern-deps/iniparser/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/html/index.html -------------------------------------------------------------------------------- /extern-deps/iniparser/html/iniparser_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/html/iniparser_8h.html -------------------------------------------------------------------------------- /extern-deps/iniparser/html/iniparser_8main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/html/iniparser_8main.html -------------------------------------------------------------------------------- /extern-deps/iniparser/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/html/nav_f.png -------------------------------------------------------------------------------- /extern-deps/iniparser/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/html/nav_h.png -------------------------------------------------------------------------------- /extern-deps/iniparser/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/html/open.png -------------------------------------------------------------------------------- /extern-deps/iniparser/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/html/tab_a.png -------------------------------------------------------------------------------- /extern-deps/iniparser/html/tab_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/html/tab_b.gif -------------------------------------------------------------------------------- /extern-deps/iniparser/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/html/tab_b.png -------------------------------------------------------------------------------- /extern-deps/iniparser/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/html/tab_h.png -------------------------------------------------------------------------------- /extern-deps/iniparser/html/tab_l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/html/tab_l.gif -------------------------------------------------------------------------------- /extern-deps/iniparser/html/tab_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/html/tab_r.gif -------------------------------------------------------------------------------- /extern-deps/iniparser/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/html/tab_s.png -------------------------------------------------------------------------------- /extern-deps/iniparser/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/html/tabs.css -------------------------------------------------------------------------------- /extern-deps/iniparser/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/src/CMakeLists.txt -------------------------------------------------------------------------------- /extern-deps/iniparser/src/dictionary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/src/dictionary.c -------------------------------------------------------------------------------- /extern-deps/iniparser/src/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/src/dictionary.h -------------------------------------------------------------------------------- /extern-deps/iniparser/src/iniparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/src/iniparser.c -------------------------------------------------------------------------------- /extern-deps/iniparser/src/iniparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/src/iniparser.h -------------------------------------------------------------------------------- /extern-deps/iniparser/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/test/Makefile -------------------------------------------------------------------------------- /extern-deps/iniparser/test/iniexample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/test/iniexample.c -------------------------------------------------------------------------------- /extern-deps/iniparser/test/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/test/parse.c -------------------------------------------------------------------------------- /extern-deps/iniparser/test/twisted-errors.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/test/twisted-errors.ini -------------------------------------------------------------------------------- /extern-deps/iniparser/test/twisted-genhuge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/test/twisted-genhuge.py -------------------------------------------------------------------------------- /extern-deps/iniparser/test/twisted-ofkey.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/test/twisted-ofkey.ini -------------------------------------------------------------------------------- /extern-deps/iniparser/test/twisted-ofval.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/test/twisted-ofval.ini -------------------------------------------------------------------------------- /extern-deps/iniparser/test/twisted.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/iniparser/test/twisted.ini -------------------------------------------------------------------------------- /extern-deps/jsoncpp/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/jsoncpp/.clang-format -------------------------------------------------------------------------------- /extern-deps/jsoncpp/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/jsoncpp/.travis.yml -------------------------------------------------------------------------------- /extern-deps/jsoncpp/dist/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/jsoncpp/dist/CMakeLists.txt -------------------------------------------------------------------------------- /extern-deps/jsoncpp/dist/json/json-forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/jsoncpp/dist/json/json-forwards.h -------------------------------------------------------------------------------- /extern-deps/jsoncpp/dist/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/jsoncpp/dist/json/json.h -------------------------------------------------------------------------------- /extern-deps/jsoncpp/dist/jsoncpp-doxygen-warning.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/jsoncpp/dist/jsoncpp-doxygen-warning.log -------------------------------------------------------------------------------- /extern-deps/jsoncpp/dist/jsoncpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/jsoncpp/dist/jsoncpp.cpp -------------------------------------------------------------------------------- /extern-deps/openpa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/openpa/README.md -------------------------------------------------------------------------------- /extern-deps/openpa/opa_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/extern-deps/openpa/opa_queue.h -------------------------------------------------------------------------------- /options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/options -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/integration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/integration/CMakeLists.txt -------------------------------------------------------------------------------- /src/integration/pintool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/integration/pintool/CMakeLists.txt -------------------------------------------------------------------------------- /src/integration/pintool/Makefile.pin.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/integration/pintool/Makefile.pin.in -------------------------------------------------------------------------------- /src/integration/pintool/makefile.rules.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/integration/pintool/makefile.rules.in -------------------------------------------------------------------------------- /src/integration/pintool/numaprof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/integration/pintool/numaprof.cpp -------------------------------------------------------------------------------- /src/integration/pintool/scala.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/integration/pintool/scala.sh -------------------------------------------------------------------------------- /src/integration/scripts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/integration/scripts/CMakeLists.txt -------------------------------------------------------------------------------- /src/integration/scripts/numaprof-pintool.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/integration/scripts/numaprof-pintool.sh.in -------------------------------------------------------------------------------- /src/integration/scripts/numaprof-to-callgrind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/integration/scripts/numaprof-to-callgrind.py -------------------------------------------------------------------------------- /src/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/caches/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/caches/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/caches/CpuCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/caches/CpuCache.cpp -------------------------------------------------------------------------------- /src/lib/caches/CpuCache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/caches/CpuCache.hpp -------------------------------------------------------------------------------- /src/lib/caches/CpuCacheBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/caches/CpuCacheBuilder.cpp -------------------------------------------------------------------------------- /src/lib/caches/CpuCacheBuilder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/caches/CpuCacheBuilder.hpp -------------------------------------------------------------------------------- /src/lib/caches/CpuCacheDummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/caches/CpuCacheDummy.cpp -------------------------------------------------------------------------------- /src/lib/caches/CpuCacheDummy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/caches/CpuCacheDummy.hpp -------------------------------------------------------------------------------- /src/lib/caches/CpuSimpleFlatCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/caches/CpuSimpleFlatCache.cpp -------------------------------------------------------------------------------- /src/lib/caches/CpuSimpleFlatCache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/caches/CpuSimpleFlatCache.hpp -------------------------------------------------------------------------------- /src/lib/caches/CpuSimpleFlatCacheStatic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/caches/CpuSimpleFlatCacheStatic.hpp -------------------------------------------------------------------------------- /src/lib/caches/CpuSimpleFlatCacheStatic_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/caches/CpuSimpleFlatCacheStatic_impl.hpp -------------------------------------------------------------------------------- /src/lib/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/common/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/common/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/common/Debug.cpp -------------------------------------------------------------------------------- /src/lib/common/Debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/common/Debug.hpp -------------------------------------------------------------------------------- /src/lib/common/FormattedMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/common/FormattedMessage.cpp -------------------------------------------------------------------------------- /src/lib/common/FormattedMessage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/common/FormattedMessage.hpp -------------------------------------------------------------------------------- /src/lib/common/Helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/common/Helper.cpp -------------------------------------------------------------------------------- /src/lib/common/Helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/common/Helper.hpp -------------------------------------------------------------------------------- /src/lib/common/Options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/common/Options.cpp -------------------------------------------------------------------------------- /src/lib/common/Options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/common/Options.hpp -------------------------------------------------------------------------------- /src/lib/common/StaticAssoCache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/common/StaticAssoCache.hpp -------------------------------------------------------------------------------- /src/lib/common/StaticAssoCache_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/common/StaticAssoCache_impl.hpp -------------------------------------------------------------------------------- /src/lib/core/AccessMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/core/AccessMatrix.cpp -------------------------------------------------------------------------------- /src/lib/core/AccessMatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/core/AccessMatrix.hpp -------------------------------------------------------------------------------- /src/lib/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/core/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/core/MallocTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/core/MallocTracker.cpp -------------------------------------------------------------------------------- /src/lib/core/MallocTracker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/core/MallocTracker.hpp -------------------------------------------------------------------------------- /src/lib/core/PageTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/core/PageTable.cpp -------------------------------------------------------------------------------- /src/lib/core/PageTable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/core/PageTable.hpp -------------------------------------------------------------------------------- /src/lib/core/ProcessTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/core/ProcessTracker.cpp -------------------------------------------------------------------------------- /src/lib/core/ProcessTracker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/core/ProcessTracker.hpp -------------------------------------------------------------------------------- /src/lib/core/Stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/core/Stack.cpp -------------------------------------------------------------------------------- /src/lib/core/Stack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/core/Stack.hpp -------------------------------------------------------------------------------- /src/lib/core/Stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/core/Stats.cpp -------------------------------------------------------------------------------- /src/lib/core/Stats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/core/Stats.hpp -------------------------------------------------------------------------------- /src/lib/core/ThreadTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/core/ThreadTracker.cpp -------------------------------------------------------------------------------- /src/lib/core/ThreadTracker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/core/ThreadTracker.hpp -------------------------------------------------------------------------------- /src/lib/portability/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/portability/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/portability/Clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/portability/Clock.cpp -------------------------------------------------------------------------------- /src/lib/portability/Clock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/portability/Clock.hpp -------------------------------------------------------------------------------- /src/lib/portability/Mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/portability/Mutex.hpp -------------------------------------------------------------------------------- /src/lib/portability/NumaTopo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/portability/NumaTopo.cpp -------------------------------------------------------------------------------- /src/lib/portability/NumaTopo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/portability/NumaTopo.hpp -------------------------------------------------------------------------------- /src/lib/portability/OS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/portability/OS.cpp -------------------------------------------------------------------------------- /src/lib/portability/OS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/portability/OS.hpp -------------------------------------------------------------------------------- /src/lib/portability/TopoHwloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/portability/TopoHwloc.cpp -------------------------------------------------------------------------------- /src/lib/portability/TopoHwloc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/portability/TopoHwloc.hpp -------------------------------------------------------------------------------- /src/lib/tests/BenchCpuCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/tests/BenchCpuCache.cpp -------------------------------------------------------------------------------- /src/lib/tests/BenchInstrCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/tests/BenchInstrCache.cpp -------------------------------------------------------------------------------- /src/lib/tests/BenchTBLVsPageTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/tests/BenchTBLVsPageTable.cpp -------------------------------------------------------------------------------- /src/lib/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/tests/ReplayAllocTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/tests/ReplayAllocTracker.cpp -------------------------------------------------------------------------------- /src/lib/tests/TestCpuCacheBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/tests/TestCpuCacheBuilder.cpp -------------------------------------------------------------------------------- /src/lib/tests/TestCpuCacheDummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/tests/TestCpuCacheDummy.cpp -------------------------------------------------------------------------------- /src/lib/tests/TestCpuSimpleFlatCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/tests/TestCpuSimpleFlatCache.cpp -------------------------------------------------------------------------------- /src/lib/tests/TestCpuSimpleFlatCacheStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/tests/TestCpuSimpleFlatCacheStatic.cpp -------------------------------------------------------------------------------- /src/lib/tests/TestFormattedMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/tests/TestFormattedMessage.cpp -------------------------------------------------------------------------------- /src/lib/tests/TestHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/tests/TestHelper.cpp -------------------------------------------------------------------------------- /src/lib/tests/TestMallocTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/tests/TestMallocTracker.cpp -------------------------------------------------------------------------------- /src/lib/tests/TestMovePages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/tests/TestMovePages.cpp -------------------------------------------------------------------------------- /src/lib/tests/TestPageTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/tests/TestPageTable.cpp -------------------------------------------------------------------------------- /src/lib/tests/TestStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/tests/TestStack.cpp -------------------------------------------------------------------------------- /src/lib/tests/TestStaticAssoCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/lib/tests/TestStaticAssoCache.cpp -------------------------------------------------------------------------------- /src/manpages/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/manpages/CMakeLists.txt -------------------------------------------------------------------------------- /src/manpages/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/manpages/Makefile -------------------------------------------------------------------------------- /src/manpages/numaprof-passwd.1.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/manpages/numaprof-passwd.1.bz2 -------------------------------------------------------------------------------- /src/manpages/numaprof-passwd.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/manpages/numaprof-passwd.1.html -------------------------------------------------------------------------------- /src/manpages/numaprof-passwd.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/manpages/numaprof-passwd.ronn -------------------------------------------------------------------------------- /src/manpages/numaprof-qt5.1.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/manpages/numaprof-qt5.1.bz2 -------------------------------------------------------------------------------- /src/manpages/numaprof-qt5.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/manpages/numaprof-qt5.1.html -------------------------------------------------------------------------------- /src/manpages/numaprof-qt5.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/manpages/numaprof-qt5.ronn -------------------------------------------------------------------------------- /src/manpages/numaprof-webview.1.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/manpages/numaprof-webview.1.bz2 -------------------------------------------------------------------------------- /src/manpages/numaprof-webview.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/manpages/numaprof-webview.1.html -------------------------------------------------------------------------------- /src/manpages/numaprof-webview.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/manpages/numaprof-webview.ronn -------------------------------------------------------------------------------- /src/manpages/numaprof.1.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/manpages/numaprof.1.bz2 -------------------------------------------------------------------------------- /src/manpages/numaprof.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/manpages/numaprof.1.html -------------------------------------------------------------------------------- /src/manpages/numaprof.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/manpages/numaprof.ronn -------------------------------------------------------------------------------- /src/qtview/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/qtview/CMakeLists.txt -------------------------------------------------------------------------------- /src/qtview/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/qtview/main.cpp -------------------------------------------------------------------------------- /src/testcase/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/testcase/CMakeLists.txt -------------------------------------------------------------------------------- /src/testcase/case-omp-stack-issue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/testcase/case-omp-stack-issue.cpp -------------------------------------------------------------------------------- /src/testcase/case-openmp-loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/testcase/case-openmp-loop.cpp -------------------------------------------------------------------------------- /src/testcase/main-1G-big-alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/testcase/main-1G-big-alloc.cpp -------------------------------------------------------------------------------- /src/testcase/main-1G-small-alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/testcase/main-1G-small-alloc.cpp -------------------------------------------------------------------------------- /src/testcase/main-simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/testcase/main-simple.cpp -------------------------------------------------------------------------------- /src/testcase/main-threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/testcase/main-threads.cpp -------------------------------------------------------------------------------- /src/webview/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/CMakeLists.txt -------------------------------------------------------------------------------- /src/webview/Helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/Helper.py -------------------------------------------------------------------------------- /src/webview/ProfileHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/ProfileHandler.py -------------------------------------------------------------------------------- /src/webview/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/bower.json -------------------------------------------------------------------------------- /src/webview/nhtpasswd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/nhtpasswd.py -------------------------------------------------------------------------------- /src/webview/nhtpasswd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/nhtpasswd.sh -------------------------------------------------------------------------------- /src/webview/nocache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/nocache.py -------------------------------------------------------------------------------- /src/webview/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/prepare.sh -------------------------------------------------------------------------------- /src/webview/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/server.py -------------------------------------------------------------------------------- /src/webview/server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/server.sh -------------------------------------------------------------------------------- /src/webview/static/css/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/static/css/prism.css -------------------------------------------------------------------------------- /src/webview/static/css/sources.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/static/css/sources.css -------------------------------------------------------------------------------- /src/webview/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/static/css/style.css -------------------------------------------------------------------------------- /src/webview/static/js/details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/static/js/details.js -------------------------------------------------------------------------------- /src/webview/static/js/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/static/js/helper.js -------------------------------------------------------------------------------- /src/webview/static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/static/js/index.js -------------------------------------------------------------------------------- /src/webview/static/js/metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/static/js/metrics.js -------------------------------------------------------------------------------- /src/webview/static/js/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/static/js/prism.js -------------------------------------------------------------------------------- /src/webview/static/js/selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/static/js/selector.js -------------------------------------------------------------------------------- /src/webview/static/js/source-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/static/js/source-editor.js -------------------------------------------------------------------------------- /src/webview/static/js/sources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/static/js/sources.js -------------------------------------------------------------------------------- /src/webview/static/js/threads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/static/js/threads.js -------------------------------------------------------------------------------- /src/webview/templates/asm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/templates/asm.html -------------------------------------------------------------------------------- /src/webview/templates/details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/templates/details.html -------------------------------------------------------------------------------- /src/webview/templates/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/templates/help.html -------------------------------------------------------------------------------- /src/webview/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/templates/index.html -------------------------------------------------------------------------------- /src/webview/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/templates/layout.html -------------------------------------------------------------------------------- /src/webview/templates/sources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/templates/sources.html -------------------------------------------------------------------------------- /src/webview/templates/threads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/templates/threads.html -------------------------------------------------------------------------------- /src/webview/webview-htpasswd.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/webview-htpasswd.sh.in -------------------------------------------------------------------------------- /src/webview/webview.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memtt/numaprof/HEAD/src/webview/webview.sh.in --------------------------------------------------------------------------------