Lines Matching defs:entry

414 			/* kbtrans_keyreleased resets downs entry */
1350 "entry in downs table (%d,%d)!\n",
1375 * Remove entry from the downs table
1672 uint_t entry)
1682 * specific post processing. Note that the translated entry
1692 keyid = entry & 0xFF;
1709 if (entry >= TOPFUNC &&
1710 entry < (TOPFUNC + KB_NR_FUNCKEYS)) {
1716 keyid = (entry & 0xF) + 1;
1729 (uint_t)((entry & 0x003F) + 192),
1747 keyid = entry & 0xFF;
1760 cp = &lower->kbtrans_keystringtab[entry & 0x0F][0];
1781 lower->kbtrans_numlock_table[entry&0x1F]);
1793 kbtrans_putcode(upper, entry);
1861 uint_t entry)
1878 * correctly translate entry into fe.id.
1880 fe.id = SHIFT_CAPSLOCK + (entry & 0x0F);
1891 * correctly translate entry into fe.id.
1893 fe.id = SHIFT_META + (entry & 0x0F);
1908 fe.id = KEY_LEFTFIRST + (entry & 0x003F);
1932 cp = &lower->kbtrans_keystringtab[entry & 0x0F][0];
1956 fe.id = VKEY_FIRSTPAD + (entry & 0x001F);
1980 switch (entry) {
2001 fe.id = entry;
2106 * Set individual keystation translation from old-style entry.
2114 register ushort_t entry;
2166 entry = key->kio_entry;
2171 if (entry != OLD_ISOCHAR) {
2172 if (entry & 0x80) {
2173 if (entry >= OLD_FA_UMLAUT && entry <= OLD_FA_GRAVE)
2174 entry = FA_CLASS + (entry & 0x0F) - 9;
2176 entry =
2177 special_old_to_new[entry >> 4 & 0x07]
2178 + (entry & 0x0F);
2182 *ke = entry;
2205 * Get individual keystation translation as old-style entry.
2212 register ushort_t entry;
2240 entry = *ke;
2242 if (entry & 0xFF00)
2244 special_new_to_old[(ushort_t)(entry & 0xFF00) >> 8]
2245 + (entry & 0x00FF);
2247 if (entry & 0x80)
2250 key->kio_entry = (ushort_t)entry;
2253 if (entry >= STRING && entry <= (uchar_t)(STRING + 15)) {
2254 strtabindex = entry - STRING;
2264 * Set individual keystation translation from new-style entry.
2326 * Get individual keystation translation as new-style entry.