Home
last modified time | relevance | path

Searched refs:VariableArray (Results 1 – 25 of 45) sorted by relevance

12

/external/swiftshader/src/OpenGL/compiler/
DOutputASM.h308 typedef std::vector<TIntermTyped*> VariableArray; typedef
310 int lookup(VariableArray &list, TIntermTyped *variable);
311 int lookup(VariableArray &list, TInterfaceBlock *block);
314 int allocate(VariableArray &list, TIntermTyped *variable, bool samplersOnly = false);
315 void free(VariableArray &list, TIntermTyped *variable);
345 VariableArray temporaries;
346 VariableArray uniforms;
347 VariableArray varyings;
348 VariableArray attributes;
349 VariableArray samplers;
[all …]
DOutputASM.cpp3533 int OutputASM::lookup(VariableArray &list, TIntermTyped *variable) in lookup()
3595 int OutputASM::lookup(VariableArray &list, TInterfaceBlock *block) in lookup()
3607 int OutputASM::allocate(VariableArray &list, TIntermTyped *variable, bool samplersOnly) in allocate()
3655 void OutputASM::free(VariableArray &list, TIntermTyped *variable) in free()
/external/llvm-project/clang/include/clang/Serialization/
DTypeBitCodes.def22 TYPE_BIT_CODE(VariableArray, VARIABLE_ARRAY, 11)
/external/clang/lib/AST/
DTypeLoc.cpp189 case VariableArray: in getBeginLoc()
220 case VariableArray: in getEndLoc()
DType.cpp2007 case Type::VariableArray: in isCXX98PODType()
3344 case Type::VariableArray: in computeCachedProperties()
3430 case Type::VariableArray: in computeLinkageInfo()
3589 case Type::VariableArray: in canHaveNullability()
DASTContext.cpp1548 case Type::VariableArray: in getTypeInfoImpl()
2733 case Type::VariableArray: { in getVariableArrayDecayedType()
5704 case Type::VariableArray: { in getObjCEncodingForTypeImpl()
7702 if (LHSClass == Type::VariableArray || LHSClass == Type::IncompleteArray) in mergeTypes()
7704 if (RHSClass == Type::VariableArray || RHSClass == Type::IncompleteArray) in mergeTypes()
7754 case Type::VariableArray: in mergeTypes()
DTypePrinter.cpp210 case Type::VariableArray: in canPrefixQualifiers()
/external/clang/tools/libclang/
DCXType.cpp90 TKCASE(VariableArray); in GetTypeKind()
492 TKIND(VariableArray); in clang_getTypeKindSpelling()
631 case Type::VariableArray: in clang_getElementType()
683 case Type::VariableArray: in clang_getArrayElementType()
/external/llvm-project/clang/lib/AST/
DTypeLoc.cpp210 case VariableArray: in getBeginLoc()
241 case VariableArray: in getEndLoc()
DType.cpp131 (tc == VariableArray ? TypeDependence::VariablyModified in ArrayType()
2357 case Type::VariableArray: in isCXX98PODType()
3871 case Type::VariableArray: in computeCachedProperties()
3959 case Type::VariableArray: in computeTypeLinkageInfo()
4128 case Type::VariableArray: in canHaveNullability()
DASTContext.cpp1907 case Type::VariableArray: in getTypeInfoImpl()
3547 case Type::VariableArray: { in getVariableArrayDecayedType()
7409 case Type::VariableArray: { in getObjCEncodingForTypeImpl()
9570 if (LHSClass == Type::VariableArray || LHSClass == Type::IncompleteArray) in mergeTypes()
9572 if (RHSClass == Type::VariableArray || RHSClass == Type::IncompleteArray) in mergeTypes()
9623 case Type::VariableArray: in mergeTypes()
DASTStructuralEquivalence.cpp750 case Type::VariableArray: { in IsStructurallyEquivalent()
DTypePrinter.cpp243 case Type::VariableArray: in canPrefixQualifiers()
/external/llvm-project/clang/tools/libclang/
DCXType.cpp109 TKCASE(VariableArray); in GetTypeKind()
602 TKIND(VariableArray); in clang_getTypeKindSpelling()
805 case Type::VariableArray: in clang_getElementType()
863 case Type::VariableArray: in clang_getArrayElementType()
/external/clang/include/clang/AST/
DTypeNodes.def73 TYPE(VariableArray, ArrayType)
DType.h2480 (tc == VariableArray || et->isVariablyModifiedType()),
2503 T->getTypeClass() == VariableArray ||
2617 : ArrayType(VariableArray, et, can, sm, tq,
2636 return T->getTypeClass() == VariableArray;
/external/clang/lib/CodeGen/
DCodeGenTypes.cpp516 case Type::VariableArray: { in ConvertType()
DCodeGenFunction.cpp208 case Type::VariableArray: in getEvaluationKind()
1731 case Type::VariableArray: { in EmitVariablyModifiedType()
DItaniumCXXABI.cpp2765 case Type::VariableArray: in BuildVTablePointer()
2980 case Type::VariableArray: in BuildTypeInfo()
/external/llvm-project/clang/lib/CodeGen/
DCodeGenTypes.cpp645 case Type::VariableArray: { in ConvertType()
DCodeGenFunction.cpp266 case Type::VariableArray: in getEvaluationKind()
2084 case Type::VariableArray: { in EmitVariablyModifiedType()
/external/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
DTypeSystemClang.cpp2580 case clang::Type::VariableArray: { in GetCompleteQualType()
2720 case clang::Type::VariableArray: in IsAggregateType()
2793 case clang::Type::VariableArray: in IsArrayType()
3800 case clang::Type::VariableArray: in GetTypeInfo()
4010 case clang::Type::VariableArray: in GetTypeClass()
4689 case clang::Type::VariableArray: in GetEncoding()
5000 case clang::Type::VariableArray: in GetFormat()
5933 case clang::Type::VariableArray: in GetNumPointeeChildren()
/external/clang/lib/Sema/
DSemaTemplateDeduction.cpp510 case Type::VariableArray: in IsPossiblyOpaquelyQualifiedType()
1204 case Type::VariableArray: in DeduceTemplateArgumentsByTypeMatch()
4945 case Type::VariableArray: in MarkUsedTemplateParameters()
/external/llvm-project/clang/include/clang/AST/
DType.h2903 T->getTypeClass() == VariableArray ||
3029 : ArrayType(VariableArray, et, can, sm, tq, e),
3049 return T->getTypeClass() == VariableArray;
/external/llvm-project/clang/lib/Sema/
DSemaTemplateDeduction.cpp640 case Type::VariableArray: in IsPossiblyOpaquelyQualifiedType()
1646 case Type::VariableArray: in DeduceTemplateArgumentsByTypeMatch()
6092 case Type::VariableArray: in MarkUsedTemplateParameters()

12