Home
last modified time | relevance | path

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

/third_party/glib/glib/
Dgunidecomp.c169 gint SIndex = s - SBase; in decompose_hangul() local
170 gint TIndex = SIndex % TCount; in decompose_hangul()
174 r[0] = LBase + SIndex / NCount; in decompose_hangul()
175 r[1] = VBase + (SIndex % NCount) / TCount; in decompose_hangul()
290 gint SIndex = a - SBase; in combine_hangul() local
301 else if (0 <= SIndex && SIndex < SCount && (SIndex % TCount) == 0 in combine_hangul()
562 gint SIndex, TIndex; in decompose_hangul_step() local
567 SIndex = ch - SBase; in decompose_hangul_step()
568 TIndex = SIndex % TCount; in decompose_hangul_step()
579 *a = LBase + SIndex / NCount; in decompose_hangul_step()
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/normalizer/
DNormalizerBuilder.java230 for (int SIndex = 0; SIndex < SCount; ++SIndex) { in buildDecompositionTables()
231 int TIndex = SIndex % TCount; in buildDecompositionTables()
234 first = (char)(SBase + SIndex - TIndex); in buildDecompositionTables()
237 first = (char)(LBase + SIndex / NCount); in buildDecompositionTables()
238 second = (char)(VBase + (SIndex % NCount) / TCount); in buildDecompositionTables()
241 value = SIndex + SBase; in buildDecompositionTables()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
DNormalizerBuilder.java229 for (int SIndex = 0; SIndex < SCount; ++SIndex) { in buildDecompositionTables()
230 int TIndex = SIndex % TCount; in buildDecompositionTables()
233 first = (char)(SBase + SIndex - TIndex); in buildDecompositionTables()
236 first = (char)(LBase + SIndex / NCount); in buildDecompositionTables()
237 second = (char)(VBase + (SIndex % NCount) / TCount); in buildDecompositionTables()
240 value = SIndex + SBase; in buildDecompositionTables()
/third_party/python/Modules/
Dunicodedata.c553 int SIndex = code - SBase; in nfd_nfkd() local
554 int L = LBase + SIndex / NCount; in nfd_nfkd()
555 int V = VBase + (SIndex % NCount) / TCount; in nfd_nfkd()
556 int T = TBase + SIndex % TCount; in nfd_nfkd()
1093 int SIndex = code - SBase; in _getucname() local
1094 int L = SIndex / NCount; in _getucname()
1095 int V = (SIndex % NCount) / TCount; in _getucname()
1096 int T = SIndex % TCount; in _getucname()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMLoadStoreOptimizer.cpp1006 unsigned SIndex = 0; in FormCandidates() local
1010 const MachineInstr *MI = MemOps[SIndex].MI; in FormCandidates()
1011 int Offset = MemOps[SIndex].Offset; in FormCandidates()
1016 unsigned Latest = SIndex; in FormCandidates()
1017 unsigned Earliest = SIndex; in FormCandidates()
1055 for (unsigned I = SIndex+1; I < EIndex; ++I, ++Count) { in FormCandidates()
1101 for (unsigned C = SIndex, CE = SIndex + Count; C < CE; ++C) in FormCandidates()
1103 Candidate->LatestMIIdx = Latest - SIndex; in FormCandidates()
1104 Candidate->EarliestMIIdx = Earliest - SIndex; in FormCandidates()
1112 SIndex += Count; in FormCandidates()
[all …]