Searched refs:size (Results 276 - 300 of 10126) sorted by relevance

<<11121314151617181920>>

/external/llvm/test/MC/ELF/
H A Dentsize.s11 .size .L.str1, 6
16 .size .L.str2, 7
23 .size .L.str3, 9
28 .size .L.str4, 7
/external/openssl/crypto/buffer/
H A Dbuf_str.c100 size_t BUF_strlcpy(char *dst, const char *src, size_t size) argument
103 for(; size > 1 && *src; size--)
108 if (size)
113 size_t BUF_strlcat(char *dst, const char *src, size_t size) argument
116 for(; size > 0 && *dst; size--, dst++)
118 return l + BUF_strlcpy(dst, src, size);
/external/openssl/crypto/ui/
H A Dui_compat.c64 int _ossl_old_des_read_pw(char *buf,char *buff,int size,const char *prompt,int verify) argument
66 return UI_UTIL_read_pw(buf, buff, size, prompt, verify);
/external/oprofile/module/
H A Dop_util.c57 void * rvmalloc(signed long size) argument
62 mem = VMALLOC_32(size);
66 memset(mem, 0, size);
69 while (size > 0) {
73 size -= PAGE_SIZE;
78 void rvfree(void * mem, signed long size) argument
86 while (size > 0) {
91 size -= PAGE_SIZE;
/external/replicaisland/src/com/replica/replicaisland/
H A DHitPointPool.java23 final int size = getSize();
24 for (int x = 0; x < size; x++) {
/external/srec/srec/include/
H A Dhmmlib.h36 int mmap_zip(const char* fname, void** buf, size_t* size);
37 int munmap_zip(void* buf, size_t size);
/external/stlport/src/
H A Dstring.cpp11 size_t size = strlen(ascii); local
12 wchar_t* buff = new wchar_t[size+1];
13 mbstowcs(buff, ascii, size);
14 buff[size] = 0x00;
20 size_t size = wcslen(wide); local
21 char* buff = new char[size+1];
22 wcstombs(buff, wide, size);
23 buff[size] = 0;
/external/v8/src/
H A Dallocation-inl.h37 void* PreallocatedStorage::New(size_t size) { argument
38 return Isolate::Current()->PreallocatedStorageNew(size);
/external/v8/src/ia32/
H A Dcpu-ia32.cc54 void CPU::FlushICache(void* start, size_t size) { argument
70 unsigned res = VALGRIND_DISCARD_TRANSLATIONS(start, size);
/external/v8/src/x64/
H A Dcpu-x64.cc54 void CPU::FlushICache(void* start, size_t size) { argument
70 unsigned res = VALGRIND_DISCARD_TRANSLATIONS(start, size);
/external/v8/test/mjsunit/regress/
H A Dregress-1401.js38 var size = bottom + 1 + 10;
39 var t = (sizes[++bottom] = size);
/external/valgrind/main/callgrind/
H A Dcosts.h23 Int size; member in struct:_CostChunk
31 ULong* CLG_(get_costarray)(Int size);
/external/valgrind/main/memcheck/tests/
H A Dmanuel2.stderr.exp1 Use of uninitialised value of size 4
/external/webkit/Source/JavaScriptCore/jit/
H A DExecutableAllocator.cpp44 // fewer, larger chunks. Set the page size to 256 Kb to compensate
52 ExecutablePool::Allocation ExecutablePool::systemAlloc(size_t size) argument
54 PageAllocation allocation = PageAllocation::allocate(size, OSAllocator::JSJITCodePages, EXECUTABLE_POOL_WRITABLE, true);
88 void ExecutableAllocator::reprotectRegion(void* start, size_t size, ProtectionSetting setting) argument
94 // and account for this extra memory within size.
98 size += (startPtr - pageStartPtr);
100 // Round size up
101 size += (pageSize - 1);
102 size &= ~(pageSize - 1);
104 mprotect(pageStart, size, (settin
111 cacheFlush(void* code, size_t size) argument
[all...]
/external/webkit/Source/JavaScriptCore/parser/
H A DSourceProviderCache.cpp50 void SourceProviderCache::add(int sourcePosition, PassOwnPtr<SourceProviderCacheItem> item, unsigned size) argument
53 m_contentByteSize += size;
/external/webkit/Source/JavaScriptCore/wtf/
H A DPageAllocation.h73 and size.
75 The allocate method is passed the size required (which must be a multiple of
76 the system page size, which can be accessed using PageAllocation::pageSize).
88 using PageBlock::size;
99 static PageAllocation allocate(size_t size, OSAllocator::Usage usage = OSAllocator::UnknownUsage, bool writable = true, bool executable = false) argument
101 ASSERT(isPageAligned(size));
102 return PageAllocation(OSAllocator::reserveAndCommit(size, usage, writable, executable), size);
107 // Clear base & size before calling release; if this is *inside* allocation
115 OSAllocator::decommitAndRelease(tmp.base(), tmp.size());
119 PageAllocation(void* base, size_t size) argument
[all...]
H A DPageBlock.h33 inline bool isPageAligned(size_t size) { return !(size & (pageSize() - 1)); } argument
34 inline bool isPowerOfTwo(size_t size) { return !(size & (size - 1)); } argument
43 size_t size() const { return m_size; } function in class:WTF::PageBlock
70 inline PageBlock::PageBlock(void* base, size_t size) argument
72 , m_size(size)
/external/webkit/Source/WebCore/dom/
H A DDOMStringList.cpp33 if (index >= m_strings.size())
43 size_t count = m_strings.size();
/external/webkit/Source/WebCore/html/
H A DHTMLFontElement.idl25 attribute [Reflect] DOMString size;
/external/webkit/Source/WebCore/html/canvas/
H A DWebGLActiveInfo.idl31 readonly attribute int size;
/external/webkit/Source/WebCore/platform/chromium/
H A DFileChooserChromium.cpp44 else if (m_filenames.size() == 1)
47 return StringTruncator::rightTruncate(multipleFileUploadText(m_filenames.size()), width, font);
/external/webkit/Source/WebCore/platform/efl/
H A DFileChooserEfl.cpp46 else if (m_filenames.size() == 1)
49 return StringTruncator::rightTruncate(multipleFileUploadText(m_filenames.size()), width, font);
/external/webkit/Source/WebCore/platform/graphics/filters/
H A DFEMerge.cpp48 unsigned size = numberOfEffectInputs(); local
49 ASSERT(size > 0);
50 for (unsigned i = 0; i < size; ++i) {
62 for (unsigned i = 0; i < size; ++i) {
77 unsigned size = numberOfEffectInputs(); local
78 ASSERT(size > 0);
79 ts << " mergeNodes=\"" << size << "\"]\n"; local
80 for (unsigned i = 0; i < size; ++i)
/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DFontCustomPlatformData.cpp34 FontPlatformData FontCustomPlatformData::fontPlatformData(int size, bool bold, bool italic, FontOrientation, TextOrientation, FontWidthVariant, FontRenderingMode) argument
36 return FontPlatformData(size, bold, italic);
/external/webkit/Source/WebCore/platform/graphics/pango/
H A DFontCustomPlatformDataPango.cpp33 FontPlatformData FontCustomPlatformData::fontPlatformData(int size, bool bold, bool italic, FontOrientation, TextOrientation, FontWidthVariant, FontRenderingMode) argument
35 return FontPlatformData(m_fontFace, size, bold, italic);

Completed in 418 milliseconds

<<11121314151617181920>>