| /dflybsd-src/stand/boot/dloader/ |
| H A D | dloader.menu | 43 menuadd lunsetif acpi_load hint.acpi.0.disabled 44 menuadd lunsetif ahci_load hint.ahci.disabled 45 menuadd lunsetif ehci_load hint.ehci.0.disabled 46 menuadd lunsetif xhci_load hint.xhci.0.disabled 54 menuadd set hint.acpi.0.disabled=1 56 menuadd set hint.ehci.0.disabled=1 57 menuadd set hint.xhci.0.disabled=1 64 menuadd lunsetif acpi_load hint.acpi.0.disabled 65 menuadd lunsetif ahci_load hint.ahci.disabled 66 menuadd lunsetif ehci_load hint.ehci.0.disabled [all …]
|
| /dflybsd-src/usr.bin/sort/ |
| H A D | coll.c | 829 if (kv1->hint->status == HS_UNINITIALIZED) { in numcoll_impl() 833 kv1->hint->v.nh.n1 = wcstoull(smain1, NULL, 10); in numcoll_impl() 835 kv1->hint->v.nh.empty=true; in numcoll_impl() 836 kv1->hint->v.nh.si = SI1; in numcoll_impl() 837 kv1->hint->status = (kv1->hint->v.nh.n1 != ULLONG_MAX) ? in numcoll_impl() 839 kv1->hint->v.nh.neg = (sign1 < 0) ? true : false; in numcoll_impl() 842 if (kv2->hint->status == HS_UNINITIALIZED) { in numcoll_impl() 846 kv2->hint->v.nh.n1 = wcstoull(smain2, NULL, 10); in numcoll_impl() 848 kv2->hint->v.nh.empty=true; in numcoll_impl() 849 kv2->hint->v.nh.si = SI2; in numcoll_impl() [all …]
|
| /dflybsd-src/sys/dev/powermng/perfbias/ |
| H A D | perfbias.c | 160 int error, hint; in perfbias_sysctl() local 162 hint = sc->sc_hint; in perfbias_sysctl() 163 error = sysctl_handle_int(oidp, &hint, 0, req); in perfbias_sysctl() 166 if (hint < 0 || hint > INTEL_MSR_PERF_BIAS_HINTMASK) in perfbias_sysctl() 169 return perfbias_set(sc, hint); in perfbias_sysctl() 176 uint64_t hint = msg->ch_cbarg1; in perfbias_set_handler() local 178 wrmsr(INTEL_MSR_PERF_BIAS, hint); in perfbias_set_handler() 179 hint = rdmsr(INTEL_MSR_PERF_BIAS); in perfbias_set_handler() 181 sc->sc_hint = hint & INTEL_MSR_PERF_BIAS_HINTMASK; in perfbias_set_handler() 187 perfbias_set(struct perfbias_softc *sc, int hint) in perfbias_set() argument [all …]
|
| /dflybsd-src/lib/libc/citrus/ |
| H A D | citrus_prop.c | 346 const _citrus_prop_hint_t *hint; in _citrus_prop_parse_element() local 352 for (hint = hints; hint->name != NULL; ++hint) in _citrus_prop_parse_element() 353 if (_citrus_bcs_strcasecmp(name, hint->name) == 0) in _citrus_prop_parse_element() 363 _citrus_prop_object_init(&ostart, hint->type); in _citrus_prop_parse_element() 364 _citrus_prop_object_init(&oend, hint->type); in _citrus_prop_parse_element() 365 errnum = (*readers[hint->type])(ms, &ostart); in _citrus_prop_parse_element() 370 switch (hint->type) { in _citrus_prop_parse_element() 378 errnum = (*readers[hint->type])(ms, &oend); in _citrus_prop_parse_element() 386 errnum = (*hint->cb._func_.func)(context, \ in _citrus_prop_parse_element() 387 hint->name, ostart.u._func_); \ in _citrus_prop_parse_element() [all …]
|
| /dflybsd-src/contrib/gdb-7/gdb/python/ |
| H A D | py-prettyprint.c | 249 PyObject *hint; in gdbpy_get_display_hint() local 255 hint = PyObject_CallMethodObjArgs (printer, gdbpy_display_hint_cst, NULL); in gdbpy_get_display_hint() 256 if (hint) in gdbpy_get_display_hint() 258 if (gdbpy_is_string (hint)) in gdbpy_get_display_hint() 260 result = python_string_to_host_string (hint); in gdbpy_get_display_hint() 264 Py_DECREF (hint); in gdbpy_get_display_hint() 306 print_string_repr (PyObject *printer, const char *hint, in print_string_repr() argument 360 if (hint && !strcmp (hint, "string")) in print_string_repr() 473 print_children (PyObject *printer, const char *hint, in print_children() argument 492 is_map = hint && ! strcmp (hint, "map"); in print_children() [all …]
|
| /dflybsd-src/contrib/gcc-8.0/gcc/ |
| H A D | diagnostic-show-locus.c | 261 bool validate_fixit_hint_p (const fixit_hint *hint); 846 const fixit_hint *hint = richloc->get_fixit_hint (i); in layout() local 847 if (validate_fixit_hint_p (hint)) in layout() 848 m_fixit_hints.safe_push (hint); in layout() 1039 const fixit_hint *hint = m_fixit_hints[i]; in get_expanded_location() local 1040 location_t loc = hint->get_start_loc (); in get_expanded_location() 1055 layout::validate_fixit_hint_p (const fixit_hint *hint) in validate_fixit_hint_p() argument 1057 if (LOCATION_FILE (hint->get_start_loc ()) != m_exploc.file) in validate_fixit_hint_p() 1059 if (LOCATION_FILE (hint->get_next_loc ()) != m_exploc.file) in validate_fixit_hint_p() 1070 get_line_span_for_fixit_hint (const fixit_hint *hint) in get_line_span_for_fixit_hint() argument [all …]
|
| /dflybsd-src/contrib/cryptsetup/luks/ |
| H A D | keyencryption.c | 92 char *hint = ""; in _error_hint() local 100 return hint; in _error_hint() 108 hint = _("Key size in XTS mode must be 256 or 512 bits.\n"); in _error_hint() 110 hint = _("Block mode XTS is available since kernel 2.6.24.\n"); in _error_hint() 112 hint = _("Key size in LRW mode must be 256 or 512 bits.\n"); in _error_hint() 114 hint = _("Block mode LRW is available since kernel 2.6.20.\n"); in _error_hint() 116 return hint; in _error_hint()
|
| /dflybsd-src/games/adventure/ |
| H A D | subr.c | 500 int hint; in checkhints() local 501 for (hint = 4; hint <= hintmax; hint++) { in checkhints() 502 if (hinted[hint]) in checkhints() 504 if (!bitset(loc, hint)) in checkhints() 505 hintlc[hint] = -1; in checkhints() 506 hintlc[hint]++; in checkhints() 507 if (hintlc[hint] < hints[hint][1]) in checkhints() 509 switch (hint) { in checkhints() 536 l40010: hintlc[hint] = 0; in checkhints() 537 if (!yes(hints[hint][3], 0, 54)) in checkhints() [all …]
|
| /dflybsd-src/usr.bin/finger/ |
| H A D | net.c | 60 static struct addrinfo hint; in netfinger() local 69 hint.ai_flags = AI_CANONNAME; in netfinger() 70 hint.ai_family = family; in netfinger() 71 hint.ai_socktype = SOCK_STREAM; in netfinger() 73 error = getaddrinfo(host, "finger", &hint, &ai0); in netfinger()
|
| /dflybsd-src/sys/platform/pc64/x86_64/ |
| H A D | machdep.c | 515 int hint; member 657 int hint = cpu_mwait_hints[i]; in cpu_mwait_attach() local 660 MWAIT_EAX_TO_CX(hint), MWAIT_EAX_TO_CX_SUB(hint), in cpu_mwait_attach() 661 hint); in cpu_mwait_attach() 692 int hint = cpu_mwait_deep_hints[i]; in cpu_mwait_attach() local 695 MWAIT_EAX_TO_CX(hint), MWAIT_EAX_TO_CX_SUB(hint), in cpu_mwait_attach() 696 hint); in cpu_mwait_attach() 1129 int hint, cx_idx; in cpu_mwait_cx_hint() local 1132 hint = stat->hint; in cpu_mwait_cx_hint() 1133 if (hint >= 0) in cpu_mwait_cx_hint() [all …]
|
| /dflybsd-src/sys/kern/ |
| H A D | kern_event.c | 92 static int filter_event(struct knote *kn, long hint); 122 static int filt_kqueue(struct knote *kn, long hint); 125 static int filt_proc(struct knote *kn, long hint); 130 static int filt_timer(struct knote *kn, long hint); 133 static int filt_user(struct knote *kn, long hint); 138 static int filt_fs(struct knote *kn, long hint); 284 filt_kqueue(struct knote *kn, long hint) in filt_kqueue() argument 361 filt_proc(struct knote *kn, long hint) in filt_proc() argument 368 event = (u_int)hint & NOTE_PCTRLMASK; in filt_proc() 408 kev.ident = hint & NOTE_PDATAMASK; /* pid */ in filt_proc() [all …]
|
| /dflybsd-src/contrib/lvm2/dist/libdm/mm/ |
| H A D | pool-fast.c | 143 int dm_pool_begin_object(struct dm_pool *p, size_t hint) in dm_pool_begin_object() argument 154 if (!c || (c->begin > c->end) || (c->end - c->begin < hint)) { in dm_pool_begin_object() 157 hint > (p->chunk_size - sizeof(struct chunk)) ? in dm_pool_begin_object() 158 hint + sizeof(struct chunk) + align : in dm_pool_begin_object()
|
| /dflybsd-src/sys/sys/ |
| H A D | event.h | 168 #define KNOTE(list, hint) if (!SLIST_EMPTY((list))) knote(list, hint) argument 196 int (*f_event) (struct knote *kn, long hint);
|
| /dflybsd-src/nrelease/root/ |
| H A D | README.USB | 15 - 'set hint.ehci.0.disabled=0' in /boot/loader.conf 22 - 'set hint.xhci.0.disabled=0' in /boot/loader.conf
|
| /dflybsd-src/sys/vfs/procfs/ |
| H A D | procfs_vnops.c | 1203 procfs_filt_read(struct knote *kn, long hint) in procfs_filt_read() argument 1205 if (hint == NOTE_REVOKE) { in procfs_filt_read() 1218 procfs_filt_write(struct knote *kn, long hint) in procfs_filt_write() argument 1220 if (hint == NOTE_REVOKE) in procfs_filt_write() 1227 procfs_filt_vnode(struct knote *kn, long hint) in procfs_filt_vnode() argument 1229 if (kn->kn_sfflags & hint) in procfs_filt_vnode() 1230 kn->kn_fflags |= hint; in procfs_filt_vnode() 1231 if (hint == NOTE_REVOKE) { in procfs_filt_vnode()
|
| /dflybsd-src/sys/vfs/dirfs/ |
| H A D | dirfs_vnops.c | 1450 static int filt_dirfsread(struct knote *kn, long hint); 1451 static int filt_dirfswrite(struct knote *kn, long hint); 1452 static int filt_dirfsvnode(struct knote *kn, long hint); 1500 filt_dirfsread(struct knote *kn, long hint) in filt_dirfsread() argument 1506 if (hint == NOTE_REVOKE) { in filt_dirfsread() 1529 filt_dirfswrite(struct knote *kn, long hint) in filt_dirfswrite() argument 1531 if (hint == NOTE_REVOKE) in filt_dirfswrite() 1538 filt_dirfsvnode(struct knote *kn, long hint) in filt_dirfsvnode() argument 1540 if (kn->kn_sfflags & hint) in filt_dirfsvnode() 1541 kn->kn_fflags |= hint; in filt_dirfsvnode() [all …]
|
| /dflybsd-src/contrib/ncurses/ncurses/base/ |
| H A D | new_pair.c | 271 int hint = SP_PARM->_recent_pair; in NCURSES_SP_NAME() local 277 for (pair = hint + 1; pair < SP_PARM->_pair_alloc; pair++) { in NCURSES_SP_NAME() 294 for (pair = 1; pair <= hint; pair++) { in NCURSES_SP_NAME()
|
| /dflybsd-src/stand/boot/common/ |
| H A D | help.common | 29 set hint.acpi.0.disabled=1 34 set hint.ahci.disabled=1 39 set hint.ehci.0.disabled=1 44 set hint.xhci.0.disabled=1 93 set hint.ahci.disabled=1 97 set hint.ahci.force150=1 102 set hint.ahci.nofeatures=1 168 set hint.ehci.0.disabled=1 186 set hint.xhci.0.disabled=1 463 this option provides a hint as to the actual size of [all …]
|
| /dflybsd-src/sys/netinet/ |
| H A D | tcp_sack.c | 103 struct sackblock *hint = scb->lastfound; in sack_block_lookup() local 111 if (hint == NULL) { in sack_block_lookup() 117 if (SEQ_GEQ(seq, hint->sblk_start)) { in sack_block_lookup() 119 cur = hint; in sack_block_lookup() 125 last = hint; in sack_block_lookup() 126 prev = TAILQ_PREV(hint, sackblock_list, sblk_list); in sack_block_lookup()
|
| /dflybsd-src/usr.sbin/powerd/ |
| H A D | powerd.c | 915 int hint; in has_perfbias() local 917 len = sizeof(hint); in has_perfbias() 918 if (sysctlbyname("machdep.perfbias0.hint", &hint, &len, NULL, 0) < 0) in has_perfbias() 926 int hint = inc ? 0 : 15; in set_perfbias() local 930 printf("cpu%d set perfbias hint %d\n", cpu, hint); in set_perfbias() 932 sysctlbyname(sysid, NULL, NULL, &hint, sizeof(hint)); in set_perfbias()
|
| /dflybsd-src/sys/opencrypto/ |
| H A D | crypto.c | 183 static int crypto_invoke(struct cryptocap *cap, struct cryptop *crp, int hint); 1044 crypto_invoke(struct cryptocap *cap, struct cryptop *crp, int hint) in crypto_invoke() argument 1084 return CRYPTODEV_PROCESS(cap->cc_dev, crp, hint); in crypto_invoke() 1295 int result, hint; in crypto_proc() local 1308 hint = 0; in crypto_proc() 1335 hint = CRYPTO_HINT_MORE; in crypto_proc() 1353 result = crypto_invoke(cap, submit, hint); in crypto_proc()
|
| /dflybsd-src/sys/vfs/fifofs/ |
| H A D | fifo_vnops.c | 80 static int filt_fiforead(struct knote *kn, long hint); 82 static int filt_fifowrite(struct knote *kn, long hint); 512 filt_fiforead(struct knote *kn, long hint) in filt_fiforead() argument 546 filt_fifowrite(struct knote *kn, long hint) in filt_fifowrite() argument
|
| /dflybsd-src/sys/vfs/tmpfs/ |
| H A D | tmpfs_vnops.c | 1995 static int filt_tmpfsread(struct knote *kn, long hint); 1996 static int filt_tmpfswrite(struct knote *kn, long hint); 1997 static int filt_tmpfsvnode(struct knote *kn, long hint); 2045 filt_tmpfsread(struct knote *kn, long hint) in filt_tmpfsread() argument 2051 if (hint == NOTE_REVOKE) { in filt_tmpfsread() 2074 filt_tmpfswrite(struct knote *kn, long hint) in filt_tmpfswrite() argument 2076 if (hint == NOTE_REVOKE) in filt_tmpfswrite() 2083 filt_tmpfsvnode(struct knote *kn, long hint) in filt_tmpfsvnode() argument 2085 if (kn->kn_sfflags & hint) in filt_tmpfsvnode() 2086 kn->kn_fflags |= hint; in filt_tmpfsvnode() [all …]
|
| /dflybsd-src/sys/vfs/ufs/ |
| H A D | ufs_vnops.c | 107 static int filt_ufsread (struct knote *kn, long hint); 108 static int filt_ufswrite (struct knote *kn, long hint); 109 static int filt_ufsvnode (struct knote *kn, long hint); 2168 filt_ufsread(struct knote *kn, long hint) in filt_ufsread() argument 2178 if (hint == NOTE_REVOKE) { in filt_ufsread() 2192 filt_ufswrite(struct knote *kn, long hint) in filt_ufswrite() argument 2198 if (hint == NOTE_REVOKE) in filt_ufswrite() 2206 filt_ufsvnode(struct knote *kn, long hint) in filt_ufsvnode() argument 2208 if (kn->kn_sfflags & hint) in filt_ufsvnode() 2209 kn->kn_fflags |= hint; in filt_ufsvnode() [all …]
|
| /dflybsd-src/contrib/binutils-2.27/gas/doc/ |
| H A D | c-ia64.texi | 83 These options control what the assembler will do when the @samp{hint.b} 85 @samp{hint.b}. @code{-mint.b=warning} will make the assembler issue a 86 warning when @samp{hint.b} is used. @code{-mhint.b=error} will make 87 the assembler treat @samp{hint.b} as an error, which is the default.
|