Home
last modified time | relevance | path

Searched refs:currIndex (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/BackupEncryption/src/com/android/server/backup/encryption/chunking/cdc/
DRabinFingerprint64.java76 int currIndex = i; in computeFingerprintTables64() local
77 for (int j = 0; (currIndex > 0) && (j < 8); j++) { in computeFingerprintTables64()
78 if ((currIndex & 0x1) == 1) { in computeFingerprintTables64()
81 currIndex >>>= 1; in computeFingerprintTables64()
104 int currIndex = i; in computeFingerprintTables64Windowed() local
105 for (int j = 0; (currIndex > 0) && (j < 8); j++) { in computeFingerprintTables64Windowed()
106 if ((currIndex & 0x1) == 1) { in computeFingerprintTables64Windowed()
109 currIndex >>>= 1; in computeFingerprintTables64Windowed()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DGsmCdmaConnection.java294 int currIndex = 0; in formatDialString() local
296 while (currIndex < length) { in formatDialString()
297 c = phoneNumber.charAt(currIndex); in formatDialString()
299 if (currIndex < length - 1) { in formatDialString()
301 int nextIndex = findNextPCharOrNonPOrNonWCharIndex(phoneNumber, currIndex); in formatDialString()
304 char pC = findPOrWCharToAppend(phoneNumber, currIndex, nextIndex); in formatDialString()
309 if (nextIndex > (currIndex + 1)) { in formatDialString()
310 currIndex = nextIndex - 1; in formatDialString()
314 currIndex = length - 1; in formatDialString()
320 currIndex++; in formatDialString()
[all …]