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

1 2 3 4 5 6 7 8 91011>>

  /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/webkit/Source/JavaScriptCore/wtf/
FixedArray.h 33 template <typename T, size_t Size> class FixedArray {
37 ASSERT(i < Size);
43 ASSERT(i < Size);
48 size_t size() const { return Size; }
51 T m_data[Size];
  /external/chromium/webkit/glue/
image_decoder.h 6 #include "ui/gfx/size.h"
20 // format and care about which size you get back. Otherwise, use the 0-arg
23 ImageDecoder(const gfx::Size& desired_icon_size);
28 SkBitmap Decode(const unsigned char* data, size_t size) const;
31 // Size will be empty to get the largest possible size.
32 gfx::Size desired_icon_size_;
  /external/llvm/lib/Support/
raw_os_ostream.cpp 26 void raw_os_ostream::write_impl(const char *Ptr, size_t Size) {
27 OS.write(Ptr, Size);
circular_raw_ostream.cpp 18 void circular_raw_ostream::write_impl(const char *Ptr, size_t Size) {
20 TheStream->write(Ptr, Size);
25 while (Size != 0) {
27 std::min(unsigned(Size), unsigned(BufferSize - (Cur - BufferArray)));
29 Size -= Bytes;
FormattedStream.cpp 23 static unsigned CountColumns(unsigned Column, const char *Ptr, size_t Size) {
27 for (const char *End = Ptr + Size; Ptr != End; ++Ptr) {
41 void formatted_raw_ostream::ComputeColumn(const char *Ptr, size_t Size) {
45 if (Ptr <= Scanned && Scanned <= Ptr + Size) {
49 Size - (Scanned - Ptr));
51 ColumnScanned = CountColumns(ColumnScanned, Ptr, Size);
54 Scanned = Ptr + Size;
70 void formatted_raw_ostream::write_impl(const char *Ptr, size_t Size) {
72 ComputeColumn(Ptr, Size);
76 TheStream->write(Ptr, Size);
    [all...]
Allocator.cpp 23 BumpPtrAllocator::BumpPtrAllocator(size_t size, size_t threshold,
25 : SlabSize(size), SizeThreshold(threshold), Allocator(allocator),
48 // to allocate more. Increase slab size to reduce mallocs and possibly memory
57 End = ((char*)CurSlab) + CurSlab->Size;
67 // preserve the Size and NextPtr fields at the beginning.
68 sys::Memory::setRangeWritable(Slab + 1, Slab->Size - sizeof(MemSlab));
69 memset(Slab + 1, 0xCD, Slab->Size - sizeof(MemSlab));
84 End = ((char*)CurSlab) + CurSlab->Size;
89 void *BumpPtrAllocator::Allocate(size_t Size, size_t Alignment) {
94 BytesAllocated += Size;
    [all...]
  /external/clang/test/SemaCXX/
dependent-types.cpp 5 template<typename T, int Size> void f() {
9 T x4[]; // expected-error{{needs an explicit size or an initializer}}
10 T x5[Size];
11 int x6[Size];
  /external/llvm/include/llvm/Support/
Memory.h 24 /// and a size. It is used by the Memory class (a friend) as the result of
30 MemoryBlock() : Address(0), Size(0) { }
31 MemoryBlock(void *addr, size_t size) : Address(addr), Size(size) { }
33 size_t size() const { return Size; } function in class:llvm::sys::MemoryBlock
36 size_t Size; ///< Size, in bytes of the memory area
87 static bool setRangeExecutable(const void *Addr, size_t Size);
    [all...]
RecyclingAllocator.h 26 size_t Size = sizeof(T), size_t Align = AlignOf<T>::Alignment>
31 Recycler<T, Size, Align> Base;
59 template<class AllocatorType, class T, size_t Size, size_t Align>
62 T, Size, Align> &Allocator) {
66 template<class AllocatorType, class T, size_t Size, size_t Align>
69 T, Size, Align> &A) {
raw_ostream.h 91 /// determined buffer size.
95 /// specified buffer size.
96 void SetBufferSize(size_t Size) {
98 SetBufferAndMode(new char[Size], Size, InternalBuffer);
107 // Otherwise just return the size of the allocated buffer.
156 size_t Size = Str.size();
159 if (OutBufCur+Size > OutBufEnd)
160 return write(Str.data(), Size);
    [all...]
  /external/chromium/chrome/browser/chromeos/
native_dialog_window.h 13 class Size;
26 // of the NativeDialogFlags. |size| is a default size. Zero width/height of
27 // |size| means let gtk choose a proper size for that dimension. |min_size| is
28 // the minimum size of the final host Window.
32 const gfx::Size& size,
33 const gfx::Size& min_size);
wm_overview_title.h 16 class Size;
29 void Init(const gfx::Size& size, WmOverviewSnapshot* snapshot);
  /external/chromium/chrome/browser/chromeos/login/
network_screen_delegate.h 13 class Size;
34 virtual gfx::Size size() const = 0;
  /external/chromium/chrome/browser/ui/cocoa/notifications/
balloon_view_bridge.h 14 class Size;
29 virtual gfx::Size GetSize() const;
  /external/chromium/chrome/browser/ui/views/tab_contents/
native_tab_contents_view_delegate.h 11 class Size;
31 virtual void OnNativeTabContentsViewSized(const gfx::Size& size) = 0;
  /frameworks/base/media/libeffects/lvm/lib/Common/src/
InstAlloc.c 25 * Description : Initializes the instance distribution and memory size calculation function
40 Size - The size in bytes of the new added member
49 LVM_UINT32 Size )
54 Size = ((Size + 3) & 0xFFFFFFFC); /* Ceil the size to a multiple of four */
56 pms->TotalSize += Size;
57 pms->pNextMember += Size;
66 * Returns : The instance memory size
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
EnumMapTest.java 33 enum Size {
90 new EnumMap(Size.Big.getClass());
117 EnumMap enumSizeMap = new EnumMap(Size.class);
119 Size.Big, 2));
121 enumSizeMap.get(Size.Big));
129 enumSizeMap = new EnumMap(Size.Middle.getClass());
131 Size.Small, 1));
133 enumSizeMap.get(Size.Small));
169 enumMap.put(Size.Middle, 2);
216 hashColorMap.put(Size.Big, 3)
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
EnumMapTest.java 35 enum Size {
92 new EnumMap(Size.Big.getClass());
119 EnumMap enumSizeMap = new EnumMap(Size.class);
121 Size.Big, 2));
123 enumSizeMap.get(Size.Big));
131 enumSizeMap = new EnumMap(Size.Middle.getClass());
133 Size.Small, 1));
135 enumSizeMap.get(Size.Small));
171 enumMap.put(Size.Middle, 2);
218 hashColorMap.put(Size.Big, 3)
    [all...]
  /external/llvm/lib/Target/ARM/
ARMMachineFunctionInfo.h 38 /// VarArgsRegSaveSize - Size of the register save area for vararg functions.
157 if (fi < 0 || fi >= (int)GPRCS1Frames.size())
162 if (fi < 0 || fi >= (int)GPRCS2Frames.size())
167 if (fi < 0 || fi >= (int)DPRCSFrames.size())
174 int Size = GPRCS1Frames.size();
175 if (fi >= Size) {
176 Size *= 2;
177 if (fi >= Size)
178 Size = fi+1
    [all...]
  /external/chromium/chrome/browser/notifications/
balloon.h 15 #include "ui/gfx/size.h"
41 // The total size of the view.
42 virtual gfx::Size GetSize() const = 0;
68 const gfx::Size& content_size() const { return content_size_; }
69 void set_content_size(const gfx::Size& size) { content_size_ = size; }
73 const gfx::Size& min_scrollbar_size() const { return min_scrollbar_size_; }
74 void set_min_scrollbar_size(const gfx::Size& size) {
    [all...]
  /external/chromium/chrome/browser/extensions/
browser_action_test_util.h 17 class Size;
61 // Returns the minimum allowed size of an extension popup.
62 static gfx::Size GetMinPopupSize();
64 // Returns the maximum allowed size of an extension popup.
65 static gfx::Size GetMaxPopupSize();
  /external/chromium/chrome/browser/ui/views/location_bar/
selected_keyword_view.h 17 class Size;
31 virtual gfx::Size GetPreferredSize();
32 virtual gfx::Size GetMinimumSize();
47 // These labels are never visible. They are used to size the view. One
  /external/webkit/Tools/DumpRenderTree/chromium/
WebThemeEngineDRTMac.h 40 WebKit::WebThemeEngine::Size,
47 WebKit::WebThemeEngine::Size,
53 WebKit::WebThemeEngine::Size,
  /frameworks/base/media/libeffects/lvm/lib/Common/lib/
InstAlloc.h 31 LVM_UINT32 TotalSize; /* Accumulative total memory size */
45 * Description : Initializes the instance distribution and memory size calculation function
55 Size - The size in bytes of the new added member
63 void* InstAlloc_AddMember( INST_ALLOC *pms, LVM_UINT32 Size );
68 * Returns : The instance memory size
69 * Description : This functions returns the calculated instance memory size
76 LVM_UINT32 Size[],
80 LVM_UINT32 Size[],

Completed in 306 milliseconds

1 2 3 4 5 6 7 8 91011>>