/third_party/skia/src/core/ |
H A D | SkTMultiMap.h | 20 struct ValueList { struct in SkTMultiMap 21 explicit ValueList(T* value) : fValue(value), fNext(nullptr) {} in ValueList() function 23 static const Key& GetKey(const ValueList& e) { return HashTraits::GetKey(*e.fValue); } in GetKey() 26 ValueList* fNext; 36 fHash.foreach([&](ValueList* vl) { in reset() 37 ValueList* next; in reset() 38 for (ValueList* it = vl; it; it = next) { in reset() 49 ValueList* list = fHash.find(key); in insert() 51 // The new ValueList entry is inserted as the second element in the in insert() 53 ValueList* newEntr in insert() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Writer/ |
H A D | ValueEnumerator.h | 49 using ValueList = std::vector<std::pair<const Value *, unsigned>>; 64 ValueList Values; 198 const ValueList &getValues() const { return Values; } in getValues()
|
H A D | BitcodeWriter.cpp | 2309 const ValueEnumerator::ValueList &Vals = VE.getValues(); in writeConstants() 2537 const ValueEnumerator::ValueList &Vals = VE.getValues(); in writeModuleConstants()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/ |
H A D | BitcodeReader.cpp | 11 #include "ValueList.h" 498 BitcodeReaderValueList ValueList; member in __anon23959::BitcodeReader 631 return ValueList.getValueFwdRef(ID, Ty, FullTy); in getFnValueByID() 861 ValueList(Context, Stream.SizeInBytes()) { in BitcodeReader() 2017 if (ValueID >= ValueList.size() || !ValueList[ValueID]) in recordValue() 2019 Value *V = ValueList[ValueID]; in recordValue() 2102 cast<Function>(ValueList[Record[0]]), Record); in parseGlobalValueSymbolTable() 2247 if (ValID >= ValueList.size()) { in resolveGlobalAndIndirectSymbolInits() 2251 if (Constant *C = dyn_cast_or_null<Constant>(ValueList[ValI in resolveGlobalAndIndirectSymbolInits() [all...] |
H A D | MetadataLoader.cpp | 10 #include "ValueList.h" 423 BitcodeReaderValueList &ValueList; member in __anon23961::MetadataLoader::MetadataLoaderImpl 636 BitcodeReaderValueList &ValueList, in MetadataLoaderImpl() 640 ValueList(ValueList), Stream(Stream), Context(TheModule.getContext()), in MetadataLoaderImpl() 836 if (ValueID >= ValueList.size()) in lazyLoadModuleMetadataBlock() 838 if (auto *GO = dyn_cast<GlobalObject>(ValueList[ValueID])) in lazyLoadModuleMetadataBlock() 1159 LocalAsMetadata::get(ValueList.getValueFwdRef(Record[1], Ty)), in parseOneMetadata() 1179 ValueAsMetadata::get(ValueList.getValueFwdRef(Record[i + 1], Ty)); in parseOneMetadata() 1199 ValueAsMetadata::get(ValueList in parseOneMetadata() 635 MetadataLoaderImpl(BitstreamCursor &Stream, Module &TheModule, BitcodeReaderValueList &ValueList, std::function<Type *(unsigned)> getTypeByID, bool IsImporting) MetadataLoaderImpl() argument 2132 MetadataLoader(BitstreamCursor &Stream, Module &TheModule, BitcodeReaderValueList &ValueList, bool IsImporting, std::function<Type *(unsigned)> getTypeByID) MetadataLoader() argument [all...] |
H A D | MetadataLoader.h | 43 BitcodeReaderValueList &ValueList, bool IsImporting,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
H A D | SLPVectorizer.cpp | 531 using ValueList = SmallVector<Value *, 8>; 1205 ValueList getVL(unsigned OpIdx) const { in getVL() 1206 ValueList OpVL(OpsVec[OpIdx].size()); in getVL() 1444 ValueList Scalars; 1478 SmallVector<ValueList, 2> Operands; 1514 ValueList &getOperand(unsigned OpIdx) { in getOperand() 2591 SmallVector<ValueList, 2> OperandsVec; 2593 ValueList Operands; 2616 ValueList Op0; 2639 ValueList Op [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | SelectionDAGNodes.h | 626 const EVT *ValueList; member in llvm::SDNode 967 SDVTList X = { ValueList, NumValues }; in getVTList() 1003 return ValueList[ResNo]; in getValueType() 1022 value_iterator value_begin() const { return ValueList; } 1023 value_iterator value_end() const { return ValueList+NumValues; } 1097 : NodeType(Opc), ValueList(VTs.VTs), NumValues(VTs.NumVTs),
|
/third_party/gn/src/gn/ |
H A D | input_conversion_unittest.cc | 91 TEST_F(InputConversionTest, ValueList) { in TEST_F()
|
H A D | output_conversion_unittest.cc | 146 TEST_F(OutputConversionTest, ValueList) { in TEST_F()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGDumper.cpp | 571 for (unsigned i = 0, e = ValueList[0].getVectorNumElements(); i != e; ++i) {
|
H A D | SelectionDAG.cpp | 7882 N->ValueList = VTs.VTs;
|
/third_party/python/Lib/test/ |
H A D | test_typing.py | 4683 ValueList = List['Value'] 4684 Value = Union[str, ValueList] 4689 foo: Union[Value, ValueList] 4691 foo: Union[List[Value], ValueList] 4693 foo: Union[Value, List[Value], ValueList]
|
/third_party/sqlite/src/ |
H A D | sqlite3.c | 16185 #define OP_VInitIn 174 /* synopsis: r[P2]=ValueList(P1,P3) */ 22948 typedef struct ValueList ValueList; typedef 22949 struct ValueList { struct [all...] |
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | [all...] |