Coverage Report

Created: 2025-08-29 06:15

/src/cpython/Objects/stringlib/find.h
Line
Count
Source (jump to first uncovered line)
1
/* stringlib: find/index implementation */
2
3
#ifndef STRINGLIB_FASTSEARCH_H
4
#error must include "stringlib/fastsearch.h" before including this module
5
#endif
6
7
Py_LOCAL_INLINE(Py_ssize_t)
8
STRINGLIB(find)(const STRINGLIB_CHAR* str, Py_ssize_t str_len,
9
               const STRINGLIB_CHAR* sub, Py_ssize_t sub_len,
10
               Py_ssize_t offset)
11
203M
{
12
203M
    Py_ssize_t pos;
13
14
203M
    assert(str_len >= 0);
15
203M
    if (sub_len == 0)
16
0
        return offset;
17
18
203M
    pos = FASTSEARCH(str, str_len, sub, sub_len, -1, FAST_SEARCH);
19
20
203M
    if (pos >= 0)
21
203M
        pos += offset;
22
23
203M
    return pos;
24
203M
}
Unexecuted instantiation: bytesobject.c:stringlib_find
unicodeobject.c:asciilib_find
Line
Count
Source
11
24.3M
{
12
24.3M
    Py_ssize_t pos;
13
14
24.3M
    assert(str_len >= 0);
15
24.3M
    if (sub_len == 0)
16
0
        return offset;
17
18
24.3M
    pos = FASTSEARCH(str, str_len, sub, sub_len, -1, FAST_SEARCH);
19
20
24.3M
    if (pos >= 0)
21
24.3M
        pos += offset;
22
23
24.3M
    return pos;
24
24.3M
}
unicodeobject.c:ucs1lib_find
Line
Count
Source
11
3.88M
{
12
3.88M
    Py_ssize_t pos;
13
14
3.88M
    assert(str_len >= 0);
15
3.88M
    if (sub_len == 0)
16
0
        return offset;
17
18
3.88M
    pos = FASTSEARCH(str, str_len, sub, sub_len, -1, FAST_SEARCH);
19
20
3.88M
    if (pos >= 0)
21
3.87M
        pos += offset;
22
23
3.88M
    return pos;
24
3.88M
}
unicodeobject.c:ucs2lib_find
Line
Count
Source
11
71.1M
{
12
71.1M
    Py_ssize_t pos;
13
14
71.1M
    assert(str_len >= 0);
15
71.1M
    if (sub_len == 0)
16
0
        return offset;
17
18
71.1M
    pos = FASTSEARCH(str, str_len, sub, sub_len, -1, FAST_SEARCH);
19
20
71.1M
    if (pos >= 0)
21
71.0M
        pos += offset;
22
23
71.1M
    return pos;
24
71.1M
}
unicodeobject.c:ucs4lib_find
Line
Count
Source
11
104M
{
12
104M
    Py_ssize_t pos;
13
14
104M
    assert(str_len >= 0);
15
104M
    if (sub_len == 0)
16
0
        return offset;
17
18
104M
    pos = FASTSEARCH(str, str_len, sub, sub_len, -1, FAST_SEARCH);
19
20
104M
    if (pos >= 0)
21
104M
        pos += offset;
22
23
104M
    return pos;
24
104M
}
bytes_methods.c:stringlib_find
Line
Count
Source
11
3.14k
{
12
3.14k
    Py_ssize_t pos;
13
14
3.14k
    assert(str_len >= 0);
15
3.14k
    if (sub_len == 0)
16
0
        return offset;
17
18
3.14k
    pos = FASTSEARCH(str, str_len, sub, sub_len, -1, FAST_SEARCH);
19
20
3.14k
    if (pos >= 0)
21
2.89k
        pos += offset;
22
23
3.14k
    return pos;
24
3.14k
}
Unexecuted instantiation: bytearrayobject.c:stringlib_find
25
26
Py_LOCAL_INLINE(Py_ssize_t)
27
STRINGLIB(rfind)(const STRINGLIB_CHAR* str, Py_ssize_t str_len,
28
                const STRINGLIB_CHAR* sub, Py_ssize_t sub_len,
29
                Py_ssize_t offset)
30
4
{
31
4
    Py_ssize_t pos;
32
33
4
    assert(str_len >= 0);
34
4
    if (sub_len == 0)
35
0
        return str_len + offset;
36
37
4
    pos = FASTSEARCH(str, str_len, sub, sub_len, -1, FAST_RSEARCH);
38
39
4
    if (pos >= 0)
40
0
        pos += offset;
41
42
4
    return pos;
43
4
}
Unexecuted instantiation: bytesobject.c:stringlib_rfind
Unexecuted instantiation: unicodeobject.c:asciilib_rfind
Unexecuted instantiation: unicodeobject.c:ucs1lib_rfind
Unexecuted instantiation: unicodeobject.c:ucs2lib_rfind
Unexecuted instantiation: unicodeobject.c:ucs4lib_rfind
bytes_methods.c:stringlib_rfind
Line
Count
Source
30
4
{
31
4
    Py_ssize_t pos;
32
33
4
    assert(str_len >= 0);
34
4
    if (sub_len == 0)
35
0
        return str_len + offset;
36
37
4
    pos = FASTSEARCH(str, str_len, sub, sub_len, -1, FAST_RSEARCH);
38
39
4
    if (pos >= 0)
40
0
        pos += offset;
41
42
4
    return pos;
43
4
}
Unexecuted instantiation: bytearrayobject.c:stringlib_rfind
44
45
Py_LOCAL_INLINE(Py_ssize_t)
46
STRINGLIB(find_slice)(const STRINGLIB_CHAR* str, Py_ssize_t str_len,
47
                     const STRINGLIB_CHAR* sub, Py_ssize_t sub_len,
48
                     Py_ssize_t start, Py_ssize_t end)
49
16.2k
{
50
16.2k
    return STRINGLIB(find)(str + start, end - start, sub, sub_len, start);
51
16.2k
}
Unexecuted instantiation: bytesobject.c:stringlib_find_slice
unicodeobject.c:asciilib_find_slice
Line
Count
Source
49
5.26k
{
50
5.26k
    return STRINGLIB(find)(str + start, end - start, sub, sub_len, start);
51
5.26k
}
unicodeobject.c:ucs1lib_find_slice
Line
Count
Source
49
3.25k
{
50
3.25k
    return STRINGLIB(find)(str + start, end - start, sub, sub_len, start);
51
3.25k
}
unicodeobject.c:ucs2lib_find_slice
Line
Count
Source
49
3.49k
{
50
3.49k
    return STRINGLIB(find)(str + start, end - start, sub, sub_len, start);
51
3.49k
}
unicodeobject.c:ucs4lib_find_slice
Line
Count
Source
49
4.24k
{
50
4.24k
    return STRINGLIB(find)(str + start, end - start, sub, sub_len, start);
51
4.24k
}
Unexecuted instantiation: bytes_methods.c:stringlib_find_slice
Unexecuted instantiation: bytearrayobject.c:stringlib_find_slice
52
53
Py_LOCAL_INLINE(Py_ssize_t)
54
STRINGLIB(rfind_slice)(const STRINGLIB_CHAR* str, Py_ssize_t str_len,
55
                      const STRINGLIB_CHAR* sub, Py_ssize_t sub_len,
56
                      Py_ssize_t start, Py_ssize_t end)
57
4
{
58
4
    return STRINGLIB(rfind)(str + start, end - start, sub, sub_len, start);
59
4
}
Unexecuted instantiation: bytesobject.c:stringlib_rfind_slice
Unexecuted instantiation: unicodeobject.c:asciilib_rfind_slice
Unexecuted instantiation: unicodeobject.c:ucs1lib_rfind_slice
Unexecuted instantiation: unicodeobject.c:ucs2lib_rfind_slice
Unexecuted instantiation: unicodeobject.c:ucs4lib_rfind_slice
bytes_methods.c:stringlib_rfind_slice
Line
Count
Source
57
4
{
58
4
    return STRINGLIB(rfind)(str + start, end - start, sub, sub_len, start);
59
4
}
Unexecuted instantiation: bytearrayobject.c:stringlib_rfind_slice
60
61
#ifdef STRINGLIB_WANT_CONTAINS_OBJ
62
63
Py_LOCAL_INLINE(int)
64
STRINGLIB(contains_obj)(PyObject* str, PyObject* sub)
65
{
66
    return STRINGLIB(find)(
67
        STRINGLIB_STR(str), STRINGLIB_LEN(str),
68
        STRINGLIB_STR(sub), STRINGLIB_LEN(sub), 0
69
        ) != -1;
70
}
71
72
#endif /* STRINGLIB_WANT_CONTAINS_OBJ */