Home
last modified time | relevance | path

Searched refs:dname (Results 1 – 25 of 46) sorted by relevance

12

/third_party/vk-gl-cts/external/vulkan-docs/src/appendices/
Dboilerplate.txt71 dname:VKAPI_ATTR is a macro placed before the return type in Vulkan API
79 dname:VKAPI_CALL is a macro placed after the return type in Vulkan API
86 dname:VKAPI_PTR is a macro placed between the '(' and '*' in Vulkan API
89 definition as dname:VKAPI_ATTR or dname:VKAPI_CALL, depending on the
113 If the dname:VK_NO_STDINT_H macro is defined by the application at compile
117 If dname:VK_NO_STDINT_H is not defined, the system `<stdint.h>` is used to
125 If the dname:VK_NO_STDDEF_H macro is defined by the application at compile
128 If dname:VK_NO_STDDEF_H is not defined, the system `<stddef.h>` is used to
150 dname:VK_HEADER_VERSION is the version number of the `{core_header}` header.
159 dname:VK_HEADER_VERSION_COMPLETE is the complete version number of the
[all …]
Dboilerplate.adoc72 dname:VKAPI_ATTR is a macro placed before the return type in Vulkan API
80 dname:VKAPI_CALL is a macro placed after the return type in Vulkan API
87 dname:VKAPI_PTR is a macro placed between the '(' and '*' in Vulkan API
90 definition as dname:VKAPI_ATTR or dname:VKAPI_CALL, depending on the
114 If the dname:VK_NO_STDINT_H macro is defined by the application at compile
118 If dname:VK_NO_STDINT_H is not defined, the system `<stdint.h>` is used to
126 If the dname:VK_NO_STDDEF_H macro is defined by the application at compile
129 If dname:VK_NO_STDDEF_H is not defined, the system `<stddef.h>` is used to
156 dname:VK_HEADER_VERSION is the version number of the `{core_header}` header.
165 dname:VK_HEADER_VERSION_COMPLETE is the complete version number of the
[all …]
/third_party/ltp/testcases/commands/ln/
Dln_tests.sh23 local dname="$1"
27 ROD ls "$dname" > dname.out
29 if diff lname.out dname.out; then
35 cat dname.out
/third_party/e2fsprogs/
D0038-Quiet-unused-variable-warnings.patch29 darg->dname[darg->dname_len] = 0;
34 - darg->dname, darg->ino, darg->parent_ino);
38 + "error")), darg->dname, darg->ino, darg->parent_ino);
48 - darg.dname, darg.ino, 0));
50 + darg.dname, darg.ino, 0));
52 free(darg.dname);
/third_party/skia/infra/bots/
Dtest_utils.py24 def mkdir(self, dname, mode=0o755): argument
26 dname = os.path.join(self._cwd, dname)
27 os.mkdir(dname)
28 os.chmod(dname, mode)
/third_party/musl/src/network/
Dres_mkquery.c5 int __res_mkquery(int op, const char *dname, int class, int type, in __res_mkquery() argument
12 size_t l = strnlen(dname, 255); in __res_mkquery()
15 if (l && dname[l-1]=='.') l--; in __res_mkquery()
25 memcpy((char *)q+13, dname, l); in __res_mkquery()
/third_party/pulseaudio/src/pulse/
Dclient-conf-x11.c39 const char *dname; in pa_client_conf_from_x11() local
54 if (!(dname = getenv("DISPLAY"))) in pa_client_conf_from_x11()
57 if (*dname == 0) in pa_client_conf_from_x11()
60 if (!(xcb = xcb_connect(dname, NULL))) { in pa_client_conf_from_x11()
/third_party/musl/libc-test/src/functionalext/supplement/network/
Dres_query.c21 const char dname[] = "www.baidu.com"; variable
33 int result = res_query(dname, class, type, buf, sizeof(buf)); in res_query_0100()
48 int result = res_query(dname, class, T_ANY + 1, buf, sizeof(buf)); in res_query_0200()
Dres_mkquery.c25 const char dname[] = "www.example.com"; variable
39 int result = res_mkquery(op, dname, class, type, data, 0, NULL, buf, sizeof(buf)); in res_mkquery_0100()
62 int result = res_mkquery(op, dname, class, T_ANY + 1, data, 0, NULL, NULL, 0); in res_mkquery_0200()
/third_party/pulseaudio/src/modules/
Dmodule-zeroconf-discover.c146 char *device = NULL, *dname, *module_name, *args; in resolver_cb() local
204 dname = pa_sprintf_malloc("tunnel.%s.%s", host_name, device); in resolver_cb()
206 dname = pa_sprintf_malloc("tunnel.%s", host_name); in resolver_cb()
208 if (!pa_namereg_is_valid_name(dname)) { in resolver_cb()
209 pa_log("Cannot construct valid device name from credentials of service '%s'.", dname); in resolver_cb()
211 pa_xfree(dname); in resolver_cb()
238 t, dname, in resolver_cb()
250 pa_xfree(dname); in resolver_cb()
/third_party/pulseaudio/src/modules/raop/
Dmodule-raop-discover.c167 char *device = NULL, *nicename, *dname, *vname, *args; in resolver_cb() local
268 dname = pa_sprintf_malloc("raop_output.%s.%s", host_name, device); in resolver_cb()
270 dname = pa_sprintf_malloc("raop_output.%s", host_name); in resolver_cb()
272 if (!(vname = pa_namereg_make_valid_name(dname))) { in resolver_cb()
273 pa_log("Cannot construct valid device name from '%s'.", dname); in resolver_cb()
275 pa_xfree(dname); in resolver_cb()
287 pa_xfree(dname); in resolver_cb()
/third_party/musl/libc-test/src/functionalext/supplement/manual/network/
Dres_send.c24 const char dname[] = "www.example.com"; variable
38 int ret = res_mkquery(op, dname, class, type, data, 0, NULL, buf, sizeof(buf)); in res_send_0100()
/third_party/pulseaudio/src/utils/
Dpax11publish.c42 …const char *dname = NULL, *sink = NULL, *source = NULL, *server = NULL, *cookie_file = PA_NATIVE_C… in main() local
55 dname = optarg; in main()
96 if (!(xcb = xcb_connect(dname, &screen))) { in main()
/third_party/jerryscript/tools/
Dcheck-license.py74 for dname in INCLUDE_DIRS:
75 for root, _, files in os.walk(dname):
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/
Dextensions.adoc150 dname:VK_API_VERSION_VARIANT extracts the API variant number from a packed
158 dname:VK_API_VERSION_MAJOR extracts the API major version number from a
167 dname:VK_VERSION_MAJOR extracts the API major version number from a packed
176 dname:VK_API_VERSION_MINOR extracts the API minor version number from a
185 dname:VK_VERSION_MINOR extracts the API minor version number from a packed
194 dname:VK_API_VERSION_PATCH extracts the API patch version number from a
203 dname:VK_VERSION_PATCH extracts the API patch version number from a packed
212 dname:VK_MAKE_API_VERSION constructs an API version number.
225 dname:VK_MAKE_VERSION constructs an API version number.
237 dname:VK_API_VERSION_1_0 returns the API version number for Vulkan 1.0.0.
[all …]
Dextensions.txt128 dname:VK_API_VERSION_VARIANT extracts the API variant number from a packed
136 dname:VK_API_VERSION_MAJOR extracts the API major version number from a
144 dname:VK_VERSION_MAJOR extracts the API major version number from a packed
152 dname:VK_API_VERSION_MINOR extracts the API minor version number from a
160 dname:VK_VERSION_MINOR extracts the API minor version number from a packed
168 dname:VK_API_VERSION_PATCH extracts the API patch version number from a
176 dname:VK_VERSION_PATCH extracts the API patch version number from a packed
184 dname:VK_MAKE_API_VERSION constructs an API version number.
196 dname:VK_MAKE_VERSION constructs an API version number.
207 dname:VK_API_VERSION_1_0 returns the API version number for Vulkan 1.0.0.
[all …]
Dvideocoding.adoc1891 dname:VK_NULL_HANDLE, then it will be used as a template for constructing
1932 dname:VK_NULL_HANDLE, then each code:StdVideoH264SequenceParameterSet
1944 dname:VK_NULL_HANDLE, then each code:StdVideoH264PictureParameterSet
1965 dname:VK_NULL_HANDLE, then each code:StdVideoH265VideoParameterSet
1977 dname:VK_NULL_HANDLE, then each code:StdVideoH265SequenceParameterSet
1990 dname:VK_NULL_HANDLE, then each code:StdVideoH265PictureParameterSet
2011 dname:VK_NULL_HANDLE, then each code:StdVideoH264SequenceParameterSet
2023 dname:VK_NULL_HANDLE, then each code:StdVideoH264PictureParameterSet
2044 dname:VK_NULL_HANDLE, then each code:StdVideoH265VideoParameterSet
2056 dname:VK_NULL_HANDLE, then each code:StdVideoH265SequenceParameterSet
[all …]
/third_party/skia/third_party/externals/icu/source/common/
Dserv.cpp770 UnicodeString dname; in getDisplayNames() local
771 f->getDisplayName(*id, locale, dname); in getDisplayNames()
772 if (dname.isBogus()) { in getDisplayNames()
775 dnCache->cache.put(dname, (void*)id, status); // share pointer with visibleIDMap in getDisplayNames()
Dservls.cpp34 ICULocaleService::ICULocaleService(const UnicodeString& dname) in ICULocaleService() argument
35 : ICUService(dname) in ICULocaleService()
/third_party/node/deps/icu-small/source/common/
Dserv.cpp754 UnicodeString dname; in getDisplayNames() local
755 f->getDisplayName(*id, locale, dname); in getDisplayNames()
756 if (dname.isBogus()) { in getDisplayNames()
759 dnCache->cache.put(dname, (void*)id, status); // share pointer with visibleIDMap in getDisplayNames()
Dservls.cpp34 ICULocaleService::ICULocaleService(const UnicodeString& dname) in ICULocaleService() argument
35 : ICUService(dname) in ICULocaleService()
/third_party/icu/icu4c/source/common/
Dserv.cpp754 UnicodeString dname; in getDisplayNames() local
755 f->getDisplayName(*id, locale, dname); in getDisplayNames()
756 if (dname.isBogus()) { in getDisplayNames()
759 dnCache->cache.put(dname, (void*)id, status); // share pointer with visibleIDMap in getDisplayNames()
Dservls.cpp34 ICULocaleService::ICULocaleService(const UnicodeString& dname) in ICULocaleService() argument
35 : ICUService(dname) in ICULocaleService()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DICUServiceThreadTest.java286 String dname = (String)e.getKey(); in iterate() local
296 " dname: " + dname + in iterate()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
DICUServiceThreadTest.java289 String dname = (String)e.getKey(); in iterate() local
299 " dname: " + dname + in iterate()

12