Lines Matching refs:mask
66 unsigned int mask, unsigned int val, bool *change) in snd_soc_component_update_bits_legacy() argument
80 new = (old & ~mask) | (val & mask); in snd_soc_component_update_bits_legacy()
102 unsigned int reg, unsigned int mask, unsigned int val) in snd_soc_component_update_bits() argument
108 ret = regmap_update_bits_check(component->regmap, reg, mask, in snd_soc_component_update_bits()
112 mask, val, &change); in snd_soc_component_update_bits()
138 unsigned int reg, unsigned int mask, unsigned int val) in snd_soc_component_update_bits_async() argument
145 mask, val, &change); in snd_soc_component_update_bits_async()
148 mask, val, &change); in snd_soc_component_update_bits_async()
183 unsigned int reg, unsigned int mask, unsigned int value) in snd_soc_component_test_bits() argument
191 new = (old & ~mask) | value; in snd_soc_component_test_bits()
228 unsigned int mask, unsigned int value) in snd_soc_update_bits() argument
230 return snd_soc_component_update_bits(&codec->component, reg, mask, in snd_soc_update_bits()
248 unsigned int mask, unsigned int value) in snd_soc_test_bits() argument
250 return snd_soc_component_test_bits(&codec->component, reg, mask, value); in snd_soc_test_bits()