Home
last modified time | relevance | path

Searched refs:SimpleValue (Results 1 – 4 of 4) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
DEarlyCSE.cpp53 struct SimpleValue { struct
56 SimpleValue(Instruction *I) : Inst(I) { in SimpleValue() argument
79 template <> struct DenseMapInfo<SimpleValue> {
80 static inline SimpleValue getEmptyKey() { in getEmptyKey()
83 static inline SimpleValue getTombstoneKey() { in getTombstoneKey()
86 static unsigned getHashValue(SimpleValue Val);
87 static bool isEqual(SimpleValue LHS, SimpleValue RHS);
91 unsigned DenseMapInfo<SimpleValue>::getHashValue(SimpleValue Val) { in getHashValue()
147 bool DenseMapInfo<SimpleValue>::isEqual(SimpleValue LHS, SimpleValue RHS) { in isEqual()
272 BumpPtrAllocator, ScopedHashTableVal<SimpleValue, Value *>> AllocatorTy;
[all …]
/external/llvm/docs/TableGen/
DLangRef.rst179 Value: `SimpleValue` `ValueSuffix`*
196 :token:`SimpleValue` has a number of forms:
200 SimpleValue: `TokIdentifier`
245 SimpleValue: `TokInteger`
250 SimpleValue: `TokString`+
256 SimpleValue: `TokCodeFragment`
261 SimpleValue: "?"
266 SimpleValue: "{" `ValueList` "}"
274 SimpleValue: `ClassID` "<" `ValueListNE` ">"
281 SimpleValue: "[" `ValueList` "]" ["<" `Type` ">"]
[all …]
/external/fonttools/Lib/fontTools/ttLib/tables/
DotConverters.py84 class SimpleValue(BaseConverter): class
91 class IntValue(SimpleValue):
150 class Tag(SimpleValue):
156 class GlyphID(SimpleValue):
166 class FloatValue(SimpleValue):
/external/llvm/unittests/Support/
DErrorOrTest.cpp22 TEST(ErrorOr, SimpleValue) { in TEST() argument