Home
last modified time | relevance | path

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

/external/icu/android_icu4j/src/main/tests/android/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()
/external/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()
/external/python/cpython2/Modules/
Dunicodedata.c540 int SIndex = code - SBase; in nfd_nfkd() local
541 int L = LBase + SIndex / NCount; in nfd_nfkd()
542 int V = VBase + (SIndex % NCount) / TCount; in nfd_nfkd()
543 int T = TBase + SIndex % TCount; in nfd_nfkd()
914 int SIndex = code - SBase; in _getucname() local
915 int L = SIndex / NCount; in _getucname()
916 int V = (SIndex % NCount) / TCount; in _getucname()
917 int T = SIndex % TCount; in _getucname()
/external/python/cpython3/Modules/
Dunicodedata.c540 int SIndex = code - SBase; in nfd_nfkd() local
541 int L = LBase + SIndex / NCount; in nfd_nfkd()
542 int V = VBase + (SIndex % NCount) / TCount; in nfd_nfkd()
543 int T = TBase + SIndex % TCount; in nfd_nfkd()
975 int SIndex = code - SBase; in _getucname() local
976 int L = SIndex / NCount; in _getucname()
977 int V = (SIndex % NCount) / TCount; in _getucname()
978 int T = SIndex % TCount; in _getucname()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
DARMLoadStoreOptimizer.cpp994 unsigned SIndex = 0; in FormCandidates() local
998 const MachineInstr *MI = MemOps[SIndex].MI; in FormCandidates()
999 int Offset = MemOps[SIndex].Offset; in FormCandidates()
1004 unsigned Latest = SIndex; in FormCandidates()
1005 unsigned Earliest = SIndex; in FormCandidates()
1031 for (unsigned I = SIndex+1; I < EIndex; ++I, ++Count) { in FormCandidates()
1075 for (unsigned C = SIndex, CE = SIndex + Count; C < CE; ++C) in FormCandidates()
1077 Candidate->LatestMIIdx = Latest - SIndex; in FormCandidates()
1078 Candidate->EarliestMIIdx = Earliest - SIndex; in FormCandidates()
1086 SIndex += Count; in FormCandidates()
[all …]
/external/llvm/lib/Target/ARM/
DARMLoadStoreOptimizer.cpp962 unsigned SIndex = 0; in FormCandidates() local
966 const MachineInstr *MI = MemOps[SIndex].MI; in FormCandidates()
967 int Offset = MemOps[SIndex].Offset; in FormCandidates()
971 unsigned Latest = SIndex; in FormCandidates()
972 unsigned Earliest = SIndex; in FormCandidates()
998 for (unsigned I = SIndex+1; I < EIndex; ++I, ++Count) { in FormCandidates()
1041 for (unsigned C = SIndex, CE = SIndex + Count; C < CE; ++C) in FormCandidates()
1043 Candidate->LatestMIIdx = Latest - SIndex; in FormCandidates()
1044 Candidate->EarliestMIIdx = Earliest - SIndex; in FormCandidates()
1052 SIndex += Count; in FormCandidates()
[all …]
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
DARMLoadStoreOptimizer.cpp108 void MergeLDR_STR(MachineBasicBlock &MBB, unsigned SIndex, unsigned Base,
438 ARMLoadStoreOpt::MergeLDR_STR(MachineBasicBlock &MBB, unsigned SIndex, in MergeLDR_STR() argument
444 int Offset = MemOps[SIndex].Offset; in MergeLDR_STR()
446 unsigned insertAfter = SIndex; in MergeLDR_STR()
447 MachineBasicBlock::iterator Loc = MemOps[SIndex].MBBI; in MergeLDR_STR()
474 for (unsigned i = SIndex+1, e = MemOps.size(); i != e; ++i) { in MergeLDR_STR()
492 MergeOpsUpdate(MBB, MemOps, SIndex, i, insertAfter, SOffset, in MergeLDR_STR()
504 MergeOpsUpdate(MBB, MemOps, SIndex, MemOps.size(), insertAfter, SOffset, in MergeLDR_STR()