Searched refs:arguments_type (Results 1 – 7 of 7) sorted by relevance
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
D | ir_emission_utils.cc | 190 auto* arguments_type = llvm::StructType::create(argument_types); in EmitPrintf() local 191 llvm::Value* arguments_ptr = builder->CreateAlloca(arguments_type); in EmitPrintf() 203 arguments_type->getPointerTo()}, in EmitPrintf()
|
/external/v8/src/compiler/ |
D | code-generator.cc | 941 translation->ArgumentsElements(desc->arguments_type()); in TranslateStateValueDescriptor() 945 translation->ArgumentsLength(desc->arguments_type()); in TranslateStateValueDescriptor()
|
D | instruction.h | 1179 ArgumentsStateType arguments_type() const { in arguments_type() function
|
/external/v8/src/ |
D | deoptimizer.cc | 2970 CreateArgumentsType arguments_type = in CreateNextTranslatedValue() local 2972 CreateArgumentsElementsTranslatedValues(frame_index, fp, arguments_type, in CreateNextTranslatedValue() 2978 CreateArgumentsType arguments_type = in CreateNextTranslatedValue() local 2981 ComputeArgumentsPosition(fp, arguments_type, &length); in CreateNextTranslatedValue() 2984 static_cast<uint8_t>(arguments_type), length); in CreateNextTranslatedValue()
|
D | objects.cc | 14894 CreateArgumentsType arguments_type = in DeoptimizationDataPrint() local 14896 os << "{arguments_type=" << arguments_type << "}"; in DeoptimizationDataPrint()
|
/external/python/cpython3/Python/ |
D | Python-ast.c | 458 static PyTypeObject *arguments_type; variable 1151 arguments_type = make_type("arguments", &AST_type, arguments_fields, 6); in init_types() 1152 if (!arguments_type) return 0; in init_types() 1153 if (!add_attributes(arguments_type, NULL, 0)) return 0; in init_types() 3780 result = PyType_GenericNew(arguments_type, NULL, NULL); in ast2obj_arguments() 8345 if (PyDict_SetItemString(d, "arguments", (PyObject*)arguments_type) < 0) in PyInit__ast()
|
/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()
|