Home
last modified time | relevance | path

Searched refs:ValueList (Results 1 – 14 of 14) sorted by relevance

/external/skia/src/core/
DSkTMultiMap.h22 struct ValueList { struct
23 explicit ValueList(T* value) : fValue(value), fNext(nullptr) {} in ValueList() function
25 static const Key& GetKey(const ValueList& e) { return HashTraits::GetKey(*e.fValue); } in GetKey() argument
28 ValueList* fNext; argument
39 ValueList* list = fHash.find(key); in insert()
43 ValueList* newEntry = new ValueList(list->fValue); in insert()
50 fHash.add(new ValueList(value)); in insert()
57 ValueList* list = fHash.find(key); in remove()
61 ValueList* prev = nullptr; in remove()
68 ValueList* next = list->fNext; in remove()
[all …]
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp154 BitcodeReaderValueList ValueList; member in __anon5db636af0111::BitcodeReader
294 return ValueList.getValueFwdRef(ID, Ty); in getFnValueByID()
560 : Context(Context), Buffer(Buffer), ValueList(Context), in BitcodeReader()
564 : Context(Context), Buffer(nullptr), ValueList(Context), in BitcodeReader()
603 ValueList.clear(); in freeState()
1710 if (ValueID >= ValueList.size() || !ValueList[ValueID]) in recordValue()
1712 Value *V = ValueList[ValueID]; in recordValue()
1978 LocalAsMetadata::get(ValueList.getValueFwdRef(Record[1], Ty)), in parseMetadata()
1997 ValueAsMetadata::get(ValueList.getValueFwdRef(Record[i + 1], Ty)); in parseMetadata()
2016 ValueAsMetadata::get(ValueList.getValueFwdRef(Record[1], Ty)), in parseMetadata()
[all …]
/external/llvm/lib/Bitcode/Writer/
DValueEnumerator.h47 typedef std::vector<std::pair<const Value*, unsigned> > ValueList; typedef
58 ValueList Values;
160 const ValueList &getValues() const { return Values; } in getValues()
DBitcodeWriter.cpp1523 const ValueEnumerator::ValueList &Vals = VE.getValues(); in WriteConstants()
1740 const ValueEnumerator::ValueList &Vals = VE.getValues(); in WriteModuleConstants()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DCallEvent.h163 typedef SmallVectorImpl<SVal> ValueList; typedef
167 virtual void getExtraInvalidatedValues(ValueList &Values, in getExtraInvalidatedValues()
483 void getExtraInvalidatedValues(ValueList &Values,
580 void getExtraInvalidatedValues(ValueList &Values,
764 void getExtraInvalidatedValues(ValueList &Values,
864 void getExtraInvalidatedValues(ValueList &Values,
/external/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp359 typedef SmallVector<Value *, 8> ValueList; typedef in __anonb875591b0111::BoUpSLP
483 ValueList Scalars;
1139 ValueList Operands; in buildTree_rec()
1228 ValueList Operands; in buildTree_rec()
1257 ValueList Operands; in buildTree_rec()
1291 ValueList Left, Right; in buildTree_rec()
1299 ValueList Operands; in buildTree_rec()
1347 ValueList Operands; in buildTree_rec()
1370 ValueList Operands; in buildTree_rec()
1420 ValueList Operands; in buildTree_rec()
[all …]
/external/llvm/docs/TableGen/
DLangRef.rst266 SimpleValue: "{" `ValueList` "}"
267 ValueList: [`ValueListNE`]
281 SimpleValue: "[" `ValueList` "]" ["<" `Type` ">"]
308 SubClassRef: (`ClassID` | `MultiClassID`) ["<" `ValueList` ">"]
/external/clang/lib/StaticAnalyzer/Core/
DCallEvent.cpp424 ValueList &Values, RegionAndSymbolInvalidationTraits *ETraits) const { in getExtraInvalidatedValues()
592 void BlockCall::getExtraInvalidatedValues(ValueList &Values, in getExtraInvalidatedValues()
629 void CXXConstructorCall::getExtraInvalidatedValues(ValueList &Values, in getExtraInvalidatedValues()
672 ObjCMethodCall::getExtraInvalidatedValues(ValueList &Values, in getExtraInvalidatedValues()
DProgramState.cpp136 typedef ArrayRef<SVal> ValueList; typedef
156 ProgramState::invalidateRegions(ValueList Values, in invalidateRegions()
169 ProgramState::invalidateRegionsImpl(ValueList Values, in invalidateRegionsImpl()
/external/llvm/include/llvm/CodeGen/
DSelectionDAGNodes.h404 const EVT *ValueList;
659 SDVTList X = { ValueList, NumValues };
691 return ValueList[ResNo];
705 value_iterator value_begin() const { return ValueList; }
706 value_iterator value_end() const { return ValueList+NumValues; }
781 ValueList(VTs.VTs), UseList(nullptr), NumOperands(Ops.size()),
800 SubclassData(0), NodeId(-1), OperandList(nullptr), ValueList(VTs.VTs),
/external/clang/lib/Parse/
DParsePragma.cpp1909 SmallVector<Token, 1> ValueList; in ParseLoopHintValue() local
1921 ValueList.push_back(Tok); in ParseLoopHintValue()
1938 ValueList.push_back(EOFTok); // Terminates expression for parsing. in ParseLoopHintValue()
1940 Info.Toks = llvm::makeArrayRef(ValueList).copy(PP.getPreprocessorAllocator()); in ParseLoopHintValue()
/external/llvm/lib/TableGen/
DTGParser.cpp1200 std::vector<Init*> ValueList = ParseValueList(CurRec, Class); in ParseSimpleValue() local
1201 if (ValueList.empty()) return nullptr; in ParseSimpleValue()
1217 SCRef.TemplateArgs = ValueList; in ParseSimpleValue()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGDumper.cpp413 for (unsigned i = 0, e = ValueList[0].getVectorNumElements(); i != e; ++i) { in print_details()
DSelectionDAG.cpp5982 N->ValueList = VTs.VTs; in MorphNodeTo()