Home
last modified time | relevance | path

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

/frameworks/base/services/backup/java/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.java283 int currIndex = 0; in formatDialString() local
285 while (currIndex < length) { in formatDialString()
286 c = phoneNumber.charAt(currIndex); in formatDialString()
288 if (currIndex < length - 1) { in formatDialString()
290 int nextIndex = findNextPCharOrNonPOrNonWCharIndex(phoneNumber, currIndex); in formatDialString()
293 char pC = findPOrWCharToAppend(phoneNumber, currIndex, nextIndex); in formatDialString()
298 if (nextIndex > (currIndex + 1)) { in formatDialString()
299 currIndex = nextIndex - 1; in formatDialString()
303 currIndex = length - 1; in formatDialString()
309 currIndex++; in formatDialString()
[all …]