Searched refs:hints (Results 1 - 25 of 26) sorted by relevance

12

/barrelfish-2018-10-04/kernel/include/arch/x86_32/
H A Dx86.h65 static inline void monitor(lvaddr_t base, uint32_t extensions, uint32_t hints) argument
72 "d" (hints)
76 static inline void mwait(uint32_t hints, uint32_t extensions) argument
81 "a" (hints),
/barrelfish-2018-10-04/kernel/include/arch/x86_64/
H A Dx86.h107 static inline void monitor(lvaddr_t base, uint32_t extensions, uint32_t hints) argument
114 "d" (hints)
118 static inline void mwait(uint32_t hints, uint32_t extensions) argument
123 "a" (hints),
/barrelfish-2018-10-04/lib/libc/net/
H A Drcmdsh.c63 struct addrinfo hints, *res; local
83 memset(&hints, 0, sizeof(hints));
84 hints.ai_flags = AI_CANONNAME;
85 hints.ai_family = PF_UNSPEC;
86 hints.ai_socktype = SOCK_STREAM;
89 error = getaddrinfo(*ahost, num, &hints, &res);
H A Drcmd.c86 struct addrinfo hints, *res, *ai; local
117 memset(&hints, 0, sizeof(hints));
118 hints.ai_flags = AI_CANONNAME;
119 hints.ai_family = af;
120 hints.ai_socktype = SOCK_STREAM;
121 hints.ai_protocol = 0;
123 error = getaddrinfo(*ahost, num, &hints, &res);
376 struct addrinfo hints, *res, *r; local
379 memset(&hints,
688 struct addrinfo hints, *res, *r; local
[all...]
H A Dgetaddrinfo.c392 const struct addrinfo *hints, struct addrinfo **res)
428 if (hints) {
429 /* error check for hints */
430 if (hints->ai_addrlen || hints->ai_canonname ||
431 hints->ai_addr || hints->ai_next)
433 if (hints->ai_flags & ~AI_MASK)
435 switch (hints->ai_family) {
446 memcpy(pai, hints, sizeo
391 getaddrinfo(const char *hostname, const char *servname, const struct addrinfo *hints, struct addrinfo **res) argument
1744 struct addrinfo *hints; local
2402 struct addrinfo hints, *res0, *res; local
2532 struct addrinfo hints, *res, *res0; local
[all...]
/barrelfish-2018-10-04/kernel/arch/x86_32/
H A Dexec.c186 * \param hints Processor-specific hints (zero for defaults)
191 uint32_t hints)
196 assert(hints == 0);
199 monitor(base, extensions, hints);
203 mwait(hints, extensions);
190 monitor_mwait(lvaddr_t base, uint64_t lastval, uint32_t extensions, uint32_t hints) argument
/barrelfish-2018-10-04/include/lwip/lwip/
H A Dnetdb.h102 const struct addrinfo *hints, struct addrinfo **res);
109 #define getaddrinfo(nodname, servname, hints, res) \
110 lwip_getaddrinfo(nodname, servname, hints, res)
/barrelfish-2018-10-04/include/lwip2/lwip/
H A Dnetdb.h128 const struct addrinfo *hints,
140 #define getaddrinfo(nodname, servname, hints, res) \
141 lwip_getaddrinfo(nodname, servname, hints, res)
/barrelfish-2018-10-04/lib/lwip2/src/api/
H A Dnetdb.c262 * @param hints structure containing input values that set socktype and protocol
270 const struct addrinfo *hints, struct addrinfo **res)
289 if (hints != NULL) {
290 ai_family = hints->ai_family;
316 if ((hints != NULL) && (hints->ai_flags & AI_NUMERICHOST)) {
344 if ((hints != NULL) && (hints->ai_flags & AI_PASSIVE)) {
394 if (hints != NULL) {
395 /* copy socktype & protocol from hints i
269 lwip_getaddrinfo(const char *nodename, const char *servname, const struct addrinfo *hints, struct addrinfo **res) argument
[all...]
/barrelfish-2018-10-04/kernel/include/arch/k1om/
H A Dx86.h107 static inline void monitor(lvaddr_t base, uint32_t extensions, uint32_t hints) argument
115 "d" (hints)
119 static inline void mwait(uint32_t hints, uint32_t extensions) argument
125 "a" (hints),
/barrelfish-2018-10-04/kernel/arch/x86_64/
H A Dexec.c242 * \param hints Processor-specific hints (zero for defaults)
247 uint32_t hints)
252 assert(hints == 0);
255 monitor(base, extensions, hints);
259 mwait(hints, extensions);
246 monitor_mwait(lvaddr_t base, uint64_t lastval, uint32_t extensions, uint32_t hints) argument
/barrelfish-2018-10-04/lib/libc/tests/resolv/
H A Dresolv_test.c97 struct addrinfo hints, *res; local
101 memset(&hints, 0, sizeof(hints));
102 hints.ai_family = AF_UNSPEC;
103 hints.ai_flags = AI_PASSIVE;
104 hints.ai_socktype = SOCK_STREAM;
105 error = getaddrinfo(host, portstr, &hints, &res);
181 struct addrinfo hints, *res; local
/barrelfish-2018-10-04/lib/lwip/src/api/
H A Dnetdb.c283 * @param hints structure containing input values that set socktype and protocol
289 const struct addrinfo *hints, struct addrinfo **res)
348 if (hints != NULL) {
349 /* copy socktype & protocol from hints if specified */
350 ai->ai_socktype = hints->ai_socktype;
351 ai->ai_protocol = hints->ai_protocol;
288 lwip_getaddrinfo(const char *nodename, const char *servname, const struct addrinfo *hints, struct addrinfo **res) argument
/barrelfish-2018-10-04/lib/libc/tests/nss/
H A Dgetaddrinfo_test.c54 static struct addrinfo hints; variable in typeref:struct:addrinfo
390 rv = getaddrinfo(line, NULL, &hints, &result);
418 memset(&hints, 0, sizeof(struct addrinfo));
419 hints.ai_family = ai_family;
420 hints.ai_flags = AI_CANONNAME;
H A Dgethostby_test.c764 struct addrinfo *ai, hints; local
768 memset(&hints, 0, sizeof(struct addrinfo));
769 hints.ai_family = af_type;
770 hints.ai_flags = AI_CANONNAME;
777 rv = getaddrinfo(he->h_name, NULL, &hints, &ai);
783 rv = getaddrinfo(he->h_name, NULL, &hints, &ai);
/barrelfish-2018-10-04/lib/libc/rpc/
H A Dclnt_bcast.c132 struct addrinfo hints, *res; local
137 memset(&hints, 0, sizeof hints);
139 hints.ai_family = af;
140 hints.ai_protocol = proto;
141 hints.ai_socktype = socktype;
143 if (getaddrinfo(NULL, "sunrpc", &hints, &res) != 0) {
H A Drpcb_clnt.c283 struct addrinfo hints, *res, *tres; local
330 memset(&hints, 0, sizeof hints);
331 hints.ai_family = si.si_af;
332 hints.ai_socktype = si.si_socktype;
333 hints.ai_protocol = si.si_proto;
361 if (getaddrinfo(host, "sunrpc", &hints, &res) != 0) {
/barrelfish-2018-10-04/lib/libc/resolv/
H A Dres_init.c399 struct addrinfo hints, *ai; local
409 memset(&hints, 0, sizeof(hints));
410 hints.ai_family = PF_UNSPEC;
411 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
412 hints.ai_flags = AI_NUMERICHOST;
414 if (getaddrinfo(cp, sbuf, &hints, &ai) == 0) {
/barrelfish-2018-10-04/kernel/include/arch/x86/
H A Dx86.h201 uint32_t hints);
/barrelfish-2018-10-04/lib/libc/gen/
H A Dnlist.c58 #include <elf-hints.h>
/barrelfish-2018-10-04/lib/posixcompat/
H A Dsockets.c896 const struct addrinfo *restrict hints,
900 return lwip_getaddrinfo(nodename, servname, hints, res);
894 getaddrinfo(const char *restrict nodename, const char *restrict servname, const struct addrinfo *restrict hints, struct addrinfo **restrict res) argument
/barrelfish-2018-10-04/lib/arranet/
H A Darranet.c450 const struct addrinfo *hints, struct addrinfo **res)
455 assert(hints != NULL);
464 if(hints->ai_socktype != 0) {
465 r->ai_socktype = hints->ai_socktype;
469 r->ai_protocol = hints->ai_protocol;
449 lwip_getaddrinfo(const char *nodename, const char *servname, const struct addrinfo *hints, struct addrinfo **res) argument
/barrelfish-2018-10-04/usr/eclipseclp/documents/libman/
H A Dextchr.tex692 This section gives some programming hints. For maximum efficiency of
/barrelfish-2018-10-04/usr/eclipseclp/documents/userman/
H A Dumscompiler.tex1104 Here are some more hints for efficient coding with {\eclipse}:
/barrelfish-2018-10-04/usr/eclipseclp/documents/applications/
H A Dtutorial.tex104 The ECLiPSe documentation contains most of the information provided in this tutorial, but presents it in a very different way. Invariably, it describes all features of the system, many of which are only required for quite specific (if important) tasks like developing new constraint engines inside the system. It can be difficult to find which parts of the documentation contains important hints to solve a particular problem. On the other hand, it will be useful to look up each feature in the user manual and/or the reference manual as they occur in the tutorial.
1880 We can use the same profile to find program parts which are executed very often and this can provide hints for optimization. Normally it is better not just to concentrate on those parts that are called very often, but on those which are calling these predicates.

Completed in 437 milliseconds

12