Home
last modified time | relevance | path

Searched refs:source_copy (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Modules/
Dsymtablemodule.c31 PyObject *source_copy = NULL; in _symtable_symtable_impl() local
35 const char *str = _Py_SourceAsString(source, "symtable", "string or bytes", &cf, &source_copy); in _symtable_symtable_impl()
50 Py_XDECREF(source_copy); in _symtable_symtable_impl()
55 Py_XDECREF(source_copy); in _symtable_symtable_impl()
/external/cronet/third_party/brotli/enc/
Dcompound_dictionary.c36 uint8_t* source_copy = NULL; in CreatePreparedDictionaryWithParams() local
110 source_copy = (uint8_t*)(&items[total_items]); in CreatePreparedDictionaryWithParams()
148 memcpy(source_copy, source, source_size); in CreatePreparedDictionaryWithParams()
/external/python/cpython3/Python/
Dbltinmodule.c753 PyObject *source_copy; in builtin_compile_impl() local
836 str = _Py_SourceAsString(source, "compile", "string, bytes or AST", &cf, &source_copy); in builtin_compile_impl()
842 Py_XDECREF(source_copy); in builtin_compile_impl()
917 PyObject *result, *source_copy; in builtin_eval_impl() local
972 str = _Py_SourceAsString(source, "eval", "string, bytes or code", &cf, &source_copy); in builtin_eval_impl()
981 Py_XDECREF(source_copy); in builtin_eval_impl()
1059 PyObject *source_copy; in builtin_exec_impl() local
1065 &source_copy); in builtin_exec_impl()
1073 Py_XDECREF(source_copy); in builtin_exec_impl()