Home
last modified time | relevance | path

Searched defs:opts (Results 1 – 25 of 796) sorted by relevance

12345678910>>...32

/external/clang/tools/scan-build-py/libscanbuild/
Drunner.py77 def run(opts): argument
104 def report_failure(opts): argument
111 def extension(opts): argument
117 def destination(opts): argument
156 def run_analyzer(opts, continuation=report_failure): argument
198 def filter_debug_flags(opts, continuation=run_analyzer): argument
209 def set_file_path_relative(opts, continuation=filter_debug_flags): argument
220 def language_check(opts, continuation=set_file_path_relative): argument
250 def arch_check(opts, continuation=language_check): argument
/external/mesa3d/src/panfrost/bifrost/
Dgen_pack.py56 def pack_widen(mod, opts, body, pack_exprs): argument
88 def pack_absneg(mod, opts, body, pack_exprs): argument
95 def pack_round(mod, opts, body, pack_exprs): argument
109 def pack_clamp(mod, opts, body, pack_exprs): argument
132 def pack_cmpf(mod, opts, body, pack_exprs): argument
145 def pack_extend(mod, opts, body, pack_exprs): argument
158 def pack_varying_name(mod, opts, body, pack_exprs): argument
162 def pack_not_src1(mod, opts, body, pack_exprs): argument
165 def pack_not_result(mod, opts, body, pack_exprs): argument
180 def pack_register_format(mod, opts, body, pack_exprs): argument
[all …]
/external/tensorflow/tensorflow/core/profiler/internal/
Dtfprof_show.h57 virtual bool ShouldShowIfExtra(const ShowNode* node, const Options& opts, in ShouldShowIfExtra()
75 std::vector<T*> SortNodes(const std::vector<T*>& nodes, const Options& opts) { in SortNodes()
124 string FormatTotalExecTime(const T* node, const Options& opts) { in FormatTotalExecTime()
134 string FormatCPUExecTime(const T* node, const Options& opts) { in FormatCPUExecTime()
144 string FormatAcceleratorExecTime(const T* node, const Options& opts) { in FormatAcceleratorExecTime()
Dtfprof_stats_test.cc72 string TestToFromProto(const string& cmd, const Options& opts) { in TestToFromProto()
84 Options opts(3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, "name", in TEST_F() local
120 Options opts(3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, "name", in TEST_F() local
156 Options opts(100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, "name", {".*"}, in TEST_F() local
189 Options opts(10, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, "name", {".*"}, {".*"}, in TEST_F() local
237 Options opts(100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, "name", {".*"}, {".*"}, in TEST_F() local
272 Options opts(10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, "name", {".*"}, {".*"}, in TEST_F() local
Dtfprof_show_test.cc78 string TestToFromProto(const string& cmd, const Options& opts, in TestToFromProto()
100 Options opts( in TEST_F() local
129 Options opts(5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, "cpu_micros", in TEST_F() local
176 Options opts( in TEST_F() local
/external/tensorflow/tensorflow/core/common_runtime/
Dgraph_constructor_test.cc61 GraphConstructorOptions opts; in ExpectError() local
80 void ExpectError(const string& gdef_ascii, const ImportGraphDefOptions& opts, in ExpectError()
101 GraphConstructorOptions opts; in ExpectOK() local
105 void ExpectOK(const string& gdef_ascii, const ImportGraphDefOptions& opts, in ExpectOK()
811 ImportGraphDefOptions opts; in TEST_F() local
928 ImportGraphDefOptions opts; in TEST_F() local
1038 const ImportGraphDefOptions opts; in TEST_F() local
1183 ImportGraphDefOptions opts; in TEST_F() local
1225 ImportGraphDefOptions opts; in TEST_F() local
1286 ImportGraphDefOptions opts; in TEST_F() local
[all …]
/external/toybox/lib/
Dargs.c98 struct opts { struct
99 struct opts *next; argument
117 struct opts *opt; argument
127 struct opts *opts; member
/external/tensorflow/tensorflow/core/common_runtime/gpu/
Dgpu_device_test.cc118 SessionOptions opts = MakeSessionOptions("0,abc"); in TEST_F() local
127 SessionOptions opts = MakeSessionOptions("100"); in TEST_F() local
137 SessionOptions opts = MakeSessionOptions("0,0"); in TEST_F() local
147 SessionOptions opts = MakeSessionOptions("0", 0.1, 1, {{}}); in TEST_F() local
159 SessionOptions opts = MakeSessionOptions("0", 0, 0, {{}}); in TEST_F() local
171 SessionOptions opts = MakeSessionOptions("0", 0, 8, {{}, {}}); in TEST_F() local
185 SessionOptions opts = MakeSessionOptions("0,1", 0, 8, {{}}); in TEST_F() local
199 SessionOptions opts = MakeSessionOptions("0"); in TEST_F() local
211 SessionOptions opts = MakeSessionOptions("0", 0, 1, {{}}); in TEST_F() local
221 SessionOptions opts = MakeSessionOptions("0", 0, 1, {{123}}); in TEST_F() local
[all …]
/external/jcommander/src/test/java/com/beust/jcommander/
DDefaultValueTest.java37 MyOptsWithEmptyDefaults opts = new MyOptsWithEmptyDefaults(); in emptyDefaultValueForListParameterStaysEmptyIfNotAssignedOrIsSetOtherwise() local
47 MyOptsWithDefaultValues opts = new MyOptsWithDefaultValues(); in defaultValueForListParametersGetsOverwrittenWithSpecifiedValueOrStaysAsDefaultOtherwise() local
58 MyOptsWithEmptyDefaults opts = new MyOptsWithEmptyDefaults(); in anyNumberOfValuesCanBeSetToListParameters_ForEmptyDefaults() local
64 MyOptsWithDefaultValues opts = new MyOptsWithDefaultValues(); in anyNumberOfValuesCanBeSetToListParameters_ForNonEmptyDefaults() local
68 private void testSettingMultipleValuesToListTypeParameters(MyOpts opts) { in testSettingMultipleValuesToListTypeParameters()
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/sevenz/
DLZMADecoder.java48 OutputStream encode(final OutputStream out, final Object opts) in encode()
55 byte[] getOptionsAsProperties(final Object opts) throws IOException { in getOptionsAsProperties()
73 LZMA2Options opts = new LZMA2Options(); in getOptionsFromCoder() local
84 private LZMA2Options getOptions(final Object opts) throws IOException { in getOptions()
93 private int numberOptionOrDefault(final Object opts) { in numberOptionOrDefault()
DLZMA2Decoder.java46 OutputStream encode(final OutputStream out, final Object opts) in encode()
54 byte[] getOptionsAsProperties(final Object opts) { in getOptionsAsProperties()
68 private int getDictSize(final Object opts) { in getDictSize()
89 private LZMA2Options getOptions(final Object opts) throws IOException { in getOptions()
98 private int numberOptionOrDefault(final Object opts) { in numberOptionOrDefault()
/external/rust/crates/grpcio-sys/grpc/third_party/cares/cares/test/
Dares-test-init.cc56 struct ares_options opts = {0}; in TEST_F() local
142 struct ares_options opts = {0}; in TEST_F() local
342 struct ares_options opts; variable
365 struct ares_options opts = {0}; variable
393 struct ares_options opts; variable
443 struct ares_options opts; variable
462 struct ares_options opts; variable
499 struct ares_options opts; variable
536 struct ares_options opts; variable
549 struct ares_options opts = {0}; variable
[all …]
/external/python/cpython2/Demo/pdist/
Drcvs.py156 def diff(self, opts = []): argument
293 def diff(self, files, opts): argument
309 def log(self, files, opts): argument
391 def options(self, opts): argument
403 def do_report(self, opts, files): argument
406 def do_update(self, opts, files): argument
420 def do_commit(self, opts, files): argument
431 def do_diff(self, opts, files): argument
438 def do_add(self, opts, files): argument
446 def do_remove(self, opts, files): argument
[all …]
/external/llvm-project/clang/tools/scan-build-py/libscanbuild/
Danalyze.py439 def run(opts): argument
466 def report_failure(opts): argument
524 def run_analyzer(opts, continuation=report_failure): argument
581 def ctu_collect_phase(opts): argument
643 def dispatch_ctu(opts, continuation=run_analyzer): argument
667 def filter_debug_flags(opts, continuation=dispatch_ctu): argument
678 def language_check(opts, continuation=filter_debug_flags): argument
708 def arch_check(opts, continuation=language_check): argument
/external/webrtc/pc/
Dmedia_session_unittest.cc314 MediaSessionOptions* opts) { in FindFirstMediaDescriptionByMid()
322 const MediaSessionOptions& opts) { in FindFirstMediaDescriptionByMid()
333 MediaSessionOptions* opts) { in AddMediaDescriptionOptions()
339 MediaSessionOptions* opts) { in AddAudioVideoSections()
348 MediaSessionOptions* opts) { in AddDataSection()
748 MediaSessionOptions opts; in TestTransportSequenceNumberNegotiation() local
780 MediaSessionOptions* opts) { in SetAudioVideoRtpHeaderExtensions()
829 MediaSessionOptions opts; in TEST_F() local
868 MediaSessionOptions opts; in TEST_F() local
896 MediaSessionOptions opts; in TEST_F() local
[all …]
/external/tensorflow/tensorflow/compiler/xla/service/
Ddump.cc148 const CanonicalDebugOptions& opts) { in DumpToFileInDirImpl()
206 const CanonicalDebugOptions& opts) { in DumpToFileInDirOrStdoutImpl()
224 const CanonicalDebugOptions& opts) { in DumpHloModuleImpl()
312 const CanonicalDebugOptions& opts, in DumpHloModuleMetadata()
389 CanonicalDebugOptions opts(debug_options); in DumpExecutionOptions() local
410 CanonicalDebugOptions opts(module.config().debug_options()); in DumpHloModuleIfEnabled() local
419 CanonicalDebugOptions opts(module.config().debug_options()); in DumpHloModuleIfEnabled() local
429 CanonicalDebugOptions opts(module.config().debug_options()); in DumpHloModuleIfEnabled() local
437 const DebugOptions& opts) { in DumpingEnabledForHloModule()
441 bool DumpingToStdout(const DebugOptions& opts) { in DumpingToStdout()
[all …]
/external/harfbuzz_ng/test/shaping/data/text-rendering-tests/
Dextract-tests.py46 opts = '--font-size=1000 --ned --remove-default-ignorables --font-funcs=ft' variable
48 opts = opts + ' --variations=%s' % variations variable
57 opts = '' variable
59 opts = '--variations=%s' % variations variable
/external/libabigail/tools/
Dabipkgdiff.cc638 load_elf_file_paths(options& opts) in load_elf_file_paths()
738 const options& opts; member
904 const options &opts) in extract_rpm()
949 const options &opts) in extract_deb()
992 const options &opts) in extract_tar()
1041 const options &opts) in erase_created_temporary_directories()
1050 erase_created_temporary_directories_parent(const options &opts) in erase_created_temporary_directories_parent()
1078 const options &opts) in extract_package()
1152 maybe_check_suppression_files(const options& opts) in maybe_check_suppression_files()
1177 const options& opts) in set_diff_context_from_opts()
[all …]
/external/grpc-grpc/src/core/lib/compression/
Dcompression.cc110 void grpc_compression_options_init(grpc_compression_options* opts) { in grpc_compression_options_init()
117 grpc_compression_options* opts, grpc_compression_algorithm algorithm) { in grpc_compression_options_enable_algorithm()
122 grpc_compression_options* opts, grpc_compression_algorithm algorithm) { in grpc_compression_options_disable_algorithm()
127 const grpc_compression_options* opts, in grpc_compression_options_is_algorithm_enabled()
/external/rust/crates/grpcio-sys/grpc/src/core/lib/compression/
Dcompression.cc111 void grpc_compression_options_init(grpc_compression_options* opts) { in grpc_compression_options_init()
118 grpc_compression_options* opts, grpc_compression_algorithm algorithm) { in grpc_compression_options_enable_algorithm()
123 grpc_compression_options* opts, grpc_compression_algorithm algorithm) { in grpc_compression_options_disable_algorithm()
128 const grpc_compression_options* opts, in grpc_compression_options_is_algorithm_enabled()
/external/tensorflow/tensorflow/python/autograph/operators/
Ddata_structures.py235 def list_pop(list_, i, opts): argument
272 def _tf_tensor_list_pop(list_, i, opts): argument
305 def list_stack(list_, opts): argument
340 def _tf_tensor_list_stack(list_, opts): argument
348 def _py_list_stack(list_, opts): argument
/external/tensorflow/tensorflow/c/eager/
Dc_api_test.cc55 TFE_ContextOptions* opts = TFE_NewContextOptions(); in BM_InitOp() local
78 TFE_ContextOptions* opts = TFE_NewContextOptions(); in BM_Execute() local
120 TFE_ContextOptions* opts = TFE_NewContextOptions(); in BM_Execute_Identity() local
156 TFE_ContextOptions* opts = TFE_NewContextOptions(); in TEST() local
179 TFE_ContextOptions* opts = TFE_NewContextOptions(); in TEST() local
203 TFE_ContextOptions* opts = TFE_NewContextOptions(); in TensorHandleCopyBetweenDevices() local
280 TFE_ContextOptions* opts = TFE_NewContextOptions(); in TensorHandleCopyBetweenDevicesError() local
320 TFE_ContextOptions* opts = TFE_NewContextOptions(); in TensorHandleCopyBetweenTwoGPUDevices() local
402 TFE_ContextOptions* opts = TFE_NewContextOptions(); in TensorHandleSilentCopy() local
480 TFE_ContextOptions* opts = TFE_NewContextOptions(); in SetAndGetOpDevices() local
[all …]
/external/iproute2/tipc/
Dcmdl.c36 static struct opt *find_opt(struct opt *opts, char *str) in find_opt()
53 struct opt *get_opt(struct opt *opts, char *key) in get_opt()
65 bool has_opt(struct opt *opts, char *key) in has_opt()
83 int parse_opts(struct opt *opts, struct cmdl *cmdl) in parse_opts()
/external/skia/bench/
DEncodeBench.cpp56 SkJpegEncoder::Options opts; in encode_jpeg() local
62 SkWebpEncoder::Options opts; in encode_webp_lossy() local
69 SkWebpEncoder::Options opts; in encode_webp_lossless() local
79 SkPngEncoder::Options opts; in encode_png() local
/external/skqp/bench/
DEncodeBench.cpp56 SkJpegEncoder::Options opts; in encode_jpeg() local
62 SkWebpEncoder::Options opts; in encode_webp_lossy() local
69 SkWebpEncoder::Options opts; in encode_webp_lossless() local
79 SkPngEncoder::Options opts; in encode_png() local

12345678910>>...32