Searched refs:digitCount (Results 1 – 2 of 2) sorted by relevance
136 int digitCount = 0;140 digitCount++;141 if (digitCount >= PHONE_NUMBER_MINIMUM_DIGITS) {
1085 int digitCount = 0; in numberToCalledPartyBCDHelper() local1089 int shift = ((digitCount & 0x01) == 1) ? 4 : 0; in numberToCalledPartyBCDHelper()1090 result[extraBytes + (digitCount >> 1)] |= (byte)((charToBCD(c) & 0x0F) << shift); in numberToCalledPartyBCDHelper()1091 digitCount++; in numberToCalledPartyBCDHelper()1095 if ((digitCount & 0x01) == 1) result[extraBytes + (digitCount >> 1)] |= 0xF0; in numberToCalledPartyBCDHelper()