Searched refs:Size (Results 1 - 25 of 839) sorted by relevance

1234567891011>>

/external/llvm/include/llvm/CodeGen/
H A DMachineCodeInfo.h26 size_t Size; // Number of bytes in memory used member in class:llvm::MachineCodeInfo
30 MachineCodeInfo() : Size(0), Address(0) {}
33 Size = s;
41 return Size;
/external/llvm/lib/Support/
H A Draw_os_ostream.cpp26 void raw_os_ostream::write_impl(const char *Ptr, size_t Size) { argument
27 OS.write(Ptr, Size);
H A Dcircular_raw_ostream.cpp18 void circular_raw_ostream::write_impl(const char *Ptr, size_t Size) { argument
20 TheStream->write(Ptr, Size);
25 while (Size != 0) {
27 std::min(unsigned(Size), unsigned(BufferSize - (Cur - BufferArray)));
29 Size -= Bytes;
H A DFormattedStream.cpp23 static unsigned CountColumns(unsigned Column, const char *Ptr, size_t Size) { argument
27 for (const char *End = Ptr + Size; Ptr != End; ++Ptr) {
41 void formatted_raw_ostream::ComputeColumn(const char *Ptr, size_t Size) { argument
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) { argument
72 ComputeColumn(Ptr, Size);
76 TheStream->write(Ptr, Size);
[all...]
H A DAllocator.cpp57 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) { argument
94 BytesAllocated += Size;
103 if (Ptr + Size <= End) {
104 CurPtr = Ptr + Size;
108 // If Size i
169 Allocate(size_t Size) argument
180 PrintRecyclerStats(size_t Size, size_t Align, size_t FreeListSize) argument
[all...]
/external/clang/test/SemaCXX/
H A Ddependent-types.cpp5 template<typename T, int Size> void f() {
10 T x5[Size];
11 int x6[Size];
/external/webkit/Source/JavaScriptCore/wtf/
H A DFixedArray.h33 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/llvm/include/llvm/Support/
H A DMemory.h30 MemoryBlock() : Address(0), Size(0) { }
31 MemoryBlock(void *addr, size_t size) : Address(addr), Size(size) { }
33 size_t size() const { return Size; }
36 size_t Size; ///< Size, in bytes of the memory area member in class:llvm::sys::MemoryBlock
87 static bool setRangeExecutable(const void *Addr, size_t Size);
91 static bool setRangeWritable(const void *Addr, size_t Size);
/external/llvm/lib/Target/PTX/
H A DPTXParamManager.cpp23 unsigned PTXParamManager::addArgumentParam(unsigned Size) { argument
26 Param.Size = Size;
40 unsigned PTXParamManager::addReturnParam(unsigned Size) { argument
43 Param.Size = Size;
57 unsigned PTXParamManager::addLocalParam(unsigned Size) { argument
60 Param.Size = Size;
/external/chromium/webkit/glue/
H A Dimage_decoder.h23 ImageDecoder(const gfx::Size& desired_icon_size);
31 // Size will be empty to get the largest possible size.
32 gfx::Size desired_icon_size_;
/external/clang/include/clang/Basic/
H A DAllDiagnostics.h32 enum { Size = SizeOfStr }; enumerator in enum:clang::StringSizerHelper::__anon2912
37 fieldTy>::Size
/external/llvm/lib/MC/
H A DMCInstrAnalysis.cpp14 uint64_t Size) const {
20 return Addr+Size+Imm;
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DEnumMapTest.java33 enum Size { enum in class:EnumMapTest
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
[all...]
/external/llvm/lib/Target/ARM/
H A DARMMachineFunctionInfo.h39 /// VarArgsRegSaveSize - Size of the register save area for vararg functions.
191 int Size = GPRCS1Frames.size(); local
192 if (fi >= Size) {
193 Size *= 2;
194 if (fi >= Size)
195 Size = fi+1;
196 GPRCS1Frames.resize(Size);
203 int Size = GPRCS2Frames.size(); local
204 if (fi >= Size) {
205 Size *
215 int Size = DPRCSFrames.size(); local
[all...]
/external/chromium/chrome/browser/notifications/
H A Dballoon.h42 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) {
81 void SetContentPreferredSize(const gfx::Size& size);
93 gfx::Size GetViewSize() const { return balloon_view_->GetSize(); }
126 gfx::Size content_size_;
133 gfx::Size min_scrollbar_size_;
/external/chromium/chrome/browser/chromeos/
H A Dnative_dialog_window.h13 class Size;
32 const gfx::Size& size,
33 const gfx::Size& min_size);
/external/chromium/chrome/browser/extensions/
H A Dbrowser_action_test_util.h17 class Size;
62 static gfx::Size GetMinPopupSize();
65 static gfx::Size GetMaxPopupSize();
/external/webkit/Tools/DumpRenderTree/chromium/
H A DWebThemeEngineDRTMac.h40 WebKit::WebThemeEngine::Size,
47 WebKit::WebThemeEngine::Size,
53 WebKit::WebThemeEngine::Size,
/external/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJITMemoryManager.h35 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment, argument
37 return JMM->allocateSpace(Size, Alignment);
40 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment, argument
42 return JMM->allocateSpace(Size, Alignment);
/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DIntSizeHaiku.cpp31 #include <Size.h>
/external/chromium/chrome/browser/chromeos/login/
H A Dnetwork_screen_delegate.h13 class Size;
34 virtual gfx::Size size() const = 0;
/external/chromium/chrome/browser/chromeos/panels/
H A Dpanel_scroller_container.cc21 gfx::Size PanelScrollerContainer::GetPreferredSize() {
22 return gfx::Size(100, 500);
/external/chromium/chrome/browser/ui/cocoa/notifications/
H A Dballoon_view_bridge.h14 class Size;
29 virtual gfx::Size GetSize() const;
/external/chromium/chrome/browser/ui/views/tab_contents/
H A Dnative_tab_contents_view_delegate.h11 class Size;
31 virtual void OnNativeTabContentsViewSized(const gfx::Size& size) = 0;
/external/webkit/Source/WebKit/chromium/public/mac/
H A DWebThemeEngine.h49 enum Size { enum in class:WebKit::WebThemeEngine
73 virtual void paintScrollbarThumb(WebCanvas*, State, Size, const WebRect&, const ScrollbarInfo&) {}

Completed in 516 milliseconds

1234567891011>>