Lines Matching refs:u32charLookup
876 int32_t u32charLookup = u32char; in normalizeOptCaseFoldU32Char() local
877 if (u32charLookup >= kU32LowRangeLimit) { in normalizeOptCaseFoldU32Char()
878 u32charLookup -= (kU32HiRangeStart - kU32LowRangeLimit); in normalizeOptCaseFoldU32Char()
879 if (u32charLookup < kU32LowRangeLimit || u32charLookup >= (kU32LowRangeLimit + kU32HiRangeLen)) { in normalizeOptCaseFoldU32Char()
889 trieValue = nfTrieHi[u32charLookup >> kNFTrieHiShift]; in normalizeOptCaseFoldU32Char()
903 …trieValue = nfTrieMid[trieValue & kNextIndexValueMask][(u32charLookup >> kNFTrieMidShift) & kNFTri… in normalizeOptCaseFoldU32Char()
914 uint16_t testBit = (uint16_t)(1 << (u32charLookup & kNFTrieLoMask)); in normalizeOptCaseFoldU32Char()
929 trieValue = nfTrieLo[trieValue & kNextIndexValueMask][u32charLookup & kNFTrieLoMask]; in normalizeOptCaseFoldU32Char()
1071 int32_t u32charLookup = u32char; in getCombClassU32Char() local
1072 if (u32charLookup >= kU32LowRangeLimit) { in getCombClassU32Char()
1073 u32charLookup -= (kU32HiRangeStart - kU32LowRangeLimit); in getCombClassU32Char()
1081 trieValue = nfTrieHi[u32charLookup >> kNFTrieHiShift]; in getCombClassU32Char()
1086 …trieValue = nfTrieMid[trieValue & kNextIndexValueMask][(u32charLookup >> kNFTrieMidShift) & kNFTri… in getCombClassU32Char()
1094 trieValue = nfTrieLo[trieValue & kNextIndexValueMask][u32charLookup & kNFTrieMidMask]; in getCombClassU32Char()