Lines Matching refs:t2
424 unsigned t1 = act->flags, t2;
425 if (CheckModifierField(xkb, action->type, value, &t1, &t2))
428 act->real_mods = act->mask = (t2 & 0xff);
429 t2 = (t2 >> 8) & 0xffff;
430 XkbSetModActionVMods(act, t2);
469 unsigned t1 = act->flags, t2;
470 if (CheckModifierField(xkb, action->type, value, &t1, &t2))
473 act->real_mods = act->mask = (t2 & 0xff);
474 t2 = (t2 >> 8) & 0xffff;
475 XkbSetModActionVMods(act, t2);
566 int t2;
567 if (CheckGroupField(action->type, value, &t1, &t2))
570 XkbSASetGroup(act, t2);
591 int t2;
592 if (CheckGroupField(action->type, value, &t1, &t2))
595 XkbSASetGroup(act, t2);
1093 unsigned t1 = 0, t2;
1095 if (CheckModifierField(xkb, action->type, value, &t1, &t2))
1099 act->mods_mask |= (t2 & 0xff);
1101 act->mods |= (t2 & 0xff);
1103 act->mods &= ~(t2 & 0xff);
1105 t2 = (t2 >> 8) & 0xffff;
1108 vmask |= t2;
1110 vmods |= t2;
1112 vmods &= ~t2;