Searched refs:StructFields (Results 1 – 2 of 2) sorted by relevance
/external/llvm/lib/IR/ |
D | Type.cpp | 432 SmallVector<llvm::Type*, 8> StructFields; in get() local 435 StructFields.push_back(type); in get() 438 auto *Ret = llvm::StructType::get(Ctx, StructFields); in get() 475 SmallVector<llvm::Type*, 8> StructFields; in create() local 478 StructFields.push_back(type); in create() 481 auto *Ret = llvm::StructType::create(Ctx, StructFields, Name); in create() 520 SmallVector<llvm::Type*, 8> StructFields; in setBody() local 523 StructFields.push_back(type); in setBody() 526 setBody(StructFields); in setBody()
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | Type.cpp | 472 SmallVector<llvm::Type*, 8> StructFields; in get() local 475 StructFields.push_back(type); in get() 478 return llvm::StructType::get(Ctx, StructFields); in get() 514 SmallVector<llvm::Type*, 8> StructFields; in create() local 517 StructFields.push_back(type); in create() 520 return llvm::StructType::create(Ctx, StructFields, Name); in create() 534 SmallVector<llvm::Type*, 8> StructFields; in setBody() local 537 StructFields.push_back(type); in setBody() 540 setBody(StructFields); in setBody()
|