mold: A Modern Linker 🦠
This report presents the forensic synthetic code analysis of rui314/mold, a C++ project with 16,666 GitHub stars. SynthScan v2.0 examined 524,401 lines of code across 2104 source files, recording 1538 pattern matches distributed across 15 syntactic categories. The overall adjusted score of 3.2 places this repository in the Likely human-written band.
The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).
This chart maps the temporal evolution of the adjusted synthetic code score across successive scan runs. An upward trajectory indicates ongoing incorporation of AI-generated code or expanding LLM-assisted scaffolding; a stable or declining trajectory may reflect active human refactoring, code removal, or the adoption of stricter authorship policies. The dashed secondary line (right axis) independently tracks total raw pattern hit count, which can diverge from the normalised score when codebase size changes significantly between scans.
Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.
This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.
The scanner identified 1538 distinct pattern matches across 15 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.
Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | CMakeLists.txt | 1 | # You can customize a build by specifying CMake options. An option may be | COMMENT |
| LOW | CMakeLists.txt | 21 | # Specifies the build type. The default is `Release`, which is the right | COMMENT |
| LOW | CMakeLists.txt | 321 | # (e.g. X86_64) as its type parameter. Since we suport more than 10 | COMMENT |
| LOW | dist.sh | 1 | #!/bin/bash | COMMENT |
| LOW | dist.sh | 21 | # The mold executable created by this script is statically linked to | COMMENT |
| LOW | dist.sh | 81 | # Debian 9 (Stretch) released in June 2017. | COMMENT |
| LOW | test/range-extension-thunk5.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | test/hwasan.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | test/lto-archive4.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | test/arch-x86_64-emit-relocs-relax.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | lib/lib.h | 1 | #pragma once | COMMENT |
| LOW | lib/lib.h | 21 | #include <sstream> | COMMENT |
| LOW | lib/lib.h | 341 | } | COMMENT |
| LOW | lib/gentoo-test.sh | 1 | #!/bin/bash | COMMENT |
| LOW | lib/integers.h | 1 | // This file defines integral types for file input/output. We need to use | COMMENT |
| LOW | lib/integers.h | 21 | // Note that in C/C++, memcpy is a portable and efficient way to access | COMMENT |
| LOW | third-party/blake3/Cargo.toml | 21 | # The Wasm SIMD implementation does not participate in dynamic feature detection, | COMMENT |
| LOW | third-party/blake3/Cargo.toml | 41 | # Implementation detail: We take a dependency on rayon-core instead of rayon, | COMMENT |
| LOW | third-party/blake3/Cargo.toml | 61 | COMMENT | |
| LOW | third-party/blake3/Cargo.toml | 81 | # build.rs automatically falls back to a pure Rust build. This feature forces | COMMENT |
| LOW | third-party/blake3/b3sum/src/main.rs | 21 | COMMENT | |
| LOW | third-party/blake3/b3sum/src/main.rs | 61 | /// | COMMENT |
| LOW | third-party/blake3/b3sum/src/main.rs | 281 | COMMENT | |
| LOW | third-party/blake3/reference_impl/reference_impl.rs | 1 | //! This is the reference implementation of BLAKE3. It is used for testing and | COMMENT |
| LOW | third-party/blake3/c/blake3.h | 1 | #ifndef BLAKE3_H | COMMENT |
| LOW | third-party/blake3/c/blake3.h | 21 | # define BLAKE3_API __attribute__((visibility("default"))) | COMMENT |
| LOW | third-party/blake3/c/blake3_dispatch.c | 1 | #include <stdbool.h> | COMMENT |
| LOW | third-party/blake3/c/blake3_dispatch.c | 21 | #if !defined(BLAKE3_ATOMICS) | COMMENT |
| LOW | third-party/blake3/c/main.c | 1 | /* | COMMENT |
| LOW | third-party/blake3/c/blake3.c | 261 | // root compression. (If it did, it would use the wrong flags, and also we | COMMENT |
| LOW | third-party/blake3/c/blake3.c | 361 | assert(num_cvs <= MAX_SIMD_DEGREE_OR_2); | COMMENT |
| LOW | third-party/blake3/c/blake3.c | 441 | // compress_subtree_wide(), without setting aside anything for the chunk_state. | COMMENT |
| LOW | third-party/blake3/c/blake3.c | 521 | // to complete the current subtree first. | COMMENT |
| LOW | third-party/blake3/c/blake3_impl.h | 1 | #ifndef BLAKE3_IMPL_H | COMMENT |
| LOW | third-party/blake3/c/blake3_impl.h | 21 | ROOT = 1 << 3, | COMMENT |
| LOW | third-party/blake3/c/blake3_impl.h | 41 | #if (defined(__x86_64__) || defined(_M_X64)) && !defined(_M_ARM64EC) | COMMENT |
| LOW | third-party/blake3/c/blake3_impl.h | 61 | #if !defined(BLAKE3_USE_NEON) | COMMENT |
| LOW | third-party/blake3/src/join.rs | 1 | //! The multi-threading abstractions used by `Hasher::update_with_join`. | COMMENT |
| LOW | third-party/blake3/src/test.rs | 701 | assert_eq!(_result.to_string(), "invalid hex character: 'Z'"); | COMMENT |
| LOW | third-party/blake3/src/io.rs | 21 | } | COMMENT |
| LOW | third-party/blake3/src/io.rs | 41 | // some raw pointer reads from it. Those reads should be volatile if you don't want the compiler to | COMMENT |
| LOW | third-party/blake3/src/lib.rs | 1 | //! The official Rust implementation of the [BLAKE3] cryptographic hash | COMMENT |
| LOW | third-party/blake3/src/lib.rs | 21 | //! let mut output = [0; 1000]; | COMMENT |
| LOW | third-party/blake3/src/lib.rs | 41 | //! the [`update_rayon`](Hasher::update_rayon) and (in combination with `mmap` | COMMENT |
| LOW | third-party/blake3/src/lib.rs | 61 | //! The NEON implementation is enabled by default for AArch64 but requires the | COMMENT |
| LOW | third-party/blake3/src/lib.rs | 81 | //! [docs.rs]: https://docs.rs/ | COMMENT |
| LOW | third-party/blake3/src/lib.rs | 101 | pub mod platform; | COMMENT |
| LOW | third-party/blake3/src/lib.rs | 221 | /// handles private data. `Hash` doesn't implement [`Deref`] or [`AsRef`], to | COMMENT |
| LOW | third-party/blake3/src/lib.rs | 261 | self.0.as_slice() | COMMENT |
| LOW | third-party/blake3/src/lib.rs | 761 | // The wide helper function returns (writes out) an array of chaining values | COMMENT |
| LOW | third-party/blake3/src/lib.rs | 901 | /// The default hash function. | COMMENT |
| LOW | third-party/blake3/src/lib.rs | 921 | hash_all_at_once::<join::SerialJoin>(input, IV, 0).root_hash() | COMMENT |
| LOW | third-party/blake3/src/lib.rs | 941 | /// # let mac2 = mac; | COMMENT |
| LOW | third-party/blake3/src/lib.rs | 961 | /// | COMMENT |
| LOW | third-party/blake3/src/lib.rs | 981 | /// For an incremental version that accepts multiple writes, see [`Hasher::new_derive_key`], | COMMENT |
| LOW | third-party/blake3/src/lib.rs | 1041 | /// guarantees for this feature, and callers who use it should expect breaking | COMMENT |
| LOW | third-party/blake3/src/lib.rs | 1121 | self.chunk_state.flags, | COMMENT |
| LOW | third-party/blake3/src/lib.rs | 1161 | // coming, so we know none of the merges are root. | COMMENT |
| LOW | third-party/blake3/src/lib.rs | 1181 | // as the reference impl does. Instead we do merges using the *previous* CV | COMMENT |
| LOW | third-party/blake3/src/lib.rs | 1241 | return self; | COMMENT |
| 1297 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | third-party/tbb/CMakeLists.txt | 78 | # --------------------------------------------------------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/tbb/CMakeLists.txt | 100 | # --------------------------------------------------------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/tbb/CMakeLists.txt | 105 | # --------------------------------------------------------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/tbb/CMakeLists.txt | 179 | # ------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | third-party/tbb/CMakeLists.txt | 234 | # ------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | third-party/tbb/CMakeLists.txt | 236 | # ------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | third-party/tbb/CMakeLists.txt | 245 | # ------------------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/tbb/CMakeLists.txt | 313 | # ------------------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/tbb/CMakeLists.txt | 343 | # ------------------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/tbb/test/CMakeLists.txt | 688 | # ---------------------------------------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/tbb/test/CMakeLists.txt | 727 | # ------------------------------------------------------------------------------------------ | COMMENT |
| MEDIUM | third-party/mimalloc/CMakeLists.txt | 105 | # ----------------------------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/mimalloc/CMakeLists.txt | 107 | # ----------------------------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/mimalloc/CMakeLists.txt | 164 | # ----------------------------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/mimalloc/CMakeLists.txt | 166 | # ----------------------------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/mimalloc/CMakeLists.txt | 543 | # ----------------------------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/mimalloc/CMakeLists.txt | 545 | # ----------------------------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/mimalloc/CMakeLists.txt | 608 | # ----------------------------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/mimalloc/CMakeLists.txt | 610 | # ----------------------------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/mimalloc/CMakeLists.txt | 741 | # ----------------------------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/mimalloc/CMakeLists.txt | 743 | # ----------------------------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/mimalloc/CMakeLists.txt | 786 | # ----------------------------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/mimalloc/CMakeLists.txt | 788 | # ----------------------------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/mimalloc/azure-pipelines.yml | 183 | # ---------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/mimalloc/azure-pipelines.yml | 185 | # ---------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | third-party/mimalloc/bin/bundle.sh | 3 | #----------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | third-party/mimalloc/bin/bundle.sh | 5 | #----------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | third-party/mimalloc/bin/bundle.sh | 12 | #--------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | third-party/mimalloc/bin/bundle.sh | 14 | #--------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/mimalloc/bin/bundle.sh | 36 | #--------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/mimalloc/bin/bundle.sh | 38 | #--------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/mimalloc/bin/bundle.sh | 52 | #--------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/mimalloc/bin/bundle.sh | 54 | #--------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/mimalloc/bin/bundle.sh | 87 | #--------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/mimalloc/bin/bundle.sh | 89 | #--------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/mimalloc/bin/bundle.sh | 117 | #--------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/mimalloc/bin/bundle.sh | 119 | #--------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/mimalloc/bin/bundle.sh | 148 | #--------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/mimalloc/bin/bundle.sh | 150 | #--------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/mimalloc/bin/bundle.sh | 205 | #--------------------------------------------------------- | COMMENT |
| MEDIUM | third-party/mimalloc/bin/bundle.sh | 207 | #--------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | third-party/zlib/CMakeLists.txt | 10 | # ============================================================================ | COMMENT |
| MEDIUM⚡ | third-party/zlib/CMakeLists.txt | 12 | # ============================================================================ | COMMENT |
| MEDIUM⚡ | third-party/zlib/CMakeLists.txt | 18 | # ============================================================================ | COMMENT |
| MEDIUM⚡ | third-party/zlib/CMakeLists.txt | 20 | # ============================================================================ | COMMENT |
| MEDIUM | third-party/zlib/CMakeLists.txt | 118 | # ============================================================================ | COMMENT |
| MEDIUM | third-party/zlib/CMakeLists.txt | 120 | # ============================================================================ | COMMENT |
| MEDIUM | third-party/zlib/CMakeLists.txt | 302 | # ============================================================================ | COMMENT |
| MEDIUM | third-party/zlib/CMakeLists.txt | 304 | # ============================================================================ | COMMENT |
| MEDIUM⚡ | third-party/zlib/contrib/minizip/CMakeLists.txt | 15 | # ============================================================================ | COMMENT |
| MEDIUM⚡ | third-party/zlib/contrib/minizip/CMakeLists.txt | 17 | # ============================================================================ | COMMENT |
| MEDIUM⚡ | third-party/zlib/contrib/minizip/CMakeLists.txt | 23 | # ============================================================================ | COMMENT |
| MEDIUM⚡ | third-party/zlib/contrib/minizip/CMakeLists.txt | 25 | # ============================================================================ | COMMENT |
| MEDIUM⚡ | third-party/zlib/contrib/minizip/CMakeLists.txt | 33 | # ============================================================================ | COMMENT |
| MEDIUM⚡ | third-party/zlib/contrib/minizip/CMakeLists.txt | 35 | # ============================================================================ | COMMENT |
| MEDIUM | third-party/zlib/contrib/zlib1-dll/CMakeLists.txt | 10 | # ============================================================================ | COMMENT |
| MEDIUM | third-party/zlib/contrib/zlib1-dll/CMakeLists.txt | 12 | # ============================================================================ | COMMENT |
| MEDIUM | third-party/zlib/contrib/zlib1-dll/CMakeLists.txt | 106 | # ============================================================================ | COMMENT |
| MEDIUM | third-party/zlib/contrib/zlib1-dll/CMakeLists.txt | 108 | # ============================================================================ | COMMENT |
| MEDIUM | third-party/zstd/tests/gzip/init.sh | 19 | # ========================= | COMMENT |
| 1 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | dist.sh | 68 | # Create a Podman image. | COMMENT |
| MEDIUM | test/shuffle-sections.sh | 11 | # Create a lot of sections to lower the probability that | COMMENT |
| MEDIUM | test/shuffle-sections-seed.sh | 11 | # Create a lot of sections to lower the probability that | COMMENT |
| MEDIUM | test/as-needed-gc.sh | 4 | # Create a shared library | COMMENT |
| MEDIUM | test/as-needed-gc.sh | 9 | # Create an object file with a dead function referencing foo(), | COMMENT |
| MEDIUM | test/lto-unclaimed.sh | 7 | # Create a fake LLVM bitcode file | COMMENT |
| MEDIUM | lib/gentoo-test.sh | 23 | # Create a Podman image | COMMENT |
| MEDIUM | third-party/tbb/doc/conf.py | 348 | # Create a pending_xref node that Sphinx will resolve | STRING |
| MEDIUM | third-party/mimalloc/.github/workflows/release.yaml | 46 | # Create a release: https://github.com/softprops/action-gh-release (MIT license) | COMMENT |
| MEDIUM | third-party/zlib/os400/make.sh | 164 | # Create the OS/400 library if it does not exist. | COMMENT |
| MEDIUM | third-party/zlib/os400/make.sh | 172 | # Create the DOCS source file if it does not exist. | COMMENT |
| MEDIUM | third-party/zlib/os400/make.sh | 195 | # Create the OS/400 source program file for the C header files. | COMMENT |
| MEDIUM | third-party/zlib/os400/make.sh | 206 | # Create the IFS directory for the C header files. | COMMENT |
| MEDIUM | third-party/zstd/tests/gzip/init.cfg | 1 | # This file is sourced by init.sh, *before* its initialization. | COMMENT |
| MEDIUM | third-party/zstd/tests/gzip/init.sh | 136 | # The following code attempts to find a shell with support for these features. | COMMENT |
| MEDIUM | third-party/zstd/tests/gzip/init.sh | 451 | # Create an alias, FOO, for each FOO.exe in this directory. | COMMENT |
| MEDIUM | third-party/zstd/tests/gzip/init.sh | 495 | # Create a temporary directory, much like mktemp -d does. | COMMENT |
| MEDIUM | third-party/zstd/tests/gzip/help-version.sh | 147 | # Create a file in the current directory, not in $TMPDIR. | COMMENT |
| MEDIUM | third-party/zstd/tests/gzip/test-driver.sh | 26 | # This file is maintained in Automake, please report | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | third-party/tbb/test/tbb/test_concurrent_lru_cache.cpp | 45 | int dummy_key = 1; | CODE |
| LOW | third-party/tbb/test/tbb/test_concurrent_lru_cache.cpp | 47 | dummy_f(dummy_key) == cache[dummy_key].value(), | CODE |
| LOW | …/test/conformance/conformance_concurrent_lru_cache.cpp | 44 | int dummy_key = 0; | CODE |
| LOW | …/test/conformance/conformance_concurrent_lru_cache.cpp | 45 | preset::handle_type h = cache[dummy_key]; | CODE |
| LOW⚡ | …/test/conformance/conformance_concurrent_lru_cache.cpp | 109 | int dummy_key = 0; | CODE |
| LOW⚡ | …/test/conformance/conformance_concurrent_lru_cache.cpp | 110 | cache[dummy_key]; | CODE |
| LOW⚡ | …/test/conformance/conformance_concurrent_lru_cache.cpp | 111 | cache[dummy_key]; | CODE |
| LOW | third-party/zstd/tests/loremOut.h | 12 | * Generate @size bytes of compressible data using lorem ipsum generator into | COMMENT |
| LOW | third-party/zstd/tests/fullbench.c | 932 | * if @compressibility < 0.0, use Lorem Ipsum generator | COMMENT |
| LOW | third-party/zstd/tests/loremOut.c | 12 | * Generates a stream of Lorem ipsum paragraphs to stdout, | COMMENT |
| LOW | …ty/zstd/contrib/seekable_format/tests/seekable_tests.c | 272 | { char const inBuffer[] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididu | CODE |
| LOW | …ty/zstd/contrib/seekable_format/tests/seekable_tests.c | 272 | { char const inBuffer[] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididu | CODE |
| LOW | third-party/zstd/programs/lorem.h | 11 | /* lorem ipsum generator */ | COMMENT |
| LOW | third-party/zstd/programs/lorem.h | 17 | * Generate @size bytes of compressible data using lorem ipsum generator | COMMENT |
| LOW | third-party/zstd/programs/benchzstd.h | 128 | * if @compressibility < 0.0, uses the lorem ipsum generator | COMMENT |
| LOW | third-party/zstd/programs/README.md | 133 | If no file is provided, the benchmark will use a procedurally generated "lorem ipsum" content. | CODE |
| LOW | third-party/zstd/programs/zstd.1.md | 674 | When no `FILE` is provided, the benchmark will use a procedurally generated `lorem ipsum` text. | CODE |
| LOW | third-party/zstd/programs/benchzstd.c | 1015 | name = "Lorem ipsum"; | CODE |
| LOW⚡ | third-party/zstd/programs/lorem.c | 13 | * This is a very simple lorem ipsum generator | COMMENT |
| LOW⚡ | third-party/zstd/programs/lorem.c | 20 | * The resulting compression / ratio curve of the lorem ipsum generator | COMMENT |
| LOW⚡ | third-party/zstd/programs/lorem.c | 25 | * The compression ratio achievable on the generated lorem ipsum | COMMENT |
| LOW | third-party/zstd/programs/lorem.c | 240 | /* It's "common" for lorem ipsum generators to start with the same first | COMMENT |
| LOW | third-party/zstd/programs/zstdcli.c | 872 | double compressibility = -1.0; /* lorem ipsum generator */ | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | third-party/tbb/python/tbb/__init__.py | 233 | except Exception as e: | CODE |
| MEDIUM | third-party/tbb/python/tbb/__init__.py | 228 | def init_sem_name(): | CODE |
| LOW | third-party/zstd/tests/DEPRECATED-test-zstd-speed.py | 74 | except Exception: | CODE |
| LOW | third-party/zstd/tests/DEPRECATED-test-zstd-speed.py | 370 | except Exception as e: | CODE |
| MEDIUM | third-party/zstd/tests/DEPRECATED-test-zstd-speed.py | 71 | def does_command_exist(command): | CODE |
| LOW | third-party/zstd/tests/fuzz/fuzz.py | 397 | except Exception as e: | STRING |
| LOW | third-party/zstd/tests/fuzz/fuzz.py | 583 | except Exception as e: | STRING |
| LOW | third-party/zstd/tests/fuzz/fuzz.py | 636 | except Exception as e: | STRING |
| LOW | third-party/zstd/tests/fuzz/fuzz.py | 660 | except Exception as e: | STRING |
| LOW | third-party/zstd/tests/fuzz/fuzz.py | 739 | except Exception as e: | STRING |
| LOW | third-party/zstd/tests/fuzz/fuzz.py | 814 | except Exception as e: | STRING |
| LOW | third-party/zstd/tests/fuzz/fuzz.py | 839 | except Exception as e: | STRING |
| MEDIUM | third-party/zstd/tests/fuzz/fuzz.py | 905 | print("Error: No such command {} (pass -h for help)".format(command)) | STRING |
| MEDIUM | third-party/zstd/tests/fuzz/fuzz.py | 394 | def build(args): | CODE |
| MEDIUM | third-party/zstd/tests/fuzz/fuzz.py | 580 | def libfuzzer_cmd(args): | CODE |
| MEDIUM | third-party/zstd/tests/fuzz/fuzz.py | 633 | def afl(args): | CODE |
| MEDIUM | third-party/zstd/tests/fuzz/fuzz.py | 651 | def regression(args): | CODE |
| MEDIUM | third-party/zstd/tests/fuzz/fuzz.py | 736 | def gen(args): | CODE |
| MEDIUM | third-party/zstd/tests/fuzz/fuzz.py | 807 | def minimize(args): | CODE |
| MEDIUM | third-party/zstd/tests/fuzz/fuzz.py | 833 | def zip_cmd(args): | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | third-party/zlib/contrib/dotzlib/DotZLib/GZipStream.cs | 263 | /// <remarks>In this implementation, this method does nothing. This is because excessive | COMMENT |
| HIGH | third-party/zlib/contrib/dotzlib/DotZLib/GZipStream.cs | 273 | /// <remarks>In this implementation this property is not supported</remarks> | COMMENT |
| HIGH | third-party/zlib/contrib/dotzlib/DotZLib/GZipStream.cs | 290 | /// <remarks>In this implementation this property is not supported</remarks> | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | third-party/tbb/python/setup.py | 20 | CODE | |
| LOW | third-party/tbb/python/TBB.py | 16 | CODE | |
| LOW | third-party/tbb/python/TBB.py | 17 | CODE | |
| LOW | third-party/tbb/python/TBB.py | 17 | CODE | |
| LOW | third-party/tbb/python/tbb/__init__.py | 32 | CODE | |
| LOW | third-party/tbb/python/tbb/__init__.py | 34 | CODE | |
| LOW | third-party/tbb/python/tbb/test.py | 49 | CODE | |
| LOW | third-party/tbb/python/tbb/test.py | 50 | CODE | |
| LOW | third-party/tbb/python/tbb/pool.py | 70 | CODE | |
| LOW | third-party/zstd/tests/check_size.py | 13 | CODE | |
| LOW | third-party/zstd/tests/test-zstd-versions.py | 19 | CODE | |
| LOW | third-party/zstd/tests/DEPRECATED-test-zstd-speed.py | 20 | CODE | |
| LOW | third-party/zstd/tests/test-license.py | 13 | CODE | |
| LOW | …rd-party/zstd/contrib/freestanding_lib/freestanding.py | 13 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | third-party/tbb/python/tbb/__init__.py | 248 | CODE | |
| LOW | third-party/tbb/python/tbb/pool.py | 506 | CODE | |
| LOW | third-party/tbb/python/tbb/pool.py | 599 | CODE | |
| LOW | third-party/zstd/tests/automated_benchmarking.py | 260 | CODE | |
| LOW | third-party/zstd/tests/test-license.py | 136 | CODE | |
| LOW | third-party/zstd/tests/fuzz/fuzz.py | 736 | CODE | |
| LOW | third-party/zstd/tests/cli-tests/run.py | 132 | CODE | |
| LOW | third-party/zstd/tests/cli-tests/run.py | 583 | CODE | |
| LOW | …rd-party/zstd/contrib/freestanding_lib/freestanding.py | 115 | CODE | |
| LOW | …rd-party/zstd/contrib/freestanding_lib/freestanding.py | 149 | CODE | |
| LOW | …rd-party/zstd/contrib/freestanding_lib/freestanding.py | 261 | CODE | |
| LOW | …rd-party/zstd/contrib/freestanding_lib/freestanding.py | 523 | CODE | |
| LOW | …rd-party/zstd/contrib/freestanding_lib/freestanding.py | 573 | CODE | |
| LOW | …rd-party/zstd/contrib/freestanding_lib/freestanding.py | 614 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | third-party/tbb/test/tbb/test_openmp.cpp | 139 | // For the purpose of testing, assume that OpenMP and TBB should utilize the same # of threads. | COMMENT |
| MEDIUM | third-party/tbb/src/tbb/task_stream.h | 42 | //! Essentially, this is just a pair of a queue and a mutex to protect the queue. | COMMENT |
| MEDIUM | third-party/tbb/src/tbb/task_dispatcher.cpp | 116 | // into. Therefore, no need to utilize mandatory concurrency here. | COMMENT |
| MEDIUM | third-party/mimalloc/src/prim/osx/alloc-override-zone.c | 399 | // it seems less robust than using interpose. | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | third-party/tbb/include/oneapi/tbb/parallel_invoke.h | 164 | //TODO: implement sub root for two tasks (measure performance) | COMMENT |
| LOW | third-party/tbb/include/oneapi/tbb/concurrent_queue.h | 140 | //TODO: implement support for std::allocator_traits::propagate_on_container_copy_assignment | COMMENT |
| LOW | third-party/tbb/include/oneapi/tbb/concurrent_queue.h | 150 | //TODO: implement support for std::allocator_traits::propagate_on_container_move_assignment | COMMENT |
| LOW | third-party/tbb/include/oneapi/tbb/concurrent_queue.h | 181 | //TODO: implement support for std::allocator_traits::propagate_on_container_swap | COMMENT |
| LOW | third-party/tbb/include/oneapi/tbb/concurrent_queue.h | 420 | //TODO: implement support for std::allocator_traits::propagate_on_container_copy_assignment | COMMENT |
| LOW | third-party/tbb/include/oneapi/tbb/concurrent_queue.h | 431 | //TODO: implement support for std::allocator_traits::propagate_on_container_move_assignment | COMMENT |
| LOW | third-party/tbb/include/oneapi/tbb/concurrent_queue.h | 463 | //TODO: implement support for std::allocator_traits::propagate_on_container_swap | COMMENT |
| LOW | third-party/mimalloc/src/options.c | 603 | // TODO: implement ourselves to reduce dependencies on the C runtime | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | third-party/zstd/tests/automated_benchmarking.py | 103 | os.system("cd ../ && make -j && cd tests") | CODE |
| HIGH | …rd-party/zstd/contrib/freestanding_lib/freestanding.py | 55 | Handles && and ||. | STRING |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | third-party/tbb/python/tbb/test.py | 92 | def prepare_timeout_exception(): | CODE |
| LOW | third-party/zstd/tests/automated_benchmarking.py | 73 | def get_builds_for_latest_hash(): | CODE |
| LOW | third-party/zstd/tests/automated_benchmarking.py | 145 | def benchmark_dictionary_single(executable, filenames_directory, dictionary_filename, level, iterations): | CODE |
| LOW | third-party/zstd/tests/automated_benchmarking.py | 172 | def parse_regressions_and_labels(old_cspeed, new_cspeed, old_dspeed, new_dspeed, baseline_build, test_build): | CODE |
| LOW | third-party/zstd/tests/automated_benchmarking.py | 221 | def get_regressions_dictionary(baseline_build, test_build, filenames_directory, dictionary_filename, levels, iterations) | CODE |
| LOW | third-party/zstd/tests/DEPRECATED-test-zstd-speed.py | 92 | def send_email_with_attachments(branch, commit, last_commit, args, text, results_files, | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | third-party/tbb/python/tbb/__init__.py | 37 | __all__ = ["Monkey", "is_active"] + api__all + pool__all | CODE |
| LOW | third-party/tbb/python/tbb/pool.py | 72 | __all__ = ["Pool", "TimeoutError"] | CODE |
| LOW | third-party/zstd/tests/cli-tests/run.py | 489 | def _setup_once(self) -> None: | CODE |
| LOW | third-party/zstd/tests/cli-tests/run.py | 505 | def _setup(self, test_basename: str) -> None: | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | test/arch-x86_64-z-rewrite-endbr3.sh | 7 | # Check if Intel SDE CPU emulator is available | COMMENT |
| LOW | third-party/zlib/os400/make.sh | 66 | # Set LINK to "YES" if the module has been compiled. | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | third-party/zlib/contrib/minizip/skipset.h | 20 | // Example usage: | COMMENT |