Lines Matching defs:testbit
109 int testbit = SND_JACK_BTN_0 >> i;
111 if (!(jack->type & testbit))
150 int testbit = ((SND_JACK_BTN_0 >> i) & jack_kctl->mask_bits);
152 if (jack->type & testbit)
154 status & testbit);
158 int testbit = ((1 << i) & jack_kctl->mask_bits);
160 if (jack->type & testbit)
163 status & testbit);
677 int testbit = ((SND_JACK_BTN_0 >> i) & ~mask_bits);
679 if (jack->type & testbit)
681 status & testbit);
685 int testbit = ((1 << i) & ~mask_bits);
687 if (jack->type & testbit)
690 status & testbit);