Home
last modified time | relevance | path

Searched refs:idx0 (Results 1 – 5 of 5) sorted by relevance

/freebsd-9-stable/sys/dev/vt/
Dvt_core.c557 int idx0, idx; in vt_allocate_keyboard() local
561 idx0 = kbd_allocate("kbdmux", -1, (void *)&vd->vd_keyboard, in vt_allocate_keyboard()
564 if (idx0 != -1) { in vt_allocate_keyboard()
565 DPRINTF(20, "%s: kbdmux allocated, idx = %d\n", __func__, idx0); in vt_allocate_keyboard()
566 k0 = kbd_get_keyboard(idx0); in vt_allocate_keyboard()
573 if (idx == idx0 || KBD_IS_BUSY(k)) in vt_allocate_keyboard()
584 idx0 = kbd_allocate("*", -1, (void *)&vd->vd_keyboard, in vt_allocate_keyboard()
587 vd->vd_keyboard = idx0; in vt_allocate_keyboard()
590 return (idx0); in vt_allocate_keyboard()
/freebsd-9-stable/sys/dev/pccard/
Dpccardvar.h117 #define pccard_cis_read_1(tuple, idx0) \ argument
118 (bus_space_read_1((tuple)->memt, (tuple)->memh, (tuple)->mult*(idx0)))
/freebsd-9-stable/crypto/openssh/
Dkey.c458 u_int idx0, idx1, idx2, idx3, idx4; in key_fingerprint_bubblebabble() local
460 idx0 = (((((u_int)(dgst_raw[2 * i])) >> 6) & 3) + in key_fingerprint_bubblebabble()
465 retval[j++] = vowels[idx0]; in key_fingerprint_bubblebabble()
479 idx0 = seed % 6; in key_fingerprint_bubblebabble()
482 retval[j++] = vowels[idx0]; in key_fingerprint_bubblebabble()
/freebsd-9-stable/sys/dev/syscons/
Dsyscons.c3898 int idx0, idx; in sc_allocate_keyboard() local
3902 idx0 = kbd_allocate("kbdmux", -1, (void *)&sc->keyboard, sckbdevent, sc); in sc_allocate_keyboard()
3903 if (idx0 != -1) { in sc_allocate_keyboard()
3904 k0 = kbd_get_keyboard(idx0); in sc_allocate_keyboard()
3911 if (idx == idx0 || KBD_IS_BUSY(k)) in sc_allocate_keyboard()
3921 idx0 = kbd_allocate("*", unit, (void *)&sc->keyboard, sckbdevent, sc); in sc_allocate_keyboard()
3923 return (idx0); in sc_allocate_keyboard()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/CodeGen/
DCGObjCMac.cpp1689 unsigned idx0, in getConstantGEP() argument
1692 llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), idx0), in getConstantGEP()