/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/ |
D | test_arith_main.cpp | 55 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 …]
|
D | test_icmp_main.cpp | 40 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 …]
|
D | test_fcmp_main.cpp | 44 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()
|
D | test_select_main.cpp | 41 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()
|
D | test_bitmanip_main.cpp | 83 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()
|
D | test_sync_atomic_main.cpp | 79 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()
|
D | test_cast_main.cpp | 133 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/ |
D | MCFragment.h | 323 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()
|
D | MCObjectStreamer.h | 180 void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr,
|
D | MCStreamer.h | 747 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/ |
D | Record.h | 663 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/ |
D | AsmParser.cpp | 3193 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/ |
D | MCObjectStreamer.cpp | 711 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()
|
D | MCAssembler.cpp | 300 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()
|
D | WasmObjectWriter.cpp | 606 int64_t NumValues; in addData() local 607 if (!Fill->getNumValues().evaluateAsAbsolute(NumValues)) in addData() 609 DataBytes.insert(DataBytes.end(), Fill->getValueSize() * NumValues, in addData()
|
D | MCAsmStreamer.cpp | 216 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()
|
D | MCStreamer.cpp | 1089 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/ |
D | SelectionDAGNodes.h | 633 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/ |
D | SelectionDAGBuilder.cpp | 1835 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/ |
D | IceConverter.cpp | 353 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/ |
D | BTFDebug.h | 98 BTFTypeEnum(const DICompositeType *ETy, uint32_t NumValues);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | TargetLoweringBase.cpp | 1472 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/ |
D | MemorySanitizer.cpp | 1296 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/ |
D | Record.cpp | 638 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/ |
D | AMDGPUISelLowering.cpp | 941 for (unsigned Value = 0, NumValues = ValueVTs.size(); in analyzeFormalArgumentsCompute() local 942 Value != NumValues; ++Value) { in analyzeFormalArgumentsCompute()
|