Searched refs:a_bytecode (Results 1 – 1 of 1) sorted by relevance
6459 PyObject *a_bytecode; /* string containing bytecode */ member6564 a->a_bytecode = PyBytes_FromStringAndSize(NULL, DEFAULT_CODE_SIZE); in assemble_init()6565 if (a->a_bytecode == NULL) { in assemble_init()6578 Py_XDECREF(a->a_bytecode); in assemble_init()6586 Py_XDECREF(a->a_bytecode); in assemble_free()6685 Py_ssize_t len = PyBytes_GET_SIZE(a->a_bytecode); in assemble_emit()6695 if (_PyBytes_Resize(&a->a_bytecode, len * 2) < 0) in assemble_emit()6698 code = (_Py_CODEUNIT *)PyBytes_AS_STRING(a->a_bytecode) + a->a_offset; in assemble_emit()6936 maxdepth, flags, a->a_bytecode, consts, names, in makecode()7159 if (_PyBytes_Resize(&a.a_bytecode, a.a_offset * sizeof(_Py_CODEUNIT)) < 0) { in assemble()[all …]