Home
last modified time | relevance | path

Searched refs:code_obj (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/
Dframes.cc464 Code* code_obj = in ComputeType() local
466 if (code_obj != nullptr) { in ComputeType()
467 switch (code_obj->kind()) { in ComputeType()
470 if (code_obj->is_interpreter_trampoline_builtin()) { in ComputeType()
473 if (code_obj->is_turbofanned()) { in ComputeType()
/external/python/cpython3/Modules/
D_pickle.c3193 PyObject *code_obj; /* extension code as Python object */ in save_global() local
3202 code_obj = PyDict_GetItemWithError(st->extension_registry, in save_global()
3207 if (code_obj == NULL) { in save_global()
3219 if (!PyLong_Check(code_obj)) { in save_global()
3222 obj, code_obj); in save_global()
3225 code = PyLong_AS_LONG(code_obj); in save_global()