Searched refs:arguments_type (Results 1 – 5 of 5) sorted by relevance
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
D | ir_emission_utils.cc | 448 auto* arguments_type = llvm::StructType::create(argument_types); in EmitPrintf() local 449 llvm::Value* arguments_ptr = builder->CreateAlloca(arguments_type); in EmitPrintf()
|
/external/python/cpython3/Python/ |
D | Python-ast.c | 145 PyObject *arguments_type; member 390 Py_CLEAR(state->arguments_type); in _PyAST_Fini() 1818 state->arguments_type = make_type(state, "arguments", state->AST_type, in init_types() 1821 if (!state->arguments_type) return 0; in init_types() 1822 if (!add_attributes(state, state->arguments_type, NULL, 0)) return 0; in init_types() 1823 if (PyObject_SetAttr(state->arguments_type, state->vararg, Py_None) == -1) in init_types() 1825 if (PyObject_SetAttr(state->arguments_type, state->kwarg, Py_None) == -1) in init_types() 4644 tp = (PyTypeObject *)state->arguments_type; in ast2obj_arguments() 10051 if (PyModule_AddObject(m, "arguments", state->arguments_type) < 0) { in astmodule_exec() 10054 Py_INCREF(state->arguments_type); in astmodule_exec()
|
/external/python/cpython2/Python/ |
D | Python-ast.c | 365 static PyTypeObject *arguments_type; variable 959 arguments_type = make_type("arguments", &AST_type, arguments_fields, 4); in init_types() 960 if (!arguments_type) return 0; in init_types() 3231 result = PyType_GenericNew(arguments_type, NULL, NULL); in ast2obj_arguments() 6914 if (PyDict_SetItemString(d, "arguments", (PyObject*)arguments_type) < in init_ast()
|
/external/python/cpython3/Tools/c-analyzer/ |
D | known.tsv | 27 Python/Python-ast.c - arguments_type variable static PyTypeObject *arguments_type
|
/external/python/cpython3/Parser/pegen/ |
D | parse.c | 200 #define arguments_type 1122 macro 12168 if (_PyPegen_is_memoized(p, arguments_type, &_res)) { in arguments_rule() 12224 _PyPegen_insert_memo(p, _mark, arguments_type, _res); in arguments_rule()
|