Searched refs:digitCount (Results 1 – 2 of 2) sorted by relevance
115 int digitCount = 0;119 digitCount++;120 if (digitCount >= PHONE_NUMBER_MINIMUM_DIGITS) {
1078 int digitCount = 0; in numberToCalledPartyBCDHelper() local1082 int shift = ((digitCount & 0x01) == 1) ? 4 : 0; in numberToCalledPartyBCDHelper()1083 result[extraBytes + (digitCount >> 1)] |= (byte)((charToBCD(c) & 0x0F) << shift); in numberToCalledPartyBCDHelper()1084 digitCount++; in numberToCalledPartyBCDHelper()1088 if ((digitCount & 0x01) == 1) result[extraBytes + (digitCount >> 1)] |= 0xF0; in numberToCalledPartyBCDHelper()