Home
last modified time | relevance | path

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

/frameworks/base/telephony/java/android/service/euicc/
DEuiccService.java335 final int bitsPerSection = 4; in encodeSmdxSubjectAndReasonCode() local
352 result = result << (maxSupportedSection - subjectCodeToken.length) * bitsPerSection; in encodeSmdxSubjectAndReasonCode()
359 result = (result << bitsPerSection) + num; in encodeSmdxSubjectAndReasonCode()
363 result = result << (maxSupportedSection - reasonCodeToken.length) * bitsPerSection; in encodeSmdxSubjectAndReasonCode()
369 result = (result << bitsPerSection) + num; in encodeSmdxSubjectAndReasonCode()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/euicc/
DEuiccController.java457 final int bitsPerSection = 4; in decodeSmdxSubjectAndReasonCode() local
466 resultCode = resultCode >>> bitsPerSection; in decodeSmdxSubjectAndReasonCode()