HomeSort by relevance Sort by last modified time
    Searched defs:opts (Results 1 - 25 of 336) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/tools/llvm-cxxdump/
llvm-cxxdump.h 16 namespace opts { namespace
18 } // namespace opts
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cxxdump/
llvm-cxxdump.h 16 namespace opts { namespace
18 } // namespace opts
  /external/tensorflow/tensorflow/core/common_runtime/
process_util_test.cc 23 SessionOptions opts; local
24 opts.config.set_inter_op_parallelism_threads(10);
25 EXPECT_EQ(10, NumInterOpThreadsFromSessionOptions(opts));
29 SessionOptions opts; local
30 opts.config.set_inter_op_parallelism_threads(10);
32 thread::ThreadPool* pool = NewThreadPoolFromSessionOptions(opts);
  /external/tensorflow/tensorflow/core/distributed_runtime/
call_options_test.cc 24 CallOptions opts; local
25 opts.StartCancel();
27 opts.SetCancelCallback([&num_calls]() { num_calls++; });
29 opts.StartCancel();
31 opts.StartCancel();
33 opts.ClearCancelCallback();
35 opts.StartCancel();
  /external/tensorflow/tensorflow/core/graph/
graph_def_builder_util.cc 24 GraphConstructorOptions opts; local
25 return ConvertGraphDefToGraph(opts, graph_def, graph);
  /external/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/
copy.pass.cpp 55 const directory_options opts = directory_options::skip_permission_denied; local
56 recursive_directory_iterator it(testDir, opts);
63 TEST_CHECK(it.options() == opts);
move.pass.cpp 57 const directory_options opts = directory_options::skip_permission_denied; local
58 recursive_directory_iterator it(testDir, opts);
65 TEST_CHECK(it.options() == opts);
ctor.pass.cpp 65 directory_options opts = directory_options::none; local
77 RDI it(testPath, opts, ec);
83 TEST_CHECK_THROW(filesystem_error, RDI(testPath, opts));
226 const directory_options opts = directory_options::skip_permission_denied; local
228 RDI it1(goodDir, opts, ec);
230 TEST_CHECK(it1.options() == opts);
232 RDI it2(badDir, opts, ec);
241 const directory_options opts = directory_options::follow_directory_symlink; local
242 RDI it(goodDir, opts);
243 TEST_CHECK(it.options() == opts);
    [all...]
  /external/llvm/tools/llvm-pdbdump/
llvm-pdbdump.h 16 namespace opts { namespace
  /external/tensorflow/tensorflow/core/common_runtime/gpu/
gpu_device_on_non_gpu_machine_test.cc 35 SessionOptions opts; local
38 opts, "/job:localhost/replica:0/task:0", &devices));
gpu_stream_util_test.cc 41 gpu_stream_util::AssignStreamsOpts opts; local
43 status = gpu_stream_util::AssignStreams(nullptr, opts, &node_to_stream_id);
45 status = gpu_stream_util::AssignStreams(&g, opts, nullptr);
47 opts.max_streams = 0;
48 status = gpu_stream_util::AssignStreams(&g, opts, &node_to_stream_id);
50 opts.max_streams = 1;
51 opts.compute_stream = 5;
52 status = gpu_stream_util::AssignStreams(&g, opts, &node_to_stream_id);
61 gpu_stream_util::AssignStreamsOpts opts; local
62 TF_ASSERT_OK(gpu_stream_util::AssignStreams(&g, opts, &node_to_stream_id))
73 gpu_stream_util::AssignStreamsOpts opts; local
92 gpu_stream_util::AssignStreamsOpts opts; local
119 gpu_stream_util::AssignStreamsOpts opts; local
    [all...]
  /external/boringssl/src/fipstools/
cavp_ecdsa2_pkv_test.cc 60 FileTest::Options opts; local
61 opts.path = argv[1];
62 opts.callback = TestECDSA2PKV;
63 opts.silent = true;
64 opts.comment_callback = EchoComment;
65 return FileTestMain(opts);
cavp_ecdsa2_keypair_test.cc 87 FileTest::Options opts; local
88 opts.path = argv[1];
89 opts.callback = TestECDSA2KeyPair;
90 opts.silent = true;
91 opts.comment_callback = EchoComment;
92 return FileTestMain(opts);
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-dwarfdump/fuzzer/
llvm-dwarfdump-fuzzer.cpp 37 DIDumpOptions opts; local
38 opts.DumpType = DIDT_All;
39 DICtx->dump(nulls(), opts); local
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
signalbar.cpp 30 QStyleOptionProgressBar opts; local
43 opts.minimum = -95;
44 opts.maximum = -35;
45 if (signal < opts.minimum)
46 opts.progress = opts.minimum;
47 else if (signal > opts.maximum)
48 opts.progress = opts.maximum;
50 opts.progress = signal
    [all...]
  /frameworks/base/cmds/idmap2/idmap2/
Dump.cpp 44 const CommandLineOptions opts = local
48 const auto opts_ok = opts.Parse(args);
Verify.cpp 37 const CommandLineOptions opts = local
41 const auto opts_ok = opts.Parse(args);
  /external/libnl/lib/route/qdisc/
plug.c 73 struct tc_plug_qopt opts; local
78 opts.action = plug->action;
79 opts.limit = plug->limit;
81 return nlmsg_append(msg, &opts, sizeof(opts), NL_DONTPAD);
  /external/llvm/tools/llvm-readobj/
llvm-readobj.h 45 namespace opts { namespace
63 } // namespace opts
  /external/selinux/libsemanage/tests/
libsemanage-tests.c 85 struct option opts[] = { local
91 while ((i = getopt_long(argc, argv, "vi", opts, NULL)) != -1) {
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
function_ops.cc 76 FunctionLibraryRuntime::Options opts; variable
77 opts.step_id = ctx->step_id();
78 opts.runner = ctx->runner();
79 opts.step_container = ctx->step_container();
87 opts, handle_, args, rets, [ctx, done, rets](const Status& status) {
  /external/tensorflow/tensorflow/contrib/android/jni/
run_stats_jni.cc 45 tensorflow::StatSummarizerOptions opts; local
46 return reinterpret_cast<jlong>(new StatSummarizer(opts));
  /external/tensorflow/tensorflow/core/kernels/
variable_ops_test.cc 48 SessionOptions opts; local
49 opts.config.set_inter_op_parallelism_threads(threads);
50 Session* sess = NewSession(opts);
  /external/jcommander/src/test/java/com/beust/jcommander/
DefaultValueTest.java 37 MyOptsWithEmptyDefaults opts = new MyOptsWithEmptyDefaults(); local
38 JCommander cmd = new JCommander(opts);
40 Assert.assertEquals(opts.list.size(), 1);
41 Assert.assertEquals(opts.list.get(0), "anotherValue");
42 Assert.assertEquals(opts.set.size(), 0);
47 MyOptsWithDefaultValues opts = new MyOptsWithDefaultValues(); local
48 JCommander cmd = new JCommander(opts);
50 Assert.assertEquals(opts.list.size(), 1);
51 Assert.assertEquals(opts.list.get(0), "anotherValue");
52 Assert.assertEquals(opts.set.size(), 1)
58 MyOptsWithEmptyDefaults opts = new MyOptsWithEmptyDefaults(); local
64 MyOptsWithDefaultValues opts = new MyOptsWithDefaultValues(); local
    [all...]
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/sevenz/
LZMADecoder.java 48 OutputStream encode(final OutputStream out, final Object opts)
51 return new FlushShieldFilterOutputStream(new LZMAOutputStream(out, getOptions(opts), false));
55 byte[] getOptionsAsProperties(final Object opts) throws IOException {
56 final LZMA2Options options = getOptions(opts);
73 LZMA2Options opts = new LZMA2Options(); local
74 opts.setPb(pb);
75 opts.setLcLp(lc, lp);
76 opts.setDictSize(getDictionarySize(coder));
77 return opts;
84 private LZMA2Options getOptions(final Object opts) throws IOException
    [all...]

Completed in 1085 milliseconds

1 2 3 4 5 6 7 8 91011>>