Home
last modified time | relevance | path

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

123456789

/external/gemmlowp/meta/generators/
Dmul_1x8_Mx8_neon.py63 emitter.EmitVLoadA('1.32', [emitter.AllLanes(registers.Low(register)),
112 emitter.EmitVPadd('u32', registers.Low(aggregator),
113 registers.Low(aggregator), registers.High(aggregator))
116 emitter.EmitVPadd('u32', registers.Low(temp), registers.Low(aggregators[0]),
117 registers.Low(aggregators[1]))
118 emitter.EmitVPadd('u32', registers.High(temp), registers.Low(aggregators[2]),
119 registers.Low(aggregators[3]))
122 temp_2 = registers.Low(aggregators[1])
123 emitter.EmitVPadd('u32', temp_2, registers.Low(aggregators[4]),
124 registers.Low(aggregators[4]))
[all …]
Dmul_Nx8_Mx8_neon.py42 lanes.AddLane(registers.Low(quad_register))
197 registers.Low(values), 0))
199 registers.Low(values), 1))
204 registers.Low(values), 0))
206 registers.Low(values), 1))
230 register = registers.Low(aggregators[row])
234 register = registers.Low(aggregators[row * 2])
236 registers.Low(aggregators[row * 2 + 1]))
240 emitter.EmitVPadd('u32', registers.Low(register), registers.Low(register),
241 registers.Low(aggregators[row * 3 + 1]))
[all …]
Dqnt_Nx8_neon.py40 emitter.EmitVLoadA('1.32', [emitter.AllLanes(registers.Low(register)),
105 emitter.EmitVQmovun('s16', registers.Low(lane_temp), lane_temp)
117 '1.32', [registers.Low(lane.load_1), registers.High(lane.load_1),
118 registers.Low(lane.load_2), registers.High(lane.load_2)],
126 quantize_setup.append([lane.load_1, lane.offset, registers.Low(lane_temp)])
133 emitter.EmitVStore('1.8', registers.Low(lane_temp),
145 registers.Low(lane.load_1), 0),
149 emitter.EmitVLoad('1.32', registers.Low(lane.load_1),
153 emitter.EmitVLoad('1.32', registers.Low(lane.load_1),
161 emitter.EmitVLoadA('1.32', [registers.Low(lane.load_1),
[all …]
/external/llvm/lib/Transforms/Utils/
DLowerSwitch.cpp36 int64_t Low, High; member
49 return I != Ranges.end() && I->Low <= R.Low; in IsInRanges()
63 ConstantInt* Low; member
68 : Low(low), High(high), BB(bb) {} in CaseRange()
92 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low); in operator ()()
145 O << *B->Low << " -" << *B->High; in operator <<()
212 if (Begin->Low == LowerBound && Begin->High == UpperBound) { in switchConvert()
231 << Pivot.Low->getValue() in switchConvert()
238 ConstantInt *NewLowerBound = Pivot.Low; in switchConvert()
275 Val, Pivot.Low, "Pivot"); in switchConvert()
[all …]
/external/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()
/external/llvm/lib/IR/
DIntrinsicInst.cpp62 const char *const *Low = NameTable.begin(); in lookupLLVMIntrinsicByName() local
64 const char *const *LastLow = Low; in lookupLLVMIntrinsicByName()
65 while (CmpEnd < Name.size() && High - Low > 0) { in lookupLLVMIntrinsicByName()
72 LastLow = Low; in lookupLLVMIntrinsicByName()
73 std::tie(Low, High) = std::equal_range(Low, High, Name.data(), Cmp); in lookupLLVMIntrinsicByName()
75 if (High - Low > 0) in lookupLLVMIntrinsicByName()
76 LastLow = Low; in lookupLLVMIntrinsicByName()
/external/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()
/external/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()
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
DLowerSwitch.cpp50 Constant* Low; member
55 Low(low), High(high), BB(bb) { } in CaseRange()
76 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low); in operator ()()
120 O << *B->Low << " -" << *B->High; in operator <<()
147 << cast<ConstantInt>(Pivot.Low)->getValue() << " -" in switchConvert()
163 Val, Pivot.Low, "Pivot"); in switchConvert()
186 if (Leaf.Low == Leaf.High) { in newLeafBlock()
189 Leaf.Low, "SwitchLeaf"); in newLeafBlock()
192 if (cast<ConstantInt>(Leaf.Low)->isMinValue(true /*isSigned*/)) { in newLeafBlock()
196 } else if (cast<ConstantInt>(Leaf.Low)->isZero()) { in newLeafBlock()
[all …]
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/runtime/
Drtstr.c114 UINTN High, Low; in RtBCDtoDecimal() local
117 Low = BcdValue - (High << 4); in RtBCDtoDecimal()
119 return ((UINT8)(Low + (High * 10))); in RtBCDtoDecimal()
132 UINTN High, Low; in RtDecimaltoBCD() local
135 Low = DecValue - (High * 10); in RtDecimaltoBCD()
137 return ((UINT8)(Low + (High << 4))); in RtDecimaltoBCD()
/external/lzma/C/
DPpmd7Enc.c13 p->Low = 0; in Ppmd7z_RangeEnc_Init()
21 if ((UInt32)p->Low < (UInt32)0xFF000000 || (unsigned)(p->Low >> 32) != 0) in RangeEnc_ShiftLow()
26 p->Stream->Write(p->Stream, (Byte)(temp + (Byte)(p->Low >> 32))); in RangeEnc_ShiftLow()
30 p->Cache = (Byte)((UInt32)p->Low >> 24); in RangeEnc_ShiftLow()
33 p->Low = (UInt32)p->Low << 8; in RangeEnc_ShiftLow()
38 p->Low += start * (p->Range /= total); in RangeEnc_Encode()
60 p->Low += newBound; in RangeEnc_EncodeBit_1()
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
DArgumentPromotion.cpp258 std::set<ArgPromotion::IndicesVector>::iterator Low; in PrefixIn() local
259 Low = Set.upper_bound(Indices); in PrefixIn()
260 if (Low != Set.begin()) in PrefixIn()
261 Low--; in PrefixIn()
267 return Low != Set.end() && IsPrefix(*Low, Indices); in PrefixIn()
277 std::set<ArgPromotion::IndicesVector>::iterator Low; in MarkIndicesSafe() local
278 Low = Safe.upper_bound(ToMark); in MarkIndicesSafe()
280 if (Low != Safe.begin()) in MarkIndicesSafe()
281 Low--; in MarkIndicesSafe()
285 if (Low != Safe.end()) { in MarkIndicesSafe()
[all …]
/external/llvm/lib/Transforms/IPO/
DArgumentPromotion.cpp405 std::set<IndicesVector>::iterator Low; in PrefixIn() local
406 Low = Set.upper_bound(Indices); in PrefixIn()
407 if (Low != Set.begin()) in PrefixIn()
408 Low--; in PrefixIn()
414 return Low != Set.end() && IsPrefix(*Low, Indices); in PrefixIn()
424 std::set<IndicesVector>::iterator Low; in MarkIndicesSafe() local
425 Low = Safe.upper_bound(ToMark); in MarkIndicesSafe()
427 if (Low != Safe.begin()) in MarkIndicesSafe()
428 Low--; in MarkIndicesSafe()
432 if (Low != Safe.end()) { in MarkIndicesSafe()
[all …]
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.h151 const ConstantInt *Low, *High; member
159 static CaseCluster range(const ConstantInt *Low, const ConstantInt *High, in range()
163 C.Low = Low; in range()
170 static CaseCluster jumpTable(const ConstantInt *Low, in jumpTable()
175 C.Low = Low; in jumpTable()
182 static CaseCluster bitTests(const ConstantInt *Low, const ConstantInt *High, in bitTests()
186 C.Low = Low; in bitTests()
322 bool rangeFitsInWord(const APInt &Low, const APInt &High);
327 const APInt &Low, const APInt &High);
/external/clang/test/Index/
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/test/Analysis/LoopAccessAnalysis/
Dnumber-of-memchecks.ll99 ; CHECK-NEXT: (Low: %c High: (78 + %c))
103 ; CHECK-NEXT: (Low: %a High: (40 + %a))
107 ; CHECK-NEXT: (Low: %b High: (38 + %b))
171 ; CHECK-NEXT: (Low: %c High: (78 + %c))
175 ; CHECK-NEXT: (Low: %a High: (40 + %a))
179 ; CHECK-NEXT: (Low: %b High: (38 + %b))
250 ; CHECK-NEXT: (Low: ((2 * %offset) + %a)<nsw> High: (9998 + (2 * %offset) + %a))
253 ; CHECK-NEXT: (Low: %a High: (9998 + %a))
256 ; CHECK-NEXT: (Low: (20000 + %a) High: (29998 + %a))
/external/llvm/lib/Target/Hexagon/
DHexagonAsmPrinter.cpp414 unsigned Low = RI->getSubReg(MO1.getReg(), Hexagon::subreg_loreg); in HexagonProcessInstruction() local
417 TmpInst.addOperand(MCOperand::createReg(Low)); in HexagonProcessInstruction()
502 unsigned Low = RI->getSubReg(MO.getReg(), Hexagon::subreg_loreg); in HexagonProcessInstruction() local
505 MappedInst.addOperand(MCOperand::createReg(Low)); in HexagonProcessInstruction()
514 unsigned Low = RI->getSubReg(MO.getReg(), Hexagon::subreg_loreg); in HexagonProcessInstruction() local
517 MappedInst.addOperand(MCOperand::createReg(Low)); in HexagonProcessInstruction()
527 unsigned Low = RI->getSubReg(MO.getReg(), Hexagon::subreg_loreg); in HexagonProcessInstruction() local
530 MappedInst.addOperand(MCOperand::createReg(Low)); in HexagonProcessInstruction()
/external/swiftshader/third_party/LLVM/
DREADME.txt1 Low Level Virtual Machine (LLVM)
4 This directory and its subdirectories contain source code for the Low Level
/external/swiftshader/third_party/LLVM/docs/
Ddoxygen.intro1 /// @mainpage Low Level Virtual Machine
4 /// Welcome to the Low Level Virtual Machine (LLVM).
/external/skia/src/sfnt/
DSkPanose.h80 Low = 4, enumerator
234 Low = 4, enumerator
294 Low = 3, enumerator
351 Low = 4, enumerator
/external/skqp/src/sfnt/
DSkPanose.h80 Low = 4, enumerator
234 Low = 4, enumerator
294 Low = 3, enumerator
351 Low = 4, enumerator
/external/llvm/unittests/ADT/
DVariadicFunctionTest.cpp88 void CountInRangeImpl(int *NumInRange, int Low, int High, in CountInRangeImpl() argument
92 if (Low <= *Args[i] && *Args[i] <= High) in CountInRangeImpl()
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.h132 Constant* Low; member
137 Case() : Low(0), High(0), BB(0), ExtraWeight(0) { } in Case()
139 uint32_t extraweight) : Low(low), High(high), BB(bb), in Case()
144 const APInt &rLow = cast<ConstantInt>(Low)->getValue(); in size()
187 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High)); in operator()
188 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low); in operator()
/external/boringssl/src/util/
Ddoc.config4 "Name": "Low-level infrastructure",
22 "Name": "Low-level crypto primitives",

123456789