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.java334 final int bitsPerSection = 4; in encodeSmdxSubjectAndReasonCode() local
351 result = result << (maxSupportedSection - subjectCodeToken.length) * bitsPerSection; in encodeSmdxSubjectAndReasonCode()
358 result = (result << bitsPerSection) + num; in encodeSmdxSubjectAndReasonCode()
362 result = result << (maxSupportedSection - reasonCodeToken.length) * bitsPerSection; in encodeSmdxSubjectAndReasonCode()
368 result = (result << bitsPerSection) + num; in encodeSmdxSubjectAndReasonCode()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/euicc/
DEuiccController.java456 final int bitsPerSection = 4; in decodeSmdxSubjectAndReasonCode() local
465 resultCode = resultCode >>> bitsPerSection; in decodeSmdxSubjectAndReasonCode()