Home
last modified time | relevance | path

Searched refs:Low (Results 1 – 25 of 312) sorted by relevance

12345678910>>...13

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DLowerSwitch.cpp53 int64_t Low, High; member
68 return I != Ranges.end() && I->Low <= R.Low; in IsInRanges()
90 ConstantInt* Low; member
95 : Low(low), High(high), BB(bb) {} in CaseRange()
122 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low); in operator ()()
192 O << "[" << B->Low->getValue() << ", " << B->High->getValue() << "]"; in operator <<()
262 if (Begin->Low == LowerBound && Begin->High == UpperBound) { in switchConvert()
279 LLVM_DEBUG(dbgs() << "Pivot ==> [" << Pivot.Low->getValue() << ", " in switchConvert()
286 ConstantInt *NewLowerBound = Pivot.Low; in switchConvert()
313 Val, Pivot.Low, "Pivot"); in switchConvert()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DSwitchLoweringUtils.cpp23 const APInt &LowCase = Clusters[First].Low->getValue(); in getJumpTableRange()
54 assert(Clusters[i - 1].High->getValue().slt(Clusters[i].Low->getValue())); in findJumpTables()
73 const APInt &Lo = Clusters[i].Low->getValue(); in findJumpTables()
206 const APInt &Low = Clusters[I].Low->getValue(); in buildJumpTable() local
208 NumCmps += (Low == High) ? 1 : 2; in buildJumpTable()
212 assert(PreviousHigh.slt(Low)); in buildJumpTable()
213 uint64_t Gap = (Low - PreviousHigh).getLimitedValue() - 1; in buildJumpTable()
217 uint64_t ClusterSize = (High - Low).getLimitedValue() + 1; in buildJumpTable()
225 Clusters[First].Low->getValue(), in buildJumpTable()
252 JumpTableHeader JTH(Clusters[First].Low->getValue(), in buildJumpTable()
[all …]
/third_party/lzma/CS/7zip/Compress/RangeCoder/
DRangeCoder.cs11 public UInt64 Low; field in SevenZip.Compression.RangeCoder.Encoder
32 Low = 0; in Init()
56 Low += start * (Range /= total); in Encode()
67 if ((uint)Low < (uint)0xFF000000 || (uint)(Low >> 32) == 1) in ShiftLow()
72 Stream.WriteByte((byte)(temp + (Low >> 32))); in ShiftLow()
76 _cache = (byte)(((uint)Low) >> 24); in ShiftLow()
79 Low = ((uint)Low) << 8; in ShiftLow()
88 Low += Range; in EncodeDirectBits()
104 Low += newBound; in EncodeBit()
/third_party/lzma/Java/SevenZip/Compression/RangeCoder/
DEncoder.java14 long Low; field in Encoder
34 Low = 0; in Init()
53 int LowHi = (int)(Low >>> 32); in ShiftLow()
54 if (LowHi != 0 || Low < 0xFF000000L) in ShiftLow()
64 _cache = (((int)Low) >>> 24); in ShiftLow()
67 Low = (Low & 0xFFFFFF) << 8; in ShiftLow()
76 Low += Range; in EncodeDirectBits()
113 Low += (newBound & 0xFFFFFFFFL); in Encode()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceSwitchLowering.h44 : Kind(Range), Low(Value), High(Value), Target(Target) {} in CaseCluster()
46 CaseCluster(uint64_t Low, uint64_t High, InstJumpTable *JT) in CaseCluster() argument
47 : Kind(JumpTable), Low(Low), High(High), JT(JT) {} in CaseCluster()
50 uint64_t getLow() const { return Low; } in getLow()
61 bool isUnitRange() const { return Low == High; } in isUnitRange()
62 bool isPairRange() const { return Low == High - 1; } in isPairRange()
70 uint64_t Low; variable
DIceSwitchLowering.cpp38 return x.High < y.Low; in clusterizeSwitch()
65 const uint64_t MinValue = CaseClusters.front().Low; in clusterizeSwitch()
83 for (uint64_t I = Case.Low; I < Case.High; ++I) in clusterizeSwitch()
99 this->Target == New.Target && this->High + 1 == New.Low; in tryAppend()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DIntrinsicInst.cpp71 const char *const *Low = NameTable.begin(); in lookupLLVMIntrinsicByName() local
73 const char *const *LastLow = Low; in lookupLLVMIntrinsicByName()
74 while (CmpEnd < Name.size() && High - Low > 0) { in lookupLLVMIntrinsicByName()
81 LastLow = Low; in lookupLLVMIntrinsicByName()
82 std::tie(Low, High) = std::equal_range(Low, High, Name.data(), Cmp); in lookupLLVMIntrinsicByName()
84 if (High - Low > 0) in lookupLLVMIntrinsicByName()
85 LastLow = Low; in lookupLLVMIntrinsicByName()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DSwitchLoweringUtils.h39 const ConstantInt *Low, *High; member
47 static CaseCluster range(const ConstantInt *Low, const ConstantInt *High, in range()
51 C.Low = Low; in range()
58 static CaseCluster jumpTable(const ConstantInt *Low, const ConstantInt *High, in jumpTable()
62 C.Low = Low; in jumpTable()
69 static CaseCluster bitTests(const ConstantInt *Low, const ConstantInt *High, in bitTests()
73 C.Low = Low; in bitTests()
/third_party/lzma/C/
DPpmd7Enc.c17 R->Low = 0; in Ppmd7z_Init_RangeEnc()
26 if ((UInt32)R->Low < (UInt32)0xFF000000 || (unsigned)(R->Low >> 32) != 0) in RangeEnc_ShiftLow()
31 IByteOut_Write(R->Stream, (Byte)(temp + (Byte)(R->Low >> 32))); in RangeEnc_ShiftLow()
35 R->Cache = (Byte)((UInt32)R->Low >> 24); in RangeEnc_ShiftLow()
38 R->Low = (UInt32)((UInt32)R->Low << 8); in RangeEnc_ShiftLow()
61 R->Low += start * R->Range; in RangeEnc_Encode()
186 R->Low += bound; in Ppmd7z_EncodeSymbol()
DPpmd7.h57 UInt32 Low; member
67 UInt64 Low; member
/third_party/qrcodegen/rust/examples/
Dqrcodegen-demo.rs50 let errcorlvl: QrCodeEcc = QrCodeEcc::Low; // Error correction level in do_basic_demo()
91 let qr = QrCode::encode_text(&[silver0, silver1].concat(), QrCodeEcc::Low).unwrap(); in do_segment_demo()
98 let qr = QrCode::encode_segments(&segs, QrCodeEcc::Low).unwrap(); in do_segment_demo()
105 let qr = QrCode::encode_text(&[golden0, golden1, golden2].concat(), QrCodeEcc::Low).unwrap(); in do_segment_demo()
113 let qr = QrCode::encode_segments(&segs, QrCodeEcc::Low).unwrap(); in do_segment_demo()
118 let qr = QrCode::encode_text(madoka, QrCodeEcc::Low).unwrap(); in do_segment_demo()
136 let qr = QrCode::encode_segments(&segs, QrCodeEcc::Low).unwrap(); in do_segment_demo()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
DSystemZMachineFunctionInfo.h50 void setSpillGPRRegs(unsigned Low, unsigned High, unsigned Offs) { in setSpillGPRRegs() argument
51 SpillGPRRegs.LowGPR = Low; in setSpillGPRRegs()
60 void setRestoreGPRRegs(unsigned Low, unsigned High, unsigned Offs) { in setRestoreGPRRegs() argument
61 RestoreGPRRegs.LowGPR = Low; in setRestoreGPRRegs()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DArgumentPromotion.cpp518 std::set<IndicesVector>::iterator Low; in prefixIn() local
519 Low = Set.upper_bound(Indices); in prefixIn()
520 if (Low != Set.begin()) in prefixIn()
521 Low--; in prefixIn()
527 return Low != Set.end() && isPrefix(*Low, Indices); in prefixIn()
537 std::set<IndicesVector>::iterator Low; in markIndicesSafe() local
538 Low = Safe.upper_bound(ToMark); in markIndicesSafe()
540 if (Low != Safe.begin()) in markIndicesSafe()
541 Low--; in markIndicesSafe()
545 if (Low != Safe.end()) { in markIndicesSafe()
[all …]
/third_party/qrcodegen/rust-no-heap/examples/
Dqrcodegen-demo.rs51 let errcorlvl: QrCodeEcc = QrCodeEcc::Low; // Error correction level in do_basic_demo()
117 QrCodeEcc::Low, Version::MIN, Version::MAX, None, true).unwrap(); in do_segment_demo()
126 &segs, &mut outbuffer, QrCodeEcc::Low, Version::MIN, Version::MAX, true).unwrap(); in do_segment_demo()
139 QrCodeEcc::Low, Version::MIN, Version::MAX, None, true).unwrap(); in do_segment_demo()
149 &segs, &mut outbuffer, QrCodeEcc::Low, Version::MIN, Version::MAX, true).unwrap(); in do_segment_demo()
159 QrCodeEcc::Low, Version::MIN, Version::MAX, None, true).unwrap(); in do_segment_demo()
181 &segs, &mut outbuffer, QrCodeEcc::Low, Version::MIN, Version::MAX, true).unwrap(); in do_segment_demo()
/third_party/skia/src/sfnt/
DSkPanose.h80 Low = 4, enumerator
234 Low = 4, enumerator
294 Low = 3, enumerator
351 Low = 4, enumerator
/third_party/typescript/src/compiler/
Dsys.ts48 Low = 250
65 Low: number;
72 [PollingInterval.Low]: levels.Low,
78 const defaultChunkLevels: Levels = { Low: 32, Medium: 64, High: 256 };
205 const lowPollingIntervalQueue = createPollingIntervalQueue(PollingInterval.Low);
252 …pollQueue(changedFilesInLastPoll, PollingInterval.Low, /*pollIndex*/ 0, changedFilesInLastPoll.len…
259 scheduleNextPoll(PollingInterval.Low);
288 addToPollingIntervalQueue(watchedFile, PollingInterval.Low);
293 …addToPollingIntervalQueue(watchedFile, pollingInterval === PollingInterval.Low ? PollingInterval.M…
300 case PollingInterval.Low:
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonAsmPrinter.cpp464 unsigned Low = RI->getSubReg(MO1.getReg(), Hexagon::isub_lo); in HexagonProcessInstruction() local
467 TmpInst.addOperand(MCOperand::createReg(Low)); in HexagonProcessInstruction()
541 unsigned Low = RI->getSubReg(MO.getReg(), Hexagon::isub_lo); in HexagonProcessInstruction() local
544 MappedInst.addOperand(MCOperand::createReg(Low)); in HexagonProcessInstruction()
553 unsigned Low = RI->getSubReg(MO.getReg(), Hexagon::isub_lo); in HexagonProcessInstruction() local
556 MappedInst.addOperand(MCOperand::createReg(Low)); in HexagonProcessInstruction()
567 unsigned Low = RI->getSubReg(MO.getReg(), Hexagon::isub_lo); in HexagonProcessInstruction() local
570 MappedInst.addOperand(MCOperand::createReg(Low)); in HexagonProcessInstruction()
DHexagonBitSimplify.cpp1750 bool Low; // Low/High halfword. member
1805 bool Low = false; in matchHalf() local
1846 Low = true; in matchHalf()
1850 Low = false; in matchHalf()
1854 Low = true; in matchHalf()
1858 Low = false; in matchHalf()
1866 RH.Low = Low; in matchHalf()
1894 if (H1.Reg != L1.Reg || H1.Sub != L1.Sub || H1.Low || !L1.Low) in matchPackhl()
1896 if (H2.Reg != L2.Reg || H2.Sub != L2.Sub || H2.Low || !L2.Low) in matchPackhl()
1927 if (H.Low) in genStoreUpperHalf()
[all …]
/third_party/skia/third_party/externals/angle2/src/common/
DPackedEGLEnums_autogen.cpp121 return ContextPriority::Low; in FromEGLenum()
135 case ContextPriority::Low: in ToEGLenum()
151 case ContextPriority::Low: in operator <<()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
DNVVMIntrRange.cpp68 static bool addRangeMetadata(uint64_t Low, uint64_t High, CallInst *C) { in addRangeMetadata() argument
76 ConstantAsMetadata::get(ConstantInt::get(Int32Ty, Low)), in addRangeMetadata()
/third_party/icu/icu4c/source/data/translit/
Dblt_blt_FONIPA.txt69 $LO $W? { \uAAC1 ($V3 $F?)} → $1 ˨˩; # Tone class 3: Low-falling tone
76 $LO $W? $V12 { \uAAC1 ($F?)} → $1 ˨˩; # Tone class 3: Low-falling tone
80 {($LO $W? $V123 $F?)} $NOT_IPA_TONE → $1 ˨; # Tone class 1: Low-mid tone.
/third_party/skia/third_party/externals/icu/source/data/translit/
Dblt_blt_FONIPA.txt69 $LO $W? { \uAAC1 ($V3 $F?)} → $1 ˨˩; # Tone class 3: Low-falling tone
76 $LO $W? $V12 { \uAAC1 ($F?)} → $1 ˨˩; # Tone class 3: Low-falling tone
80 {($LO $W? $V123 $F?)} $NOT_IPA_TONE → $1 ˨; # Tone class 1: Low-mid tone.
/third_party/skia/third_party/externals/oboe/src/common/
DDataConversionFlowGraph.cpp48 case SampleRateConversionQuality::Low: in convertOboeSRQualityToMCR()
49 return MultiChannelResampler::Quality::Low; in convertOboeSRQualityToMCR()
/third_party/mbedtls/tests/suites/
Dtest_suite_error.data9 Low and high error
/third_party/skia/third_party/externals/icu/source/data/lang/
Den_001.txt11 nds_NL{"West Low German"}

12345678910>>...13