OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StructSize
(Results
1 - 4
of
4
) sorted by null
/external/llvm/lib/IR/
DataLayout.cpp
43
StructSize
= 0;
53
if ((
StructSize
& (TyAlign-1)) != 0) {
55
StructSize
= RoundUpToAlignment(
StructSize
, TyAlign);
61
MemberOffsets[i] =
StructSize
;
62
StructSize
+= DL.getTypeAllocSize(Ty); // Consume space for this data item
70
if ((
StructSize
& (StructAlignment-1)) != 0) {
72
StructSize
= RoundUpToAlignment(
StructSize
, StructAlignment);
/external/llvm/include/llvm/IR/
DataLayout.h
476
uint64_t
StructSize
;
482
uint64_t getSizeInBytes() const { return
StructSize
; }
484
uint64_t getSizeInBits() const { return 8 *
StructSize
; }
/external/llvm/lib/Target/Sparc/
DelaySlotFiller.cpp
88
bool needsUnimp(MachineBasicBlock::iterator I, unsigned &
StructSize
);
152
unsigned
structSize
= 0;
153
if (needsUnimp(MI,
structSize
)) {
158
TII->get(SP::UNIMP)).addImm(
structSize
);
339
bool Filler::needsUnimp(MachineBasicBlock::iterator I, unsigned &
StructSize
)
356
StructSize
= MO.getImm();
/external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp
[
all
...]
Completed in 71 milliseconds