/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.6G | (assert(PyTuple_Check(op)), _Py_CAST(PyTupleObject*, (op))) |
20 | | |
21 | | // Macros and static inline functions, trading safety for speed |
22 | | |
23 | 3.24G | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { |
24 | 3.24G | PyTupleObject *tuple = _PyTuple_CAST(op); |
25 | 3.24G | return Py_SIZE(tuple); |
26 | 3.24G | } bytesobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 17.3M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 17.3M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 17.3M | return Py_SIZE(tuple); | 26 | 17.3M | } |
Line | Count | Source | 23 | 114M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 114M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 114M | return Py_SIZE(tuple); | 26 | 114M | } |
exceptions.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 20.5M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 20.5M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 20.5M | return Py_SIZE(tuple); | 26 | 20.5M | } |
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 | 38.1M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 38.1M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 38.1M | return Py_SIZE(tuple); | 26 | 38.1M | } |
longobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 115k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 115k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 115k | return Py_SIZE(tuple); | 26 | 115k | } |
dictobject.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 | } |
memoryobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 126k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 126k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 126k | return Py_SIZE(tuple); | 26 | 126k | } |
moduleobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 7.11k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 7.11k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 7.11k | return Py_SIZE(tuple); | 26 | 7.11k | } |
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 | 47 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 47 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 47 | return Py_SIZE(tuple); | 26 | 47 | } |
Unexecuted instantiation: setobject.c:PyTuple_GET_SIZE Unexecuted instantiation: sliceobject.c:PyTuple_GET_SIZE structseq.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 | } |
Unexecuted instantiation: templateobject.c:PyTuple_GET_SIZE tupleobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 1.60G | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 1.60G | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 1.60G | return Py_SIZE(tuple); | 26 | 1.60G | } |
typeobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 794M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 794M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 794M | return Py_SIZE(tuple); | 26 | 794M | } |
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 | 23.5M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 23.5M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 23.5M | return Py_SIZE(tuple); | 26 | 23.5M | } |
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 | 2.38M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 2.38M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 2.38M | return Py_SIZE(tuple); | 26 | 2.38M | } |
bltinmodule.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 88.2M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 88.2M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 88.2M | return Py_SIZE(tuple); | 26 | 88.2M | } |
Line | Count | Source | 23 | 449M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 449M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 449M | return Py_SIZE(tuple); | 26 | 449M | } |
codecs.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 1.93M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 1.93M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 1.93M | return Py_SIZE(tuple); | 26 | 1.93M | } |
Unexecuted instantiation: codegen.c:PyTuple_GET_SIZE compile.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 1.03k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 1.03k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 1.03k | return Py_SIZE(tuple); | 26 | 1.03k | } |
Unexecuted instantiation: context.c:PyTuple_GET_SIZE Unexecuted instantiation: errors.c:PyTuple_GET_SIZE flowgraph.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 2.58k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 2.58k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 2.58k | return Py_SIZE(tuple); | 26 | 2.58k | } |
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 | 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 | } |
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 | 309 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 309 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 309 | return Py_SIZE(tuple); | 26 | 309 | } |
Unexecuted instantiation: importdl.c:PyTuple_GET_SIZE initconfig.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 111 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 111 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 111 | return Py_SIZE(tuple); | 26 | 111 | } |
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 | 8.26k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 8.26k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 8.26k | return Py_SIZE(tuple); | 26 | 8.26k | } |
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.41k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 4.41k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 4.41k | return Py_SIZE(tuple); | 26 | 4.41k | } |
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 | 12 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 12 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 12 | return Py_SIZE(tuple); | 26 | 12 | } |
Unexecuted instantiation: faulthandler.c:PyTuple_GET_SIZE posixmodule.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 428k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 428k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 428k | return Py_SIZE(tuple); | 26 | 428k | } |
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 | 38.0k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 38.0k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 38.0k | return Py_SIZE(tuple); | 26 | 38.0k | } |
Unexecuted instantiation: _codecsmodule.c:PyTuple_GET_SIZE _collectionsmodule.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 39.9k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 39.9k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 39.9k | return Py_SIZE(tuple); | 26 | 39.9k | } |
Unexecuted instantiation: _iomodule.c:PyTuple_GET_SIZE Unexecuted instantiation: iobase.c:PyTuple_GET_SIZE fileio.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 27.8k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 27.8k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 27.8k | return Py_SIZE(tuple); | 26 | 27.8k | } |
bytesio.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 54.5k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 54.5k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 54.5k | return Py_SIZE(tuple); | 26 | 54.5k | } |
bufferedio.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 32.8k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 32.8k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 32.8k | return Py_SIZE(tuple); | 26 | 32.8k | } |
textio.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 16.2k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 16.2k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 16.2k | return Py_SIZE(tuple); | 26 | 16.2k | } |
stringio.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 38.1k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 38.1k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 38.1k | return Py_SIZE(tuple); | 26 | 38.1k | } |
itertoolsmodule.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 7.46k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 7.46k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 7.46k | return Py_SIZE(tuple); | 26 | 7.46k | } |
Line | Count | Source | 23 | 26.7M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 26.7M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 26.7M | return Py_SIZE(tuple); | 26 | 26.7M | } |
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 | 29.6k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 29.6k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 29.6k | return Py_SIZE(tuple); | 26 | 29.6k | } |
_functoolsmodule.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 353k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 353k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 353k | return Py_SIZE(tuple); | 26 | 353k | } |
Unexecuted instantiation: _localemodule.c:PyTuple_GET_SIZE Unexecuted instantiation: _opcode.c:PyTuple_GET_SIZE _operator.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 1.31M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 1.31M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 1.31M | return Py_SIZE(tuple); | 26 | 1.31M | } |
Unexecuted instantiation: symtablemodule.c:PyTuple_GET_SIZE Unexecuted instantiation: pwdmodule.c:PyTuple_GET_SIZE getpath.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 333 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 333 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 333 | return Py_SIZE(tuple); | 26 | 333 | } |
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.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: 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 | 19.2M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 19.2M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 19.2M | return Py_SIZE(tuple); | 26 | 19.2M | } |
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.47M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 1.47M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 1.47M | return Py_SIZE(tuple); | 26 | 1.47M | } |
Unexecuted instantiation: complexobject.c:PyTuple_GET_SIZE descrobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 16.7M | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 16.7M | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 16.7M | return Py_SIZE(tuple); | 26 | 16.7M | } |
enumobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 6.03k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 6.03k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 6.03k | return Py_SIZE(tuple); | 26 | 6.03k | } |
Unexecuted instantiation: genobject.c:PyTuple_GET_SIZE Unexecuted instantiation: fileobject.c:PyTuple_GET_SIZE frameobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 45 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 45 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 45 | return Py_SIZE(tuple); | 26 | 45 | } |
funcobject.c:PyTuple_GET_SIZE Line | Count | Source | 23 | 7.45k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 7.45k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 7.45k | return Py_SIZE(tuple); | 26 | 7.45k | } |
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 | 22.2k | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 22.2k | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 22.2k | return Py_SIZE(tuple); | 26 | 22.2k | } |
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 | 503 | static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) { | 24 | 503 | PyTupleObject *tuple = _PyTuple_CAST(op); | 25 | 503 | return Py_SIZE(tuple); | 26 | 503 | } |
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: 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 | 3.33G | #define PyTuple_GET_SIZE(op) PyTuple_GET_SIZE(_PyObject_CAST(op)) |
28 | | |
29 | 5.82G | #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 | 149M | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { |
34 | 149M | PyTupleObject *tuple = _PyTuple_CAST(op); |
35 | 149M | assert(0 <= index); |
36 | 149M | assert(index < Py_SIZE(tuple)); |
37 | 149M | tuple->ob_item[index] = value; |
38 | 149M | } bytesobject.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 1.14M | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 1.14M | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 1.14M | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 1.14M | tuple->ob_item[index] = value; | 38 | 1.14M | } |
Line | Count | Source | 33 | 16.0M | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 16.0M | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 16.0M | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 16.0M | tuple->ob_item[index] = value; | 38 | 16.0M | } |
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 | 6.67M | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 6.67M | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 6.67M | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 6.67M | tuple->ob_item[index] = value; | 38 | 6.67M | } |
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.23k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 4.23k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 4.23k | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 4.23k | tuple->ob_item[index] = value; | 38 | 4.23k | } |
Unexecuted instantiation: templateobject.c:PyTuple_SET_ITEM tupleobject.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 1.62M | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 1.62M | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 1.62M | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 1.62M | tuple->ob_item[index] = value; | 38 | 1.62M | } |
typeobject.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 80.7k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 80.7k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 80.7k | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 80.7k | tuple->ob_item[index] = value; | 38 | 80.7k | } |
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.3M | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 26.3M | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 26.3M | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 26.3M | tuple->ob_item[index] = value; | 38 | 26.3M | } |
Unexecuted instantiation: unionobject.c:PyTuple_SET_ITEM weakrefobject.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 60.6k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 60.6k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 60.6k | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 60.6k | tuple->ob_item[index] = value; | 38 | 60.6k | } |
Unexecuted instantiation: _warnings.c:PyTuple_SET_ITEM bltinmodule.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 6.14M | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 6.14M | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 6.14M | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 6.14M | tuple->ob_item[index] = value; | 38 | 6.14M | } |
Unexecuted instantiation: ceval.c:PyTuple_SET_ITEM codecs.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 2.20M | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 2.20M | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 2.20M | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 2.20M | tuple->ob_item[index] = value; | 38 | 2.20M | } |
codegen.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 2.45k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 2.45k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 2.45k | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 2.45k | tuple->ob_item[index] = value; | 38 | 2.45k | } |
compile.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 112 | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 112 | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 112 | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 112 | tuple->ob_item[index] = value; | 38 | 112 | } |
Unexecuted instantiation: context.c:PyTuple_SET_ITEM Unexecuted instantiation: errors.c:PyTuple_SET_ITEM flowgraph.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 2.03k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 2.03k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 2.03k | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 2.03k | tuple->ob_item[index] = value; | 38 | 2.03k | } |
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 | 197 | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 197 | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 197 | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 197 | tuple->ob_item[index] = value; | 38 | 197 | } |
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 | 7 | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 7 | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 7 | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 7 | tuple->ob_item[index] = value; | 38 | 7 | } |
Unexecuted instantiation: importdl.c:PyTuple_SET_ITEM initconfig.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 37 | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 37 | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 37 | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 37 | tuple->ob_item[index] = value; | 38 | 37 | } |
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.71M | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 2.71M | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 2.71M | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 2.71M | tuple->ob_item[index] = value; | 38 | 2.71M | } |
modsupport.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 13.8M | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 13.8M | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 13.8M | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 13.8M | tuple->ob_item[index] = value; | 38 | 13.8M | } |
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.9k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 10.9k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 10.9k | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 10.9k | tuple->ob_item[index] = value; | 38 | 10.9k | } |
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 | 36.0M | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 36.0M | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 36.0M | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 36.0M | tuple->ob_item[index] = value; | 38 | 36.0M | } |
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.7k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 23.7k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 23.7k | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 23.7k | tuple->ob_item[index] = value; | 38 | 23.7k | } |
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 | 118k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 118k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 118k | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 118k | tuple->ob_item[index] = value; | 38 | 118k | } |
Unexecuted instantiation: complexobject.c:PyTuple_SET_ITEM Unexecuted instantiation: descrobject.c:PyTuple_SET_ITEM enumobject.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 36.0M | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 36.0M | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 36.0M | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 36.0M | tuple->ob_item[index] = value; | 38 | 36.0M | } |
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.91k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 3.91k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 3.91k | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 3.91k | tuple->ob_item[index] = value; | 38 | 3.91k | } |
Unexecuted instantiation: Python-tokenize.c:PyTuple_SET_ITEM Unexecuted instantiation: asdl.c:PyTuple_SET_ITEM assemble.c:PyTuple_SET_ITEM Line | Count | Source | 33 | 28.2k | PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) { | 34 | 28.2k | PyTupleObject *tuple = _PyTuple_CAST(op); | 35 | 28.2k | assert(0 <= index); | 36 | | assert(index < Py_SIZE(tuple)); | 37 | 28.2k | tuple->ob_item[index] = value; | 38 | 28.2k | } |
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: 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 | 149M | 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); |