/external/OpenCL-CTS/test_conformance/clcpp/convert/ |
D | convert_cast.hpp | 146 std::string function_call = "convert_" + type_name<out_type>(); in generate_kernel_convert_cast() local 148 function_call += "_sat"; in generate_kernel_convert_cast() 150 function_call += "_" + rounding_mode_name(func.rmode); in generate_kernel_convert_cast() 151 function_call += "(" + in1_value + ")"; in generate_kernel_convert_cast() 156 " output[gid] = " + function_call + ";\n" in generate_kernel_convert_cast() 165 std::string function_call = "convert_cast<" + type_name<out_type>(); in generate_kernel_convert_cast() local 167 function_call += ", rounding_mode::" + rounding_mode_name(func.rmode); in generate_kernel_convert_cast() 169 function_call += ", saturate::" + saturate_name(func.smode); in generate_kernel_convert_cast() 170 function_call += ">(" + in1_value + ")"; in generate_kernel_convert_cast() 181 " output[gid] = " + function_call + ";\n" in generate_kernel_convert_cast()
|
/external/python/pybind11/include/pybind11/ |
D | attr.h | 119 inline void keep_alive_impl(size_t Nurse, size_t Patient, function_call &call, handle ret); 152 handle (*impl) (function_call &) = nullptr; 285 inline function_call::function_call(const function_record &f, handle p) : 306 static void precall(function_call &) { } 307 static void postcall(function_call &, handle) { } 448 static void precall(function_call &call) { keep_alive_impl(Nurse, Patient, call, handle()); } 450 static void postcall(function_call &, handle) { } 452 static void precall(function_call &) { } 454 …static void postcall(function_call &call, handle ret) { keep_alive_impl(Nurse, Patient, call, ret)… 467 static void precall(function_call &call) { [all …]
|
D | cast.h | 1861 struct function_call { 1862 function_call(const function_record &f, handle p); // Implementation in attr.h 1906 bool load_args(function_call &call) { 1923 static bool load_impl_sequence(function_call &, index_sequence<>) { return true; } 1926 bool load_impl_sequence(function_call &call, index_sequence<Is...>) {
|
D | pybind11.h | 137 rec->impl = [](function_call &call) -> handle { in NAMESPACE_BEGIN() 459 std::vector<function_call> second_pass; in NAMESPACE_BEGIN() 496 function_call call(func, parent); in NAMESPACE_BEGIN() 1625 PYBIND11_NOINLINE inline void keep_alive_impl(size_t Nurse, size_t Patient, function_call &call, ha…
|
/external/OpenCL-CTS/test_conformance/clcpp/utils_test/ |
D | unary.hpp | 109 std::string function_call = func.str() + "(" + in1_value + ");"; in generate_kernel_unary() local 114 function_call = "convert_int" + i + "(" + func.str() + "(" + in1_value + "))"; in generate_kernel_unary() 120 " output[gid] = " + function_call + ";\n" in generate_kernel_unary() 134 std::string function_call = func.str() + "(" + in1_value + ")"; in generate_kernel_unary() local 138 function_call = "convert_cast<int" + i + ">(" + func.str() + "(" + in1_value + "))"; in generate_kernel_unary() 157 " output[gid] = " + function_call + ";\n" in generate_kernel_unary()
|
D | binary.hpp | 119 std::string function_call = func.str() + "(" + in1_value + ", " + in2_value + ")"; in generate_kernel_binary() local 123 … function_call = "convert_int" + i + "(" + func.str() + "(" + in1_value + ", " + in2_value + "))"; in generate_kernel_binary() 131 " output[gid] = " + function_call + ";\n" in generate_kernel_binary() 151 std::string function_call = func.str() + "(" + in1_value + ", " + in2_value + ")"; in generate_kernel_binary() local 155 …function_call = "convert_cast<int" + i + ">(" + func.str() + "(" + in1_value + ", " + in2_value + … in generate_kernel_binary() 175 " output[gid] = " + function_call + ";\n" in generate_kernel_binary()
|
D | ternary.hpp | 147 …std::string function_call = func.str() + "(" + in1_value + ", " + in2_value + ", " + in3_value + "… in generate_kernel_ternary() local 151 …function_call = "convert_int" + i + "(" + func.str() + "(" + in1_value + ", " + in2_value + ", " +… in generate_kernel_ternary() 160 " output[gid] = " + function_call + ";\n" in generate_kernel_ternary() 186 …std::string function_call = func.str() + "(" + in1_value + ", " + in2_value + ", " + in3_value + "… in generate_kernel_ternary() local 190 …function_call = "convert_cast<int" + i + ">(" + func.str() + "(" + in1_value + ", " + in2_value + … in generate_kernel_ternary() 211 " output[gid] = " + function_call + ";\n" in generate_kernel_ternary()
|
/external/tensorflow/tensorflow/core/common_runtime/ |
D | lower_function_call_op_test.cc | 95 Node* function_call; in TEST() local 102 .Finalize(root.graph(), &function_call)); in TEST() 103 TF_ASSERT_OK(root.DoShapeInference(function_call)); in TEST() 105 auto b = ops::Identity(root.WithOpName("B"), Output(function_call, 0)); in TEST() 106 root.graph()->AddControlEdge(function_call, b.node()); in TEST()
|
/external/OpenCL-CTS/test_conformance/clcpp/reinterpret/ |
D | as_type.hpp | 54 std::string function_call = "as_" + type_name<out_type>() + "(" + in1_value + ");"; in generate_kernel_as_type() local 59 " output[gid] = " + function_call + ";\n" in generate_kernel_as_type() 68 std::string function_call = "as_type<" + type_name<out_type>() + ">(" + in1_value + ")"; in generate_kernel_as_type() local 79 " output[gid] = " + function_call + ";\n" in generate_kernel_as_type()
|
/external/OpenCL-CTS/test_conformance/clcpp/atomics/ |
D | atomic_fetch.hpp | 34 std::string function_call = "atomic_" + func.str() + "(&" + out1_value + ", " + in1_value + ")"; in generate_kernel_atomic_fetch() local 40 " " + function_call + ";\n" in generate_kernel_atomic_fetch() 49 std::string function_call = func.str() + "(" + in1_value + ")"; in generate_kernel_atomic_fetch() local 60 " " + out1_value + "." + function_call + ";\n" in generate_kernel_atomic_fetch()
|
/external/clang/test/SemaCXX/ |
D | cxx0x-initializer-scalars.cpp | 71 void function_call() { in function_call() function
|
D | cxx0x-initializer-aggregates.cpp | 52 void function_call() { in function_call() function
|
D | cxx0x-initializer-stdinitializerlist.cpp | 64 void function_call() { in function_call() function
|
D | cxx0x-initializer-constructor.cpp | 107 C function_call() { in function_call() function
|
/external/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
D | transformation.cpp | 132 return MakeUnique<TransformationFunctionCall>(message.function_call()); in FromMessage()
|
/external/angle/third_party/spirv-tools/src/source/fuzz/ |
D | transformation.cpp | 148 return MakeUnique<TransformationFunctionCall>(message.function_call()); in FromMessage()
|
/external/deqp-deps/SPIRV-Tools/source/fuzz/ |
D | transformation.cpp | 143 return MakeUnique<TransformationFunctionCall>(message.function_call()); in FromMessage()
|
/external/python/cpython2/Objects/ |
D | funcobject.c | 485 function_call(PyObject *func, PyObject *arg, PyObject *kw) in function_call() function 559 function_call, /* tp_call */
|
/external/python/cpython3/Objects/ |
D | funcobject.c | 626 function_call(PyObject *func, PyObject *args, PyObject *kwargs) in function_call() function 662 function_call, /* tp_call */
|
/external/angle/src/compiler/translator/ |
D | glslang.y | 204 %type <interm.intermTypedNode> function_call initializer 306 | function_call { 327 function_call
|
/external/deqp/doc/testspecs/GLES3/ |
D | performance.buffer.data_upload.txt | 107 function_call.* tests measure the time taken by the corresponding command or the series of 111 modify_after_use.* tests are similar to the function_call.* test but they target a buffer
|
/external/swiftshader/src/OpenGL/compiler/ |
D | glslang.y | 194 %type <interm.intermTypedNode> function_call initializer condition conditionopt 284 | function_call { 306 function_call
|
/external/ltp/doc/ |
D | style-guide.txt | 214 if ((this_is_a_poorly_formed_really_long_variable = function_call()) == NULL &&
|
/external/mesa3d/src/compiler/glsl/ |
D | glsl_parser.yy | 248 %type <expression> function_call 500 | function_call 529 function_call:
|
/external/deqp-deps/glslang/glslang/MachineIndependent/ |
D | glslang.y | 308 %type <interm.intermTypedNode> function_call initializer condition conditionopt 432 | function_call { 457 function_call
|