Home
last modified time | relevance | path

Searched refs:AlignInBytes (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/subzero/src/
DIceInst.cpp274 uint32_t AlignInBytes) in InstAlloca() argument
275 : InstHighLevel(Func, Inst::Alloca, 1, Dest), AlignInBytes(AlignInBytes) { in InstAlloca()
277 assert(AlignInBytes == 0 || llvm::isPowerOf2_32(AlignInBytes)); in InstAlloca()
DIceInst.h283 uint32_t AlignInBytes) { in create() argument
285 InstAlloca(Func, Dest, ByteCount, AlignInBytes); in create()
287 uint32_t getAlignInBytes() const { return AlignInBytes; } in getAlignInBytes()
297 uint32_t AlignInBytes);
299 const uint32_t AlignInBytes; variable