/third_party/vk-gl-cts/build/external/vulkancts/framework/vulkan/ |
D | vkCoreFunctionalities.inl | 16 void initApisMap (ApisMap& apis) argument 18 apis.clear(); 19 apis.insert(::std::pair<uint32_t, FunctionInfosList>(VK_API_VERSION_1_0, FunctionInfosList())); 20 apis.insert(::std::pair<uint32_t, FunctionInfosList>(VK_API_VERSION_1_1, FunctionInfosList())); 21 apis.insert(::std::pair<uint32_t, FunctionInfosList>(VK_API_VERSION_1_2, FunctionInfosList())); 23 …apis[VK_API_VERSION_1_0].push_back(FunctionInfo("vkCreateInstance", FUNCTIONORIGIN_PLATFOR… 24 …apis[VK_API_VERSION_1_0].push_back(FunctionInfo("vkDestroyInstance", FUNCTIONORIGIN_INSTANC… 25 …apis[VK_API_VERSION_1_0].push_back(FunctionInfo("vkEnumeratePhysicalDevices", FUNCTIONORIGIN_… 26 …apis[VK_API_VERSION_1_0].push_back(FunctionInfo("vkGetPhysicalDeviceFeatures", FUNCTIONORIGIN… 27 …apis[VK_API_VERSION_1_0].push_back(FunctionInfo("vkGetPhysicalDeviceFormatProperties", FUNCTION… [all …]
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/ |
D | gstglapi.c | 108 gchar *apis = (gchar *) apis_s; in gst_gl_api_from_string() local 110 if (!apis || apis[0] == '\0' || g_strcmp0 (apis_s, "any") == 0) { in gst_gl_api_from_string() 115 while (apis) { in gst_gl_api_from_string() 116 if (apis[0] == '\0') { in gst_gl_api_from_string() 118 } else if (apis[0] == ' ' || apis[0] == ',') { in gst_gl_api_from_string() 119 apis = &apis[1]; in gst_gl_api_from_string() 120 } else if (g_strstr_len (apis, 7, GST_GL_API_OPENGL3_NAME)) { in gst_gl_api_from_string() 122 apis = &apis[7]; in gst_gl_api_from_string() 123 } else if (g_strstr_len (apis, 6, GST_GL_API_OPENGL_NAME)) { in gst_gl_api_from_string() 125 apis = &apis[6]; in gst_gl_api_from_string() [all …]
|
/third_party/mesa3d/bin/ |
D | khronos-update.py | 204 if args.apis and 'khr' not in args.apis and depend_on_khr.intersection(set(args.apis)): 205 args.apis = ['khr'] + args.apis 208 if args.apis and group['api'] not in args.apis:
|
/third_party/libwebsockets/minimal-examples/crypto/ |
D | README.md | 3 minimal-crypto-jwe|Examples for lws RFC7516 JWE apis 4 minimal-crypto-jwk|Examples for lws RFC7517 JWK apis 5 minimal-crypto-jws|Examples for lws RFC7515 JWS apis 6 minimal-crypto-x509|Examples for lws X.509 apis
|
/third_party/vk-gl-cts/modules/egl/ |
D | teglSurfacelessContextTests.cpp | 90 } apis[] = in executeForConfig() local 102 for (int apiNdx = 0; apiNdx < (int)DE_LENGTH_OF_ARRAY(apis); apiNdx++) in executeForConfig() 104 if ((apiBits & apis[apiNdx].apiBit) == 0) in executeForConfig() 107 …log << TestLog::Message << "Creating " << apis[apiNdx].name << " context with config ID " << id <<… in executeForConfig() 109 EGLU_CHECK_CALL(egl, bindAPI(apis[apiNdx].api)); in executeForConfig() 111 …eglu::UniqueContext context(egl, display, egl.createContext(display, config, EGL_NO_CONTEXT, apis[… in executeForConfig()
|
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
D | DeprecatedAPIChecker.java | 275 private static APIInfo findClassInfo(Set<APIInfo> apis, String cls) { in findClassInfo() argument 276 for (APIInfo api : apis) { in findClassInfo() 285 private static APIInfo findFieldInfo(Set<APIInfo> apis, String cls, String field) { in findFieldInfo() argument 286 for (APIInfo api : apis) { in findFieldInfo() 295 private static APIInfo findConstructorInfo(Set<APIInfo> apis, String cls, List<String> params) { in findConstructorInfo() argument 296 for (APIInfo api : apis) { in findConstructorInfo() 318 …private static APIInfo findMethodInfo(Set<APIInfo> apis, String cls, String method, List<String> p… in findMethodInfo() argument 319 for (APIInfo api : apis) { in findMethodInfo() 341 private static APIInfo findEnumInfo(Set<APIInfo> apis, String ecls) { in findEnumInfo() argument 342 for (APIInfo api : apis) { in findEnumInfo() [all …]
|
/third_party/grpc/tools/buildgen/plugins/ |
D | list_api.py | 55 apis = [] 62 apis.extend(list_c_apis(sorted(set(headers)))) 63 dictionary['c_apis'] = apis
|
/third_party/skia/third_party/externals/angle2/scripts/ |
D | generate_entry_points.py | 13 from registry_xml import apis, script_relative, strip_api_prefix 1254 return api == apis.GLES and cmd_name in ALIASING_EXCEPTIONS 1258 if api == apis.CL: 1264 if api == apis.CL: 1266 if api == apis.GLES: 1272 if api == apis.EGL: 1274 elif api == apis.CL: 1281 if api == apis.CL: 1283 elif api == apis.EGL: 1488 if api == apis.EGL: [all …]
|
D | registry_xml.py | 392 class apis: class 497 def AddExtensionCommands(self, supported_extensions, apis): argument 518 if 'api' in require.attrib and require.attrib['api'] not in apis: 556 if api == apis.WGL:
|
/third_party/libwebsockets/READMEs/ |
D | README.lws_conmon.md | 1 ## `lws_conmon` apis 3 `LWS_WITH_CONMON` build option enables `lws_conmon` apis for user code... these add 7 The public apis can be found in `libwebsockets/lws-conmon.h`. 33 The lws-minimal-http-client example shows how user code can use the apis, build
|
D | README.crypto-apis.md | 18 The `JW` apis use the generic apis (`lws_genrsa_`, etc) to get the crypto tasks 19 done, so anything they can do you can also get done using the generic apis. 20 The main difference is that with the generic apis, you must instantiate the 21 correct types and use type-specfic apis. With the `JW` apis, there is only 25 Because of this, the `JW` apis are often preferred because they give you 83 Unit tests for these apis, which serve as usage examples, can be found in [./minimal-examples/api-t… 114 agility", code written to the lws generic or JOSE apis is completely unchanged 136 Unit tests for these apis, which serve as usage examples, can be found in [./minimal-examples/api-t…
|
D | README.cmake.md | 21 Lws makes use of various CMake features to figure out what apis your libraries 22 offer, eg, OpenSSL has many different apis based on version, lws knows how to 23 work around most of the changes, but to do it it must find out what apis are 36 When this happens, cmake indicates that apis that must be available are not available...
|
D | README.jwt.md | 7 along with JWK generation and handling apis. 11 Underlying JOSE primitives are exposed as apis, some JWT specific primitives 12 and finally a JWT-via http cookie level creation apis each building on top of 18 centrally for you. If your needs vary from what the higher level apis are 20 using the public lower level apis. 115 The related apis are in `./include/libwebsockets/lws-jws.h` 137 Both the validation and signing apis use the same struct to contain their
|
D | README.http_parser.md | 8 even though the header get apis are based around length. So it is disallowed to 22 use the length-based urlarg apis
|
D | README.logging.md | 3 # `lwsl_` logging apis 110 # New logging context apis 119 before, and if you do not set custom log contexts, the new log apis use the 124 |Traditional process scope logs|New log context apis| 150 |Process scope apis|`lwsl_notice("%s: %s: mylog %d\n", __func__, lws_wsi_tag(wsi), n);`| 151 |New log context apis|`lwsl_wsi_notice(wsi, "mylog %d", n);`| 153 The log context / object-aware apis do not replace the processwide logging but 154 augment it, and the new apis default to use the original processwide emit 156 log apis themselves are unchanged. 163 ## Using the new logging apis
|
D | README.lws_plugins.md | 3 Lws now offers apis to manage your own user plugins with `LWS_WITH_PLUGINS_API`. 4 Lws uses these apis internally for protocol plugins and event loop plugins 43 incompatible with the lws plugin apis version.
|
D | README.porting.md | 4 supported platforms like Windows, `lws_plat_...()` apis were added to move 8 of these `lws_plat...()` apis get built.
|
D | README.event-loops-intro.md | 47 apis from other threads, since there is no protection against reentrancy. 49 Lws apis cannot be called safely from any thread other than the event loop one, 86 until you "stop" or "break" the loop by calling apis. 164 single thread, it means the codebases cannot call each other's apis directly. 178 have this loop inside their own `...run(loop)` apis.) 240 blocking IO apis like write() or read(). Then how much concurrency is really 261 - Passing data around via POSIX apis between the user code and the networking 285 different code can call each other's apis safely without locking.
|
/third_party/musl/porting/linux/user/ldso/ |
D | README.md | 3 The dynamic linker provides the namespace mechanism which is based on configures and apis. 14 2. Use the apis of namespace in head file <dlfcn.h>, to create a namespace, to set search paths of … 18 …or test. The file <libc-test/src/functionalext/dlns/> gives usages of how apis and configures work.
|
/third_party/libwebsockets/minimal-examples/api-tests/ |
D | README.md | 9 api-test-gencrypto|LWS Generic Crypto apis 10 api-test-jose|LWS JOSE apis
|
/third_party/nghttp2/src/ |
D | shrpx_api_downstream_connection.cc | 43 const std::array<APIEndpoint, 2> &apis() { in apis() function 44 static const auto apis = new std::array<APIEndpoint, 2>{ in apis() 59 return *apis; in apis() 174 return &apis()[0]; in lookup_api() 183 return &apis()[1]; in lookup_api()
|
/third_party/openssl/util/ |
D | find-doc-nits | 253 my @apis; 265 push @apis, $fields[0]; 270 print "# Found ", scalar(@apis), " in $file\n" unless $opt_p; 271 return sort @apis;
|
/third_party/libwebsockets/lib/drivers/ |
D | README.md | 14 comes with a highly specific set of apis in esp-idf that mean your code is 15 locked in to esp-idf if you follow them. Esp-idf uses freertos apis for things 28 level are defined to use underlying OS native apis and drivers.
|
/third_party/flutter/skia/third_party/externals/angle2/scripts/ |
D | registry_xml.py | 228 def AddExtensionCommands(self, supported_extensions, apis): argument 249 if 'api' in require.attrib and require.attrib['api'] not in apis:
|
/third_party/vk-gl-cts/scripts/khr_util/ |
D | registry.py | 196 self.apis = {} 198 self.apis.setdefault(eFeature.get('api'), []).append(eFeature) 199 for apiFeatures in self.apis.values(): 205 return [eFeature for eFeature in self.apis[api]
|