Home
last modified time | relevance | path

Searched refs:platforms (Results 1 - 25 of 74) sorted by relevance

123

/third_party/node/deps/openssl/openssl/util/
H A Dmkdef.pl113 platforms => { UNIX => 1 } },
119 platforms => { UNIX => 1 } },
122 platforms => { VMS => 1 } },
126 platforms => { WIN32 => 1,
137 platforms => { TANDEM => 1 } },
169 my %platforms = ( $item->platforms() );
171 # True if no platforms are defined
172 return 1 if scalar keys %platforms == 0;
177 for (keys %platforms) {
[all...]
/third_party/openssl/util/
H A Dmkdef.pl113 platforms => { UNIX => 1 } },
119 platforms => { UNIX => 1 } },
122 platforms => { VMS => 1 } },
126 platforms => { WIN32 => 1,
137 platforms => { TANDEM => 1 } },
169 my %platforms = ( $item->platforms() );
171 # True if no platforms are defined
172 return 1 if scalar keys %platforms == 0;
177 for (keys %platforms) {
[all...]
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/
H A DOrdinals.pm48 on a subset of the supported platforms, or if they are specific to certain
53 platforms that maintain a transfer vector indexed by position rather than
55 aliases for others for certain platforms, or that have different forms
56 on different platforms.
303 # - For platforms, both MUST hold the same ones, but with opposite values
305 # - They MUST NOT have identical name, type, numeral, version, platforms, and features
348 # Check for in addition identical name, type, and platforms
353 && $items[0]->platforms() eq $items[1]->platforms();
355 # Check that all platforms exis
[all...]
/third_party/openssl/util/perl/OpenSSL/
H A DOrdinals.pm48 on a subset of the supported platforms, or if they are specific to certain
53 platforms that maintain a transfer vector indexed by position rather than
55 aliases for others for certain platforms, or that have different forms
56 on different platforms.
303 # - For platforms, both MUST hold the same ones, but with opposite values
305 # - They MUST NOT have identical name, type, numeral, version, platforms, and features
348 # Check for in addition identical name, type, and platforms
353 && $items[0]->platforms() eq $items[1]->platforms();
355 # Check that all platforms exis
[all...]
/third_party/icu/tools/colprobe/
H A DcolprobeNew.cpp290 } platforms[] = { variable
312 logger->log("Known platforms:\n"); in listKnownPlatforms()
313 for(i = 0; i < sizeof(platforms)/sizeof(platforms[0]); i++) { in listKnownPlatforms()
314 logger->log("\t%s\n", platforms[i]); in listKnownPlatforms()
323 for(i = 0; i < sizeof(platforms)/sizeof(platforms[0]); i++) { in addPlatform()
324 if(strcmp(platform, platforms[i].name) == 0) { in addPlatform()
387 } else { // there is a list of platforms in processArgs()
392 for(i = 0; i < (int32_t)(sizeof(platforms)/sizeo in processArgs()
[all...]
H A Dcolprobe.cpp157 } platforms[] = { variable
180 u_fprintf(err, "Known platforms:\n"); in listKnownPlatforms()
181 for(i = 0; i < sizeof(platforms)/sizeof(platforms[0]); i++) { in listKnownPlatforms()
182 u_fprintf(err, "\t%s\n", platforms[i]); in listKnownPlatforms()
191 for(i = 0; i < sizeof(platforms)/sizeof(platforms[0]); i++) { in addPlatform()
192 if(strcmp(platform, platforms[i].name) == 0) { in addPlatform()
268 } else { // there is a list of platforms in processArgs()
1502 strcat(filename, platforms[gPlatformIndexe in setOutputFile()
[all...]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/
H A Dtags.py106 interpreters, abis, platforms = tag.split("-")
109 for platform_ in platforms.split("."):
175 platforms: Optional[Iterable[str]] = None,
212 platforms = list(platforms or platform_tags())
214 for platform_ in platforms:
217 yield from (Tag(interpreter, "abi3", platform_) for platform_ in platforms)
218 yield from (Tag(interpreter, "none", platform_) for platform_ in platforms)
222 for platform_ in platforms:
273 platforms
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DCLPlatform.cpp66 PlatformPtrs &platforms = GetPointers(); in Initialize() local
67 ASSERT(_cl_platform_id::sDispatch == nullptr && platforms.empty()); in Initialize()
68 if (_cl_platform_id::sDispatch != nullptr || !platforms.empty()) in Initialize()
75 platforms.reserve(createFuncs.size()); in Initialize()
78 platforms.emplace_back(new Platform(createFuncs.front())); in Initialize()
80 platforms.back()->release(); in Initialize()
81 if (!platforms.back()->mInfo.isValid() || platforms.back()->mDevices.empty()) in Initialize()
83 platforms.pop_back(); in Initialize()
90 cl_platform_id *platforms, in GetPlatformIDs()
89 GetPlatformIDs(cl_uint numEntries, cl_platform_id *platforms, cl_uint *numPlatforms) GetPlatformIDs() argument
[all...]
H A DCLPlatform.h33 cl_platform_id *platforms,
/third_party/node/tools/gyp/pylib/gyp/
H A DMSVSProject.py54 def __init__(self, project_path, version, name, guid=None, platforms=None):
62 platforms: Array of string, the supported platforms. If null, ['Win32']
69 # Default to Win32 for platforms.
70 if not platforms:
71 platforms = ["Win32"]
75 for platform in platforms:
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A DMSVSProject.py54 def __init__(self, project_path, version, name, guid=None, platforms=None):
62 platforms: Array of string, the supported platforms. If null, ['Win32']
69 # Default to Win32 for platforms.
70 if not platforms:
71 platforms = ["Win32"]
75 for platform in platforms:
/third_party/python/Lib/distutils/tests/
H A Dtest_dist.py192 'platforms': 'one,two'}
197 # finalize_option splits platforms and keywords
198 self.assertEqual(dist.metadata.platforms, ['one', 'two'])
202 'platforms': 'foo bar'}
205 self.assertEqual(dist.metadata.platforms, ['foo bar'])
401 'platforms': ['GNU/Linux', 'Some Evil Platform']}
408 'platforms': ('GNU/Linux', 'Some Evil Platform')}
414 self.assertIsInstance(d.metadata.platforms, list)
415 self.assertEqual(d.metadata.platforms, list(attrs['platforms']))
[all...]
/third_party/node/tools/gyp/pylib/gyp/generator/
H A Dmsvs.py1047 platforms = _GetUniquePlatforms(spec)
1049 project.path, version, spec["target_name"], project.guid, platforms
1098 """Returns the list of unique platforms for this spec, e.g ['win32', ...].
1105 # Gather list of unique platforms.
1106 platforms = OrderedSet()
1108 platforms.add(_ConfigPlatform(spec["configurations"][configuration]))
1109 platforms = list(platforms)
1110 return platforms
2187 platforms,
[all...]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/
H A Dmsvs.py1045 platforms = _GetUniquePlatforms(spec)
1047 project.path, version, spec["target_name"], project.guid, platforms
1096 """Returns the list of unique platforms for this spec, e.g ['win32', ...].
1103 # Gather list of unique platforms.
1104 platforms = OrderedSet()
1106 platforms.add(_ConfigPlatform(spec["configurations"][configuration]))
1107 platforms = list(platforms)
1108 return platforms
2179 platforms,
[all...]
/third_party/libunwind/libunwind/doc/
H A Dlibunwind-setjmp.tex47 correct unwind information. On newer platforms, this is rarely an
48 issue. On older platforms, care needs to be taken to
51 (on those platforms, there is usually a compiler-switch, such as
/third_party/qrcodegen/python/
H A Dsetup.py31 platforms = "OS Independent", variable
/third_party/skia/gn/
H A Dgn_to_bp.py557 platforms = { 'IOS', 'MAC', 'WIN', 'ANDROID', 'UNIX' } variable
561 p = sorted(platforms.difference({ desired }))
/third_party/ffmpeg/libavutil/
H A Dhwcontext_opencl.c299 cl_platform_id **platforms, in opencl_enumerate_platforms()
307 "OpenCL platforms: %d.\n", cle); in opencl_enumerate_platforms()
310 av_log(hwdev, AV_LOG_DEBUG, "%u OpenCL platforms found.\n", in opencl_enumerate_platforms()
313 *platforms = av_malloc_array(*nb_platforms, sizeof(**platforms)); in opencl_enumerate_platforms()
314 if (!*platforms) in opencl_enumerate_platforms()
317 cle = clGetPlatformIDs(*nb_platforms, *platforms, NULL); in opencl_enumerate_platforms()
320 "platforms: %d.\n", cle); in opencl_enumerate_platforms()
321 av_freep(platforms); in opencl_enumerate_platforms()
475 cl_platform_id **platforms,
297 opencl_enumerate_platforms(AVHWDeviceContext *hwdev, cl_uint *nb_platforms, cl_platform_id **platforms, void *context) opencl_enumerate_platforms() argument
498 cl_platform_id *platforms = NULL; opencl_device_create_internal() local
[all...]
/third_party/glfw/tests/
H A Dglfwinfo.c332 const int platforms[] = in print_platform() local
342 printf("GLFW supported platforms:\n"); in print_platform()
344 for (size_t i = 0; i < sizeof(platforms) / sizeof(platforms[0]); i++) in print_platform()
346 if (glfwPlatformSupported(platforms[i])) in print_platform()
347 printf(" %s\n", get_platform_name(platforms[i])); in print_platform()
/third_party/node/lib/internal/
H A Dinspector_async_hook.js56 // ids on 32bit platforms.
59 `on ${config.bits}bit platforms. The feature is disabled.`,
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
H A DDrawBaseVertexBaseInstanceTest.cpp691 const angle::PlatformParameters platforms[] = { member
703 testing::ValuesIn(::angle::FilterTestParams(platforms, ArraySize(platforms))),
/third_party/libsnd/Scripts/
H A Dandroid-configure.sh65 export SYSROOT=${ANDROID_NDK}/platforms/android-${ANDROID_API_VER}/arch-arm
/third_party/python/Doc/tools/extensions/
H A Dpyspecific.py142 # POSIX platforms with pthreads
165 Arguments is a comma-separated string of platforms. A platform may
175 platforms = {}
184 platforms[platform] = version
186 unknown = set(platforms).difference(self.known_platforms)
194 "known platforms."
197 return platforms
/third_party/python/Lib/distutils/
H A Ddist.py116 ('platforms', None,
117 "print the list of platforms"),
371 # All platforms support local setup.cfg
613 for attr in ('keywords', 'platforms'):
700 if opt in ['keywords', 'platforms']:
1031 "keywords", "platforms", "fullname", "contact",
1052 self.platforms = None
1099 self.platforms = _read_list('platform')
1206 return self.platforms or ["UNKNOWN"]
1209 self.platforms
[all...]
/third_party/rust/crates/rustix/src/backend/linux_raw/param/
H A Dmustang_auxv.rs68 /// `AT_SYSINFO_EHDR` isn't present on all platforms in all configurations,

Completed in 23 milliseconds

123