/src/cpython/Include/cpython/tupleobject.h
Line | Count | Source |
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 | 10.1G | (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op))) |
20 | | |
21 | | // Macros and static inline functions, trading safety for speed |
22 | | |
23 | 2.96G | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { |
24 | 2.96G | PyTupleObject *tuple = _PyTuple_CAST(op); |
25 | 2.96G | return Py_SIZE(tuple); |
26 | 2.96G | } bytesobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 22.6M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 22.6M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 22.6M | return Py_SIZE(tuple); | 26 | 22.6M | } |
Line | Count | Source | 23 | 98.0M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 98.0M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 98.0M | return Py_SIZE(tuple); | 26 | 98.0M | } |
exceptions.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 20.4M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 20.4M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 20.4M | return Py_SIZE(tuple); | 26 | 20.4M | } |
genericaliasobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 534 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 534 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 534 | return Py_SIZE(tuple); | 26 | 534 | } |
Unexecuted instantiation: floatobject.c:PyTuple_GET_SIZE listobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 40.5M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 40.5M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 40.5M | return Py_SIZE(tuple); | 26 | 40.5M | } |
longobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 118k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 118k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 118k | return Py_SIZE(tuple); | 26 | 118k | } |
dictobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 129k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 129k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 129k | return Py_SIZE(tuple); | 26 | 129k | } |
memoryobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 128k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 128k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 128k | return Py_SIZE(tuple); | 26 | 128k | } |
moduleobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 6.79k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 6.79k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 6.79k | return Py_SIZE(tuple); | 26 | 6.79k | } |
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 sentinelobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 53 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 53 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 53 | return Py_SIZE(tuple); | 26 | 53 | } |
Unexecuted instantiation: setobject.c:PyTuple_GET_SIZE Unexecuted instantiation: sliceobject.c:PyTuple_GET_SIZE structseq.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 24.1k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 24.1k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 24.1k | return Py_SIZE(tuple); | 26 | 24.1k | } |
Unexecuted instantiation: templateobject.c:PyTuple_GET_SIZE tupleobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 1.39G | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 1.39G | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 1.39G | return Py_SIZE(tuple); | 26 | 1.39G | } |
typeobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 768M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 768M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 768M | return Py_SIZE(tuple); | 26 | 768M | } |
typevarobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 1.18k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 1.18k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 1.18k | return Py_SIZE(tuple); | 26 | 1.18k | } |
Unexecuted instantiation: unicode_format.c:PyTuple_GET_SIZE Unexecuted instantiation: unicode_formatter.c:PyTuple_GET_SIZE Unexecuted instantiation: unicode_writer.c:PyTuple_GET_SIZE Unexecuted instantiation: unicodectype.c:PyTuple_GET_SIZE unicodeobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 17.9M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 17.9M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 17.9M | return Py_SIZE(tuple); | 26 | 17.9M | } |
unionobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 260 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 260 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 260 | return Py_SIZE(tuple); | 26 | 260 | } |
Unexecuted instantiation: weakrefobject.c:PyTuple_GET_SIZE _warnings.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 560k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 560k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 560k | return Py_SIZE(tuple); | 26 | 560k | } |
bltinmodule.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 62.8M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 62.8M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 62.8M | return Py_SIZE(tuple); | 26 | 62.8M | } |
Line | Count | Source | 23 | 456M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 456M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 456M | return Py_SIZE(tuple); | 26 | 456M | } |
codecs.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 2.31M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 2.31M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 2.31M | return Py_SIZE(tuple); | 26 | 2.31M | } |
Unexecuted instantiation: codegen.c:PyTuple_GET_SIZE compile.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 787 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 787 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 787 | return Py_SIZE(tuple); | 26 | 787 | } |
Unexecuted instantiation: context.c:PyTuple_GET_SIZE Unexecuted instantiation: errors.c:PyTuple_GET_SIZE flowgraph.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 2.03k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 2.03k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 2.03k | return Py_SIZE(tuple); | 26 | 2.03k | } |
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 | 21.5M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 21.5M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 21.5M | return Py_SIZE(tuple); | 26 | 21.5M | } |
Unexecuted instantiation: ceval_gil.c:PyTuple_GET_SIZE Unexecuted instantiation: hamt.c:PyTuple_GET_SIZE Unexecuted instantiation: hashtable.c:PyTuple_GET_SIZE import.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 290 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 290 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 290 | return Py_SIZE(tuple); | 26 | 290 | } |
Unexecuted instantiation: importdl.c:PyTuple_GET_SIZE initconfig.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 108 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 108 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 108 | return Py_SIZE(tuple); | 26 | 108 | } |
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 marshal.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 5.70k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 5.70k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 5.70k | return Py_SIZE(tuple); | 26 | 5.70k | } |
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: pymath.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 | 4.59k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 4.59k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 4.59k | return Py_SIZE(tuple); | 26 | 4.59k | } |
Unexecuted instantiation: slots.c:PyTuple_GET_SIZE Unexecuted instantiation: slots_generated.c:PyTuple_GET_SIZE Unexecuted instantiation: structmember.c:PyTuple_GET_SIZE 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: pystrhex.c:PyTuple_GET_SIZE Unexecuted instantiation: dtoa.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: jit_unwind.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: _asynciomodule.c:PyTuple_GET_SIZE atexitmodule.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 4 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 4 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 4 | return Py_SIZE(tuple); | 26 | 4 | } |
Unexecuted instantiation: faulthandler.c:PyTuple_GET_SIZE posixmodule.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 400k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 400k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 400k | return Py_SIZE(tuple); | 26 | 400k | } |
Unexecuted instantiation: signalmodule.c:PyTuple_GET_SIZE Unexecuted instantiation: _tracemalloc.c:PyTuple_GET_SIZE Unexecuted instantiation: _suggestions.c:PyTuple_GET_SIZE _datetimemodule.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 36.9k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 36.9k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 36.9k | return Py_SIZE(tuple); | 26 | 36.9k | } |
Unexecuted instantiation: _codecsmodule.c:PyTuple_GET_SIZE _collectionsmodule.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 39.3k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 39.3k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 39.3k | return Py_SIZE(tuple); | 26 | 39.3k | } |
Unexecuted instantiation: _iomodule.c:PyTuple_GET_SIZE Unexecuted instantiation: iobase.c:PyTuple_GET_SIZE fileio.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 24.6k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 24.6k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 24.6k | return Py_SIZE(tuple); | 26 | 24.6k | } |
bytesio.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 55.2k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 55.2k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 55.2k | return Py_SIZE(tuple); | 26 | 55.2k | } |
bufferedio.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 29.5k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 29.5k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 29.5k | return Py_SIZE(tuple); | 26 | 29.5k | } |
textio.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 16.1k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 16.1k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 16.1k | return Py_SIZE(tuple); | 26 | 16.1k | } |
stringio.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 31.9k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 31.9k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 31.9k | return Py_SIZE(tuple); | 26 | 31.9k | } |
itertoolsmodule.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 7.27k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 7.27k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 7.27k | return Py_SIZE(tuple); | 26 | 7.27k | } |
Line | Count | Source | 23 | 21.3M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 21.3M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 21.3M | return Py_SIZE(tuple); | 26 | 21.3M | } |
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 | 28.5k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 28.5k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 28.5k | return Py_SIZE(tuple); | 26 | 28.5k | } |
_functoolsmodule.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 143k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 143k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 143k | return Py_SIZE(tuple); | 26 | 143k | } |
Unexecuted instantiation: _localemodule.c:PyTuple_GET_SIZE Unexecuted instantiation: _opcode.c:PyTuple_GET_SIZE _operator.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 1.43M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 1.43M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 1.43M | return Py_SIZE(tuple); | 26 | 1.43M | } |
Unexecuted instantiation: symtablemodule.c:PyTuple_GET_SIZE Unexecuted instantiation: pwdmodule.c:PyTuple_GET_SIZE getpath.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 288 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 288 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 288 | return Py_SIZE(tuple); | 26 | 288 | } |
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 | 1.37M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 1.37M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 1.37M | return Py_SIZE(tuple); | 26 | 1.37M | } |
Unexecuted instantiation: boolobject.c:PyTuple_GET_SIZE bytes_methods.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 36 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 36 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 36 | return Py_SIZE(tuple); | 26 | 36 | } |
bytearrayobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 24.5M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 24.5M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 24.5M | return Py_SIZE(tuple); | 26 | 24.5M | } |
Unexecuted instantiation: capsule.c:PyTuple_GET_SIZE Unexecuted instantiation: cellobject.c:PyTuple_GET_SIZE classobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 40 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 40 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 40 | return Py_SIZE(tuple); | 26 | 40 | } |
codeobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 1.39M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 1.39M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 1.39M | return Py_SIZE(tuple); | 26 | 1.39M | } |
Unexecuted instantiation: complexobject.c:PyTuple_GET_SIZE descrobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 15.4M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 15.4M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 15.4M | return Py_SIZE(tuple); | 26 | 15.4M | } |
Unexecuted instantiation: enumobject.c:PyTuple_GET_SIZE Unexecuted instantiation: genobject.c:PyTuple_GET_SIZE Unexecuted instantiation: fileobject.c:PyTuple_GET_SIZE frameobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 44 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 44 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 44 | return Py_SIZE(tuple); | 26 | 44 | } |
funcobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 7.27k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 7.27k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 7.27k | return Py_SIZE(tuple); | 26 | 7.27k | } |
Unexecuted instantiation: interpolationobject.c:PyTuple_GET_SIZE Unexecuted instantiation: iterobject.c:PyTuple_GET_SIZE Unexecuted instantiation: lazyimportobject.c:PyTuple_GET_SIZE odictobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 21.7k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 21.7k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 21.7k | return Py_SIZE(tuple); | 26 | 21.7k | } |
Unexecuted instantiation: methodobject.c:PyTuple_GET_SIZE Unexecuted instantiation: namespaceobject.c:PyTuple_GET_SIZE Unexecuted instantiation: _contextvars.c:PyTuple_GET_SIZE Python-ast.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 490 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 490 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 490 | return Py_SIZE(tuple); | 26 | 490 | } |
Python-tokenize.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 20 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 20 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 20 | return Py_SIZE(tuple); | 26 | 20 | } |
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: 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: number.c:PyTuple_GET_SIZE Unexecuted instantiation: state.c:PyTuple_GET_SIZE Unexecuted instantiation: string.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 | 3.05G | #define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op)) |
28 | | |
29 | 5.45G | #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 | 166M | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { |
34 | 166M | PyTupleObject *tuple = _PyTuple_CAST(op); |
35 | 166M | assert(0 <= index); |
36 | 166M | assert(index < Py_SIZE(tuple)); |
37 | 166M | tuple->ob_item[index] = value; |
38 | 166M | } bytesobject.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 803k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 803k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 803k | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 803k | tuple->ob_item[index] = value; | 38 | 803k | } |
Line | Count | Source | 33 | 16.6M | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 16.6M | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 16.6M | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 16.6M | tuple->ob_item[index] = value; | 38 | 16.6M | } |
Unexecuted instantiation: exceptions.c:PyTuple_SET_ITEM genericaliasobject.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 32 | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 32 | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 32 | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 32 | tuple->ob_item[index] = value; | 38 | 32 | } |
Unexecuted instantiation: floatobject.c:PyTuple_SET_ITEM Unexecuted instantiation: listobject.c:PyTuple_SET_ITEM Unexecuted instantiation: longobject.c:PyTuple_SET_ITEM dictobject.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 4.32M | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 4.32M | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 4.32M | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 4.32M | tuple->ob_item[index] = value; | 38 | 4.32M | } |
Unexecuted instantiation: memoryobject.c:PyTuple_SET_ITEM 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: sentinelobject.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 | 4.12k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 4.12k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 4.12k | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 4.12k | tuple->ob_item[index] = value; | 38 | 4.12k | } |
Unexecuted instantiation: templateobject.c:PyTuple_SET_ITEM tupleobject.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 1.80M | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 1.80M | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 1.80M | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 1.80M | tuple->ob_item[index] = value; | 38 | 1.80M | } |
typeobject.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 78.4k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 78.4k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 78.4k | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 78.4k | tuple->ob_item[index] = value; | 38 | 78.4k | } |
typevarobject.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 1.27k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 1.27k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 1.27k | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 1.27k | tuple->ob_item[index] = value; | 38 | 1.27k | } |
Unexecuted instantiation: unicode_format.c:PyTuple_SET_ITEM Unexecuted instantiation: unicode_formatter.c:PyTuple_SET_ITEM Unexecuted instantiation: unicode_writer.c:PyTuple_SET_ITEM Unexecuted instantiation: unicodectype.c:PyTuple_SET_ITEM unicodeobject.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 26.2M | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 26.2M | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 26.2M | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 26.2M | tuple->ob_item[index] = value; | 38 | 26.2M | } |
Unexecuted instantiation: unionobject.c:PyTuple_SET_ITEM weakrefobject.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 57.6k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 57.6k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 57.6k | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 57.6k | tuple->ob_item[index] = value; | 38 | 57.6k | } |
Unexecuted instantiation: _warnings.c:PyTuple_SET_ITEM bltinmodule.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 6.58M | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 6.58M | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 6.58M | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 6.58M | tuple->ob_item[index] = value; | 38 | 6.58M | } |
Unexecuted instantiation: ceval.c:PyTuple_SET_ITEM codecs.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 2.58M | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 2.58M | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 2.58M | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 2.58M | tuple->ob_item[index] = value; | 38 | 2.58M | } |
codegen.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 2.00k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 2.00k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 2.00k | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 2.00k | tuple->ob_item[index] = value; | 38 | 2.00k | } |
compile.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 83 | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 83 | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 83 | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 83 | tuple->ob_item[index] = value; | 38 | 83 | } |
Unexecuted instantiation: context.c:PyTuple_SET_ITEM Unexecuted instantiation: errors.c:PyTuple_SET_ITEM flowgraph.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 1.68k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 1.68k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 1.68k | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 1.68k | tuple->ob_item[index] = value; | 38 | 1.68k | } |
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 getargs.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 206 | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 206 | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 206 | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 206 | tuple->ob_item[index] = value; | 38 | 206 | } |
Unexecuted instantiation: ceval_gil.c:PyTuple_SET_ITEM Unexecuted instantiation: hamt.c:PyTuple_SET_ITEM Unexecuted instantiation: hashtable.c:PyTuple_SET_ITEM import.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 1 | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 1 | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 1 | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 1 | tuple->ob_item[index] = value; | 38 | 1 | } |
Unexecuted instantiation: importdl.c:PyTuple_SET_ITEM initconfig.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 36 | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 36 | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 36 | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 36 | tuple->ob_item[index] = value; | 38 | 36 | } |
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 | 2.60M | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 2.60M | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 2.60M | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 2.60M | tuple->ob_item[index] = value; | 38 | 2.60M | } |
modsupport.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 12.9M | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 12.9M | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 12.9M | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 12.9M | tuple->ob_item[index] = value; | 38 | 12.9M | } |
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: pymath.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: slots.c:PyTuple_SET_ITEM Unexecuted instantiation: slots_generated.c:PyTuple_SET_ITEM Unexecuted instantiation: structmember.c:PyTuple_SET_ITEM Unexecuted instantiation: symtable.c:PyTuple_SET_ITEM sysmodule.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 10.6k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 10.6k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 10.6k | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 10.6k | tuple->ob_item[index] = value; | 38 | 10.6k | } |
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: pystrhex.c:PyTuple_SET_ITEM Unexecuted instantiation: dtoa.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: jit_unwind.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: _asynciomodule.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: _datetimemodule.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 | 1.78k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 1.78k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 1.78k | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 1.78k | tuple->ob_item[index] = value; | 38 | 1.78k | } |
Line | Count | Source | 33 | 24.8M | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 24.8M | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 24.8M | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 24.8M | tuple->ob_item[index] = value; | 38 | 24.8M | } |
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 | 23.2k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 23.2k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 23.2k | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 23.2k | tuple->ob_item[index] = value; | 38 | 23.2k | } |
Unexecuted instantiation: _localemodule.c:PyTuple_SET_ITEM Unexecuted instantiation: _opcode.c:PyTuple_SET_ITEM _operator.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 4 | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 4 | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 4 | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 4 | tuple->ob_item[index] = value; | 38 | 4 | } |
Unexecuted instantiation: symtablemodule.c:PyTuple_SET_ITEM Unexecuted instantiation: pwdmodule.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: 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 | 97.3k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 97.3k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 97.3k | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 97.3k | tuple->ob_item[index] = value; | 38 | 97.3k | } |
Unexecuted instantiation: complexobject.c:PyTuple_SET_ITEM Unexecuted instantiation: descrobject.c:PyTuple_SET_ITEM enumobject.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 66.8M | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 66.8M | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 66.8M | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 66.8M | tuple->ob_item[index] = value; | 38 | 66.8M | } |
Unexecuted instantiation: genobject.c:PyTuple_SET_ITEM Unexecuted instantiation: fileobject.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: lazyimportobject.c:PyTuple_SET_ITEM odictobject.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 48 | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 48 | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 48 | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 48 | tuple->ob_item[index] = value; | 38 | 48 | } |
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 | 3.68k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 3.68k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 3.68k | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 3.68k | tuple->ob_item[index] = value; | 38 | 3.68k | } |
Unexecuted instantiation: Python-tokenize.c:PyTuple_SET_ITEM Unexecuted instantiation: asdl.c:PyTuple_SET_ITEM assemble.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 20.5k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 20.5k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 20.5k | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 20.5k | tuple->ob_item[index] = value; | 38 | 20.5k | } |
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: 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: number.c:PyTuple_SET_ITEM Unexecuted instantiation: state.c:PyTuple_SET_ITEM Unexecuted instantiation: string.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 | 166M | PyTuple_SET_ITEM(_PyObject_CAST(op), (index), _PyObject_CAST(value)) |
41 | | |
42 | | PyAPI_FUNC(PyObject*) PyTuple_FromArray( |
43 | | PyObject *const *array, |
44 | | Py_ssize_t size); |