Home
last modified time | relevance | path

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

/xnu-8020.101.4/bsd/vfs/
H A Dvfs_unicode.c876 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()
[all …]