HomeSort by relevance Sort by last modified time
    Searched defs:Size (Results 1 - 25 of 467) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/lib/AST/
DeclGroup.cpp 22 unsigned Size = sizeof(DeclGroup) + sizeof(Decl*) * NumDecls;
23 void* Mem = C.Allocate(Size, llvm::AlignOf<DeclGroup>::Alignment);
DeclOpenMP.cpp 32 unsigned Size = sizeof(OMPThreadPrivateDecl) +
33 (VL.size() * sizeof(Expr *));
35 void *Mem = C.Allocate(Size, llvm::alignOf<OMPThreadPrivateDecl>());
38 D->NumVars = VL.size();
46 unsigned Size = sizeof(OMPThreadPrivateDecl) + (N * sizeof(Expr *));
48 void *Mem = AllocateDeserializedDecl(C, ID, Size);
56 assert(VL.size() == NumVars &&
  /external/chromium_org/ui/gfx/
size.h 16 typedef struct tagSIZE SIZE;
25 // A size has width and height values.
26 class GFX_EXPORT Size : public SizeBase<Size, int> {
28 Size() : SizeBase<Size, int>(0, 0) {}
29 Size(int width, int height) : SizeBase<Size, int>(width, height) {}
31 explicit Size(const CGSize& s);
34 ~Size() {}
    [all...]
size.cc 5 #include "ui/gfx/size.h"
15 template class SizeBase<Size, int>;
18 Size::Size(const CGSize& s)
19 : SizeBase<Size, int>(s.width, s.height) {
22 Size& Size::operator=(const CGSize& s) {
30 SIZE Size::ToSIZE() const {
31 SIZE s
    [all...]
  /external/chromium_org/webkit/browser/fileapi/
file_system_file_util.cc 13 int64 FileSystemFileUtil::EmptyFileEnumerator::Size() {
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
memory_output_stream.cc 68 size_t MemoryOutputStream::Size() {
69 return store_.size();
  /external/chromium_org/ui/gfx/image/
image_png_rep.cc 10 #include "ui/gfx/size.h"
28 gfx::Size ImagePNGRep::Size() const {
33 if (!gfx::PNGCodec::Decode(raw_data->front(), raw_data->size(),
36 return gfx::Size(0, 0);
38 return gfx::Size(bitmap.width(), bitmap.height());
  /external/clang/include/clang/Basic/
AllDiagnostics.h 33 enum { Size = SizeOfStr };
38 fieldTy>::Size
  /external/sfntly/cpp/src/sfntly/port/
memory_output_stream.cc 68 size_t MemoryOutputStream::Size() {
69 return store_.size();
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/
Size.java 20 * Simple immutable class for keeping a size.
22 public class Size {
26 public Size(int width, int height) {
  /external/chromium_org/chrome/browser/media_galleries/linux/
mtp_device_object_enumerator.cc 30 int64 MTPDeviceObjectEnumerator::Size() {
58 return index_ < file_entries_.size();
  /external/chromium_org/chrome/browser/media_galleries/win/
mtp_device_object_enumerator.cc 36 int64 MTPDeviceObjectEnumerator::Size() {
40 return object_entries_[index_].size;
65 return index_ < object_entries_.size();
  /external/chromium_org/chrome/installer/mini_installer/
pe_resource.cc 20 size_t PEResource::Size() {
35 size_t resource_size = Size();
  /external/chromium_org/third_party/libjingle/source/talk/base/
md5digest.h 43 virtual size_t Size() const {
sha1digest.h 43 virtual size_t Size() const {
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglarray.h 44 EGLint Size;
69 _eglFilterArray(_EGLArray *array, void **data, EGLint size,
74 _eglFlattenArray(_EGLArray *array, void *buffer, EGLint elem_size, EGLint size,
81 return (array) ? array->Size : 0;
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
font_data.cc 25 int32_t FontData::Size() const {
26 return std::min<int32_t>(array_->Size() - bound_offset_, bound_length_);
30 if (offset + length > Size() || offset < 0 || length < 0)
39 if (offset > Size() || offset < 0)
  /external/clang/include/clang/Frontend/
LayoutOverrideSource.h 28 /// \brief The size of the record.
29 uint64_t Size;
52 uint64_t &Size, uint64_t &Alignment,
  /external/clang/test/Sema/
offsetof-64.c 5 const unsigned long Size = (1l << 60);
8 char padding[Size];
9 char more_padding[1][Size];
16 char padding[Size][Size][Size]; // expected-error 2{{array is too large}}
  /external/llvm/include/llvm/CodeGen/
MachineCodeInfo.h 26 size_t Size; // Number of bytes in memory used
30 MachineCodeInfo() : Size(0), Address(0) {}
33 Size = s;
40 size_t size() const { function in class:llvm::MachineCodeInfo
41 return Size;
  /external/llvm/include/llvm/MC/
MCELFStreamer.h 62 virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
73 virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
77 uint64_t Size = 0, unsigned ByteAlignment = 0);
79 uint64_t Size, unsigned ByteAlignment = 0);
80 virtual void EmitValueImpl(const MCExpr *Value, unsigned Size);
107 uint64_t Size;
  /external/llvm/lib/Target/Hexagon/
HexagonVarargsCallingConvention.h 79 unsigned Size =
82 // If it's passed by value, then we need the size of the aggregate not of
85 Size = ByValSize;
91 unsigned Offset3 = State.AllocateStack(Size, Alignment);
134 unsigned Size =
137 unsigned Offset3 = State.AllocateStack(Size, Alignment);
  /external/llvm/lib/Target/Mips/
MipsFrameLowering.cpp 61 // The sp is the stack pointer subtracted/added from the stack size
65 // with offsets that exceeds the stack size: (stacksize+(4*(num_arg-1))
77 // Since the total stack size is unknown on LowerFormalArguments, all
114 unsigned Size = TRI.getMinimalPhysRegClass(*R)->getSize();
115 Offset = RoundUpToAlignment(Offset + Size, Size);
  /external/mesa3d/src/egl/main/
eglarray.h 44 EGLint Size;
69 _eglFilterArray(_EGLArray *array, void **data, EGLint size,
74 _eglFlattenArray(_EGLArray *array, void *buffer, EGLint elem_size, EGLint size,
81 return (array) ? array->Size : 0;
  /external/qemu/distrib/sdl-1.2.15/src/main/symbian/EKA2/
vectorbuffer.cpp 24 TInt TNodeBuffer::TNode::Size() const
43 TNode* node = aPred->Size() == 0 ? aPred : aPred->iSucc;
47 node->iSucc = reinterpret_cast<TNode*>(start + aData.Size());
50 __ASSERT_DEBUG(node->Size() == aData.Size(), VECPANIC(KErrCorrupt));
52 Mem::Copy(start, aData.Ptr(), aData.Size());

Completed in 903 milliseconds

1 2 3 4 5 6 7 8 91011>>