Lines Matching refs:u32charLookup
922 int32_t u32charLookup = u32char; in normalizeOptCaseFoldU32Char() local
923 if (u32charLookup >= kU32LowRangeLimit) { in normalizeOptCaseFoldU32Char()
924 u32charLookup -= (kU32HiRangeStart - kU32LowRangeLimit); in normalizeOptCaseFoldU32Char()
925 if (u32charLookup < kU32LowRangeLimit || u32charLookup >= (kU32LowRangeLimit + kU32HiRangeLen)) { in normalizeOptCaseFoldU32Char()
935 trieValue = nfTrieHi[u32charLookup >> kNFTrieHiShift]; in normalizeOptCaseFoldU32Char()
949 …trieValue = nfTrieMid[trieValue & kNextIndexValueMask][(u32charLookup >> kNFTrieMidShift) & kNFTri… in normalizeOptCaseFoldU32Char()
960 uint16_t testBit = (uint16_t)(1 << (u32charLookup & kNFTrieLoMask)); in normalizeOptCaseFoldU32Char()
975 trieValue = nfTrieLo[trieValue & kNextIndexValueMask][u32charLookup & kNFTrieLoMask]; in normalizeOptCaseFoldU32Char()
1117 int32_t u32charLookup = u32char; in getCombClassU32Char() local
1118 if (u32charLookup >= kU32LowRangeLimit) { in getCombClassU32Char()
1119 u32charLookup -= (kU32HiRangeStart - kU32LowRangeLimit); in getCombClassU32Char()
1127 trieValue = nfTrieHi[u32charLookup >> kNFTrieHiShift]; in getCombClassU32Char()
1132 …trieValue = nfTrieMid[trieValue & kNextIndexValueMask][(u32charLookup >> kNFTrieMidShift) & kNFTri… in getCombClassU32Char()
1140 trieValue = nfTrieLo[trieValue & kNextIndexValueMask][u32charLookup & kNFTrieMidMask]; in getCombClassU32Char()