/external/mesa3d/src/compiler/glsl/ |
D | lower_precision.cpp | 430 !strcmp(ir->callee_name(), "imageLoad"))) { in handle_call() 480 if (!strcmp(ir->callee_name(), "textureSize")) in handle_call() 488 !strcmp(ir->callee_name(), "floatBitsToInt") || in handle_call() 489 !strcmp(ir->callee_name(), "floatBitsToUint") || in handle_call() 490 !strcmp(ir->callee_name(), "intBitsToFloat") || in handle_call() 491 !strcmp(ir->callee_name(), "uintBitsToFloat") || in handle_call() 492 !strcmp(ir->callee_name(), "bitfieldReverse") || in handle_call() 493 !strcmp(ir->callee_name(), "frexp") || in handle_call() 494 !strcmp(ir->callee_name(), "ldexp") || in handle_call() 497 !strcmp(ir->callee_name(), "uaddCarry") || in handle_call() [all …]
|
D | ir_builder_print_visitor.cpp | 704 print_with_indent("/* CALL %s */\n", ir->callee_name()); in visit_leave() 728 ir->callee_name()); in visit_leave()
|
D | lower_shared_reference.cpp | 417 sprintf(func_name, "%s_shared", ir->callee_name()); in lower_shared_atomic_intrinsic()
|
D | ir_print_visitor.cpp | 533 fprintf(f, "(call %s ", ir->callee_name()); in visit()
|
D | lower_ubo_reference.cpp | 1044 sprintf(func_name, "%s_ssbo", ir->callee_name()); in lower_ssbo_atomic_intrinsic()
|
D | ir.h | 1673 const char *callee_name() const in callee_name() function
|
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
D | ScriptInterpreterPython.cpp | 1575 static char callee_name[] = "get_register_info"; in OSPlugin_RegisterInfo() local 1591 PyObject_GetAttrString(implementor.get(), callee_name)); in OSPlugin_RegisterInfo() 1612 PyObject_CallMethod(implementor.get(), callee_name, nullptr)); in OSPlugin_RegisterInfo() 1630 static char callee_name[] = "get_thread_info"; in OSPlugin_ThreadsInfo() local 1646 PyObject_GetAttrString(implementor.get(), callee_name)); in OSPlugin_ThreadsInfo() 1667 PyObject_CallMethod(implementor.get(), callee_name, nullptr)); in OSPlugin_ThreadsInfo() 1716 static char callee_name[] = "get_register_data"; in OSPlugin_RegisterContextData() local 1733 PyObject_GetAttrString(implementor.get(), callee_name)); in OSPlugin_RegisterContextData() 1753 PyObject_CallMethod(implementor.get(), callee_name, param_format, tid)); in OSPlugin_RegisterContextData() 1773 static char callee_name[] = "create_thread"; in OSPlugin_CreateThread() local [all …]
|
/external/tensorflow/tensorflow/compiler/jit/ |
D | build_xla_ops_pass_test.cc | 88 Status MakeXlaCompiledKernel(Graph* graph, const string& callee_name, in MakeXlaCompiledKernel() argument 93 call_node.set_op(callee_name); in MakeXlaCompiledKernel() 102 Status MakeXlaCompiledKernel(Graph* graph, const string& callee_name, in MakeXlaCompiledKernel() argument 104 return MakeXlaCompiledKernel(graph, callee_name, node_name, in MakeXlaCompiledKernel()
|
D | resource_operation_safety_analysis_test.cc | 252 Node* MakeCall(Graph* graph, const string& callee_name, const string& node_name, in MakeCall() argument 256 call_node.set_op(callee_name); in MakeCall()
|
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
D | elemental_ir_emitter.cc | 122 const string& callee_name, absl::Span<llvm::Value* const> operands, in EmitLlvmIntrinsicMathCall() argument 126 string munged_callee = callee_name; in EmitLlvmIntrinsicMathCall() 145 const string& callee_name, absl::Span<llvm::Value* const> operands, in EmitMathCall() argument 158 callee_name, operands, input_types, output_type, in EmitMathCall()
|
D | elemental_ir_emitter.h | 115 const string& callee_name, absl::Span<llvm::Value* const> operands, 129 const string& callee_name, absl::Span<llvm::Value* const> operands,
|
D | target_util.h | 69 const std::string& callee_name, absl::Span<llvm::Value* const> operands,
|
D | target_util.cc | 194 const string& callee_name, absl::Span<llvm::Value* const> operands, in EmitDeviceFunctionCall() argument 213 ->getOrInsertFunction(callee_name, callee_type) in EmitDeviceFunctionCall()
|
/external/llvm-project/lldb/bindings/python/ |
D | python-wrapper.swig | 597 char* callee_name, 605 auto pfunc = self.ResolveName<PythonCallable>(callee_name); 728 static char callee_name[] = "update"; 730 PyObject* py_return = LLDBSwigPython_CallOptionalMember(implementor,callee_name); 748 static char callee_name[] = "has_children"; 750 PyObject* py_return = LLDBSwigPython_CallOptionalMember(implementor,callee_name, Py_True); 768 static char callee_name[] = "get_value"; 770 PyObject* py_return = LLDBSwigPython_CallOptionalMember(implementor,callee_name, Py_None); 945 static char callee_name[] = "get_recognized_arguments"; 950 PythonString str(callee_name);
|
/external/llvm-project/lldb/source/Symbol/ |
D | Function.cpp | 160 ConstString callee_name{lazy_callee.symbol_name}; in ParseSymbolFileAndResolve() local 162 images.FindFunctionSymbols(callee_name, eFunctionNameTypeAuto, sc_list); in ParseSymbolFileAndResolve() 167 callee_name); in ParseSymbolFileAndResolve()
|