/external/libcxx/test/std/thread/futures/futures.overview/ |
D | launch.pass.cpp | 29 LIBCPP_STATIC_ASSERT(static_cast<int>(std::launch::any) == in main() 30 … (static_cast<int>(std::launch::async) | static_cast<int>(std::launch::deferred)), ""); in main() 32 LIBCPP_STATIC_ASSERT(std::launch::any == (std::launch::async | std::launch::deferred), ""); in main() 33 static_assert(std::launch(0) == (std::launch::async & std::launch::deferred), ""); in main() 34 LIBCPP_STATIC_ASSERT(std::launch::any == (std::launch::async ^ std::launch::deferred), ""); in main() 35 LIBCPP_STATIC_ASSERT(std::launch::deferred == ~std::launch::async, ""); in main() 36 std::launch x = std::launch::async; in main() 37 x &= std::launch::deferred; in main() 38 assert(x == std::launch(0)); in main() 39 x = std::launch::async; in main() [all …]
|
/external/libcxx/test/std/thread/futures/futures.async/ |
D | async.pass.cpp | 113 std::launch AnyPolicy = std::launch::async | std::launch::deferred; in main() 114 LIBCPP_ASSERT(AnyPolicy == std::launch::any); in main() 119 test<int>(checkInt, false, std::launch::async, f0); in main() 120 test<int>(checkInt, true, std::launch::deferred, f0); in main() 126 test<int&>(checkIntRef, false, std::launch::async, f1); in main() 127 test<int&>(checkIntRef, true, std::launch::deferred, f1); in main() 133 test<void>(checkVoid, false, std::launch::async, f2); in main() 134 test<void>(checkVoid, true, std::launch::deferred, f2); in main() 150 std::future<void> f = std::async(std::launch::deferred, f5, 3); in main()
|
D | async_race.38682.pass.cpp | 47 std::future<int> fut = std::async(std::launch::async, worker, v); in main() 56 std::future<int&> fut = std::async(std::launch::async, worker_ref, std::ref(i)); in main() 65 std::future<void> fut = std::async(std::launch::async, worker_void); in main()
|
D | async_race.pass.cpp | 52 std::future<int> f = std::async(std::launch::async, f_async); in test_each() 58 std::future<int> f = std::async(std::launch::deferred, f_deferred); in test_each()
|
/external/tensorflow/tensorflow/compiler/jit/ |
D | encapsulate_xla_computations_pass_test.cc | 64 Node* launch = scope.graph()->AddNode(def, &status); in MakeOuterGraph() local 66 TF_CHECK_OK(scope.DoShapeInference(launch)); in MakeOuterGraph() 67 scope.graph()->AddEdge(a.node(), 0, launch, 0); in MakeOuterGraph() 68 scope.graph()->AddEdge(b.node(), 0, launch, 1); in MakeOuterGraph() 69 scope.graph()->AddEdge(c.node(), 0, launch, 2); in MakeOuterGraph() 70 scope.graph()->AddEdge(d.node(), 0, launch, 3); in MakeOuterGraph() 71 scope.graph()->AddEdge(u.node(), 0, launch, 4); in MakeOuterGraph() 72 scope.graph()->AddEdge(v.node(), 0, launch, 5); in MakeOuterGraph() 73 scope.graph()->AddEdge(w.node(), 0, launch, 6); in MakeOuterGraph() 76 ops::XlaClusterOutput(scope.WithOpName("Out0"), Output(launch, 0)); in MakeOuterGraph() [all …]
|
D | encapsulate_xla_computations_pass.cc | 256 for (Node* launch : launch_nodes) { in BuildXlaLaunchOps() 258 TF_RETURN_IF_ERROR(GetNodeAttr(launch->attrs(), "_variable_start_index", in BuildXlaLaunchOps() 262 TF_RETURN_IF_ERROR(launch->input_edges(&in_edges)); in BuildXlaLaunchOps() 268 VLOG(4) << "Launch node '" << launch->name() << "'" in BuildXlaLaunchOps() 272 std::vector<Node*> nodes_to_remove = {launch}; in BuildXlaLaunchOps() 279 AddControlInputs(*launch, &control_inputs); in BuildXlaLaunchOps() 295 const int num_outputs = launch->output_types().size(); in BuildXlaLaunchOps() 300 for (const Edge* le : launch->out_edges()) { in BuildXlaLaunchOps() 323 def.set_name(launch->name()); in BuildXlaLaunchOps() 324 MergeDebugInfo(NodeDebugInfo(launch->def()), &def); in BuildXlaLaunchOps() [all …]
|
/external/parameter-framework/upstream/test/functional-tests-legacy/ |
D | README.md | 12 We launch the functional tests with ACTCampaignEngine.py. This script launch every test present in … 18 Once the makefile is created, we can launch the test by running :
|
/external/tensorflow/tensorflow/core/kernels/ |
D | pooling_ops_3d.cc | 102 static void launch(OpKernelContext* context, const Tensor& tensor_in, in launch() function 117 static void launch(OpKernelContext* context, const Tensor& tensor_in, in launch() function 194 LaunchPoolingOp<Device, T, Type>::launch(context, tensor_in, window, stride, in Compute() 208 static void launch(OpKernelContext* context, const Tensor& tensor_in, in launch() function 368 LaunchMaxPooling3dGradOp<Device, T>::launch( in Compute() 382 static void launch(OpKernelContext* context, in launch() function 529 LaunchAvgPooling3dGradOp<Device, T>::launch( in Compute() 543 static void launch(OpKernelContext* context, const Pool3dParameters& params, in launch() function 705 LaunchMaxPooling3dGradGradOp<Device, T>::launch( in Compute() 745 static void launch(OpKernelContext* context, const Tensor& tensor_in, in launch() function [all …]
|
D | lrn_op.cc | 80 void launch(OpKernelContext* context, OpKernel* kernel, const Tensor& in, in launch() function 174 void launch(OpKernelContext* context, OpKernel* kernel, const Tensor& in, in launch() function 276 launcher.launch(context, this, in, output); in Compute() 317 void launch(OpKernelContext* context, OpKernel* kernel, in launch() function 391 void launch(OpKernelContext* context, OpKernel* kernel, in launch() function 499 launcher.launch(context, this, in_grads, in_image, out_image, output); in Compute()
|
D | maxpooling_op.cc | 794 LaunchMaxPoolingNoMask<Device, T>::launch(context, params, tensor_in, in Compute() 872 LaunchMaxPoolingNoMask<Device, T>::launch(context, params, tensor_in, in Compute() 888 static void launch(OpKernelContext* context, const PoolParameters& params, in launch() function 937 LaunchMaxPoolingWithArgmax<Device, T>::launch( in Compute() 958 static void launch(OpKernelContext* context, const PoolParameters& params, in launch() function 1050 LaunchMaxPoolingGradWithArgmax<Device, T>::launch( in Compute() 1104 LaunchMaxPoolingGradGradWithArgmax<Device, T>::launch( in Compute() 1181 LaunchMaxPoolingNoMask_NCHW_VECT_C<Device>::launch(context, params, in Compute() 1184 LaunchMaxPoolingNoMask<Device, T>::launch(context, params, tensor_in, in Compute() 1285 LaunchMaxPoolingNoMask<Device, T>::launch(context, params, tensor_in, in Compute() [all …]
|
/external/libcxx/include/ |
D | future | 28 enum class launch 317 async(launch policy, F&& f, Args&&... args); 401 //enum class launch 402 _LIBCPP_DECLARE_STRONG_ENUM(launch) 408 _LIBCPP_DECLARE_STRONG_ENUM_EPILOG(launch) 413 typedef underlying_type<launch>::type __launch_underlying_type; 420 launch 421 operator&(launch __x, launch __y) 423 return static_cast<launch>(static_cast<__launch_underlying_type>(__x) & 429 launch [all …]
|
/external/objenesis/tck-android/src/main/java/org/objenesis/tck/android/ |
D | TckInstrumentation.java | 43 launch(); in onCreate() 54 private void launch() throws IOException { in launch() method in TckInstrumentation
|
/external/libvpx/libvpx/vpx_util/ |
D | vpx_thread.c | 136 static void launch(VPxWorker *const worker) { in launch() function 164 launch, execute, end }; 169 winterface->launch == NULL || winterface->execute == NULL || in vpx_set_worker_interface()
|
/external/tensorflow/tensorflow/contrib/fused_conv/kernels/ |
D | fused_conv2d_bias_activation_op.h | 39 void launch(OpKernelContext* ctx, bool cudnn_use_autotune, 53 void launch(OpKernelContext* ctx, bool cudnn_use_autotune,
|
/external/libaom/libaom/aom_util/ |
D | aom_thread.c | 167 static void launch(AVxWorker *const worker) { in launch() function 195 launch, execute, end }; 200 winterface->launch == NULL || winterface->execute == NULL || in aom_set_worker_interface()
|
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/ |
D | RawCommandLineLauncher.java | 101 launch(Map<String,? extends Connector.Argument> arguments) in launch() method in RawCommandLineLauncher 118 return launch(tokenizeCommand(command, quote.charAt(0)), in launch()
|
D | SunCommandLineLauncher.java | 140 launch(Map<String,? extends Connector.Argument> arguments) in launch() method in SunCommandLineLauncher 223 vm = launch(tokenizeCommand(command, quote.charAt(0)), address, listenKey, in launch()
|
/external/libvpx/libvpx/test/ |
D | vp9_thread_test.cc | 39 vpx_get_worker_interface()->launch(worker); in Run() 92 vpx_get_worker_interface()->launch(&worker_); in TEST_P() 140 case 3: winterface.launch = NULL; break; in TEST()
|
/external/llvm/lib/Support/ |
D | ThreadPool.cpp | 142 auto Future = std::async(std::launch::deferred, std::move(Task)).share(); in asyncImpl() 147 auto Future = std::async(std::launch::deferred, std::move(Task), false).share(); in asyncImpl()
|
/external/guice/core/test/com/googlecode/guice/ |
D | OSGiContainerTest.java | 30 import org.osgi.framework.launch.Framework; 31 import org.osgi.framework.launch.FrameworkFactory;
|
/external/u-boot/drivers/mtd/nand/ |
D | mxc_nand.h | 112 u32 launch; member 203 #define operation launch
|
/external/skqp/tools/lottiecap/ |
D | lottiecap.js | 137 browser = await puppeteer.launch({ 142 browser = await puppeteer.launch();
|
/external/skia/tools/lottiecap/ |
D | lottiecap.js | 137 browser = await puppeteer.launch({ 142 browser = await puppeteer.launch();
|
/external/webrtc/talk/app/webrtc/objc/ |
D | README | 58 - To build & launch the sample app on OSX: 62 - To build & launch the sample app on the iOS simulator:
|
/external/cros/system_api/dbus/vm_applications/ |
D | apps.proto | 56 // Name of the VM to launch the terminal in. 59 // Name of the container within the VM to launch the terminal in.
|