Searched refs:Low (Results 1 - 25 of 63) sorted by relevance

123

/external/llvm/lib/IR/
H A DIntrinsicInst.cpp62 const char *const *Low = NameTable.begin(); local
64 const char *const *LastLow = Low;
65 while (CmpEnd < Name.size() && High - Low > 0) {
72 LastLow = Low;
73 std::tie(Low, High) = std::equal_range(Low, High, Name.data(), Cmp);
75 if (High - Low > 0)
76 LastLow = Low;
/external/lzma/Java/SevenZip/Compression/RangeCoder/
H A DEncoder.java14 long Low; field in class:Encoder
34 Low = 0;
53 int LowHi = (int)(Low >>> 32);
54 if (LowHi != 0 || Low < 0xFF000000L)
64 _cache = (((int)Low) >>> 24);
67 Low = (Low & 0xFFFFFF) << 8;
76 Low += Range;
113 Low += (newBound & 0xFFFFFFFFL);
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/runtime/
H A Drtstr.c114 UINTN High, Low; local
117 Low = BcdValue - (High << 4);
119 return ((UINT8)(Low + (High * 10)));
132 UINTN High, Low; local
135 Low = DecValue - (High * 10);
137 return ((UINT8)(Low + (High << 4)));
/external/lzma/CPP/7zip/Compress/
H A DRangeCoder.h21 UInt64 Low; member in class:NCompress::NRangeCoder::CEncoder
30 Low = 0;
38 // Low += 1;
47 Low += start * (Range /= total);
58 if ((UInt32)Low < (UInt32)0xFF000000 || (unsigned)(Low >> 32) != 0)
63 Stream.WriteByte((Byte)(temp + (Byte)(Low >> 32)));
67 _cache = (Byte)((UInt32)Low >> 24);
70 Low = (UInt32)Low <<
[all...]
H A DRangeCoderBit.h60 encoder->Low += newBound;
/external/lzma/CS/7zip/Compress/RangeCoder/
H A DRangeCoder.cs11 public UInt64 Low; field in class:SevenZip.Compression.RangeCoder.Encoder
32 Low = 0;
56 Low += start * (Range /= total);
67 if ((uint)Low < (uint)0xFF000000 || (uint)(Low >> 32) == 1)
72 Stream.WriteByte((byte)(temp + (Low >> 32)));
76 _cache = (byte)(((uint)Low) >> 24);
79 Low = ((uint)Low) << 8;
88 Low
[all...]
H A DRangeCoderBit.cs37 encoder.Low += newBound;
/external/clang/test/Index/
H A Dcomplete-type-factors.m8 Low,
32 [A method:Red priority:Low];
44 // CHECK-CC1: EnumConstantDecl:{ResultType enum Priority}{TypedText Low} (32)
59 // CHECK-CC2: EnumConstantDecl:{ResultType enum Priority}{TypedText Low} (65)
75 // CHECK-CC3: EnumConstantDecl:{ResultType enum Priority}{TypedText Low} (16)
91 // CHECK-CC4: EnumConstantDecl:{ResultType enum Priority}{TypedText Low} (65)
109 // CHECK-CC6: EnumConstantDecl:{ResultType enum Priority}{TypedText Low} (65)
123 // CHECK-CC7: EnumConstantDecl:{ResultType enum Priority}{TypedText Low} (65)
135 // CHECK-CC8: EnumConstantDecl:{ResultType enum Priority}{TypedText Low} (16)
/external/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp36 int64_t Low, High; member in struct:__anon13437::IntRange
44 // then check if the Low field is <= R.Low. If so, we
49 return I != Ranges.end() && I->Low <= R.Low;
63 ConstantInt* Low; member in struct:__anon13437::LowerSwitch::CaseRange
68 : Low(low), High(high), BB(bb) {}
92 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
145 O << *B->Low << " -" << *B->High;
212 if (Begin->Low
440 int64_t Low = I.Low->getSExtValue(); local
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DLowerSwitch.cpp50 Constant* Low; member in struct:__anon18996::LowerSwitch::CaseRange
55 Low(low), High(high), BB(bb) { }
76 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
120 O << *B->Low << " -" << *B->High;
147 << cast<ConstantInt>(Pivot.Low)->getValue() << " -"
163 Val, Pivot.Low, "Pivot");
186 if (Leaf.Low == Leaf.High) {
189 Leaf.Low, "SwitchLeaf");
192 if (cast<ConstantInt>(Leaf.Low)->isMinValue(true /*isSigned*/)) {
196 } else if (cast<ConstantInt>(Leaf.Low)
[all...]
/external/gemmlowp/meta/generators/
H A Dqnt_Nx8_neon.py41 [emitter.AllLanes(registers.Low(register)),
117 emitter.EmitVQmovun('s16', registers.Low(lane_temp), lane_temp)
134 [registers.Low(lane.load_1),
136 registers.Low(lane.load_2),
145 quantize_setup.append([lane.load_1, lane.offset, registers.Low(lane_temp)])
158 registers.Low(lane_temp),
170 emitter.Lane(registers.Low(lane.load_1), 0),
175 registers.Low(lane.load_1),
180 registers.Low(lane.load_1),
189 [registers.Low(lan
[all...]
H A Dmul_Nx8_Mx8_neon.py42 lanes.AddLane(registers.Low(quad_register))
197 registers.Low(values), 0))
199 registers.Low(values), 1))
221 register = registers.Low(aggregators[row])
225 register = registers.Low(aggregators[row * 2])
227 registers.Low(aggregators[row * 2 + 1]))
231 emitter.EmitVPadd('u32', registers.Low(register), registers.Low(register),
232 registers.Low(aggregators[row * 3 + 1]))
234 registers.Low(aggregator
[all...]
H A Dneon_emitter.py30 def Low(register): function
93 def Low(self, register): member in class:NeonRegisters
94 return Low(register)
/external/lzma/C/
H A DPpmd7Enc.c13 p->Low = 0;
21 if ((UInt32)p->Low < (UInt32)0xFF000000 || (unsigned)(p->Low >> 32) != 0)
26 p->Stream->Write(p->Stream, (Byte)(temp + (Byte)(p->Low >> 32)));
30 p->Cache = (Byte)((UInt32)p->Low >> 24);
33 p->Low = (UInt32)p->Low << 8;
38 p->Low += start * (p->Range /= total);
60 p->Low += newBound;
H A D7z.h71 UInt32 Low; member in struct:__anon13985
/external/llvm/unittests/ADT/
H A DVariadicFunctionTest.cpp88 void CountInRangeImpl(int *NumInRange, int Low, int High, argument
92 if (Low <= *Args[i] && *Args[i] <= High)
/external/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp405 std::set<IndicesVector>::iterator Low; local
406 Low = Set.upper_bound(Indices);
407 if (Low != Set.begin())
408 Low--;
409 // Low is now the last element smaller than or equal to Indices. This means
414 return Low != Set.end() && IsPrefix(*Low, Indices);
424 std::set<IndicesVector>::iterator Low; local
425 Low = Safe.upper_bound(ToMark);
427 if (Low !
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
H A DArgumentPromotion.cpp258 std::set<ArgPromotion::IndicesVector>::iterator Low; local
259 Low = Set.upper_bound(Indices);
260 if (Low != Set.begin())
261 Low--;
262 // Low is now the last element smaller than or equal to Indices. This means
267 return Low != Set.end() && IsPrefix(*Low, Indices);
277 std::set<ArgPromotion::IndicesVector>::iterator Low; local
278 Low = Safe.upper_bound(ToMark);
280 if (Low !
[all...]
/external/libvpx/libvpx/test/
H A Dregister_state_check.h42 return (lhs.Low == rhs.Low && lhs.High == rhs.High);
/external/llvm/lib/Target/NVPTX/
H A DNVVMIntrRange.cpp65 // Adds the passed-in [Low,High) range information as metadata to the
67 static bool addRangeMetadata(uint64_t Low, uint64_t High, CallInst *C) { argument
71 ConstantAsMetadata::get(ConstantInt::get(Int32Ty, Low)),
/external/llvm/lib/Target/Hexagon/
H A DHexagonAsmPrinter.cpp414 unsigned Low = RI->getSubReg(MO1.getReg(), Hexagon::subreg_loreg); local
417 TmpInst.addOperand(MCOperand::createReg(Low));
502 unsigned Low = RI->getSubReg(MO.getReg(), Hexagon::subreg_loreg); local
505 MappedInst.addOperand(MCOperand::createReg(Low));
514 unsigned Low = RI->getSubReg(MO.getReg(), Hexagon::subreg_loreg); local
517 MappedInst.addOperand(MCOperand::createReg(Low));
527 unsigned Low = RI->getSubReg(MO.getReg(), Hexagon::subreg_loreg); local
530 MappedInst.addOperand(MCOperand::createReg(Low));
H A DHexagonBitSimplify.cpp1667 bool Low; // Low/High halfword.
1709 bool Low = false;
1750 Low = true;
1754 Low = false;
1758 Low = true;
1762 Low = false;
1770 RH.Low = Low;
1792 if (H1.Reg != L1.Reg || H1.Sub != L1.Sub || H1.Low || !L
[all...]
/external/skia/src/sfnt/
H A DSkPanose.h80 Low = 4, member in class:SkPanose::Data::TextAndDisplay::Contrast
234 Low = 4, member in class:SkPanose::Data::Script::Contrast
294 Low = 3, member in class:SkPanose::Data::Script::XAscent
351 Low = 4, member in class:SkPanose::Data::Decorative::Contrast
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h151 const ConstantInt *Low, *High; member in struct:llvm::SelectionDAGBuilder::CaseCluster
159 static CaseCluster range(const ConstantInt *Low, const ConstantInt *High, argument
163 C.Low = Low;
170 static CaseCluster jumpTable(const ConstantInt *Low, argument
175 C.Low = Low;
182 static CaseCluster bitTests(const ConstantInt *Low, const ConstantInt *High, argument
186 C.Low = Low;
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h132 Constant* Low; member in struct:llvm::SelectionDAGBuilder::Case
137 Case() : Low(0), High(0), BB(0), ExtraWeight(0) { }
139 uint32_t extraweight) : Low(low), High(high), BB(bb),
144 const APInt &rLow = cast<ConstantInt>(Low)->getValue();
187 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
188 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);

Completed in 552 milliseconds

123