/external/gptfdisk/ |
D | parttypes.cc | 22 AType* PartType::allTypes = NULL; 23 AType* PartType::lastType = NULL; 56 AType* tempType; in ~PartType() 239 AType* tempType; in AddType() 242 tempType = new AType; in AddType() 288 AType* theItem = allTypes; in operator =() 315 AType* theItem = allTypes; in TypeName() 336 AType* theItem = allTypes; in UTypeName() 361 AType* theItem = allTypes; in GetHexType() 388 AType* thisType = allTypes; in ShowAllTypes() [all …]
|
D | parttypes.h | 21 struct AType { struct 29 AType* next; argument 35 static AType* allTypes; // Linked list holding all the data 36 static AType* lastType; // Pointer to last entry in the list
|
/external/clang/lib/CodeGen/ |
D | CGExprConstant.cpp | 781 llvm::ArrayType *AType = in EmitArrayInitialization() local 783 llvm::Type *ElemTy = AType->getElementType(); in EmitArrayInitialization() 785 unsigned NumElements = AType->getNumElements(); in EmitArrayInitialization() 803 return llvm::ConstantAggregateZero::get(AType); in EmitArrayInitialization() 828 llvm::StructType *SType = llvm::StructType::get(AType->getContext(), in EmitArrayInitialization() 833 return llvm::ConstantArray::get(AType, Elts); in EmitArrayInitialization() 859 llvm::ArrayType *AType = cast<llvm::ArrayType>(ConvertType(ExprType)); in EmitDesignatedInitUpdater() local 860 llvm::Type *ElemType = AType->getElementType(); in EmitDesignatedInitUpdater() 863 unsigned NumElements = AType->getNumElements(); in EmitDesignatedInitUpdater() 909 llvm::StructType *SType = llvm::StructType::get(AType->getContext(), in EmitDesignatedInitUpdater() [all …]
|
D | CGExprAgg.cpp | 87 void EmitArrayInit(Address DestPtr, llvm::ArrayType *AType, 402 void AggExprEmitter::EmitArrayInit(Address DestPtr, llvm::ArrayType *AType, in EmitArrayInit() argument 406 uint64_t NumArrayElements = AType->getNumElements(); in EmitArrayInit() 1159 auto AType = cast<llvm::ArrayType>(Dest.getAddress().getElementType()); in VisitInitListExpr() local 1160 EmitArrayInit(Dest.getAddress(), AType, elementType, E); in VisitInitListExpr()
|
D | CGException.cpp | 845 llvm::ArrayType *AType = in EmitLandingPad() local 852 llvm::Constant *FilterArray = llvm::ConstantArray::get(AType, Filters); in EmitLandingPad()
|
D | CodeGenModule.cpp | 3394 auto *AType = cast<llvm::ArrayType>(getTypes().ConvertType(E->getType())); in GetConstantArrayFromStringLiteral() local 3395 llvm::Type *ElemTy = AType->getElementType(); in GetConstantArrayFromStringLiteral() 3396 unsigned NumElements = AType->getNumElements(); in GetConstantArrayFromStringLiteral()
|
/external/clang/test/CodeGen/ |
D | 2008-03-24-BitField-And-Alloca.c | 42 unsigned int AType : 4; member
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | AutoUpgrade.cpp | 491 ArrayType *AType = in TransferClausesToLandingPadInst() local 495 LPI->addClause(ConstantArray::get(AType, TyInfo)); in TransferClausesToLandingPadInst()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 7525 EVT AType = N2.getValueType(); in SimplifySelectCC() local 7526 if (XType.bitsGE(AType)) { in SimplifySelectCC() 7538 if (XType.bitsGT(AType)) { in SimplifySelectCC() 7539 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift); in SimplifySelectCC() 7543 return DAG.getNode(ISD::AND, DL, AType, Shift, N2); in SimplifySelectCC() 7552 if (XType.bitsGT(AType)) { in SimplifySelectCC() 7553 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift); in SimplifySelectCC() 7557 return DAG.getNode(ISD::AND, DL, AType, Shift, N2); in SimplifySelectCC()
|
/external/clang/lib/Sema/ |
D | SemaInit.cpp | 687 if (const ArrayType *AType = SemaRef.Context.getAsArrayType(ILE->getType())) { in FillInEmptyInitializations() local 688 ElementType = AType->getElementType(); in FillInEmptyInitializations() 689 if (const ConstantArrayType *CAType = dyn_cast<ConstantArrayType>(AType)) in FillInEmptyInitializations() 2662 if (const ArrayType *AType in getStructuredSubobjectInit() local 2664 if (const ConstantArrayType *CAType = dyn_cast<ConstantArrayType>(AType)) { in getStructuredSubobjectInit()
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/ |
D | GetElementPtr.rst | 38 AType *Foo;
|
/external/llvm/docs/ |
D | GetElementPtr.rst | 37 AType *Foo;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 17762 EVT AType = N2.getValueType(); in foldSelectCCToShiftAnd() local 17763 if (!isNullConstant(N3) || !XType.bitsGE(AType)) in foldSelectCCToShiftAnd() 17793 if (XType.bitsGT(AType)) { in foldSelectCCToShiftAnd() 17794 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift); in foldSelectCCToShiftAnd() 17799 Shift = DAG.getNOT(DL, Shift, AType); in foldSelectCCToShiftAnd() 17801 return DAG.getNode(ISD::AND, DL, AType, Shift, N2); in foldSelectCCToShiftAnd() 17808 if (XType.bitsGT(AType)) { in foldSelectCCToShiftAnd() 17809 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift); in foldSelectCCToShiftAnd() 17814 Shift = DAG.getNOT(DL, Shift, AType); in foldSelectCCToShiftAnd() 17816 return DAG.getNode(ISD::AND, DL, AType, Shift, N2); in foldSelectCCToShiftAnd()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 14260 EVT AType = N2.getValueType(); in SimplifySelectCC() local 14261 if (XType.bitsGE(AType)) { in SimplifySelectCC() 14273 if (XType.bitsGT(AType)) { in SimplifySelectCC() 14274 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift); in SimplifySelectCC() 14278 return DAG.getNode(ISD::AND, DL, AType, Shift, N2); in SimplifySelectCC() 14288 if (XType.bitsGT(AType)) { in SimplifySelectCC() 14289 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift); in SimplifySelectCC() 14293 return DAG.getNode(ISD::AND, DL, AType, Shift, N2); in SimplifySelectCC()
|
/external/llvm/tools/llvm-objdump/ |
D | MachODump.cpp | 196 SymbolRef::Type AType = *ATypeOrErr; in operator ()() local 206 uint64_t AAddr = (AType != SymbolRef::ST_Function) ? 0 : A.getValue(); in operator ()()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objdump/ |
D | MachODump.cpp | 183 SymbolRef::Type AType = *ATypeOrErr; in operator ()() local 188 uint64_t AAddr = (AType != SymbolRef::ST_Function) ? 0 : A.getValue(); in operator ()()
|
/external/vulkan-headers/include/vulkan/ |
D | vulkan_core.h | 9219 VkComponentTypeNV AType; member
|
D | vulkan.hpp | 21844 , AType( AType_ ) in CooperativeMatrixPropertiesNV() 21888 AType = AType_; in setAType() 21933 && ( AType == rhs.AType ) in operator ==() 21953 ComponentTypeNV AType; member
|
/external/clang/lib/Serialization/ |
D | ASTReader.cpp | 5208 Deserializing AType(this); in readTypeRecord() local
|