Searched refs:SizeOf (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.0-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.cpp222 /// SizeOf - Determine size of integer value in bytes.
224 unsigned DIEInteger::SizeOf(AsmPrinter *AP, unsigned Form) const { function in class:DIEInteger
260 AP->OutStreamer.EmitSymbolValue(Label, SizeOf(AP, Form));
263 /// SizeOf - Determine size of label value in bytes.
265 unsigned DIELabel::SizeOf(AsmPrinter *AP, unsigned Form) const { function in class:DIELabel
285 AP->EmitLabelDifference(LabelHi, LabelLo, SizeOf(AP, Form));
288 /// SizeOf - Determine size of delta value in bytes.
290 unsigned DIEDelta::SizeOf(AsmPrinter *AP, unsigned Form) const { function in class:DIEDelta
328 Size += Values[i]->SizeOf(AP, AbbrevData[i].getForm());
350 /// SizeOf
352 unsigned DIEBlock::SizeOf(AsmPrinter *AP, unsigned Form) const { function in class:DIEBlock
[all...]
H A DDIE.h215 /// SizeOf - Return the size of a value in bytes.
217 virtual unsigned SizeOf(AsmPrinter *AP, unsigned Form) const = 0;
255 /// SizeOf - Determine size of integer value in bytes.
257 virtual unsigned SizeOf(AsmPrinter *AP, unsigned Form) const;
283 /// SizeOf - Determine size of label value in bytes.
285 virtual unsigned SizeOf(AsmPrinter *AP, unsigned Form) const;
309 /// SizeOf - Determine size of delta value in bytes.
311 virtual unsigned SizeOf(AsmPrinter *AP, unsigned Form) const;
336 /// SizeOf - Determine size of debug information entry in bytes.
338 virtual unsigned SizeOf(AsmPrinte function in class:llvm::DIEEntry
[all...]
H A DDwarfDebug.cpp1795 Offset += Values[i]->SizeOf(Asm, AbbrevData[i].getForm());
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaChecking.cpp3217 if (const UnaryExprOrTypeTraitExpr *SizeOf =
3219 if (SizeOf->getKind() == clang::UETT_SizeOf && !SizeOf->isArgumentType())
3220 return SizeOf->getArgumentExpr()->IgnoreParenImpCasts();
3227 if (const UnaryExprOrTypeTraitExpr *SizeOf =
3229 if (SizeOf->getKind() == clang::UETT_SizeOf)
3230 return SizeOf->getTypeOfArgument();

Completed in 117 milliseconds