Home
last modified time | relevance | path

Searched refs:NumValues (Results 1 – 25 of 26) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/
Dtest_arith_main.cpp55 const static size_t NumValues = sizeof(Values) / sizeof(*Values); in testsInt() local
97 for (size_t i = 0; i < NumValues; ++i) { in testsInt()
98 for (size_t j = 0; j < NumValues; ++j) { in testsInt()
130 for (size_t iLo = 0; iLo < NumValues; ++iLo) { in testsInt()
131 for (size_t iHi = 0; iHi < NumValues; ++iHi) { in testsInt()
132 for (size_t jLo = 0; jLo < NumValues; ++jLo) { in testsInt()
133 for (size_t jHi = 0; jHi < NumValues; ++jHi) { in testsInt()
179 const static size_t NumValues = sizeof(Values) / sizeof(*Values); in testsVecInt() local
210 ElementTypeUnsigned Element1 = Values[Index() % NumValues]; in testsVecInt()
211 ElementTypeUnsigned Element2 = Values[Index() % NumValues]; in testsVecInt()
[all …]
Dtest_icmp_main.cpp40 const static size_t NumValues = sizeof(Values) / sizeof(*Values); variable
68 for (size_t i = 0; i < NumValues; ++i) { in testsInt()
69 for (size_t j = 0; j < NumValues; ++j) { in testsInt()
91 for (size_t iLo = 0; iLo < NumValues; ++iLo) { in testsInt()
92 for (size_t iHi = 0; iHi < NumValues; ++iHi) { in testsInt()
93 for (size_t jLo = 0; jLo < NumValues; ++jLo) { in testsInt()
94 for (size_t jHi = 0; jHi < NumValues; ++jHi) { in testsInt()
145 for (size_t i = 0; i < NumValues; ++i) { in testsIntWithZero()
164 for (size_t iLo = 0; iLo < NumValues; ++iLo) { in testsIntWithZero()
165 for (size_t iHi = 0; iHi < NumValues; ++iHi) { in testsIntWithZero()
[all …]
Dtest_fcmp_main.cpp44 size_t NumValues; variable
61 NumValues = sizeof(InitValues) / sizeof(*InitValues); in initializeValues()
94 assert(Values && NumValues); in testsScalar()
97 for (size_t i = 0; i < NumValues; ++i) { in testsScalar()
98 for (size_t j = 0; j < NumValues; ++j) { in testsScalar()
173 assert(Values && NumValues); in testsVector()
180 Value1[j] = Values[Index() % NumValues]; in testsVector()
181 Value2[j] = Values[Index() % NumValues]; in testsVector()
Dtest_select_main.cpp41 static const size_t NumValues = sizeof(Values) / sizeof(*Values); in testSelect() local
49 setElement(Value1, j, Values[Index() % NumValues]); in testSelect()
50 setElement(Value2, j, Values[Index() % NumValues]); in testSelect()
77 static const size_t NumValues = sizeof(Values) / sizeof(*Values); in testSelect() local
85 setElement(Value1, j, Values[Index() % NumValues]); in testSelect()
86 setElement(Value2, j, Values[Index() % NumValues]); in testSelect()
Dtest_bitmanip_main.cpp83 const static size_t NumValues = sizeof(Values) / sizeof(*Values); variable
103 for (size_t i = 0; i < NumValues; ++i) { in testBitManip()
133 for (size_t i = 0; i < NumValues; ++i) { in testByteSwap()
Dtest_sync_atomic_main.cpp79 const static size_t NumValues = sizeof(Values) / sizeof(*Values); variable
107 for (size_t i = 0; i < NumValues; ++i) { in testAtomicRMW()
109 for (size_t j = 0; j < NumValues; ++j) { in testAtomicRMW()
152 for (size_t i = 0; i < NumValues; ++i) { in testValCompareAndSwap()
154 for (size_t j = 0; j < NumValues; ++j) { in testValCompareAndSwap()
Dtest_cast_main.cpp133 static const size_t NumValues = sizeof(Values) / sizeof(*Values); in testVector() local
139 Value[j] = Values[Index() % NumValues]; in testVector()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DMCFragment.h323 const MCExpr &NumValues; variable
329 MCFillFragment(uint64_t Value, uint8_t VSize, const MCExpr &NumValues,
332 NumValues(NumValues), Loc(Loc) {} in MCFragment()
336 const MCExpr &getNumValues() const { return NumValues; } in getNumValues()
DMCObjectStreamer.h180 void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr,
DMCStreamer.h747 virtual void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TableGen/
DRecord.h663 unsigned NumValues; variable
670 : TypedInit(IK_ListInit, ListRecTy::get(EltTy)), NumValues(N) {} in ListInit()
687 assert(i < NumValues && "List element index out of range!"); in getElement()
711 return makeArrayRef(getTrailingObjects<Init *>(), NumValues); in getValues()
715 const_iterator end () const { return begin() + NumValues; } in end()
717 size_t size () const { return NumValues; } in size()
718 bool empty() const { return NumValues == 0; } in empty()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/
DAsmParser.cpp3193 const MCExpr *NumValues; in parseDirectiveFill() local
3194 if (checkForValidSection() || parseExpression(NumValues)) in parseDirectiveFill()
3228 getStreamer().emitFill(*NumValues, FillSize, FillExpr, NumValuesLoc); in parseDirectiveFill()
4730 int64_t NumValues; in parseDirectiveDCB() local
4731 if (checkForValidSection() || parseAbsoluteExpression(NumValues)) in parseDirectiveDCB()
4734 if (NumValues < 0) { in parseDirectiveDCB()
4754 for (uint64_t i = 0, e = NumValues; i != e; ++i) in parseDirectiveDCB()
4757 for (uint64_t i = 0, e = NumValues; i != e; ++i) in parseDirectiveDCB()
4772 int64_t NumValues; in parseDirectiveRealDCB() local
4773 if (checkForValidSection() || parseAbsoluteExpression(NumValues)) in parseDirectiveRealDCB()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCObjectStreamer.cpp711 void MCObjectStreamer::emitFill(const MCExpr &NumValues, int64_t Size, in emitFill() argument
715 if (NumValues.evaluateAsAbsolute(IntNumValues, getAssemblerPtr())) { in emitFill()
738 insert(new MCFillFragment(Expr, Size, NumValues, Loc)); in emitFill()
DMCAssembler.cpp300 int64_t NumValues = 0; in computeFragmentSize() local
301 if (!FF.getNumValues().evaluateAsAbsolute(NumValues, Layout)) { in computeFragmentSize()
306 int64_t Size = NumValues * FF.getValueSize(); in computeFragmentSize()
DWasmObjectWriter.cpp606 int64_t NumValues; in addData() local
607 if (!Fill->getNumValues().evaluateAsAbsolute(NumValues)) in addData()
609 DataBytes.insert(DataBytes.end(), Fill->getValueSize() * NumValues, in addData()
DMCAsmStreamer.cpp216 void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr,
1117 void MCAsmStreamer::emitFill(const MCExpr &NumValues, int64_t Size, in emitFill() argument
1121 NumValues.print(OS, MAI); in emitFill()
DMCStreamer.cpp1089 void MCStreamer::emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr, in emitFill() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DSelectionDAGNodes.h633 unsigned short NumValues;
967 SDVTList X = { ValueList, NumValues };
998 unsigned getNumValues() const { return NumValues; }
1002 assert(ResNo < NumValues && "Illegal result number!");
1023 value_iterator value_end() const { return ValueList+NumValues; }
1097 : NodeType(Opc), ValueList(VTs.VTs), NumValues(VTs.NumVTs),
1101 assert(NumValues == VTs.NumVTs &&
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp1835 unsigned NumValues = ValueVTs.size(); in visitRet() local
1837 SmallVector<SDValue, 4> Chains(NumValues); in visitRet()
1838 for (unsigned i = 0; i != NumValues; ++i) { in visitRet()
1856 unsigned NumValues = ValueVTs.size(); in visitRet() local
1857 if (NumValues) { in visitRet()
1878 for (unsigned j = 0; j != NumValues; ++j) { in visitRet()
1906 if (j == NumValues - 1) in visitRet()
3292 unsigned NumValues = ValueVTs.size(); in visitSelect() local
3293 if (NumValues == 0) return; in visitSelect()
3295 SmallVector<SDValue, 4> Values(NumValues); in visitSelect()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceConverter.cpp353 unsigned NumValues = Instr->getNumIncomingValues(); in convertPHINodeInstruction() local
355 Ice::InstPhi::create(Func.get(), NumValues, mapValueToIceVar(Instr)); in convertPHINodeInstruction()
356 for (unsigned N = 0, E = NumValues; N != E; ++N) { in convertPHINodeInstruction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/
DBTFDebug.h98 BTFTypeEnum(const DICompositeType *ETy, uint32_t NumValues);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DTargetLoweringBase.cpp1472 unsigned NumValues = ValueVTs.size(); in GetReturnInfo() local
1473 if (NumValues == 0) return; in GetReturnInfo()
1475 for (unsigned j = 0, f = NumValues; j != f; ++j) { in GetReturnInfo()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DMemorySanitizer.cpp1296 size_t NumValues = PN->getNumIncomingValues(); in runOnFunction() local
1297 for (size_t v = 0; v < NumValues; v++) { in runOnFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/
DRecord.cpp638 assert(i < NumValues && "List element index out of range!"); in getElementAsRecord()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUISelLowering.cpp941 for (unsigned Value = 0, NumValues = ValueVTs.size(); in analyzeFormalArgumentsCompute() local
942 Value != NumValues; ++Value) { in analyzeFormalArgumentsCompute()

12