HomeSort by: relevance | last modified time | path
    Searched defs:hint (Results 1 - 15 of 15) sorted by relevancy

  /src/games/adventure/
subr.c 508 int hint; local in function:checkhints
509 for (hint = 4; hint <= hintmax; hint++) {
510 if (hinted[hint])
512 if (!bitset(loc, hint))
513 hintlc[hint] = -1;
514 hintlc[hint]++;
515 if (hintlc[hint] < hints[hint][1]
    [all...]
  /src/lib/libc/citrus/
citrus_prop.c 358 const _citrus_prop_hint_t *hint; local in function:_citrus_prop_parse_element
367 for (hint = hints; hint->name != NULL; ++hint) {
368 if (_citrus_bcs_strcasecmp(name, hint->name) == 0)
379 _citrus_prop_object_init(&ostart, hint->type);
380 _citrus_prop_object_init(&oend, hint->type);
381 errnum = (*readers[hint->type])(ms, &ostart);
386 switch (hint->type) {
393 errnum = (*readers[hint->type])(ms, &oend)
    [all...]
  /src/tests/lib/libc/sys/
t_mmap.c 625 void *hint = (void *)hintaddr; local in function:test_mmap_hint
628 map1 = mmap(hint, page, PROT_READ|PROT_WRITE, MAP_ANON, -1, 0);
630 atf_tc_fail_nonfatal("mmap1 hint=%p: errno=%d", hint, errno);
635 atf_tc_fail_nonfatal("mmap2 hint=%p map1=%p failed: errno=%d",
636 hint, map1, errno);
639 map3 = mmap(hint, page, PROT_READ|PROT_WRITE, MAP_ANON, -1, 0);
641 atf_tc_fail_nonfatal("mmap3 hint=%p map1=%p failed: errno=%d",
642 hint, map1, errno);
647 ATF_CHECK_MSG(munmap(map3, page) == 0, "munmap3 %p hint=%p"
    [all...]
  /src/sys/external/bsd/ipf/netinet/
ip_dstlist.c 353 void *hint; local in function:ipf_dstlist_iter_next
368 hint = next->ipld_next;
373 hint = NULL;
402 hint = nextnode->ipfd_next;
407 hint = NULL;
442 if (hint == NULL)
  /src/sys/uvm/
uvm_map.h 166 * by address. A single hint is provided to start
224 struct vm_map_entry * hint; /* hint for quick lookups */ member in struct:vm_map
225 struct vm_map_entry * first_free; /* First free space hint */
uvm_map.c 233 KASSERT((entry) != (map)->hint); \
242 * SAVE_HINT: saves the specified entry as the hint for future lookups.
247 if ((map)->hint == (check)) \
248 (map)->hint = (value); \
535 struct vm_map_entry *hint = map->hint; local in function:_uvm_map_sanity
546 if (hint == e) {
560 printf("stale hint\n");
1048 * => assume sys_mmap provides enough of a "hint" to have us skip
1052 * [1] <NULL,uoffset> == uoffset is a hint for PMAP_PREFE
1793 vaddr_t hint = atop(*start); local in function:uvm_map_space_avail
    [all...]
  /src/sys/arch/sh3/sh3/
pmap.c 94 int hint; /* hint for next allocation */ member in struct:__anonfe2adc810108
1074 i = __pmap_asid.hint >> 5;
1082 __pmap_asid.hint = (k << 5) + j;
1083 return __pmap_asid.hint;
1093 __pmap_asid.hint = asid;
1097 return __pmap_asid.hint;
  /src/usr.sbin/npf/npfctl/
npf_data.c 144 static const struct addrinfo hint = { local in function:npfctl_parse_fam_addr
151 ret = getaddrinfo(name, NULL, &hint, &ai);
  /src/dist/pf/sbin/pfctl/
pfctl.c 193 const struct pf_hint *hint; member in struct:__anon855712620208
1691 const struct pf_hint *hint; local in function:pfctl_set_optimization
1701 hint = pf_hints[i].hint;
1702 if (hint == NULL) {
1707 for (i = 0; hint[i].name; i++)
1708 if ((r = pfctl_set_timeout(pf, hint[i].name,
1709 hint[i].timeout, 1)))
  /src/sys/opencrypto/
crypto.c 505 static int crypto_invoke(struct cryptop *crp, int hint);
506 static int crypto_kinvoke(struct cryptkop *krp, int hint);
1440 crypto_kinvoke(struct cryptkop *krp, int hint)
1482 error = (*process)(arg, krp, hint);
1522 crypto_invoke(struct cryptop *crp, int hint)
1551 error = (*process)(arg, crp, hint);
1805 int result, hint, s; local in function:cryptointr
1818 hint = 0;
1848 hint = CRYPTO_HINT_MORE;
1859 * batch crp can be processed much later, so clear hint
    [all...]
  /src/sys/dev/marvell/
mvxpsec.c 1868 static int hint = 0; local in function:mvxpsec_newsession
1892 for (i = hint; i < MVXPSEC_MAX_SESSIONS; i++) {
1896 hint = session + 1;
1900 for (i = 0; i < hint; i++) {
1904 hint = session + 1;
1913 hint = 0;
1917 if (hint >= MVXPSEC_MAX_SESSIONS)
1918 hint = 0;
2009 hint = session;
2065 mvxpsec_dispatch(void *arg, struct cryptop *crp, int hint)
    [all...]
  /src/usr.sbin/sysinst/
label.c 2242 *label_msg, *prompt, *head, *hint, *tail; local in function:getpartsize
2278 hint = NULL;
2282 hint = str_arg_subst(msg_string(MSG_label_size_part_hint),
2287 if (hint != NULL)
2288 asprintf(&label_msg, "%s\n%s\n\n%s", head, hint, tail);
2291 free(head); free(hint); free(tail);
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/
intel_lrc.c 405 * Check if the current priority hint merits a preemption attempt.
412 * However, the priority hint is a mere hint that we may need to
413 * preempt. If that hint is stale or we may be trying to preempt
1739 int hint; local in function:need_timeslice
1747 hint = max(rq_prio(list_next_entry(rq, sched.link)),
1750 return hint >= effective_prio(rq);
1888 "preempting last=%llx:%lld, prio=%d, hint=%d\n",
1915 "expired last=%llx:%lld, prio=%d, hint=%d\n",
2148 * We choose the priority hint such that if we add a request of greate
    [all...]
  /src/sys/external/bsd/drm/dist/shared-core/
drm.h 839 unsigned int hint; member in struct:drm_bo_info_req
851 unsigned int hint; member in struct:drm_bo_create_req
  /src/sys/arch/alpha/include/
alpha_instruction.h 122 * used as branch target hint. The destination of the
132 signed int hint : 14; member in struct:__anon8bb70b0d010a::__anon8bb70b0d0508

Completed in 28 milliseconds