Home
last modified time | relevance | path

Searched refs:StructSize (Results 1 – 6 of 6) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DDataLayout.cpp48 StructSize = 0; in StructLayout()
58 if (!isAligned(TyAlign, StructSize)) { in StructLayout()
60 StructSize = alignTo(StructSize, TyAlign); in StructLayout()
66 MemberOffsets[i] = StructSize; in StructLayout()
67 StructSize += DL.getTypeAllocSize(Ty); // Consume space for this data item in StructLayout()
72 if (!isAligned(StructAlignment, StructSize)) { in StructLayout()
74 StructSize = alignTo(StructSize, StructAlignment); in StructLayout()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DDataLayout.h586 uint64_t StructSize; variable
593 uint64_t getSizeInBytes() const { return StructSize; } in getSizeInBytes()
595 uint64_t getSizeInBits() const { return 8 * StructSize; } in getSizeInBits()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Coroutines/
DCoroFrame.cpp344 unsigned StructSize = 0; member
353 if ((StructSize & (TyAlign - 1)) != 0) in addType()
354 StructSize = alignTo(StructSize, TyAlign); in addType()
356 StructSize += DL.getTypeAllocSize(Ty); // Consume space for this data item. in addType()
366 auto Natural = alignTo(StructSize, TyAlign); in computePadding()
367 auto Forced = alignTo(StructSize, ForcedAlignment); in computePadding()
371 return std::max(Natural, Forced) - StructSize; in computePadding()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/
DDelaySlotFiller.cpp86 bool needsUnimp(MachineBasicBlock::iterator I, unsigned &StructSize);
353 bool Filler::needsUnimp(MachineBasicBlock::iterator I, unsigned &StructSize) in needsUnimp() argument
370 StructSize = MO.getImm(); in needsUnimp()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DBasicAliasAnalysis.cpp1223 const uint64_t StructSize = SL->getSizeInBytes(); in aliasSameBasePointerGEPs() local
1227 auto EltsDontOverlap = [StructSize](uint64_t V1Off, uint64_t V1Size, in aliasSameBasePointerGEPs()
1230 ((V2Off + V2Size <= StructSize) || in aliasSameBasePointerGEPs()
1231 (V2Off + V2Size - StructSize <= V1Off)); in aliasSameBasePointerGEPs()
/third_party/googletest/googlemock/include/gmock/
Dgmock-matchers.h3268 template <typename Struct, typename StructSize>