Home
last modified time | relevance | path

Searched defs:size (Results 1 – 25 of 3835) sorted by relevance

12345678910>>...154

/external/elfutils/libasm/
Dasm_adduint8.c37 #define UFCT(size) _UFCT(size) argument
38 #define _UFCT(size) asm_adduint##size argument
39 #define FCT(size) _FCT(size) argument
40 #define _FCT(size) asm_addint##size argument
41 #define UTYPE(size) _UTYPE(size) argument
42 #define _UTYPE(size) uint##size##_t argument
43 #define TYPE(size) _TYPE(size) argument
44 #define _TYPE(size) int##size##_t argument
Dasm_addint8.c42 #define FCT(size) _FCT(size) argument
43 #define _FCT(size) asm_addint##size argument
44 #define TYPE(size) _TYPE(size) argument
45 #define _TYPE(size) int##size##_t argument
46 #define BSWAP(size) _BSWAP(size) argument
47 #define _BSWAP(size) bswap_##size argument
/external/webkit/Source/WebCore/platform/graphics/
DRoundedIntRect.h48 void setTopLeft(const IntSize& size) { m_topLeft = size; } in setTopLeft()
49 void setTopRight(const IntSize& size) { m_topRight = size; } in setTopRight()
50 void setBottomLeft(const IntSize& size) { m_bottomLeft = size; } in setBottomLeft()
51 void setBottomRight(const IntSize& size) { m_bottomRight = size; } in setBottomRight()
64 void expand(int size) { expand(size, size, size, size); } in expand()
66 void shrink(int size) { shrink(size, size, size, size); } in shrink()
87 void move(const IntSize& size) { m_rect.move(size); } in move()
88 void inflate(int size) { m_rect.inflate(size); } in inflate()
89 void inflateWithRadii(int size) { m_rect.inflate(size); m_radii.expand(size); } in inflateWithRadii()
90 void expandRadii(int size) { m_radii.expand(size); } in expandRadii()
[all …]
DGeneratedImage.h39 static PassRefPtr<GeneratedImage> create(PassRefPtr<Generator> generator, const IntSize& size) in create()
48 virtual void setContainerSize(const IntSize& size) { m_size = size; } in setContainerSize()
53 virtual IntSize size() const { return m_size; } in size() function
64 GeneratedImage(PassRefPtr<Generator> generator, const IntSize& size) in GeneratedImage()
/external/speex/libspeex/
Dstack_alloc.h91 #define ALIGN(stack, size) ((stack) += ((size) - (long)(stack)) & ((size) - 1)) argument
93 #define PUSH(stack, size, type) (VALGRIND_MAKE_NOACCESS(stack, 1000),ALIGN((stack),sizeof(type)),VA… argument
97 #define ALIGN(stack, size) ((stack) += ((size) - (long)(stack)) & ((size) - 1)) argument
99 #define PUSH(stack, size, type) (ALIGN((stack),sizeof(type)),(stack)+=((size)*sizeof(type)),(type*)… argument
105 #define ALLOC(var, size, type) type var[size] argument
108 #define ALLOC(var, size, type) var = alloca(sizeof(type)*(size)) argument
111 #define ALLOC(var, size, type) var = PUSH(stack, size, type) argument
/external/webkit/Source/WebCore/html/
DImageData.cpp34 PassRefPtr<ImageData> ImageData::create(const IntSize& size) in create()
39 PassRefPtr<ImageData> ImageData::create(const IntSize& size, PassRefPtr<ByteArray> byteArray) in create()
44 ImageData::ImageData(const IntSize& size) in ImageData()
50 ImageData::ImageData(const IntSize& size, PassRefPtr<ByteArray> byteArray) in ImageData()
/external/v8/src/
Dzone-inl.h42 inline void* Zone::New(int size) { in New()
100 void* ZoneObject::operator new(size_t size) { in new()
104 void* ZoneObject::operator new(size_t size, Zone* zone) { in new()
109 inline void* ZoneListAllocationPolicy::New(int size) { in New()
115 void* ZoneList<T>::operator new(size_t size) { in new()
121 void* ZoneList<T>::operator new(size_t size, Zone* zone) { in new()
Dallocation.h44 void* operator new(size_t size) { return New(size); } in new()
83 T* NewArray(size_t size) { in NewArray()
107 INLINE(static void* New(size_t size)) { return Malloced::New(size); } in INLINE()
118 size_t size() { return size_; } in size() function
/external/compiler-rt/lib/asan/
Dasan_new_delete.cc36 void *operator new(size_t size) { OPERATOR_NEW_BODY; } in operator new()
37 void *operator new[](size_t size) { OPERATOR_NEW_BODY; } in operator new[]()
39 void *operator new(size_t size) throw(std::bad_alloc) { OPERATOR_NEW_BODY; } in operator new()
40 void *operator new[](size_t size) throw(std::bad_alloc) { OPERATOR_NEW_BODY; } in operator new[]()
41 void *operator new(size_t size, std::nothrow_t const&) throw() in operator new()
43 void *operator new[](size_t size, std::nothrow_t const&) throw() in operator new[]()
/external/eigen/Eigen/src/Eigen2Support/
DVectorBlock.h19 MatrixBase<Derived>::start(Index size) in start()
28 MatrixBase<Derived>::start(Index size) const in start()
37 MatrixBase<Derived>::end(Index size) in end()
46 MatrixBase<Derived>::end(Index size) const in end()
DMemory.h15 inline void* ei_aligned_malloc(size_t size) { return internal::aligned_malloc(size); } in ei_aligned_malloc()
18 inline void* ei_handmade_aligned_malloc(size_t size) { return internal::handmade_aligned_malloc(siz… in ei_handmade_aligned_malloc()
21 template<bool Align> inline void* ei_conditional_aligned_malloc(size_t size) in ei_conditional_aligned_malloc()
34 template<typename T> inline T* ei_aligned_new(size_t size) in ei_aligned_new()
38 template<typename T> inline void ei_aligned_delete(T *ptr, size_t size) in ei_aligned_delete()
/external/eigen/Eigen/src/Core/util/
DMemory.h91 inline void* handmade_aligned_malloc(size_t size) in handmade_aligned_malloc()
134 inline void* generic_aligned_realloc(void* ptr, size_t size, size_t old_size) in generic_aligned_realloc()
194 inline void* aligned_malloc(size_t size) in aligned_malloc()
281 template<bool Align> inline void* conditional_aligned_malloc(size_t size) in conditional_aligned_malloc()
324 template<typename T> inline T* construct_elements_of_array(T *ptr, size_t size) in construct_elements_of_array()
333 template<typename T> inline void destruct_elements_of_array(T *ptr, size_t size) in destruct_elements_of_array()
345 EIGEN_ALWAYS_INLINE void check_size_for_overflow(size_t size) in check_size_for_overflow()
355 template<typename T> inline T* aligned_new(size_t size) in aligned_new()
362 template<typename T, bool Align> inline T* conditional_aligned_new(size_t size) in conditional_aligned_new()
372 template<typename T> inline void aligned_delete(T *ptr, size_t size) in aligned_delete()
[all …]
/external/chromium/base/allocator/
Dgeneric_allocators.cc13 inline void* generic_cpp_alloc(size_t size, bool nothrow) { in generic_cpp_alloc()
27 void* __cdecl operator new(size_t size) { in operator new()
35 void* operator new[](size_t size) { in operator new[]()
43 void* operator new(size_t size, const std::nothrow_t& nt) __THROW { in operator new()
47 void* operator new[](size_t size, const std::nothrow_t& nt) __THROW { in operator new[]()
68 const size_t size = n * elem_size; in calloc() local
95 const size_t size = n * elem_size; in _recalloc() local
100 void* _calloc_impl(size_t n, size_t size) { in _calloc_impl()
121 void* _malloc_dbg(size_t size, int , const char*, int) { in _malloc_dbg()
129 void* _calloc_dbg(size_t n, size_t size, int, const char*, int) { in _calloc_dbg()
/external/compiler-rt/include/sanitizer/
Dasan_interface.h39 uptr size; // The original size of the global. member
95 #define ASAN_POISON_MEMORY_REGION(addr, size) \ argument
97 #define ASAN_UNPOISON_MEMORY_REGION(addr, size) \ argument
100 #define ASAN_POISON_MEMORY_REGION(addr, size) \ argument
102 #define ASAN_UNPOISON_MEMORY_REGION(addr, size) \ argument
/external/replicaisland/src/com/replica/replicaisland/
DFixedSizeArray.java40 public FixedSizeArray(int size) { in FixedSizeArray()
42 assert size > 0; in FixedSizeArray() local
51 public FixedSizeArray(int size, Comparator<T> comparator) { in FixedSizeArray()
53 assert size > 0; in FixedSizeArray() local
/external/protobuf/java/src/main/java/com/google/protobuf/
DByteString.java66 public int size() { in size() method in ByteString
89 final int size) { in copyFrom()
106 public static ByteString copyFrom(final ByteBuffer bytes, final int size) { in copyFrom()
156 int size = 0; in copyFrom() local
192 final int size) { in copyTo()
200 final int size = bytes.length; in toByteArray() local
249 final int size = bytes.length; in equals() local
273 final int size = bytes.length; in hashCode() local
364 static CodedBuilder newCodedBuilder(final int size) { in newCodedBuilder()
373 private CodedBuilder(final int size) { in CodedBuilder()
/external/webkit/Source/WebCore/loader/
DCachedMetadata.h45 static PassRefPtr<CachedMetadata> create(unsigned dataTypeID, const char* data, size_t size) in create()
50 static PassRefPtr<CachedMetadata> deserialize(const char* data, size_t size) in deserialize()
74 size_t size() const in size() function
96 CachedMetadata(const char* data, size_t size) in CachedMetadata()
104 CachedMetadata(unsigned dataTypeID, const char* data, size_t size) in CachedMetadata()
/external/astl/src/
Dostream.cpp65 int size = snprintf(buf, kNumSize, fmt, val); in operator <<() local
72 int size = snprintf(buf, kNumSize, fmt, val); in operator <<() local
79 int size = snprintf(buf, kNumSize, fmt, val); in operator <<() local
86 int size = snprintf(buf, kNumSize, fmt, val); in operator <<() local
93 int size = snprintf(buf, kNumSize, fmt, val); in operator <<() local
100 int size = snprintf(buf, kNumSize, fmt, val); in operator <<() local
108 int size = snprintf(buf, kNumSize, fmt, precision(), val); in operator <<() local
115 int size = snprintf(buf, kNumSize, fmt, precision(), val); in operator <<() local
122 int size = snprintf(buf, kNumSize, fmt, p); in operator <<() local
/external/webkit/Source/JavaScriptCore/wtf/
DPageBlock.h33 inline bool isPageAligned(size_t size) { return !(size & (pageSize() - 1)); } in isPageAligned()
34 inline bool isPowerOfTwo(size_t size) { return !(size & (size - 1)); } in isPowerOfTwo()
43 size_t size() const { return m_size; } in size() function
70 inline PageBlock::PageBlock(void* base, size_t size) in PageBlock()
/external/chromium/sdch/open-vcdiff/src/
Dencodetable.cc141 size_t size, in EncodeInstruction()
210 void VCDiffCodeTableWriter::Add(const char* data, size_t size) { in Add()
216 void VCDiffCodeTableWriter::Copy(int32_t offset, size_t size) { in Copy()
245 void VCDiffCodeTableWriter::Run(size_t size, unsigned char byte) { in Run()
251 size_t VCDiffCodeTableWriter::CalculateLengthOfSizeAsVarint(size_t size) { in CalculateLengthOfSizeAsVarint()
255 void VCDiffCodeTableWriter::AppendSizeToString(size_t size, string* out) { in AppendSizeToString()
260 size_t size, in AppendSizeToOutputString()
/external/webp/src/utils/
Dutils.c22 static int CheckSizeArguments(uint64_t nmemb, size_t size) { in CheckSizeArguments()
30 void* WebPSafeMalloc(uint64_t nmemb, size_t size) { in WebPSafeMalloc()
35 void* WebPSafeCalloc(uint64_t nmemb, size_t size) { in WebPSafeCalloc()
/external/chromium/android/
Dexecinfo.cc7 int backtrace(void **array, int size) { return 0; } in backtrace()
9 char **backtrace_symbols(void *const *array, int size) { return 0; } in backtrace_symbols()
11 void backtrace_symbols_fd (void *const *array, int size, int fd) {} in backtrace_symbols_fd()
/external/webkit/Source/JavaScriptCore/jit/
DExecutableAllocator.h88 size_t size = request + (granularity - 1); in roundUpAllocationSize() local
219 static void makeWritable(void* start, size_t size) in makeWritable()
224 static void makeExecutable(void* start, size_t size) in makeExecutable()
239 static void cacheFlush(void* code, size_t size) in cacheFlush()
265 static void cacheFlush(void* code, size_t size) in cacheFlush()
270 static void cacheFlush(void* code, size_t size) in cacheFlush()
286 static void cacheFlush(void* code, size_t size) in cacheFlush()
293 static void cacheFlush(void* code, size_t size) in cacheFlush()
309 static void cacheFlush(void* code, size_t size) in cacheFlush()
314 static void cacheFlush(void* code, size_t size) in cacheFlush()
[all …]
/external/skia/src/core/
DSkBuffer.cpp14 void SkRBuffer::readNoSizeCheck(void* buffer, size_t size) in readNoSizeCheck()
22 const void* SkRBuffer::skip(size_t size) in skip()
37 void* SkWBuffer::skip(size_t size) in skip()
44 void SkWBuffer::writeNoSizeCheck(const void* buffer, size_t size) in writeNoSizeCheck()
/external/skia/include/core/
DSkReader32.h20 SkReader32(const void* data, size_t size) { in SkReader32()
24 void setMemory(const void* data, size_t size) { in setMemory()
32 uint32_t size() const { return fStop - fBase; } in size() function
39 bool isAvailable(uint32_t size) const { return fCurr + size <= fStop; } in isAvailable()
67 const void* skip(size_t size) { in skip()
80 void read(void* dst, size_t size) { in read()

12345678910>>...154