Lines Matching refs:bitShift
1020 int bitShift; in LCD_BiasSegmentSet() local
1037 bitShift = (segmentLine / 4) * 4; in LCD_BiasSegmentSet()
1042 if (bitShift < 32) { in LCD_BiasSegmentSet()
1046 bitShift -= 32; in LCD_BiasSegmentSet()
1050 if (bitShift < 32) { in LCD_BiasSegmentSet()
1054 bitShift -= 32; in LCD_BiasSegmentSet()
1058 if (bitShift < 32) { in LCD_BiasSegmentSet()
1062 bitShift -= 32; in LCD_BiasSegmentSet()
1066 if (bitShift < 32) { in LCD_BiasSegmentSet()
1070 bitShift -= 32; in LCD_BiasSegmentSet()
1108 bitShift = (segmentLine % 8) * 4; in LCD_BiasSegmentSet()
1133 bitShift = (segmentLine % 10) * 4; in LCD_BiasSegmentSet()
1137 if (bitShift < 32) { in LCD_BiasSegmentSet()
1141 bitShift -= 32; in LCD_BiasSegmentSet()
1145 if (bitShift < 32) { in LCD_BiasSegmentSet()
1149 bitShift -= 32; in LCD_BiasSegmentSet()
1153 if (bitShift < 32) { in LCD_BiasSegmentSet()
1157 bitShift -= 32; in LCD_BiasSegmentSet()
1161 if (bitShift < 32) { in LCD_BiasSegmentSet()
1165 bitShift -= 32; in LCD_BiasSegmentSet()
1178 BUS_RegMaskedWrite(segmentRegister, 0xF << bitShift, biasLevel << bitShift); in LCD_BiasSegmentSet()
1210 uint32_t bitShift; in LCD_BiasComSet() local
1217 bitShift = (comLine / 2) * 4; in LCD_BiasComSet()
1232 BUS_RegMaskedWrite(comRegister, 0xF << bitShift, biasLevel << bitShift); in LCD_BiasComSet()
1235 int bitShift; in LCD_BiasComSet()
1238 bitShift = comLine * 4; in LCD_BiasComSet()
1239 BUS_RegMaskedWrite(&(LCD->SEGD4L), 0xF << bitShift, biasLevel << bitShift); in LCD_BiasComSet()