/src/cpython3/Include/cpython/tupleobject.h
Line | Count | Source (jump to first uncovered line) |
1 | | #ifndef Py_CPYTHON_TUPLEOBJECT_H |
2 | | # error "this header file must not be included directly" |
3 | | #endif |
4 | | |
5 | | typedef struct { |
6 | | PyObject_VAR_HEAD |
7 | | /* Cached hash. Initially set to -1. */ |
8 | | Py_hash_t ob_hash; |
9 | | /* ob_item contains space for 'ob_size' elements. |
10 | | Items must normally not be NULL, except during construction when |
11 | | the tuple is not yet visible outside the function that builds it. */ |
12 | | PyObject *ob_item[1]; |
13 | | } PyTupleObject; |
14 | | |
15 | | PyAPI_FUNC(int) _PyTuple_Resize(PyObject **, Py_ssize_t); |
16 | | |
17 | | /* Cast argument to PyTupleObject* type. */ |
18 | | #define _PyTuple_CAST(op) \ |
19 | 1.76G | (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op))) |
20 | | |
21 | | // Macros and static inline functions, trading safety for speed |
22 | | |
23 | 120M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { |
24 | 120M | PyTupleObject *tuple = _PyTuple_CAST(op); |
25 | 120M | return Py_SIZE(tuple); |
26 | 120M | } exceptions.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 274k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 274k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 274k | return Py_SIZE(tuple); | 26 | 274k | } |
Unexecuted instantiation: genericaliasobject.c:PyTuple_GET_SIZE listobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 6.02k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 6.02k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 6.02k | return Py_SIZE(tuple); | 26 | 6.02k | } |
longobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 661 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 661 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 661 | return Py_SIZE(tuple); | 26 | 661 | } |
dictobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 5.59k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 5.59k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 5.59k | return Py_SIZE(tuple); | 26 | 5.59k | } |
moduleobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 590 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 590 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 590 | return Py_SIZE(tuple); | 26 | 590 | } |
Unexecuted instantiation: object.c:PyTuple_GET_SIZE Unexecuted instantiation: obmalloc.c:PyTuple_GET_SIZE Unexecuted instantiation: picklebufobject.c:PyTuple_GET_SIZE Unexecuted instantiation: rangeobject.c:PyTuple_GET_SIZE Unexecuted instantiation: setobject.c:PyTuple_GET_SIZE Unexecuted instantiation: sliceobject.c:PyTuple_GET_SIZE Unexecuted instantiation: structseq.c:PyTuple_GET_SIZE Unexecuted instantiation: templateobject.c:PyTuple_GET_SIZE tupleobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 971k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 971k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 971k | return Py_SIZE(tuple); | 26 | 971k | } |
typeobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 56.2M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 56.2M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 56.2M | return Py_SIZE(tuple); | 26 | 56.2M | } |
Unexecuted instantiation: typevarobject.c:PyTuple_GET_SIZE unicodeobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 1.70k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 1.70k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 1.70k | return Py_SIZE(tuple); | 26 | 1.70k | } |
Unexecuted instantiation: unicodectype.c:PyTuple_GET_SIZE Unexecuted instantiation: unionobject.c:PyTuple_GET_SIZE Unexecuted instantiation: weakrefobject.c:PyTuple_GET_SIZE _warnings.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 2.10M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 2.10M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 2.10M | return Py_SIZE(tuple); | 26 | 2.10M | } |
bltinmodule.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 4.53M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 4.53M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 4.53M | return Py_SIZE(tuple); | 26 | 4.53M | } |
Line | Count | Source | 23 | 47.9M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 47.9M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 47.9M | return Py_SIZE(tuple); | 26 | 47.9M | } |
codecs.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 30.6k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 30.6k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 30.6k | return Py_SIZE(tuple); | 26 | 30.6k | } |
Unexecuted instantiation: codegen.c:PyTuple_GET_SIZE compile.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 3.33k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 3.33k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 3.33k | return Py_SIZE(tuple); | 26 | 3.33k | } |
Unexecuted instantiation: context.c:PyTuple_GET_SIZE Unexecuted instantiation: errors.c:PyTuple_GET_SIZE flowgraph.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 1.64M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 1.64M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 1.64M | return Py_SIZE(tuple); | 26 | 1.64M | } |
Unexecuted instantiation: frame.c:PyTuple_GET_SIZE Unexecuted instantiation: future.c:PyTuple_GET_SIZE Unexecuted instantiation: gc.c:PyTuple_GET_SIZE Unexecuted instantiation: gc_gil.c:PyTuple_GET_SIZE getargs.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 3.03M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 3.03M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 3.03M | return Py_SIZE(tuple); | 26 | 3.03M | } |
Unexecuted instantiation: ceval_gil.c:PyTuple_GET_SIZE Unexecuted instantiation: hamt.c:PyTuple_GET_SIZE Unexecuted instantiation: hashtable.c:PyTuple_GET_SIZE Unexecuted instantiation: import.c:PyTuple_GET_SIZE Unexecuted instantiation: importdl.c:PyTuple_GET_SIZE initconfig.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 66 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 66 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 66 | return Py_SIZE(tuple); | 26 | 66 | } |
Unexecuted instantiation: instrumentation.c:PyTuple_GET_SIZE Unexecuted instantiation: instruction_sequence.c:PyTuple_GET_SIZE Unexecuted instantiation: intrinsics.c:PyTuple_GET_SIZE Unexecuted instantiation: legacy_tracing.c:PyTuple_GET_SIZE Unexecuted instantiation: lock.c:PyTuple_GET_SIZE Unexecuted instantiation: marshal.c:PyTuple_GET_SIZE Unexecuted instantiation: modsupport.c:PyTuple_GET_SIZE Unexecuted instantiation: mysnprintf.c:PyTuple_GET_SIZE Unexecuted instantiation: parking_lot.c:PyTuple_GET_SIZE Unexecuted instantiation: preconfig.c:PyTuple_GET_SIZE Unexecuted instantiation: pyarena.c:PyTuple_GET_SIZE Unexecuted instantiation: pyctype.c:PyTuple_GET_SIZE Unexecuted instantiation: pyhash.c:PyTuple_GET_SIZE Unexecuted instantiation: pylifecycle.c:PyTuple_GET_SIZE Unexecuted instantiation: pystate.c:PyTuple_GET_SIZE Unexecuted instantiation: pythonrun.c:PyTuple_GET_SIZE Unexecuted instantiation: pytime.c:PyTuple_GET_SIZE Unexecuted instantiation: qsbr.c:PyTuple_GET_SIZE Unexecuted instantiation: bootstrap_hash.c:PyTuple_GET_SIZE specialize.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 842 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 842 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 842 | return Py_SIZE(tuple); | 26 | 842 | } |
Unexecuted instantiation: symtable.c:PyTuple_GET_SIZE Unexecuted instantiation: sysmodule.c:PyTuple_GET_SIZE Unexecuted instantiation: thread.c:PyTuple_GET_SIZE Unexecuted instantiation: traceback.c:PyTuple_GET_SIZE Unexecuted instantiation: tracemalloc.c:PyTuple_GET_SIZE Unexecuted instantiation: getopt.c:PyTuple_GET_SIZE Unexecuted instantiation: pystrcmp.c:PyTuple_GET_SIZE Unexecuted instantiation: pystrtod.c:PyTuple_GET_SIZE Unexecuted instantiation: dtoa.c:PyTuple_GET_SIZE Unexecuted instantiation: formatter_unicode.c:PyTuple_GET_SIZE Unexecuted instantiation: fileutils.c:PyTuple_GET_SIZE Unexecuted instantiation: suggestions.c:PyTuple_GET_SIZE Unexecuted instantiation: perf_trampoline.c:PyTuple_GET_SIZE Unexecuted instantiation: perf_jit_trampoline.c:PyTuple_GET_SIZE Unexecuted instantiation: remote_debugging.c:PyTuple_GET_SIZE Unexecuted instantiation: dynload_shlib.c:PyTuple_GET_SIZE Unexecuted instantiation: config.c:PyTuple_GET_SIZE Unexecuted instantiation: gcmodule.c:PyTuple_GET_SIZE Unexecuted instantiation: atexitmodule.c:PyTuple_GET_SIZE Unexecuted instantiation: faulthandler.c:PyTuple_GET_SIZE Unexecuted instantiation: posixmodule.c:PyTuple_GET_SIZE Unexecuted instantiation: signalmodule.c:PyTuple_GET_SIZE Unexecuted instantiation: _tracemalloc.c:PyTuple_GET_SIZE Unexecuted instantiation: _suggestions.c:PyTuple_GET_SIZE Unexecuted instantiation: _codecsmodule.c:PyTuple_GET_SIZE _collectionsmodule.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 114 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 114 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 114 | return Py_SIZE(tuple); | 26 | 114 | } |
Unexecuted instantiation: _iomodule.c:PyTuple_GET_SIZE Unexecuted instantiation: iobase.c:PyTuple_GET_SIZE fileio.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 409 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 409 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 409 | return Py_SIZE(tuple); | 26 | 409 | } |
bytesio.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 16.4k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 16.4k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 16.4k | return Py_SIZE(tuple); | 26 | 16.4k | } |
bufferedio.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 409 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 409 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 409 | return Py_SIZE(tuple); | 26 | 409 | } |
textio.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 66 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 66 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 66 | return Py_SIZE(tuple); | 26 | 66 | } |
Unexecuted instantiation: stringio.c:PyTuple_GET_SIZE itertoolsmodule.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 1.38k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 1.38k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 1.38k | return Py_SIZE(tuple); | 26 | 1.38k | } |
Line | Count | Source | 23 | 73 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 73 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 73 | return Py_SIZE(tuple); | 26 | 73 | } |
Unexecuted instantiation: _sysconfig.c:PyTuple_GET_SIZE Unexecuted instantiation: _threadmodule.c:PyTuple_GET_SIZE Unexecuted instantiation: timemodule.c:PyTuple_GET_SIZE Unexecuted instantiation: _typesmodule.c:PyTuple_GET_SIZE Unexecuted instantiation: _typingmodule.c:PyTuple_GET_SIZE Unexecuted instantiation: _weakref.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 9.44k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 9.44k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 9.44k | return Py_SIZE(tuple); | 26 | 9.44k | } |
_functoolsmodule.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 29 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 29 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 29 | return Py_SIZE(tuple); | 26 | 29 | } |
Unexecuted instantiation: _localemodule.c:PyTuple_GET_SIZE Unexecuted instantiation: _opcode.c:PyTuple_GET_SIZE Unexecuted instantiation: _operator.c:PyTuple_GET_SIZE Unexecuted instantiation: symtablemodule.c:PyTuple_GET_SIZE getpath.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 286 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 286 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 286 | return Py_SIZE(tuple); | 26 | 286 | } |
Unexecuted instantiation: frozen.c:PyTuple_GET_SIZE Unexecuted instantiation: getbuildinfo.c:PyTuple_GET_SIZE Unexecuted instantiation: peg_api.c:PyTuple_GET_SIZE Unexecuted instantiation: file_tokenizer.c:PyTuple_GET_SIZE Unexecuted instantiation: helpers.c:PyTuple_GET_SIZE Unexecuted instantiation: myreadline.c:PyTuple_GET_SIZE abstract.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 16.6k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 16.6k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 16.6k | return Py_SIZE(tuple); | 26 | 16.6k | } |
Unexecuted instantiation: boolobject.c:PyTuple_GET_SIZE bytes_methods.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 46.1k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 46.1k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 46.1k | return Py_SIZE(tuple); | 26 | 46.1k | } |
bytearrayobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 307k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 307k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 307k | return Py_SIZE(tuple); | 26 | 307k | } |
bytesobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 183k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 183k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 183k | return Py_SIZE(tuple); | 26 | 183k | } |
Line | Count | Source | 23 | 452k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 452k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 452k | return Py_SIZE(tuple); | 26 | 452k | } |
Unexecuted instantiation: capsule.c:PyTuple_GET_SIZE Unexecuted instantiation: cellobject.c:PyTuple_GET_SIZE Unexecuted instantiation: classobject.c:PyTuple_GET_SIZE codeobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 2.80M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 2.80M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 2.80M | return Py_SIZE(tuple); | 26 | 2.80M | } |
Unexecuted instantiation: complexobject.c:PyTuple_GET_SIZE descrobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 10.7k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 10.7k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 10.7k | return Py_SIZE(tuple); | 26 | 10.7k | } |
Unexecuted instantiation: enumobject.c:PyTuple_GET_SIZE Unexecuted instantiation: genobject.c:PyTuple_GET_SIZE Unexecuted instantiation: fileobject.c:PyTuple_GET_SIZE Unexecuted instantiation: floatobject.c:PyTuple_GET_SIZE frameobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 22 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 22 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 22 | return Py_SIZE(tuple); | 26 | 22 | } |
Unexecuted instantiation: funcobject.c:PyTuple_GET_SIZE Unexecuted instantiation: interpolationobject.c:PyTuple_GET_SIZE Unexecuted instantiation: iterobject.c:PyTuple_GET_SIZE Unexecuted instantiation: odictobject.c:PyTuple_GET_SIZE memoryobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 345 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 345 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 345 | return Py_SIZE(tuple); | 26 | 345 | } |
Unexecuted instantiation: methodobject.c:PyTuple_GET_SIZE Unexecuted instantiation: namespaceobject.c:PyTuple_GET_SIZE Unexecuted instantiation: _contextvars.c:PyTuple_GET_SIZE Unexecuted instantiation: Python-ast.c:PyTuple_GET_SIZE Unexecuted instantiation: Python-tokenize.c:PyTuple_GET_SIZE Unexecuted instantiation: asdl.c:PyTuple_GET_SIZE Unexecuted instantiation: assemble.c:PyTuple_GET_SIZE Unexecuted instantiation: ast.c:PyTuple_GET_SIZE Unexecuted instantiation: ast_preprocess.c:PyTuple_GET_SIZE Unexecuted instantiation: ast_unparse.c:PyTuple_GET_SIZE Unexecuted instantiation: critical_section.c:PyTuple_GET_SIZE Unexecuted instantiation: crossinterp.c:PyTuple_GET_SIZE Unexecuted instantiation: getcopyright.c:PyTuple_GET_SIZE Unexecuted instantiation: getplatform.c:PyTuple_GET_SIZE Unexecuted instantiation: getversion.c:PyTuple_GET_SIZE Unexecuted instantiation: optimizer.c:PyTuple_GET_SIZE Unexecuted instantiation: pathconfig.c:PyTuple_GET_SIZE Unexecuted instantiation: pymath.c:PyTuple_GET_SIZE Unexecuted instantiation: structmember.c:PyTuple_GET_SIZE Unexecuted instantiation: pystrhex.c:PyTuple_GET_SIZE Unexecuted instantiation: pegen.c:PyTuple_GET_SIZE Unexecuted instantiation: pegen_errors.c:PyTuple_GET_SIZE Unexecuted instantiation: parser.c:PyTuple_GET_SIZE Unexecuted instantiation: buffer.c:PyTuple_GET_SIZE Unexecuted instantiation: lexer.c:PyTuple_GET_SIZE Unexecuted instantiation: state.c:PyTuple_GET_SIZE Unexecuted instantiation: readline_tokenizer.c:PyTuple_GET_SIZE Unexecuted instantiation: string_tokenizer.c:PyTuple_GET_SIZE Unexecuted instantiation: utf8_tokenizer.c:PyTuple_GET_SIZE Unexecuted instantiation: getcompiler.c:PyTuple_GET_SIZE Unexecuted instantiation: mystrtoul.c:PyTuple_GET_SIZE Unexecuted instantiation: token.c:PyTuple_GET_SIZE Unexecuted instantiation: action_helpers.c:PyTuple_GET_SIZE Unexecuted instantiation: string_parser.c:PyTuple_GET_SIZE |
27 | 121M | #define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op)) |
28 | | |
29 | 1.08G | #define PyTuple_GET_ITEM(op, index) (_PyTuple_CAST(op)->ob_item[(index)]) |
30 | | |
31 | | /* Function *only* to be used to fill in brand new tuples */ |
32 | | static inline void |
33 | 195M | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { |
34 | 195M | PyTupleObject *tuple = _PyTuple_CAST(op); |
35 | 0 | assert(0 <= index); |
36 | 195M | assert(index < Py_SIZE(tuple)); |
37 | 195M | tuple->ob_item[index] = value; |
38 | 195M | } Unexecuted instantiation: exceptions.c:PyTuple_SET_ITEM Unexecuted instantiation: genericaliasobject.c:PyTuple_SET_ITEM Unexecuted instantiation: listobject.c:PyTuple_SET_ITEM longobject.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 884 | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 884 | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 0 | assert(0 <= index); | 36 | 884 | assert(index < Py_SIZE(tuple)); | 37 | 884 | tuple->ob_item[index] = value; | 38 | 884 | } |
dictobject.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 18.7k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 18.7k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 0 | assert(0 <= index); | 36 | 18.7k | assert(index < Py_SIZE(tuple)); | 37 | 18.7k | tuple->ob_item[index] = value; | 38 | 18.7k | } |
Unexecuted instantiation: moduleobject.c:PyTuple_SET_ITEM Unexecuted instantiation: object.c:PyTuple_SET_ITEM Unexecuted instantiation: obmalloc.c:PyTuple_SET_ITEM Unexecuted instantiation: picklebufobject.c:PyTuple_SET_ITEM Unexecuted instantiation: rangeobject.c:PyTuple_SET_ITEM Unexecuted instantiation: setobject.c:PyTuple_SET_ITEM Unexecuted instantiation: sliceobject.c:PyTuple_SET_ITEM structseq.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 2.31k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 2.31k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 0 | assert(0 <= index); | 36 | 2.31k | assert(index < Py_SIZE(tuple)); | 37 | 2.31k | tuple->ob_item[index] = value; | 38 | 2.31k | } |
Unexecuted instantiation: templateobject.c:PyTuple_SET_ITEM tupleobject.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 888 | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 888 | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 0 | assert(0 <= index); | 36 | 888 | assert(index < Py_SIZE(tuple)); | 37 | 888 | tuple->ob_item[index] = value; | 38 | 888 | } |
typeobject.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 24.0k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 24.0k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 0 | assert(0 <= index); | 36 | 24.0k | assert(index < Py_SIZE(tuple)); | 37 | 24.0k | tuple->ob_item[index] = value; | 38 | 24.0k | } |
Unexecuted instantiation: typevarobject.c:PyTuple_SET_ITEM unicodeobject.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 13.7k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 13.7k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 0 | assert(0 <= index); | 36 | 13.7k | assert(index < Py_SIZE(tuple)); | 37 | 13.7k | tuple->ob_item[index] = value; | 38 | 13.7k | } |
Unexecuted instantiation: unicodectype.c:PyTuple_SET_ITEM Unexecuted instantiation: unionobject.c:PyTuple_SET_ITEM weakrefobject.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 5.61k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 5.61k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 0 | assert(0 <= index); | 36 | 5.61k | assert(index < Py_SIZE(tuple)); | 37 | 5.61k | tuple->ob_item[index] = value; | 38 | 5.61k | } |
Unexecuted instantiation: _warnings.c:PyTuple_SET_ITEM bltinmodule.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 38.4k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 38.4k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 0 | assert(0 <= index); | 36 | 38.4k | assert(index < Py_SIZE(tuple)); | 37 | 38.4k | tuple->ob_item[index] = value; | 38 | 38.4k | } |
Unexecuted instantiation: ceval.c:PyTuple_SET_ITEM codecs.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 33.8k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 33.8k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 0 | assert(0 <= index); | 36 | 33.8k | assert(index < Py_SIZE(tuple)); | 37 | 33.8k | tuple->ob_item[index] = value; | 38 | 33.8k | } |
codegen.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 15.0k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 15.0k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 0 | assert(0 <= index); | 36 | 15.0k | assert(index < Py_SIZE(tuple)); | 37 | 15.0k | tuple->ob_item[index] = value; | 38 | 15.0k | } |
Unexecuted instantiation: compile.c:PyTuple_SET_ITEM Unexecuted instantiation: context.c:PyTuple_SET_ITEM Unexecuted instantiation: errors.c:PyTuple_SET_ITEM flowgraph.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 119k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 119k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 0 | assert(0 <= index); | 36 | 119k | assert(index < Py_SIZE(tuple)); | 37 | 119k | tuple->ob_item[index] = value; | 38 | 119k | } |
Unexecuted instantiation: frame.c:PyTuple_SET_ITEM Unexecuted instantiation: future.c:PyTuple_SET_ITEM Unexecuted instantiation: gc.c:PyTuple_SET_ITEM Unexecuted instantiation: gc_gil.c:PyTuple_SET_ITEM Unexecuted instantiation: getargs.c:PyTuple_SET_ITEM Unexecuted instantiation: ceval_gil.c:PyTuple_SET_ITEM Unexecuted instantiation: hamt.c:PyTuple_SET_ITEM Unexecuted instantiation: hashtable.c:PyTuple_SET_ITEM Unexecuted instantiation: import.c:PyTuple_SET_ITEM Unexecuted instantiation: importdl.c:PyTuple_SET_ITEM initconfig.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 22 | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 22 | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 0 | assert(0 <= index); | 36 | 22 | assert(index < Py_SIZE(tuple)); | 37 | 22 | tuple->ob_item[index] = value; | 38 | 22 | } |
Unexecuted instantiation: instrumentation.c:PyTuple_SET_ITEM Unexecuted instantiation: instruction_sequence.c:PyTuple_SET_ITEM Unexecuted instantiation: intrinsics.c:PyTuple_SET_ITEM Unexecuted instantiation: legacy_tracing.c:PyTuple_SET_ITEM Unexecuted instantiation: lock.c:PyTuple_SET_ITEM marshal.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 336k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 336k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 0 | assert(0 <= index); | 36 | 336k | assert(index < Py_SIZE(tuple)); | 37 | 336k | tuple->ob_item[index] = value; | 38 | 336k | } |
modsupport.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 293k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 293k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 0 | assert(0 <= index); | 36 | 293k | assert(index < Py_SIZE(tuple)); | 37 | 293k | tuple->ob_item[index] = value; | 38 | 293k | } |
Unexecuted instantiation: mysnprintf.c:PyTuple_SET_ITEM Unexecuted instantiation: parking_lot.c:PyTuple_SET_ITEM Unexecuted instantiation: preconfig.c:PyTuple_SET_ITEM Unexecuted instantiation: pyarena.c:PyTuple_SET_ITEM Unexecuted instantiation: pyctype.c:PyTuple_SET_ITEM Unexecuted instantiation: pyhash.c:PyTuple_SET_ITEM Unexecuted instantiation: pylifecycle.c:PyTuple_SET_ITEM Unexecuted instantiation: pystate.c:PyTuple_SET_ITEM Unexecuted instantiation: pythonrun.c:PyTuple_SET_ITEM Unexecuted instantiation: pytime.c:PyTuple_SET_ITEM Unexecuted instantiation: qsbr.c:PyTuple_SET_ITEM Unexecuted instantiation: bootstrap_hash.c:PyTuple_SET_ITEM Unexecuted instantiation: specialize.c:PyTuple_SET_ITEM Unexecuted instantiation: symtable.c:PyTuple_SET_ITEM sysmodule.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 6.46k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 6.46k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 0 | assert(0 <= index); | 36 | 6.46k | assert(index < Py_SIZE(tuple)); | 37 | 6.46k | tuple->ob_item[index] = value; | 38 | 6.46k | } |
Unexecuted instantiation: thread.c:PyTuple_SET_ITEM Unexecuted instantiation: traceback.c:PyTuple_SET_ITEM Unexecuted instantiation: tracemalloc.c:PyTuple_SET_ITEM Unexecuted instantiation: getopt.c:PyTuple_SET_ITEM Unexecuted instantiation: pystrcmp.c:PyTuple_SET_ITEM Unexecuted instantiation: pystrtod.c:PyTuple_SET_ITEM Unexecuted instantiation: dtoa.c:PyTuple_SET_ITEM Unexecuted instantiation: formatter_unicode.c:PyTuple_SET_ITEM Unexecuted instantiation: fileutils.c:PyTuple_SET_ITEM Unexecuted instantiation: suggestions.c:PyTuple_SET_ITEM Unexecuted instantiation: perf_trampoline.c:PyTuple_SET_ITEM Unexecuted instantiation: perf_jit_trampoline.c:PyTuple_SET_ITEM Unexecuted instantiation: remote_debugging.c:PyTuple_SET_ITEM Unexecuted instantiation: dynload_shlib.c:PyTuple_SET_ITEM Unexecuted instantiation: config.c:PyTuple_SET_ITEM Unexecuted instantiation: gcmodule.c:PyTuple_SET_ITEM Unexecuted instantiation: atexitmodule.c:PyTuple_SET_ITEM Unexecuted instantiation: faulthandler.c:PyTuple_SET_ITEM Unexecuted instantiation: posixmodule.c:PyTuple_SET_ITEM Unexecuted instantiation: signalmodule.c:PyTuple_SET_ITEM Unexecuted instantiation: _tracemalloc.c:PyTuple_SET_ITEM Unexecuted instantiation: _suggestions.c:PyTuple_SET_ITEM Unexecuted instantiation: _codecsmodule.c:PyTuple_SET_ITEM Unexecuted instantiation: _collectionsmodule.c:PyTuple_SET_ITEM Unexecuted instantiation: _iomodule.c:PyTuple_SET_ITEM Unexecuted instantiation: iobase.c:PyTuple_SET_ITEM Unexecuted instantiation: fileio.c:PyTuple_SET_ITEM Unexecuted instantiation: bytesio.c:PyTuple_SET_ITEM Unexecuted instantiation: bufferedio.c:PyTuple_SET_ITEM Unexecuted instantiation: textio.c:PyTuple_SET_ITEM Unexecuted instantiation: stringio.c:PyTuple_SET_ITEM itertoolsmodule.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 873 | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 873 | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 0 | assert(0 <= index); | 36 | 873 | assert(index < Py_SIZE(tuple)); | 37 | 873 | tuple->ob_item[index] = value; | 38 | 873 | } |
Unexecuted instantiation: sre.c:PyTuple_SET_ITEM Unexecuted instantiation: _sysconfig.c:PyTuple_SET_ITEM Unexecuted instantiation: _threadmodule.c:PyTuple_SET_ITEM Unexecuted instantiation: timemodule.c:PyTuple_SET_ITEM Unexecuted instantiation: _typesmodule.c:PyTuple_SET_ITEM Unexecuted instantiation: _typingmodule.c:PyTuple_SET_ITEM Unexecuted instantiation: _weakref.c:PyTuple_SET_ITEM Unexecuted instantiation: _abc.c:PyTuple_SET_ITEM _functoolsmodule.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 33 | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 33 | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 0 | assert(0 <= index); | 36 | 33 | assert(index < Py_SIZE(tuple)); | 37 | 33 | tuple->ob_item[index] = value; | 38 | 33 | } |
Unexecuted instantiation: _localemodule.c:PyTuple_SET_ITEM Unexecuted instantiation: _opcode.c:PyTuple_SET_ITEM Unexecuted instantiation: _operator.c:PyTuple_SET_ITEM Unexecuted instantiation: symtablemodule.c:PyTuple_SET_ITEM Unexecuted instantiation: getpath.c:PyTuple_SET_ITEM Unexecuted instantiation: frozen.c:PyTuple_SET_ITEM Unexecuted instantiation: getbuildinfo.c:PyTuple_SET_ITEM Unexecuted instantiation: peg_api.c:PyTuple_SET_ITEM Unexecuted instantiation: file_tokenizer.c:PyTuple_SET_ITEM Unexecuted instantiation: helpers.c:PyTuple_SET_ITEM Unexecuted instantiation: myreadline.c:PyTuple_SET_ITEM Unexecuted instantiation: abstract.c:PyTuple_SET_ITEM Unexecuted instantiation: boolobject.c:PyTuple_SET_ITEM Unexecuted instantiation: bytes_methods.c:PyTuple_SET_ITEM Unexecuted instantiation: bytearrayobject.c:PyTuple_SET_ITEM Unexecuted instantiation: bytesobject.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 3.23k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 3.23k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 0 | assert(0 <= index); | 36 | 3.23k | assert(index < Py_SIZE(tuple)); | 37 | 3.23k | tuple->ob_item[index] = value; | 38 | 3.23k | } |
Unexecuted instantiation: capsule.c:PyTuple_SET_ITEM Unexecuted instantiation: cellobject.c:PyTuple_SET_ITEM Unexecuted instantiation: classobject.c:PyTuple_SET_ITEM codeobject.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 193M | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 193M | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 0 | assert(0 <= index); | 36 | 193M | assert(index < Py_SIZE(tuple)); | 37 | 193M | tuple->ob_item[index] = value; | 38 | 193M | } |
Unexecuted instantiation: complexobject.c:PyTuple_SET_ITEM Unexecuted instantiation: descrobject.c:PyTuple_SET_ITEM enumobject.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 771k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 771k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 0 | assert(0 <= index); | 36 | 771k | assert(index < Py_SIZE(tuple)); | 37 | 771k | tuple->ob_item[index] = value; | 38 | 771k | } |
Unexecuted instantiation: genobject.c:PyTuple_SET_ITEM Unexecuted instantiation: fileobject.c:PyTuple_SET_ITEM Unexecuted instantiation: floatobject.c:PyTuple_SET_ITEM Unexecuted instantiation: frameobject.c:PyTuple_SET_ITEM Unexecuted instantiation: funcobject.c:PyTuple_SET_ITEM Unexecuted instantiation: interpolationobject.c:PyTuple_SET_ITEM Unexecuted instantiation: iterobject.c:PyTuple_SET_ITEM Unexecuted instantiation: odictobject.c:PyTuple_SET_ITEM Unexecuted instantiation: memoryobject.c:PyTuple_SET_ITEM Unexecuted instantiation: methodobject.c:PyTuple_SET_ITEM Unexecuted instantiation: namespaceobject.c:PyTuple_SET_ITEM Unexecuted instantiation: _contextvars.c:PyTuple_SET_ITEM Python-ast.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 228 | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 228 | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 0 | assert(0 <= index); | 36 | 228 | assert(index < Py_SIZE(tuple)); | 37 | 228 | tuple->ob_item[index] = value; | 38 | 228 | } |
Unexecuted instantiation: Python-tokenize.c:PyTuple_SET_ITEM Unexecuted instantiation: asdl.c:PyTuple_SET_ITEM assemble.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 214k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 214k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 0 | assert(0 <= index); | 36 | 214k | assert(index < Py_SIZE(tuple)); | 37 | 214k | tuple->ob_item[index] = value; | 38 | 214k | } |
Unexecuted instantiation: ast.c:PyTuple_SET_ITEM Unexecuted instantiation: ast_preprocess.c:PyTuple_SET_ITEM Unexecuted instantiation: ast_unparse.c:PyTuple_SET_ITEM Unexecuted instantiation: critical_section.c:PyTuple_SET_ITEM Unexecuted instantiation: crossinterp.c:PyTuple_SET_ITEM Unexecuted instantiation: getcopyright.c:PyTuple_SET_ITEM Unexecuted instantiation: getplatform.c:PyTuple_SET_ITEM Unexecuted instantiation: getversion.c:PyTuple_SET_ITEM Unexecuted instantiation: optimizer.c:PyTuple_SET_ITEM Unexecuted instantiation: pathconfig.c:PyTuple_SET_ITEM Unexecuted instantiation: pymath.c:PyTuple_SET_ITEM Unexecuted instantiation: structmember.c:PyTuple_SET_ITEM Unexecuted instantiation: pystrhex.c:PyTuple_SET_ITEM Unexecuted instantiation: pegen.c:PyTuple_SET_ITEM Unexecuted instantiation: pegen_errors.c:PyTuple_SET_ITEM Unexecuted instantiation: parser.c:PyTuple_SET_ITEM Unexecuted instantiation: buffer.c:PyTuple_SET_ITEM Unexecuted instantiation: lexer.c:PyTuple_SET_ITEM Unexecuted instantiation: state.c:PyTuple_SET_ITEM Unexecuted instantiation: readline_tokenizer.c:PyTuple_SET_ITEM Unexecuted instantiation: string_tokenizer.c:PyTuple_SET_ITEM Unexecuted instantiation: utf8_tokenizer.c:PyTuple_SET_ITEM Unexecuted instantiation: getcompiler.c:PyTuple_SET_ITEM Unexecuted instantiation: mystrtoul.c:PyTuple_SET_ITEM Unexecuted instantiation: token.c:PyTuple_SET_ITEM Unexecuted instantiation: action_helpers.c:PyTuple_SET_ITEM Unexecuted instantiation: string_parser.c:PyTuple_SET_ITEM |
39 | | #define PyTuple_SET_ITEM(op, index, value) \ |
40 | 195M | PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value)) |