Searched refs:size (Results 201 - 225 of 10126) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/platform/qt/
H A DQtMobileWebStyle.h35 void drawChecker(QPainter* painter, int size, QColor color) const;
38 void drawRadio(QPainter* painter, const QSize& size, bool checked, QColor color) const;
39 QPixmap findRadio(const QSize& size, bool checked, bool disabled) const;
42 void drawSimpleComboButton(QPainter* painter, const QSize& size, QColor color) const;
43 void drawMultipleComboButton(QPainter* painter, const QSize& size, QColor color) const;
44 QPixmap findComboButton(const QSize& size, bool multiple, bool disabled) const;
/external/webkit/Source/WebCore/platform/win/
H A DBitmapInfo.cpp54 BitmapInfo BitmapInfo::create(const IntSize& size, BitCount bitCount) argument
56 return bitmapInfoForSize(size.width(), size.height(), bitCount);
59 BitmapInfo BitmapInfo::createBottomUp(const IntSize& size, BitCount bitCount) argument
61 return bitmapInfoForSize(size.width(), -size.height(), bitCount);
/external/webkit/Source/WebKit2/Platform/CoreIPC/
H A DArgumentDecoder.cpp77 bool ArgumentDecoder::alignBufferPosition(unsigned alignment, size_t size) argument
80 if (static_cast<size_t>(m_bufferEnd - buffer) < size) {
90 bool ArgumentDecoder::bufferIsLargeEnoughToContain(unsigned alignment, size_t size) const
92 return static_cast<size_t>(m_bufferEnd - roundUpToAlignment(m_bufferPos, alignment)) >= size;
97 uint64_t size; local
98 if (!decodeUInt64(size))
101 if (!alignBufferPosition(1, size))
104 buffer.resize(size);
105 if (size > 0)
106 memcpy(&buffer[0], m_bufferPos, size);
113 uint64_t size; local
130 uint64_t size; local
[all...]
/external/quake/quake/src/QW/client/
H A Dzone.c31 int size; // including the header and possibly tiny fragments member in struct:memblock_s
40 int size; // total bytes malloced, including header member in struct:__anon11433
66 void Z_ClearZone (memzone_t *zone, int size);
74 void Z_ClearZone (memzone_t *zone, int size) argument
84 zone->blocklist.size = 0;
90 block->size = size - sizeof(memzone_t);
117 other->size += block->size;
128 block->size
142 Z_Malloc(int size) argument
155 Z_TagMalloc(int size, int tag) argument
271 int size; // including sizeof(hunk_t), -1 = not allocated member in struct:__anon11434
399 Hunk_AllocName(int size, char *name) argument
439 Hunk_Alloc(int size) argument
487 Hunk_HighAllocName(int size, char *name) argument
533 Hunk_TempAlloc(int size) argument
564 int size; // including this header member in struct:cache_system_s
685 Cache_TryAlloc(int size, qboolean nobottom) argument
876 Cache_Alloc(cache_user_t *c, int size, char *name) argument
918 Memory_Init(void *buf, int size) argument
[all...]
H A Dd_surf.c37 int size, pix; local
41 size = Q_atoi(com_argv[COM_CheckParm("-surfcachesize")+1]) * 1024;
42 return size;
45 size = SURFCACHE_SIZE_AT_320X200;
49 size += (pix-64000)*3;
52 return size;
83 void D_InitCaches (void *buffer, int size) argument
86 // Con_Printf ("%ik surface cache\n", size/1024);
88 sc_size = size - GUARDSIZE;
94 sc_base->size
129 D_SCAlloc(int width, int size) argument
[all...]
/external/chromium/sdch/open-vcdiff/src/
H A Dcodetablewriter_interface.h32 // Encode an ADD opcode with the "size" bytes starting at data
33 virtual void Add(const char* data, size_t size) = 0;
35 // Encode a COPY opcode with args "offset" (into dictionary) and "size" bytes.
36 virtual void Copy(int32_t offset, size_t size) = 0;
38 // Encode a RUN opcode for "size" copies of the value "byte".
39 virtual void Run(size_t size, unsigned char byte) = 0;
47 // size arguments passed to Add(), Copy(), and Run().
H A Doutput_string_test.cc66 EXPECT_EQ(string_.size(), output_string_.size());
68 EXPECT_EQ(string_.size(), output_string_.size());
70 EXPECT_EQ(string_.size(), output_string_.size());
106 EXPECT_EQ(crope_.size(), output_crope_.size());
108 EXPECT_EQ(crope_.size(), output_crope_.size());
[all...]
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator64_testlib.cc59 void *malloc(size_t size) { argument
62 return allocator.Allocate(&cache, size, 8);
70 void *calloc(size_t nmemb, size_t size) { argument
72 return allocator.Allocate(&cache, nmemb * size, 8, /*cleared=*/true);
82 int posix_memalign(void **memptr, size_t alignment, size_t size) { argument
83 *memptr = allocator.Allocate(&cache, size, alignment);
88 void *valloc(size_t size) { argument
90 return allocator.Allocate(&cache, size, kPageSize);
93 void *pvalloc(size_t size) { argument
95 if (size
[all...]
/external/dropbear/libtommath/
H A Dbn_mp_prime_rabin_miller_trials.c32 /* returns # of RM trials required for a given bit size */
33 int mp_prime_rabin_miller_trials(int size) argument
38 if (sizes[x].k == size) {
40 } else if (sizes[x].k > size) {
/external/elfutils/libasm/
H A Dasm_addint8.c42 #define FCT(size) _FCT(size)
43 #define _FCT(size) asm_addint##size
44 #define TYPE(size) _TYPE(size)
45 #define _TYPE(size) int##size##_t
46 #define BSWAP(size) _BSWAP(size)
[all...]
/external/llvm/lib/Support/
H A DMemoryObject.cpp17 uint64_t size,
23 if (current + size > limit)
26 while (current - address < size) {
16 readBytes(uint64_t address, uint64_t size, uint8_t* buf, uint64_t* copied) const argument
/external/qemu/hw/
H A Disa.h11 void isa_mmio_init(target_phys_addr_t base, target_phys_addr_t size);
15 int DMA_read_memory (int nchan, void *buf, int pos, int size);
16 int DMA_write_memory (int nchan, void *buf, int pos, int size);
/external/v8/src/
H A Dallocation.h44 void* operator new(size_t size) { return New(size); } argument
48 static void* New(size_t size);
63 void* operator new(size_t size);
76 void* operator new(size_t size);
83 T* NewArray(size_t size) { argument
84 T* result = new T[size];
107 INLINE(static void* New(size_t size)) { return Malloced::New(size); } argument
117 explicit PreallocatedStorage(size_t size);
118 size_t size() { return size_; } function in class:v8::internal::PreallocatedStorage
[all...]
/external/valgrind/main/memcheck/tests/
H A Dnew_override.cpp9 void *operator new[](size_t size) argument
11 void *ret = malloc(size);
13 for (unsigned int i = 0; i < size; i++) ((char *) ret)[i] = 0xFF;
/external/webkit/Source/JavaScriptCore/wtf/
H A DPageAllocationAligned.cpp31 PageAllocationAligned PageAllocationAligned::allocate(size_t size, size_t alignment, OSAllocator::Usage usage, bool writable, bool executable) argument
33 ASSERT(isPageAligned(size));
36 ASSERT(size >= alignment);
50 vm_map(current_task(), &address, size, alignmentMask, flags, MEMORY_OBJECT_NULL, 0, FALSE, protection, PROT_READ | PROT_WRITE | PROT_EXEC, VM_INHERIT_DEFAULT); local
51 return PageAllocationAligned(reinterpret_cast<void*>(address), size);
56 size_t reservationSize = size + alignmentDelta;
63 OSAllocator::commit(alignedBase, size, writable, executable);
65 return PageAllocationAligned(alignedBase, size, reservationBase, reservationSize);
71 // Clear base & size before calling release; if this is *inside* allocation
80 vm_deallocate(current_task(), reinterpret_cast<vm_address_t>(tmp.base()), tmp.size());
[all...]
/external/webkit/Source/WebCore/dom/
H A DStaticNodeList.cpp38 return m_nodes.size();
43 if (index < m_nodes.size())
50 size_t length = m_nodes.size();
/external/webkit/Source/WebCore/platform/graphics/opentype/
H A DOpenTypeSanitizer.cpp47 // This is the largest web font size which we'll try to transcode.
49 if (m_buffer->size() > maxWebFontSize)
59 ots::ExpandingMemoryStream output(m_buffer->size(), maxWebFontSize);
60 if (!ots::Process(&output, reinterpret_cast<const uint8_t*>(m_buffer->data()), m_buffer->size()))
/external/webkit/Source/WebCore/platform/graphics/transforms/
H A DMatrix3DTransformOperation.cpp41 IntSize size;
45 from->apply(fromT, size);
47 apply(toT, size);
/external/webkit/Source/WebKit/chromium/src/
H A DWebFileChooserCompletionImpl.cpp47 if (fileNames.size() == 1)
49 else if (fileNames.size() > 0) {
51 for (size_t i = 0; i < fileNames.size(); ++i)
/external/webkit/Source/WebKit2/Shared/API/c/
H A DWKData.cpp39 WKDataRef WKDataCreate(const unsigned char* bytes, size_t size) argument
41 RefPtr<WebData> data = WebData::create(bytes, size);
52 return toImpl(dataRef)->size();
H A DWKImage.cpp39 WKImageRef WKImageCreate(WKSize size, WKImageOptions options) argument
41 RefPtr<WebImage> webImage = WebImage::create(toIntSize(size), toImageOptions(options));
47 return toAPI(toImpl(imageRef)->size());
/external/chromium/base/memory/
H A Dref_counted_memory.cc17 size_t RefCountedStaticMemory::size() const { function in class:RefCountedStaticMemory
38 return size() ? &data.front() : NULL;
41 size_t RefCountedBytes::size() const { function in class:RefCountedBytes
42 return data.size();
/external/clang/test/CodeGenCXX/
H A Dnew-operator-phi.cpp5 struct X {static void * operator new(size_t size) throw(); X(int); };
/external/clang/test/Sema/
H A Dimplicit-builtin-redecl.c5 static void* malloc(int size) { argument
/external/clang/test/SemaCXX/
H A Dwarn-large-by-value-copy.cpp29 template <unsigned size>
31 char x[size];
34 template <unsigned size>
35 void tf(TS<size> ts) {} // expected-warning {{ts' is a large (300 bytes) pass-by-value argument}}

Completed in 392 milliseconds

1234567891011>>