Searched refs:Size (Results 1 - 25 of 973) 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.cpp58 End = ((char*)CurSlab) + CurSlab->Size;
68 // preserve the Size and NextPtr fields at the beginning.
69 sys::Memory::setRangeWritable(Slab + 1, Slab->Size - sizeof(MemSlab));
70 memset(Slab + 1, 0xCD, Slab->Size - sizeof(MemSlab));
85 End = ((char*)CurSlab) + CurSlab->Size;
91 void *BumpPtrAllocator::Allocate(size_t Size, size_t Alignment) { argument
96 BytesAllocated += Size;
105 if (Ptr + Size <= End) {
106 CurPtr = Ptr + Size;
110 __msan_allocated_memory(Ptr, Size);
177 Allocate(size_t Size) argument
188 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/eigen/Eigen/src/Eigen2Support/
H A DVectorBlock.h54 template<int Size>
55 inline VectorBlock<Derived,Size>
59 return VectorBlock<Derived,Size>(derived(), 0);
64 template<int Size>
65 inline const VectorBlock<const Derived,Size>
69 return VectorBlock<const Derived,Size>(derived(), 0);
74 template<int Size>
75 inline VectorBlock<Derived,Size>
79 return VectorBlock<Derived, Size>(derived(), size() - Size);
[all...]
/external/llvm/include/llvm/Support/
H A DAlignOf.h74 template<std::size_t Alignment, std::size_t Size>
76 alignas(Alignment) char buffer[Size];
81 template<std::size_t Alignment, std::size_t Size>
85 template<std::size_t Size> \
86 struct AlignedCharArray<x, Size> { \
87 __attribute__((aligned(x))) char buffer[Size]; \
108 template<std::size_t Alignment, std::size_t Size>
119 template<std::size_t Size>
120 struct AlignedCharArray<1, Size> {
123 char buffer[Size];
[all...]
/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.h33 enum { Size = SizeOfStr }; enumerator in enum:clang::StringSizerHelper::__anon3465
38 fieldTy>::Size
/external/llvm/lib/MC/
H A DMCInstrAnalysis.cpp14 uint64_t Size) const {
20 return Addr+Size+Imm;
/external/eigen/Eigen/src/Core/
H A DVectorBlock.h22 * \param Size size of the sub-vector we are taking at compile time (optional)
48 template<typename VectorType, int Size>
49 struct traits<VectorBlock<VectorType, Size> >
51 traits<VectorType>::Flags & RowMajorBit ? 1 : Size,
52 traits<VectorType>::Flags & RowMajorBit ? Size : 1> >
57 template<typename VectorType, int Size> class VectorBlock
59 internal::traits<VectorType>::Flags & RowMajorBit ? 1 : Size,
60 internal::traits<VectorType>::Flags & RowMajorBit ? Size : 1>
63 internal::traits<VectorType>::Flags & RowMajorBit ? 1 : Size,
64 internal::traits<VectorType>::Flags & RowMajorBit ? Size
[all...]
/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/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_mutexset_test.cc29 EXPECT_EQ(mset.Size(), (uptr)0);
32 EXPECT_EQ(mset.Size(), (uptr)1);
35 EXPECT_EQ(mset.Size(), (uptr)0);
39 EXPECT_EQ(mset.Size(), (uptr)2);
43 EXPECT_EQ(mset.Size(), (uptr)1);
45 EXPECT_EQ(mset.Size(), (uptr)0);
51 EXPECT_EQ(mset.Size(), (uptr)1);
55 EXPECT_EQ(mset.Size(), (uptr)1);
59 EXPECT_EQ(mset.Size(), (uptr)1);
63 EXPECT_EQ(mset.Size(), (upt
[all...]
H A Dtsan_vector_test.cc22 EXPECT_EQ(v.Size(), (uptr)0);
24 EXPECT_EQ(v.Size(), (uptr)1);
27 EXPECT_EQ(v.Size(), (uptr)2);
37 EXPECT_EQ(v.Size(), (uptr)(i + 1));
/external/llvm/lib/Target/ARM/
H A DARMMachineFunctionInfo.h39 /// VarArgsRegSaveSize - Size of the register save area for vararg functions.
196 int Size = GPRCS1Frames.size(); local
197 if (fi >= Size) {
198 Size *= 2;
199 if (fi >= Size)
200 Size = fi+1;
201 GPRCS1Frames.resize(Size);
208 int Size = GPRCS2Frames.size(); local
209 if (fi >= Size) {
210 Size *
220 int Size = DPRCSFrames.size(); local
[all...]
/external/llvm/tools/lli/
H A DRemoteTarget.cpp23 bool RemoteTarget::allocateSpace(size_t Size, unsigned Alignment, argument
26 sys::MemoryBlock Mem = sys::Memory::AllocateRWX(Size, Prev, &ErrorMsg);
37 bool RemoteTarget::loadData(uint64_t Address, const void *Data, size_t Size) { argument
38 memcpy ((void*)Address, Data, Size);
42 bool RemoteTarget::loadCode(uint64_t Address, const void *Data, size_t Size) { argument
43 memcpy ((void*)Address, Data, Size);
44 sys::MemoryBlock Mem((void*)Address, Size);
H A DRemoteTarget.h38 /// @param Size Amount of space, in bytes, to allocate.
44 bool allocateSpace(size_t Size, unsigned Alignment, uint64_t &Address);
50 /// @param Size Number of bytes to copy.
54 bool loadData(uint64_t Address, const void *Data, size_t Size);
60 /// @param Size Number of bytes to copy.
64 bool loadCode(uint64_t Address, const void *Data, size_t Size);
/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/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;

Completed in 590 milliseconds

1234567891011>>