Home
last modified time | relevance | path

Searched full:platforms (Results 1 – 25 of 4945) sorted by relevance

12345678910>>...198

/external/mdnsresponder/
DmDNSResponder.sln89 Debug|Mixed Platforms = Debug|Mixed Platforms
93 Release|Mixed Platforms = Release|Mixed Platforms
99 {AB581101-18F0-46F6-B56A-83A6B1EA657E}.Debug|Mixed Platforms.ActiveCfg = Debug|x64
100 {AB581101-18F0-46F6-B56A-83A6B1EA657E}.Debug|Mixed Platforms.Build.0 = Debug|x64
106 {AB581101-18F0-46F6-B56A-83A6B1EA657E}.Release|Mixed Platforms.ActiveCfg = Release|x64
107 {AB581101-18F0-46F6-B56A-83A6B1EA657E}.Release|Mixed Platforms.Build.0 = Release|x64
113 {C1D98254-BA27-4427-A3BE-A68CA2CC5F69}.Debug|Mixed Platforms.ActiveCfg = Debug|x64
114 {C1D98254-BA27-4427-A3BE-A68CA2CC5F69}.Debug|Mixed Platforms.Build.0 = Debug|x64
120 {C1D98254-BA27-4427-A3BE-A68CA2CC5F69}.Release|Mixed Platforms.ActiveCfg = Release|x64
121 {C1D98254-BA27-4427-A3BE-A68CA2CC5F69}.Release|Mixed Platforms.Build.0 = Release|x64
[all …]
/external/capstone/tests/
Dtest_skipdata.c62 struct platform platforms[] = { in test() local
112 for (i = 0; i < sizeof(platforms)/sizeof(platforms[0]); i++) { in test()
114 printf("Platform: %s\n", platforms[i].comment); in test()
115 err = cs_open(platforms[i].arch, platforms[i].mode, &handle); in test()
121 if (platforms[i].opt_type) in test()
122 cs_option(handle, platforms[i].opt_type, platforms[i].opt_value); in test()
126 cs_option(handle, platforms[i].opt_skipdata, platforms[i].skipdata); in test()
128 count = cs_disasm(handle, platforms[i].code, platforms[i].size, address, 0, &insn); in test()
132 print_string_hex(platforms[i].code, platforms[i].size); in test()
147 printf("Platform: %s\n", platforms[i].comment); in test()
[all …]
Dtest_evm.c66 struct platform platforms[] = { in test() local
81 for (i = 0; i < sizeof(platforms)/sizeof(platforms[0]); i++) { in test()
82 cs_err err = cs_open(platforms[i].arch, platforms[i].mode, &handle); in test()
90 count = cs_disasm(handle, platforms[i].code, platforms[i].size, address, 0, &insn); in test()
94 printf("Platform: %s\n", platforms[i].comment); in test()
95 print_string_hex("Code:", platforms[i].code, platforms[i].size); in test()
108 printf("Platform: %s\n", platforms[i].comment); in test()
109 print_string_hex("Code:", platforms[i].code, platforms[i].size); in test()
Dtest_xcore.c80 struct platform platforms[] = { in test() local
95 for (i = 0; i < sizeof(platforms)/sizeof(platforms[0]); i++) { in test()
96 cs_err err = cs_open(platforms[i].arch, platforms[i].mode, &handle); in test()
104 count = cs_disasm(handle, platforms[i].code, platforms[i].size, address, 0, &insn); in test()
109 printf("Platform: %s\n", platforms[i].comment); in test()
110 print_string_hex("Code:", platforms[i].code, platforms[i].size); in test()
123 printf("Platform: %s\n", platforms[i].comment); in test()
124 print_string_hex("Code:", platforms[i].code, platforms[i].size); in test()
Dtest_mos65xx.c108 struct platform platforms[] = { in test() local
123 for (i = 0; i < sizeof(platforms)/sizeof(platforms[0]); i++) { in test()
124 cs_err err = cs_open(platforms[i].arch, platforms[i].mode, &handle); in test()
132 count = cs_disasm(handle, platforms[i].code, platforms[i].size, address, 0, &insn); in test()
138 printf("Platform: %s\n", platforms[i].comment); in test()
139 print_string_hex("Code:", platforms[i].code, platforms[i].size); in test()
153 printf("Platform: %s\n", platforms[i].comment); in test()
154 print_string_hex("Code:", platforms[i].code, platforms[i].size); in test()
Dtest_systemz.c85 struct platform platforms[] = { in test() local
100 for (i = 0; i < sizeof(platforms)/sizeof(platforms[0]); i++) { in test()
101 cs_err err = cs_open(platforms[i].arch, platforms[i].mode, &handle); in test()
109 count = cs_disasm(handle, platforms[i].code, platforms[i].size, address, 0, &insn); in test()
114 printf("Platform: %s\n", platforms[i].comment); in test()
115 print_string_hex("Code:", platforms[i].code, platforms[i].size); in test()
128 printf("Platform: %s\n", platforms[i].comment); in test()
129 print_string_hex("Code:", platforms[i].code, platforms[i].size); in test()
Dtest_sparc.c85 struct platform platforms[] = { in test() local
107 for (i = 0; i < sizeof(platforms)/sizeof(platforms[0]); i++) { in test()
108 cs_err err = cs_open(platforms[i].arch, platforms[i].mode, &handle); in test()
116 count = cs_disasm(handle, platforms[i].code, platforms[i].size, address, 0, &insn); in test()
121 printf("Platform: %s\n", platforms[i].comment); in test()
122 print_string_hex("Code:", platforms[i].code, platforms[i].size); in test()
135 printf("Platform: %s\n", platforms[i].comment); in test()
136 print_string_hex("Code:", platforms[i].code, platforms[i].size); in test()
Dtest_mips.c87 struct platform platforms[] = { in test() local
137 for (i = 0; i < sizeof(platforms)/sizeof(platforms[0]); i++) { in test()
138 cs_err err = cs_open(platforms[i].arch, platforms[i].mode, &handle); in test()
146 count = cs_disasm(handle, platforms[i].code, platforms[i].size, address, 0, &insn); in test()
151 printf("Platform: %s\n", platforms[i].comment); in test()
152 print_string_hex("Code:", platforms[i].code, platforms[i].size); in test()
165 printf("Platform: %s\n", platforms[i].comment); in test()
166 print_string_hex("Code:", platforms[i].code, platforms[i].size); in test()
Dtest_ppc.c119 struct platform platforms[] = { in test() local
141 for (i = 0; i < sizeof(platforms)/sizeof(platforms[0]); i++) { in test()
142 cs_err err = cs_open(platforms[i].arch, platforms[i].mode, &handle); in test()
150 count = cs_disasm(handle, platforms[i].code, platforms[i].size, address, 0, &insn); in test()
155 printf("Platform: %s\n", platforms[i].comment); in test()
156 print_string_hex("Code:", platforms[i].code, platforms[i].size); in test()
169 printf("Platform: %s\n", platforms[i].comment); in test()
170 print_string_hex("Code:", platforms[i].code, platforms[i].size); in test()
Dtest_tms320c64x.c134 struct platform platforms[] = { in test() local
149 for (i = 0; i < sizeof(platforms)/sizeof(platforms[0]); i++) { in test()
150 cs_err err = cs_open(platforms[i].arch, platforms[i].mode, &handle); in test()
158 count = cs_disasm(handle, platforms[i].code, platforms[i].size, address, 0, &insn); in test()
163 printf("Platform: %s\n", platforms[i].comment); in test()
164 print_string_hex("Code:", platforms[i].code, platforms[i].size); in test()
177 printf("Platform: %s\n", platforms[i].comment); in test()
178 print_string_hex("Code:", platforms[i].code, platforms[i].size); in test()
Dtest_basic.c102 struct platform platforms[] = { in test() local
340 for (i = 0; i < sizeof(platforms)/sizeof(platforms[0]); i++) { in test()
342 printf("Platform: %s\n", platforms[i].comment); in test()
343 err = cs_open(platforms[i].arch, platforms[i].mode, &handle); in test()
349 if (platforms[i].opt_type) in test()
350 cs_option(handle, platforms[i].opt_type, platforms[i].opt_value); in test()
352 count = cs_disasm(handle, platforms[i].code, platforms[i].size, address, 0, &insn); in test()
356 print_string_hex(platforms[i].code, platforms[i].size); in test()
371 printf("Platform: %s\n", platforms[i].comment); in test()
372 print_string_hex(platforms[i].code, platforms[i].size); in test()
Dtest_m68k.c150 struct platform platforms[] = { in test() local
165 for (i = 0; i < sizeof(platforms)/sizeof(platforms[0]); i++) { in test()
166 cs_err err = cs_open(platforms[i].arch, platforms[i].mode, &handle); in test()
174 count = cs_disasm(handle, platforms[i].code, platforms[i].size, address, 0, &insn); in test()
179 printf("Platform: %s\n", platforms[i].comment); in test()
180 print_string_hex("Code: ", platforms[i].code, platforms[i].size); in test()
195 printf("Platform: %s\n", platforms[i].comment); in test()
196 print_string_hex("Code:", platforms[i].code, platforms[i].size); in test()
Dtest_detail.c94 struct platform platforms[] = { in test() local
297 for (i = 0; i < sizeof(platforms)/sizeof(platforms[0]); i++) { in test()
299 printf("Platform: %s\n", platforms[i].comment); in test()
300 err = cs_open(platforms[i].arch, platforms[i].mode, &handle); in test()
306 if (platforms[i].opt_type) in test()
307 cs_option(handle, platforms[i].opt_type, platforms[i].opt_value); in test()
311 count = cs_disasm(handle, platforms[i].code, platforms[i].size, address, 0, &all_insn); in test()
316 print_string_hex(platforms[i].code, platforms[i].size); in test()
362 printf("Platform: %s\n", platforms[i].comment); in test()
363 print_string_hex(platforms[i].code, platforms[i].size); in test()
/external/rust/crates/grpcio-sys/grpc/third_party/toolchains/bazel_0.26.0_rbe_windows/
DBUILD68 "@bazel_tools//platforms:x86_64",
69 "@bazel_tools//platforms:windows",
73 "@bazel_tools//platforms:x86_64",
74 "@bazel_tools//platforms:windows",
104 "@bazel_tools//platforms:x86_64",
105 "@bazel_tools//platforms:windows",
109 "@bazel_tools//platforms:x86_64",
110 "@bazel_tools//platforms:windows",
140 "@bazel_tools//platforms:x86_64",
141 "@bazel_tools//platforms:windows",
[all …]
/external/tensorflow/third_party/toolchains/
DBUILD7 # Remote build platforms.
16 "@bazel_tools//platforms:x86_64",
17 "@bazel_tools//platforms:linux",
29 "@bazel_tools//platforms:x86_64",
30 "@bazel_tools//platforms:linux",
42 "@bazel_tools//platforms:x86_64",
43 "@bazel_tools//platforms:linux",
55 "@bazel_tools//platforms:x86_64",
56 "@bazel_tools//platforms:linux",
68 "@bazel_tools//platforms:x86_64",
[all …]
/external/bazelbuild-rules_android/rules/platforms/
DBUILD6 "@platforms//cpu:armv7",
7 "@platforms//os:android",
14 "@platforms//cpu:arm64",
15 "@platforms//os:android",
22 "@platforms//cpu:x86_32",
23 "@platforms//os:android",
30 "@platforms//cpu:x86_64",
31 "@platforms//os:android",
/external/grpc-grpc/tools/run_tests/
Drun_tests_matrix.py111 platforms, argument
122 for platform in platforms:
169 platforms=['linux'],
178 platforms=['linux'],
183 # supported on all platforms.
187 platforms=['linux', 'macos', 'windows'],
196 platforms=['linux', 'macos', 'windows'],
204 platforms=['linux', 'macos', 'windows'],
214 platforms=['linux', 'macos'],
223 platforms=['linux', 'macos'],
[all …]
/external/icing/icing/text_classifier/lib3/utils/hash/
Dfarmhash.h51 // May change from time to time, may differ on different platforms, may differ
56 // May change from time to time, may differ on different platforms, may differ
62 // May change from time to time, may differ on different platforms, may differ
68 // May change from time to time, may differ on different platforms, may differ
74 // May change from time to time, may differ on different platforms, may differ
80 // May change from time to time, may differ on different platforms, may differ
86 // May change from time to time, may differ on different platforms, may differ
92 // May change from time to time, may differ on different platforms, may differ
99 // May change from time to time, may differ on different platforms, may differ
158 // May change from time to time, may differ on different platforms, may differ
[all …]
/external/libtextclassifier/native/utils/hash/
Dfarmhash.h53 // May change from time to time, may differ on different platforms, may differ
58 // May change from time to time, may differ on different platforms, may differ
64 // May change from time to time, may differ on different platforms, may differ
70 // May change from time to time, may differ on different platforms, may differ
76 // May change from time to time, may differ on different platforms, may differ
82 // May change from time to time, may differ on different platforms, may differ
88 // May change from time to time, may differ on different platforms, may differ
94 // May change from time to time, may differ on different platforms, may differ
101 // May change from time to time, may differ on different platforms, may differ
160 // May change from time to time, may differ on different platforms, may differ
[all …]
/external/grpc-grpc/test/core/end2end/
Dgen_build_yaml.py27 …'fullstack includes_proxy dns_resolver name_resolution secure platforms ci_mac tracing exclude_con…
36 dns_resolver=False, platforms=['linux', 'mac', 'posix'],
39 dns_resolver=False, platforms=['linux', 'mac', 'posix'],
42 dns_resolver=False, fullstack=False, platforms=['linux', 'mac', 'posix'],
60 platforms=['linux'], exclude_iomgrs=['uv']),
334 'platforms': END2END_FIXTURES[f].platforms,
335 'ci_platforms': (END2END_FIXTURES[f].platforms
337 END2END_FIXTURES[f].platforms, 'mac')),
352 'platforms': END2END_FIXTURES[f].platforms,
353 'ci_platforms': (END2END_FIXTURES[f].platforms
[all …]
/external/OpenCL-CTS/test_conformance/api/
Dtest_platform.cpp153 cl_platform_id platforms[16]; in test_get_platform_ids() local
163 err = clGetPlatformIDs(16, platforms, &num_platforms); in test_get_platform_ids()
168 err = clGetPlatformIDs(num_platforms, platforms, NULL); in test_get_platform_ids()
173 log_error("Found 0 platforms.\n"); in test_get_platform_ids()
176 log_info("Found %d platforms.\n", num_platforms); in test_get_platform_ids()
185 log_info("Platform %d (%p):\n", p, platforms[p]); in test_get_platform_ids()
188 err = clGetPlatformInfo(platforms[p], CL_PLATFORM_PROFILE, 8192, string_returned, &size); in test_get_platform_ids()
197 err = clGetPlatformInfo(platforms[p], CL_PLATFORM_VERSION, 8192, string_returned, &size); in test_get_platform_ids()
206 err = clGetPlatformInfo(platforms[p], CL_PLATFORM_NAME, 8192, string_returned, &size); in test_get_platform_ids()
215 err = clGetPlatformInfo(platforms[p], CL_PLATFORM_VENDOR, 8192, string_returned, &size); in test_get_platform_ids()
[all …]
/external/tensorflow/tensorflow/stream_executor/
Dmulti_platform_manager.h16 // This is a registration-oriented interface for multiple platforms. It will
18 // currently support simultaneous use of multiple platforms.
81 // Manages multiple platforms that may be present on the current machine.
99 // the MultiPlatformManager owns the platforms in a singleton-like fashion.
103 // Same functions as above, but allows platforms to be returned without
119 // the MultiPlatformManager owns the platforms in a singleton-like fashion.
128 // Retrieves the platforms satisfying the given filter, i.e. returns true.
129 // Returned Platforms are always initialized.
137 // Although the MultiPlatformManager "owns" its platforms, it holds them as
139 // object's data and the underlying platforms (e.g., CUDA, OpenCL).
[all …]
/external/tensorflow/third_party/toolchains/preconfig/win/bazel_211/
DBUILD110 "@platforms//cpu:x86_64",
111 "@platforms//os:windows",
115 "@platforms//cpu:x86_64",
116 "@platforms//os:windows",
170 "@platforms//cpu:x86_64",
171 "@platforms//os:windows",
175 "@platforms//cpu:x86_64",
176 "@platforms//os:windows",
244 "@platforms//cpu:x86_64",
245 "@platforms//os:windows",
[all …]
/external/pigweed/pw_build/
Ddocs.rst545 entirely hermetic. You can target Cortex-M, by using the platforms command line
547 The platforms that are currently supported are listed below:
551 bazel build //:your_target --platforms=@pigweed//pw_build/platforms:cortex_m0
552 bazel build //:your_target --platforms=@pigweed//pw_build/platforms:cortex_m1
553 bazel build //:your_target --platforms=@pigweed//pw_build/platforms:cortex_m3
554 bazel build //:your_target --platforms=@pigweed//pw_build/platforms:cortex_m4
555 bazel build //:your_target --platforms=@pigweed//pw_build/platforms:cortex_m7
557 --platforms=@pigweed//pw_build/platforms:cortex_m4_fpu
559 --platforms=@pigweed//pw_build/platforms:cortex_m7_fpu
562 The above examples are cpu/fpu oriented platforms and can be used where
[all …]
/external/pigweed/pw_build/platforms/
DBUILD19 actual = "@bazel_embedded//platforms:cortex_m0",
24 actual = "@bazel_embedded//platforms:cortex_m1",
29 actual = "@bazel_embedded//platforms:cortex_m3",
34 actual = "@bazel_embedded//platforms:cortex_m4",
39 actual = "@bazel_embedded//platforms:cortex_m4",
44 actual = "@bazel_embedded//platforms:cortex_m7",
49 actual = "@bazel_embedded//platforms:cortex_m7_fpu",

12345678910>>...198