Searched refs:SBase (Results 1 - 7 of 7) sorted by relevance

/external/harfbuzz_ng/src/
H A Dhb-ot-shape-complex-hangul.cc104 #define SBase 0xAC00u macro
111 #define isCombinedS(u) (hb_in_range<hb_codepoint_t> ((u), SBase, SBase+SCount-1))
268 hb_codepoint_t s = SBase + (l - LBase) * NCount + (v - VBase) * TCount + tindex;
307 unsigned int lindex = (s - SBase) / NCount;
308 unsigned int nindex = (s - SBase) % NCount;
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
H A DNormalizerBuilder.java234 first = (char)(SBase + SIndex - TIndex);
241 value = SIndex + SBase;
252 SBase = 0xAC00, LBase = 0x1100, VBase = 0x1161, TBase = 0x11A7, field in class:NormalizerBuilder
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
H A DNormalizerBuilder.java233 first = (char)(SBase + SIndex - TIndex);
240 value = SIndex + SBase;
251 SBase = 0xAC00, LBase = 0x1100, VBase = 0x1161, TBase = 0x11A7, field in class:NormalizerBuilder
/external/python/cpython2/Modules/
H A Dunicodedata.c486 #define SBase 0xAC00 macro
539 if (SBase <= code && code < (SBase+SCount)) {
540 int SIndex = code - SBase;
671 code = SBase + (LIndex*VCount+VIndex)*TCount;
908 if (SBase <= code && code < SBase+SCount) {
910 int SIndex = code - SBase;
1032 *code = SBase + (L*VCount+V)*TCount + T;
/external/python/cpython3/Modules/
H A Dunicodedata.c475 #define SBase 0xAC00 macro
539 if (SBase <= code && code < (SBase+SCount)) {
540 int SIndex = code - SBase;
688 code = SBase + (LIndex*VCount+VIndex)*TCount;
971 if (SBase <= code && code < SBase+SCount) {
973 int SIndex = code - SBase;
1115 *code = SBase + (L*VCount+V)*TCount + T;
/external/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.cpp124 bool SelectSMRD(SDValue Addr, SDValue &SBase, SDValue &Offset,
126 bool SelectSMRDImm(SDValue Addr, SDValue &SBase, SDValue &Offset) const;
127 bool SelectSMRDImm32(SDValue Addr, SDValue &SBase, SDValue &Offset) const;
128 bool SelectSMRDSgpr(SDValue Addr, SDValue &SBase, SDValue &Offset) const;
1123 bool AMDGPUDAGToDAGISel::SelectSMRD(SDValue Addr, SDValue &SBase, argument
1132 SBase = N0;
1136 SBase = Addr;
1142 bool AMDGPUDAGToDAGISel::SelectSMRDImm(SDValue Addr, SDValue &SBase, argument
1145 return SelectSMRD(Addr, SBase, Offset, Imm) && Imm;
1148 bool AMDGPUDAGToDAGISel::SelectSMRDImm32(SDValue Addr, SDValue &SBase, argument
1161 SelectSMRDSgpr(SDValue Addr, SDValue &SBase, SDValue &Offset) const argument
[all...]
H A DSIInstrInfo.cpp2199 MachineOperand *SBase = getNamedOperand(MI, AMDGPU::OpName::sbase);
2200 if (SBase && !RI.isSGPRClass(MRI.getRegClass(SBase->getReg()))) {
2201 unsigned SGPR = readlaneVGPRToSGPR(SBase->getReg(), MI, MRI);
2202 SBase->setReg(SGPR);

Completed in 207 milliseconds