Home
last modified time | relevance | path

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

12

/external/swiftshader/third_party/subzero/crosstest/
Dtest_arith_main.cpp55 const static size_t NumValues = sizeof(Values) / sizeof(*Values); in testsInt() local
93 for (size_t i = 0; i < NumValues; ++i) { in testsInt()
94 for (size_t j = 0; j < NumValues; ++j) { in testsInt()
126 for (size_t iLo = 0; iLo < NumValues; ++iLo) { in testsInt()
127 for (size_t iHi = 0; iHi < NumValues; ++iHi) { in testsInt()
128 for (size_t jLo = 0; jLo < NumValues; ++jLo) { in testsInt()
129 for (size_t jHi = 0; jHi < NumValues; ++jHi) { in testsInt()
175 const static size_t NumValues = sizeof(Values) / sizeof(*Values); in testsVecInt() local
208 ElementTypeUnsigned Element1 = Values[Index() % NumValues]; in testsVecInt()
209 ElementTypeUnsigned Element2 = Values[Index() % NumValues]; in testsVecInt()
[all …]
Dtest_icmp_main.cpp40 const static size_t NumValues = sizeof(Values) / sizeof(*Values); variable
74 for (size_t i = 0; i < NumValues; ++i) { in testsInt()
75 for (size_t j = 0; j < NumValues; ++j) { in testsInt()
97 for (size_t iLo = 0; iLo < NumValues; ++iLo) { in testsInt()
98 for (size_t iHi = 0; iHi < NumValues; ++iHi) { in testsInt()
99 for (size_t jLo = 0; jLo < NumValues; ++jLo) { in testsInt()
100 for (size_t jHi = 0; jHi < NumValues; ++jHi) { in testsInt()
157 for (size_t i = 0; i < NumValues; ++i) { in testsIntWithZero()
176 for (size_t iLo = 0; iLo < NumValues; ++iLo) { in testsIntWithZero()
177 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()
96 assert(Values && NumValues); in testsScalar()
99 for (size_t i = 0; i < NumValues; ++i) { in testsScalar()
100 for (size_t j = 0; j < NumValues; ++j) { in testsScalar()
177 assert(Values && NumValues); in testsVector()
184 Value1[j] = Values[Index() % NumValues]; in testsVector()
185 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.cpp46 const static size_t NumValues = sizeof(Values) / sizeof(*Values); variable
66 for (size_t i = 0; i < NumValues; ++i) { in testBitManip()
96 for (size_t i = 0; i < NumValues; ++i) { in testByteSwap()
Dtest_sync_atomic_main.cpp49 const static size_t NumValues = sizeof(Values) / sizeof(*Values); variable
77 for (size_t i = 0; i < NumValues; ++i) { in testAtomicRMW()
79 for (size_t j = 0; j < NumValues; ++j) { in testAtomicRMW()
122 for (size_t i = 0; i < NumValues; ++i) { in testValCompareAndSwap()
124 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()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-exegesis/lib/
DBenchmarkResult.h89 assert(NumValues); in avg()
90 return SumValues / NumValues; in avg()
100 int NumValues = 0; variable
/external/tensorflow/tensorflow/core/framework/
Dtensor_util_test.cc462 EXPECT_EQ(tensor::internal::TensorProtoHelper<float>::NumValues(tensor_proto), in TEST()
468 EXPECT_EQ(tensor::internal::TensorProtoHelper<int>::NumValues(tensor_proto), in TEST()
474 EXPECT_EQ(tensor::internal::TensorProtoHelper<uint8>::NumValues(tensor_proto), in TEST()
479 EXPECT_EQ(tensor::internal::TensorProtoHelper<bool>::NumValues(tensor_proto), in TEST()
486 tensor::internal::TensorProtoHelper<Eigen::half>::NumValues(tensor_proto), in TEST()
492 EXPECT_EQ(tensor::internal::TensorProtoHelper<std::complex<float>>::NumValues( in TEST()
560 EXPECT_EQ(TensorProtoHelper::NumValues(tensor_proto), 0); in ConstantTailTest()
563 EXPECT_LE(TensorProtoHelper::NumValues(tensor_proto), in ConstantTailTest()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
DMCFragment.h433 const MCExpr &NumValues; variable
439 MCFillFragment(uint64_t Value, uint8_t VSize, const MCExpr &NumValues,
442 NumValues(NumValues), Loc(Loc) {} in MCFragment()
446 const MCExpr &getNumValues() const { return NumValues; } in getNumValues()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-rc/
DResourceScriptStmt.cpp181 size_t NumValues = Values.size(); in log() local
182 for (size_t Id = 0; Id < NumValues; ++Id) { in log()
/external/llvm/lib/MC/
DMCAsmStreamer.cpp193 void emitFill(uint64_t NumValues, int64_t Size, int64_t Expr) override;
195 void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr,
896 void MCAsmStreamer::emitFill(uint64_t NumValues, int64_t Size, int64_t Expr) { in emitFill() argument
897 if (NumValues == 0) in emitFill()
900 const MCExpr *E = MCConstantExpr::create(NumValues, getContext()); in emitFill()
904 void MCAsmStreamer::emitFill(const MCExpr &NumValues, int64_t Size, in emitFill() argument
908 NumValues.print(OS, MAI); in emitFill()
DMCStreamer.cpp145 void MCStreamer::emitFill(uint64_t NumValues, int64_t Size, int64_t Expr) { in emitFill() argument
148 for (uint64_t i = 0, e = NumValues; i != e; ++i) { in emitFill()
774 void MCStreamer::emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr, in emitFill() argument
DMCObjectStreamer.cpp519 void MCObjectStreamer::emitFill(const MCExpr &NumValues, int64_t Size, in emitFill() argument
522 if (!NumValues.evaluateAsAbsolute(IntNumValues, getAssembler())) { in emitFill()
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp1154 unsigned NumValues = ValueVTs.size(); in visitRet() local
1156 SmallVector<SDValue, 4> Chains(NumValues); in visitRet()
1157 for (unsigned i = 0; i != NumValues; ++i) { in visitRet()
1169 MVT::Other, &Chains[0], NumValues); in visitRet()
1173 unsigned NumValues = ValueVTs.size(); in visitRet() local
1174 if (NumValues) { in visitRet()
1176 for (unsigned j = 0, f = NumValues; j != f; ++j) { in visitRet()
2636 unsigned NumValues = ValueVTs.size(); in visitSelect() local
2637 if (NumValues == 0) return; in visitSelect()
2639 SmallVector<SDValue, 4> Values(NumValues); in visitSelect()
[all …]
/external/llvm/include/llvm/TableGen/
DRecord.h653 unsigned NumValues; variable
660 : TypedInit(IK_ListInit, ListRecTy::get(EltTy)), NumValues(N) {} in ListInit()
677 assert(i < NumValues && "List element index out of range!"); in getElement()
698 return makeArrayRef(getTrailingObjects<Init *>(), NumValues); in getValues()
702 const_iterator end () const { return begin() + NumValues; } in end()
704 size_t size () const { return NumValues; } in size()
705 bool empty() const { return NumValues == 0; } in empty()
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
DSelectionDAGNodes.h338 unsigned short NumOperands, NumValues;
543 SDVTList X = { ValueList, NumValues };
584 unsigned getNumValues() const { return NumValues; }
589 assert(ResNo < NumValues && "Illegal result number!");
601 value_iterator value_end() const { return ValueList+NumValues; }
683 NumOperands(NumOps), NumValues(VTs.NumVTs),
697 UseList(NULL), NumOperands(0), NumValues(VTs.NumVTs),
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/TableGen/
DRecord.h661 unsigned NumValues; variable
668 : TypedInit(IK_ListInit, ListRecTy::get(EltTy)), NumValues(N) {} in ListInit()
685 assert(i < NumValues && "List element index out of range!"); in getElement()
709 return makeArrayRef(getTrailingObjects<Init *>(), NumValues); in getValues()
713 const_iterator end () const { return begin() + NumValues; } in end()
715 size_t size () const { return NumValues; } in size()
716 bool empty() const { return NumValues == 0; } in empty()
/external/llvm/include/llvm/CodeGen/
DSelectionDAGNodes.h428 unsigned short NumOperands, NumValues;
693 SDVTList X = { ValueList, NumValues };
723 unsigned getNumValues() const { return NumValues; }
727 assert(ResNo < NumValues && "Illegal result number!");
743 value_iterator value_end() const { return ValueList+NumValues; }
820 NumOperands(0), NumValues(VTs.NumVTs), IROrder(Order),
823 assert(NumValues == VTs.NumVTs &&
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
DMCObjectStreamer.cpp629 void MCObjectStreamer::emitFill(const MCExpr &NumValues, int64_t Size, in emitFill() argument
633 if (NumValues.evaluateAsAbsolute(IntNumValues, getAssemblerPtr())) { in emitFill()
656 insert(new MCFillFragment(Expr, Size, NumValues, Loc)); in emitFill()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/MCParser/
DAsmParser.cpp3127 const MCExpr *NumValues; in parseDirectiveFill() local
3128 if (checkForValidSection() || parseExpression(NumValues)) in parseDirectiveFill()
3162 getStreamer().emitFill(*NumValues, FillSize, FillExpr, NumValuesLoc); in parseDirectiveFill()
4558 int64_t NumValues; in parseDirectiveDCB() local
4559 if (checkForValidSection() || parseAbsoluteExpression(NumValues)) in parseDirectiveDCB()
4562 if (NumValues < 0) { in parseDirectiveDCB()
4582 for (uint64_t i = 0, e = NumValues; i != e; ++i) in parseDirectiveDCB()
4585 for (uint64_t i = 0, e = NumValues; i != e; ++i) in parseDirectiveDCB()
4600 int64_t NumValues; in parseDirectiveRealDCB() local
4601 if (checkForValidSection() || parseAbsoluteExpression(NumValues)) in parseDirectiveRealDCB()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DSelectionDAGNodes.h595 unsigned short NumValues;
927 SDVTList X = { ValueList, NumValues };
958 unsigned getNumValues() const { return NumValues; }
962 assert(ResNo < NumValues && "Illegal result number!");
979 value_iterator value_end() const { return ValueList+NumValues; }
1053 : NodeType(Opc), ValueList(VTs.VTs), NumValues(VTs.NumVTs),
1057 assert(NumValues == VTs.NumVTs &&
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp1412 unsigned NumValues = ValueVTs.size(); in visitRet() local
1419 SmallVector<SDValue, 4> Chains(NumValues); in visitRet()
1420 for (unsigned i = 0; i != NumValues; ++i) { in visitRet()
1438 unsigned NumValues = ValueVTs.size(); in visitRet() local
1439 if (NumValues) { in visitRet()
1456 for (unsigned j = 0; j != NumValues; ++j) { in visitRet()
2744 unsigned NumValues = ValueVTs.size(); in visitSelect() local
2745 if (NumValues == 0) return; in visitSelect()
2747 SmallVector<SDValue, 4> Values(NumValues); in visitSelect()
2833 for (unsigned i = 0; i != NumValues; ++i) { in visitSelect()
[all …]
/external/llvm/include/llvm/MC/
DMCObjectStreamer.h147 void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr,
DMCStreamer.h608 virtual void emitFill(uint64_t NumValues, int64_t Size, int64_t Expr);
609 virtual void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr,

12