Coverage Report

Created: 2025-11-02 06:30

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/cpython/Objects/stringlib/count.h
Line
Count
Source
1
/* stringlib: count implementation */
2
3
#ifndef STRINGLIB_FASTSEARCH_H
4
#error must include "stringlib/fastsearch.h" before including this module
5
#endif
6
7
// gh-97982: Implementing asciilib_count() is not worth it, FASTSEARCH() does
8
// not specialize the code for ASCII strings. Use ucs1lib_count() for ASCII and
9
// UCS1 strings: it's the same than asciilib_count().
10
#if !STRINGLIB_IS_UNICODE || STRINGLIB_MAX_CHAR > 0x7Fu
11
12
Py_LOCAL_INLINE(Py_ssize_t)
13
STRINGLIB(count)(const STRINGLIB_CHAR* str, Py_ssize_t str_len,
14
                const STRINGLIB_CHAR* sub, Py_ssize_t sub_len,
15
                Py_ssize_t maxcount)
16
71.3M
{
17
71.3M
    Py_ssize_t count;
18
19
71.3M
    if (str_len < 0)
20
0
        return 0; /* start > len(str) */
21
71.3M
    if (sub_len == 0)
22
0
        return (str_len < maxcount) ? str_len + 1 : maxcount;
23
24
71.3M
    count = FASTSEARCH(str, str_len, sub, sub_len, maxcount, FAST_COUNT);
25
26
71.3M
    if (count < 0)
27
0
        return 0; /* no match */
28
29
71.3M
    return count;
30
71.3M
}
Unexecuted instantiation: bytesobject.c:stringlib_count
unicodeobject.c:ucs1lib_count
Line
Count
Source
16
60.5M
{
17
60.5M
    Py_ssize_t count;
18
19
60.5M
    if (str_len < 0)
20
0
        return 0; /* start > len(str) */
21
60.5M
    if (sub_len == 0)
22
0
        return (str_len < maxcount) ? str_len + 1 : maxcount;
23
24
60.5M
    count = FASTSEARCH(str, str_len, sub, sub_len, maxcount, FAST_COUNT);
25
26
60.5M
    if (count < 0)
27
0
        return 0; /* no match */
28
29
60.5M
    return count;
30
60.5M
}
unicodeobject.c:ucs2lib_count
Line
Count
Source
16
9.78M
{
17
9.78M
    Py_ssize_t count;
18
19
9.78M
    if (str_len < 0)
20
0
        return 0; /* start > len(str) */
21
9.78M
    if (sub_len == 0)
22
0
        return (str_len < maxcount) ? str_len + 1 : maxcount;
23
24
9.78M
    count = FASTSEARCH(str, str_len, sub, sub_len, maxcount, FAST_COUNT);
25
26
9.78M
    if (count < 0)
27
0
        return 0; /* no match */
28
29
9.78M
    return count;
30
9.78M
}
unicodeobject.c:ucs4lib_count
Line
Count
Source
16
1.06M
{
17
1.06M
    Py_ssize_t count;
18
19
1.06M
    if (str_len < 0)
20
0
        return 0; /* start > len(str) */
21
1.06M
    if (sub_len == 0)
22
0
        return (str_len < maxcount) ? str_len + 1 : maxcount;
23
24
1.06M
    count = FASTSEARCH(str, str_len, sub, sub_len, maxcount, FAST_COUNT);
25
26
1.06M
    if (count < 0)
27
0
        return 0; /* no match */
28
29
1.06M
    return count;
30
1.06M
}
Unexecuted instantiation: bytes_methods.c:stringlib_count
Unexecuted instantiation: bytearrayobject.c:stringlib_count
31
32
#endif