Lines Matching defs:value

427 	if (ch >= 0x100 || (direct && direct->u.n.value)) {
730 if (ch >= 0x100 || (direct && direct->u.n.value)) {
1165 static void do_handle_shift(struct vc_data *vc, u_char value, char up_flag)
1173 switch (value) {
1191 if (spk_say_ctrl && value < NUM_CTL_LABELS)
1192 synth_printf("%s", spk_msg_get(MSG_CTL_START + value));
1196 static void do_handle_latin(struct vc_data *vc, u_char value, char up_flag)
1212 spk_lastkey = value;
1215 if (spk_key_echo == 2 && value >= MINECHOCHAR)
1216 speak_char(value);
1445 jiffies + msecs_to_jiffies(cursor_timeout->u.n.value));
1520 static int pre_handle_cursor(struct vc_data *vc, u_char value, char up_flag)
1534 start_read_all_timer(vc, value + 1);
1542 static void do_handle_cursor(struct vc_data *vc, u_char value, char up_flag)
1559 is_cursor = value + 1;
1569 jiffies + msecs_to_jiffies(cursor_timeout->u.n.value));
1808 static void do_handle_spec(struct vc_data *vc, u_char value, char up_flag)
1820 switch (value) {
1846 static int inc_dec_var(u_char value)
1853 int var_id = (int)value - VAR_START;
1874 var_data->u.n.value);
2088 static void do_spkup(struct vc_data *vc, u_char value)
2090 if (spk_killed && value != SPEECH_KILL)
2095 this_speakup_key = value;
2096 if (value < SPKUP_MAX_FUNC && spkup_handler[value]) {
2098 (*spkup_handler[value]) (vc);
2100 if (inc_dec_var(value) < 0)
2114 u_char type = KTYP(keysym), value = KVAL(keysym), new_key = 0;
2131 value = pad_chars[value];
2132 spk_lastkey = value;
2144 switch (value) {
2185 value = new_key;
2198 kh = (value == KVAL(K_DOWN)) ||
2199 (value == KVAL(K_UP)) ||
2200 (value == KVAL(K_LEFT)) ||
2201 (value == KVAL(K_RIGHT));
2206 if (type == KT_SPEC && value == 1) {
2207 value = '\n';
2211 } else if (value == 0x7f) {
2212 value = 8; /* make del = backspace */
2214 ret = (*spk_special_handler) (vc, type, value, keycode);
2255 keycode = param->value;
2264 if (speakup_key(vc, param->shift, keycode, param->value, up))
2266 else if (KTYP(param->value) == KT_CUR)
2267 ret = pre_handle_cursor(vc, KVAL(param->value), up);
2270 unsigned char type = KTYP(param->value) - 0xf0;
2271 unsigned char val = KVAL(param->value);