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

12

/external/dexmaker/src/dx/java/com/android/dx/dex/
H A DSizeOf.java19 public final class SizeOf { class
20 private SizeOf() {} method in class:SizeOf
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DHeaderItem.java20 import com.android.dx.dex.SizeOf;
45 return SizeOf.HEADER_ITEM;
72 out.annotate(4, "header_size: " + Hex.u4(SizeOf.HEADER_ITEM));
88 out.writeInt(SizeOf.HEADER_ITEM);
H A DStringIdItem.java19 import com.android.dx.dex.SizeOf;
81 return SizeOf.STRING_ID_ITEM;
H A DTypeIdItem.java19 import com.android.dx.dex.SizeOf;
47 return SizeOf.TYPE_ID_ITEM;
H A DMemberIdItem.java23 import com.android.dx.dex.SizeOf;
47 return SizeOf.MEMBER_ID_ITEM;
H A DProtoIdItem.java19 import com.android.dx.dex.SizeOf;
106 return SizeOf.PROTO_ID_ITEM;
H A DClassDefItem.java19 import com.android.dx.dex.SizeOf;
123 return SizeOf.CLASS_DEF_ITEM;
/external/clang/test/SemaTemplate/
H A Dinstantiate-static-var.cpp88 struct SizeOf { struct
93 Y3().Foo(X3<SizeOf<char>::value>());
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.h235 /// SizeOf - Return the size of a value in bytes.
237 virtual unsigned SizeOf(AsmPrinter *AP, dwarf::Form Form) const = 0;
282 /// SizeOf - Determine size of integer value in bytes.
284 unsigned SizeOf(AsmPrinter *AP, dwarf::Form Form) const override;
311 /// SizeOf - Determine size of expression value in bytes.
313 unsigned SizeOf(AsmPrinter *AP, dwarf::Form Form) const override;
340 /// SizeOf - Determine size of label value in bytes.
342 unsigned SizeOf(AsmPrinter *AP, dwarf::Form Form) const override;
367 /// SizeOf - Determine size of delta value in bytes.
369 unsigned SizeOf(AsmPrinte
[all...]
H A DDIE.cpp235 /// SizeOf - Determine size of integer value in bytes.
237 unsigned DIEInteger::SizeOf(AsmPrinter *AP, dwarf::Form Form) const { function in class:DIEInteger
274 AP->OutStreamer.EmitValue(Expr, SizeOf(AP, Form));
277 /// SizeOf - Determine size of expression value in bytes.
279 unsigned DIEExpr::SizeOf(AsmPrinter *AP, dwarf::Form Form) const { function in class:DIEExpr
300 AP->EmitLabelReference(Label, SizeOf(AP, Form),
306 /// SizeOf - Determine size of label value in bytes.
308 unsigned DIELabel::SizeOf(AsmPrinter *AP, dwarf::Form Form) const { function in class:DIELabel
328 AP->EmitLabelDifference(LabelHi, LabelLo, SizeOf(AP, Form));
331 /// SizeOf
333 unsigned DIEDelta::SizeOf(AsmPrinter *AP, dwarf::Form Form) const { function in class:DIEDelta
358 unsigned DIEString::SizeOf(AsmPrinter *AP, dwarf::Form Form) const { function in class:DIEString
468 unsigned DIELoc::SizeOf(AsmPrinter *AP, dwarf::Form Form) const { function in class:DIELoc
521 unsigned DIEBlock::SizeOf(AsmPrinter *AP, dwarf::Form Form) const { function in class:DIEBlock
542 unsigned DIELocList::SizeOf(AsmPrinter *AP, dwarf::Form Form) const { function in class:DIELocList
[all...]
H A DDwarfFile.cpp111 Offset += Values[i]->SizeOf(Asm, AbbrevData[i].getForm());
/external/chromium_org/tools/stats_viewer/
H A Dstats_table.cs174 return memory_.ToInt64() + Marshal.SizeOf(typeof(StatsFileHeader));
188 Marshal.SizeOf(typeof(int)));
201 Marshal.SizeOf(typeof(int)));
261 offset += Marshal.SizeOf(typeof(int));
276 Marshal.SizeOf(typeof(int)));
285 data_offset += Marshal.SizeOf(typeof(int));
286 pid_offset += Marshal.SizeOf(typeof(int));
532 Marshal.SizeOf(typeof(int));
/external/chromium_org/tools/win/ChromeDebug/ChromeDebug/
H A DUtility.cs52 int bytesToRead = Marshal.SizeOf(typeof(T));
82 return Marshal.SizeOf(typeof(T));
H A DProcessDetail.cs76 int cbFileInfo = Marshal.SizeOf(info);
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DInflater.cs39 int retval = inflateInit_(ref _ztream, Info.Version, Marshal.SizeOf(_ztream));
H A DDeflater.cs40 int retval = deflateInit_(ref _ztream, (int)level, Info.Version, Marshal.SizeOf(_ztream));
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dfakevideocapturer.h88 // TODO(fbarchard): Extend SizeOf to take fourcc.
93 size = static_cast<uint32>(cricket::VideoFrame::SizeOf(width, height));
H A Dvideoframe.h182 static size_t SizeOf(size_t w, size_t h) { function in class:cricket::VideoFrame
H A Dvideoframe.cc178 size_t needed = SizeOf(dst_width, dst_height);
/external/eigen/Eigen/src/Core/util/
H A DMeta.h119 template<typename Func, typename ArgType, int SizeOf=sizeof(has_none)>
141 template<typename Func, typename ArgType0, typename ArgType1, int SizeOf=sizeof(has_none)>
/external/vixl/src/a64/
H A Ddebugger-a64.cc192 virtual int SizeOf() const = 0;
209 virtual int SizeOf() const { return sizeof(T); } function in class:vixl::Format
579 int size = format->SizeOf();
603 const uint64_t format_size = format->SizeOf() * 8;
625 const uint64_t format_size = format->SizeOf() * 8;
1460 if (format->SizeOf() > target_size) {
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtcvideoframe.cc326 size_t desired_size = SizeOf(new_width, new_height);
370 size_t buffer_size = VideoFrame::SizeOf(w, h);
/external/chromium_org/v8/src/heap/
H A Dobjects-visiting.h204 int object_size = BodyDescriptor::SizeOf(map, object);
212 DCHECK(BodyDescriptor::SizeOf(map, object) == object_size);
/external/pcre/dist/
H A Dpcregexp.pas500 GetMem(Matches,SizeOf(TMatchArray));
511 FreeMem(Matches,SizeOf(TMatchArray));
/external/clang/lib/Sema/
H A DSemaChecking.cpp4031 if (const UnaryExprOrTypeTraitExpr *SizeOf =
4033 if (SizeOf->getKind() == clang::UETT_SizeOf && !SizeOf->isArgumentType())
4034 return SizeOf->getArgumentExpr()->IgnoreParenImpCasts();
4041 if (const UnaryExprOrTypeTraitExpr *SizeOf =
4043 if (SizeOf->getKind() == clang::UETT_SizeOf)
4044 return SizeOf->getTypeOfArgument();

Completed in 823 milliseconds

12