Searched refs:us (Results 51 - 75 of 121) sorted by path

12345

/freebsd-11-stable/share/mk/
H A Dmeta.autodep.mk99 # if it isn't supposed to be touched by us the Makefile should have
188 # do _not_ assume that .depend is in any fit state for us to use
H A Dmeta.stage.mk29 # this allows us to trace dependencies back to their src dir
H A Dmeta.sys.mk56 # that won't work for us.
102 # we are not interested in make telling us a failure happened elsewhere
H A Dsys.dependfile.mk31 # let us do our thing below...
/freebsd-11-stable/share/syscons/keymaps/
H A DMakefile50 us.iso.kbd us.dvorak.kbd us.dvorakl.kbd us.dvorakr.kbd us.dvorakp.kbd \
51 us.dvorakx.kbd us.emacs.kbd us.pc-ctrl.kbd us.unix.kbd us
[all...]
/freebsd-11-stable/share/syscons/scrnmaps/
H A DMakefile7 us-ascii_to_cp437.scm
/freebsd-11-stable/sys/arm/at91/
H A Dat91_pit.c87 at91_pit_delay(int us) argument
100 cnt = howmany(pit_freq * us, mhz);
H A Dat91_pitreg.h45 void at91_pit_delay(int us);
/freebsd-11-stable/sys/cam/
H A Dcam_iosched.c477 * Note on going negative: that allows us to process
809 uint64_t us; local
812 us = (uint64_t)value / SBT_1US;
813 snprintf(buf, sizeof(buf), "%ju", (intmax_t)us);
817 us = strtoul(buf, NULL, 10);
818 if (us == 0)
820 *(sbintime_t *)arg1 = us * SBT_1US;
939 "How often to steer (in us)");
943 "Low water mark for Latency (in us)");
947 "Hi water mark for Latency (in us)");
[all...]
/freebsd-11-stable/sys/compat/ndis/
H A Dsubr_ndis.c552 unicode_string *us; local
569 us = &p->ncp_parmdata.ncp_stringdata;
578 if (RtlAnsiStringToUnicodeString(us, &as, TRUE)) {
924 * machine check. The 1us delay in the loop below
983 unicode_string us; local
997 RtlInitUnicodeString(&us, (uint16_t *)str);
999 &us, TRUE) == STATUS_SUCCESS)
2790 * us since the kernel appears to us as just another module.
/freebsd-11-stable/sys/compat/svr4/
H A Dsvr4_stat.c378 struct svr4_ustat us; local
381 memset(&us, 0, sizeof us);
387 if ((error = copyout(&us, uap->name, sizeof us)) != 0)
/freebsd-11-stable/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_misc.c570 ar9300_set_slot_time(struct ath_hal *ah, u_int us) argument
573 if (us < HAL_SLOT_TIME_9 || us > ar9300_mac_to_usec(ah, 0xffff)) {
574 HALDEBUG(ah, HAL_DEBUG_RESET, "%s: bad slot time %u\n", __func__, us);
579 OS_REG_WRITE(ah, AR_D_GBL_IFS_SLOT, ar9300_mac_to_clks(ah, us));
580 ahp->ah_slot_time = us;
586 ar9300_set_ack_timeout(struct ath_hal *ah, u_int us) argument
590 if (us > ar9300_mac_to_usec(ah, MS(0xffffffff, AR_TIME_OUT_ACK))) {
591 HALDEBUG(ah, HAL_DEBUG_RESET, "%s: bad ack timeout %u\n", __func__, us);
597 AR_TIME_OUT, AR_TIME_OUT_ACK, ar9300_mac_to_clks(ah, us));
[all...]
/freebsd-11-stable/sys/dev/ath/ath_hal/ar5210/
H A Dar5210_misc.c420 ar5210SetSifsTime(struct ath_hal *ah, u_int us) argument
424 if (us > ath_hal_mac_usec(ah, 0x7ff)) {
426 __func__, us);
432 ath_hal_mac_clks(ah, us));
433 ahp->ah_sifstime = us;
446 ar5210SetSlotTime(struct ath_hal *ah, u_int us) argument
450 if (us < HAL_SLOT_TIME_9 || us > ath_hal_mac_usec(ah, 0xffff)) {
452 __func__, us);
457 OS_REG_WRITE(ah, AR_SLOT_TIME, ath_hal_mac_clks(ah, us));
471 ar5210SetAckTimeout(struct ath_hal *ah, u_int us) argument
518 ar5210SetCTSTimeout(struct ath_hal *ah, u_int us) argument
[all...]
/freebsd-11-stable/sys/dev/ath/ath_hal/ar5211/
H A Dar5211_misc.c423 ar5211SetSifsTime(struct ath_hal *ah, u_int us) argument
427 if (us > ath_hal_mac_usec(ah, 0xffff)) {
429 __func__, us);
434 OS_REG_WRITE(ah, AR_D_GBL_IFS_SIFS, ath_hal_mac_clks(ah, us));
435 ahp->ah_slottime = us;
448 ar5211SetSlotTime(struct ath_hal *ah, u_int us) argument
452 if (us < HAL_SLOT_TIME_9 || us > ath_hal_mac_usec(ah, 0xffff)) {
454 __func__, us);
455 ahp->ah_slottime = us; /* restor
473 ar5211SetAckTimeout(struct ath_hal *ah, u_int us) argument
520 ar5211SetCTSTimeout(struct ath_hal *ah, u_int us) argument
[all...]
/freebsd-11-stable/sys/dev/ath/ath_hal/ar5212/
H A Dar5212_misc.c448 ar5212SetSifsTime(struct ath_hal *ah, u_int us) argument
452 if (us > ath_hal_mac_usec(ah, 0xffff)) {
454 __func__, us);
459 OS_REG_WRITE(ah, AR_D_GBL_IFS_SIFS, ath_hal_mac_clks(ah, us-2));
460 ahp->ah_sifstime = us;
473 ar5212SetSlotTime(struct ath_hal *ah, u_int us) argument
477 if (us < HAL_SLOT_TIME_6 || us > ath_hal_mac_usec(ah, 0xffff)) {
479 __func__, us);
484 OS_REG_WRITE(ah, AR_D_GBL_IFS_SLOT, ath_hal_mac_clks(ah, us));
498 ar5212SetAckTimeout(struct ath_hal *ah, u_int us) argument
545 ar5212SetCTSTimeout(struct ath_hal *ah, u_int us) argument
[all...]
/freebsd-11-stable/sys/dev/evdev/
H A Duinput.c475 struct uinput_setup *us; local
521 us = (struct uinput_setup *)data;
522 return (uinput_setup_dev(state, &us->id, us->name,
523 us->ff_effects_max));
/freebsd-11-stable/sys/dev/msk/
H A Dif_mskreg.h2549 #define MSK_USECS(sc, us) ((sc)->msk_clock * (us))
/freebsd-11-stable/sys/dev/nxge/
H A Dxge-osdep.h253 #define xge_os_udelay(us) DELAY(us)
/freebsd-11-stable/sys/dev/sound/pci/
H A Dmaestro.c116 unsigned us : 1; /* in unsigned format */ member in struct:agg_chinfo
346 DELAY(2); /* 20.8us / 13 */
594 DELAY(104); /* 20.8us * (4 + 1) */
621 DELAY(84); /* 20.8us * 4 */
876 if (ch->us)
1374 ch->stereo = ch->qs16 = ch->us = 0;
1380 ch->us = 1;
/freebsd-11-stable/sys/dev/sym/
H A Dsym_hipd.c336 static void UDELAY(int us) { DELAY(us); } argument
1477 * Dummy lun table to protect us against target
2676 * user has to tell us how to check against HVD,
4020 * If we have a CCB, let the SCRIPTS call us back for
4735 * to report us a UNIT ATTENTION condition due to
4922 * the next command in order to allow us to perform
6072 * The SCRIPTS let us know that the device has grabbed
6082 * The SCRIPTS let us know that a message has been
6139 * The device wants us t
[all...]
/freebsd-11-stable/sys/kern/
H A Dkern_xxx.c361 char *s, *us; local
403 for(us = uap->name->version; *s && *s != ':'; s++) {
404 error = subyte( us++, *s);
408 error = subyte( us++, 0);
H A Dsubr_unit.c387 struct unr *up, *uf, *us; local
395 us = NULL;
418 us = uf;
429 if (!is_bitmap(uh, us)) {
430 uf = TAILQ_NEXT(us, list);
431 TAILQ_REMOVE(&uh->head, us, list);
432 a = us->len;
433 l = us->ptr == uh ? 1 : 0;
434 ub = (void *)us;
445 us
[all...]
H A Dsubr_vmem.c868 * before calling us.
1489 size_t fs[VMEM_MAXORDER], us[VMEM_MAXORDER]; local
1508 memset(&us, 0, sizeof(us));
1513 us[ord] += bt->bt_size;
1525 ut[ord], us[ord], ft[ord], fs[ord]);
/freebsd-11-stable/sys/mips/mips/
H A Dexception.S185 # with us........
693 * We don't need to save s0 - s8 because the compiler does it for us.
H A Dsupport.S136 li v0, 1 # trap sends us here

Completed in 619 milliseconds

12345