/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
H A D | LowerSwitch.cpp | 53 int64_t Low, High; member 64 // then check if the Low field is <= R.Low. If so, we in IsInRanges() 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 in switchConvert() 505 APInt Low = Cases.front().Low->getValue(); processSwitchInst() local 526 int64_t Low = I.Low->getSExtValue(); processSwitchInst() local [all...] |
/third_party/lzma/CS/7zip/Compress/RangeCoder/ |
H A D | RangeCoder.cs | 11 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 in EncodeDirectBits() [all...] |
H A D | RangeCoderBit.cs | 37 encoder.Low += newBound;
in Encode()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A 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 in buildJumpTable() 378 APInt Low = Clusters[First].Low->getValue(); buildBitTests() local [all...] |
/third_party/lzma/Java/SevenZip/Compression/RangeCoder/ |
H A D | Encoder.java | 14 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/ |
H A 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; member in Ice::CaseCluster
|
H A 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/ |
H A 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/ |
H A 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() [all...] |
/third_party/lzma/C/ |
H A D | Ppmd7Enc.c | 17 R->Low = 0;
in Ppmd7z_Init_RangeEnc() 26 if ((UInt32)R->Low < (UInt32)0xFF000000 || (unsigned)(R->Low >> 32) != 0)
in Ppmd7z_RangeEnc_ShiftLow() 31 IByteOut_Write(R->Stream, (Byte)(temp + (Byte)(R->Low >> 32)));
in Ppmd7z_RangeEnc_ShiftLow() 35 R->Cache = (Byte)((UInt32)R->Low >> 24);
in Ppmd7z_RangeEnc_ShiftLow() 38 R->Low = (UInt32)((UInt32)R->Low << 8);
in Ppmd7z_RangeEnc_ShiftLow() 52 R->Low += start * R->Range; \
61 R->Low += start * R->Range;
in Ppmd7z_RangeEnc_Encode() 186 R->Low in Ppmd7z_EncodeSymbol() [all...] |
H A D | Ppmd7.h | 57 UInt32 Low;
member 67 UInt64 Low;
member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
H A 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/qrcodegen/rust/examples/ |
H A 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/Transforms/IPO/ |
H A 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() 522 // Low is now the last element smaller than or equal to Indices. This means 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 ! in markIndicesSafe() [all...] |
/third_party/qrcodegen/rust-no-heap/examples/ |
H A D | qrcodegen-demo.rs | 51 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/ |
H A D | SkPanose.h | 80 Low = 4, member in SkPanose::Data::TextAndDisplay::Contrast 234 Low = 4, member in SkPanose::Data::Script::Contrast 294 Low = 3, member in SkPanose::Data::Script::XAscent 351 Low = 4, member in SkPanose::Data::Decorative::Contrast
|
/third_party/skia/third_party/externals/angle2/src/common/ |
H A D | PackedEGLEnums_autogen.cpp | 121 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/Hexagon/ |
H A 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()
|
H A D | HexagonBitSimplify.cpp | 1750 bool Low; // Low/High halfword. 1805 bool Low = false; 1846 Low = true; 1850 Low = false; 1854 Low = true; 1858 Low = false; 1866 RH.Low = Low; 1894 if (H1.Reg != L1.Reg || H1.Sub != L1.Sub || H1.Low || !L [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/ |
H A D | NVVMIntrRange.cpp | 66 // Adds the passed-in [Low,High) range information as metadata to the 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/skia/third_party/externals/oboe/src/common/ |
H A D | DataConversionFlowGraph.cpp | 48 case SampleRateConversionQuality::Low: in convertOboeSRQualityToMCR() 49 return MultiChannelResampler::Quality::Low; in convertOboeSRQualityToMCR()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
H A D | CommandProcessor.cpp | 1291 mPriorities[egl::ContextPriority::Low] = other.mPriorities[egl::ContextPriority::Low]; in operator =() 1350 // If at least 3 queues, Low has its own queue. Adjust Low priority. in initializeQueueMap() 1354 &queueMap[egl::ContextPriority::Low]); in initializeQueueMap() 1355 queueMap.mPriorities[egl::ContextPriority::Low] = egl::ContextPriority::Low; in initializeQueueMap() 1359 queueMap[egl::ContextPriority::Low] = queueMap[egl::ContextPriority::Medium]; in initializeQueueMap() 1360 queueMap.mPriorities[egl::ContextPriority::Low] = egl::ContextPriority::Medium; in initializeQueueMap()
|
/third_party/skia/third_party/externals/oboe/include/oboe/ |
H A D | AudioStreamBase.h | 214 case SampleRateConversionQuality::Low: in isValidConfig()
|
/third_party/lzma/C/Util/7z/ |
H A D | 7zMain.c | 424 ft->dwLowDateTime = (DWORD)(t->Low);
in NtfsFileTime_to_FILETIME() 434 // UInt64 v64 = nt->Low | ((UInt64)nt->High << 32);
in ConvertFileTimeToString() 804 mtime.dwLowDateTime = (DWORD)(t->Low);
in main() 813 ctime.dwLowDateTime = (DWORD)(t->Low);
in main()
|
/third_party/vixl/test/aarch64/examples/ |
H A D | test-examples.cc | 509 #define CHECKBOUNDS_DOTEST(Value, Low, High) \ 513 simulator.WriteXRegister(1, Low); \ 516 VIXL_CHECK(regs.xreg(0) == ((Low <= Value) && (Value <= High))); \
|