/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | LowerSwitch.cpp | 53 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/ |
D | SwitchLoweringUtils.cpp | 23 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/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceSwitchLowering.h | 44 : 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
|
D | IceSwitchLowering.cpp | 38 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/ |
D | IntrinsicInst.cpp | 71 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/ |
D | SwitchLoweringUtils.h | 39 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/qrcodegen/rust/examples/ |
D | qrcodegen-demo.rs | 50 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/ |
D | SystemZMachineFunctionInfo.h | 50 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/ |
D | ArgumentPromotion.cpp | 518 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/grpc/src/csharp/Grpc.Tools/ |
D | DepFileUtil.cs | 83 log.LogMessage(MessageImportance.Low, in ReadDependencyInputs() 287 log.LogMessage(MessageImportance.Low, $"Using dependency file {filename}"); in ReadDepFileLines() 299 log.LogMessage(MessageImportance.Low, $"Skipping {filename}: {ex.Message}"); in ReadDepFileLines()
|
/third_party/flutter/skia/src/sfnt/ |
D | SkPanose.h | 80 Low = 4, enumerator 234 Low = 4, enumerator 294 Low = 3, enumerator 351 Low = 4, enumerator
|
/third_party/skia/src/sfnt/ |
D | SkPanose.h | 80 Low = 4, enumerator 234 Low = 4, enumerator 294 Low = 3, enumerator 351 Low = 4, enumerator
|
/third_party/typescript/src/compiler/ |
D | sys.ts | 49 Low = 250 61 Low: number; 68 [PollingInterval.Low]: levels.Low, 74 const defaultChunkLevels: Levels = { Low: 32, Medium: 64, High: 256 }; 147 const lowPollingIntervalQueue = createPollingIntervalQueue(PollingInterval.Low); 194 …pollQueue(changedFilesInLastPoll, PollingInterval.Low, /*pollIndex*/ 0, changedFilesInLastPoll.len… 201 scheduleNextPoll(PollingInterval.Low); 240 addToPollingIntervalQueue(watchedFile, PollingInterval.Low); 245 …addToPollingIntervalQueue(watchedFile, pollingInterval === PollingInterval.Low ? PollingInterval.M… 276 case PollingInterval.Low: [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonAsmPrinter.cpp | 464 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()
|
/third_party/skia/third_party/externals/angle2/src/common/ |
D | PackedEGLEnums_autogen.cpp | 121 return ContextPriority::Low; in FromEGLenum() 135 case ContextPriority::Low: in ToEGLenum() 151 case ContextPriority::Low: in operator <<()
|
/third_party/grpc/examples/csharp/HelloworldUnity/ProjectSettings/ |
D | QualitySettings.asset | 10 name: Very Low 38 name: Low
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/ |
D | NVVMIntrRange.cpp | 68 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/grpc/src/csharp/Grpc.Core/ |
D | CompressionLevel.cs | 36 Low, enumerator
|
/third_party/flutter/skia/third_party/externals/icu/source/data/translit/ |
D | blt_blt_FONIPA.txt | 68 $LO $W? { \uAAC1 ($V3 $F?)} → $1 ˨˩; # Tone class 3: Low-falling tone 75 $LO $W? $V12 { \uAAC1 ($F?)} → $1 ˨˩; # Tone class 3: Low-falling tone 79 {($LO $W? $V123 $F?)} $NOT_IPA_TONE → $1 ˨; # Tone class 1: Low-mid tone.
|
/third_party/icu/icu4c/source/data/translit/ |
D | blt_blt_FONIPA.txt | 69 $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/ |
D | blt_blt_FONIPA.txt | 69 $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/flutter/skia/third_party/externals/icu/source/data/lang/ |
D | en_GB.txt | 6 nds_NL{"West Low German"}
|
/third_party/typescript/src/testRunner/unittests/tsserver/ |
D | watchEnvironment.ts | 343 pollingInterval: PollingInterval.Low 399 … pollingInterval: contains(filePaths, fileName) ? PollingInterval.Low : PollingInterval.Medium 436 pollingInterval: PollingInterval.Low 501 pollingInterval: PollingInterval.Low 561 … pollingInterval: contains(filePaths, fileName) ? PollingInterval.Low : PollingInterval.Medium 786 pollingInterval: PollingInterval.Low
|
/third_party/skia/third_party/externals/oboe/src/common/ |
D | DataConversionFlowGraph.cpp | 48 case SampleRateConversionQuality::Low: in convertOboeSRQualityToMCR() 49 return MultiChannelResampler::Quality::Low; in convertOboeSRQualityToMCR()
|
/third_party/boost/libs/math/doc/overview/ |
D | issues.qbk | 9 Items labeled "Low Priority" should probably be investigated at 34 (Low Priority). 47 be implemented using Carlson's integrals (Low Priority).
|