Home
last modified time | relevance | path

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

/freebsd-10-stable/contrib/ldns/
Dutil.c431 size_t idx0, idx1, idx2, idx3, idx4; in ldns_bubblebabble() local
433 idx0 = (((((size_t)(data[2 * i])) >> 6) & 3) + in ldns_bubblebabble()
438 retval[j++] = vowels[idx0]; in ldns_bubblebabble()
452 idx0 = seed % 6; in ldns_bubblebabble()
455 retval[j++] = vowels[idx0]; in ldns_bubblebabble()
/freebsd-10-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-10-stable/sys/dev/vt/
Dvt_core.c895 int idx0, idx; in vt_allocate_keyboard() local
899 idx0 = kbd_allocate("kbdmux", -1, vd, vt_kbdevent, vd); in vt_allocate_keyboard()
900 if (idx0 >= 0) { in vt_allocate_keyboard()
901 DPRINTF(20, "%s: kbdmux allocated, idx = %d\n", __func__, idx0); in vt_allocate_keyboard()
902 k0 = kbd_get_keyboard(idx0); in vt_allocate_keyboard()
909 if (idx == idx0 || KBD_IS_BUSY(k)) in vt_allocate_keyboard()
921 idx0 = kbd_allocate("*", -1, vd, vt_kbdevent, vd); in vt_allocate_keyboard()
922 if (idx0 < 0) { in vt_allocate_keyboard()
927 vd->vd_keyboard = idx0; in vt_allocate_keyboard()
930 return (idx0); in vt_allocate_keyboard()
/freebsd-10-stable/sys/dev/syscons/
Dsyscons.c3917 int idx0, idx; in sc_allocate_keyboard() local
3921 idx0 = kbd_allocate("kbdmux", -1, (void *)&sc->keyboard, sckbdevent, sc); in sc_allocate_keyboard()
3922 if (idx0 != -1) { in sc_allocate_keyboard()
3923 k0 = kbd_get_keyboard(idx0); in sc_allocate_keyboard()
3930 if (idx == idx0 || KBD_IS_BUSY(k)) in sc_allocate_keyboard()
3940 idx0 = kbd_allocate("*", unit, (void *)&sc->keyboard, sckbdevent, sc); in sc_allocate_keyboard()
3942 return (idx0); in sc_allocate_keyboard()
/freebsd-10-stable/crypto/openssh/
Dsshkey.c983 u_int idx0, idx1, idx2, idx3, idx4; in fingerprint_bubblebabble() local
985 idx0 = (((((u_int)(dgst_raw[2 * i])) >> 6) & 3) + in fingerprint_bubblebabble()
990 retval[j++] = vowels[idx0]; in fingerprint_bubblebabble()
1004 idx0 = seed % 6; in fingerprint_bubblebabble()
1007 retval[j++] = vowels[idx0]; in fingerprint_bubblebabble()
/freebsd-10-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()