/external/clang/lib/Headers/ |
D | mm_malloc.h | 33 extern int posix_memalign(void **__memptr, size_t __alignment, size_t __size); 39 extern "C" int posix_memalign(void **__memptr, size_t __alignment, size_t __size); 46 _mm_malloc(size_t __size, size_t __align) in _mm_malloc() argument 49 return malloc(__size); in _mm_malloc() 57 __mallocedMemory = __mingw_aligned_malloc(__size, __align); in _mm_malloc() 59 __mallocedMemory = _aligned_malloc(__size, __align); in _mm_malloc() 61 if (posix_memalign(&__mallocedMemory, __align, __size)) in _mm_malloc()
|
D | __clang_cuda_runtime_wrapper.h | 265 __device__ static inline void *malloc(size_t __size) { in malloc() argument 266 return ::malloc(__size); in malloc()
|
/external/e2fsprogs/e2fsck/ |
D | mtrace.h | 61 extern __ptr_t malloc __P ((size_t __size)); 64 extern __ptr_t realloc __P ((__ptr_t __ptr, size_t __size)); 66 extern __ptr_t calloc __P ((size_t __nmemb, size_t __size)); 71 extern __ptr_t memalign __P ((size_t __alignment, size_t __size)); 74 extern __ptr_t valloc __P ((size_t __size)); 195 extern __ptr_t (*__morecore) __P ((ptrdiff_t __size)); 198 extern __ptr_t __default_morecore __P ((ptrdiff_t __size)); 205 extern __ptr_t (*__malloc_hook) __P ((size_t __size)); 206 extern __ptr_t (*__realloc_hook) __P ((__ptr_t __ptr, size_t __size));
|
/external/python/apitools/apitools/base/py/ |
D | compression.py | 101 self.__size = 0 104 return self.__size 109 return bool(self.__size) 114 return self.__size 121 self.__size += len(data) 136 size = self.__size 146 self.__size -= len(ret)
|
/external/u-boot/arch/arm/mach-snapdragon/ |
D | misc.c | 16 const int __size = size; \ 17 const u32 __mask = (__size < 32 ? 1 << __size : 0) - 1; \ 23 if (__size + __shft > 32) \
|
/external/libcxx/include/ |
D | new | 223 inline _LIBCPP_INLINE_VISIBILITY void *__libcpp_allocate(size_t __size, size_t __align) { 228 return ::operator new(__size, __align_val); 230 return __builtin_operator_new(__size, __align_val); 237 return ::operator new(__size); 239 return __builtin_operator_new(__size); 245 void __do_deallocate_handle_size_align(void *__ptr, size_t __size, size_t __align) { 248 return __do_deallocate_handle_size(__ptr, __size); 252 return __do_deallocate_handle_size(__ptr, __size, __align_val); 254 return __do_deallocate_handle_size(__ptr, __size); 275 static inline void __do_deallocate_handle_size(void *__ptr, size_t __size) { [all …]
|
D | span | 382 _LIBCPP_INLINE_VISIBILITY constexpr span() noexcept : __data{nullptr}, __size{0} {} 387 …NE_VISIBILITY constexpr span(pointer __ptr, index_type __count) : __data{__ptr}, __size{__count} {} 388 …_LIBCPP_INLINE_VISIBILITY constexpr span(pointer __f, pointer __l) : __data{__f}, __size{distance(… 392 constexpr span(element_type (&__arr)[_Sz]) noexcept : __data{__arr}, __size{_Sz} {} 396 …constexpr span(array<value_type, _Sz>& __arr) noexcept : __data{__arr.data()}, __size{_Sz} {} 400 …constexpr span(const array<value_type, _Sz>& __arr) noexcept : __data{__arr.data()}, __size{_Sz} {} 406 : __data{_VSTD::data(__c)}, __size{(index_type) _VSTD::size(__c)} {} 412 : __data{_VSTD::data(__c)}, __size{(index_type) _VSTD::size(__c)} {} 421 : __data{__other.data()}, __size{__other.size()} {} 478 _LIBCPP_INLINE_VISIBILITY constexpr index_type size() const noexcept { return __size; } [all …]
|
D | string_view | 220 basic_string_view() _NOEXCEPT : __data (nullptr), __size(0) {} 230 : __data(__s), __size(__len) 239 : __data(__s), __size(_Traits::length(__s)) {} 252 const_iterator cend() const _NOEXCEPT { return __data + __size; } 268 size_type size() const _NOEXCEPT { return __size; } 271 size_type length() const _NOEXCEPT { return __size; } 277 bool empty() const _NOEXCEPT { return __size == 0; } 300 return _LIBCPP_ASSERT(!empty(), "string_view::back(): string is empty"), __data[__size-1]; 312 __size -= __n; 319 __size -= __n; [all …]
|
/external/mesa3d/src/util/ |
D | bitset.h | 153 #define BITSET_FOREACH_SET(__i, __set, __size) \ argument 156 (__i = __bitset_next_set(__i, &__tmp, __set, __size)) < __size;) 209 #define BITSET_FOREACH_RANGE(__start, __end, __set, __size) \ argument 211 __bitset_next_range(&__start, &__end, __set, __size); \ 212 __start < __size; \ 213 __bitset_next_range(&__start, &__end, __set, __size))
|
/external/rust/crates/libc/src/unix/linux_like/linux/gnu/ |
D | no_align.rs | 5 __size: [::c_char; 16], 7 __size: [::c_char; 32],
|
D | align.rs | 9 __size: [::c_char; 16], 11 __size: [::c_char; 32],
|
/external/rust/crates/libc/src/unix/uclibc/mips/mips32/ |
D | no_align.rs | 5 __size: [::c_char; 16], 7 __size: [::c_char; 32],
|
D | align.rs | 9 __size: [::c_char; 16], 11 __size: [::c_char; 32],
|
/external/rust/crates/libc/src/unix/uclibc/arm/ |
D | no_align.rs | 5 __size: [::c_char; 16], 7 __size: [::c_char; 32],
|
D | align.rs | 9 __size: [::c_char; 16], 11 __size: [::c_char; 32],
|
/external/rust/crates/libc/src/unix/uclibc/x86_64/ |
D | no_align.rs | 6 __size: [::c_char; 16], 8 __size: [::c_char; 32],
|
D | align.rs | 10 __size: [::c_char; 16], 12 __size: [::c_char; 32],
|
/external/libcxx/src/experimental/ |
D | memory_resource.cpp | 33 virtual void* do_allocate(size_t __size, size_t __align) in do_allocate() argument 34 { return _VSTD::__libcpp_allocate(__size, __align); /* FIXME */} in do_allocate()
|
/external/iproute2/include/uapi/linux/netfilter/ |
D | x_tables.h | 57 #define XT_TARGET_INIT(__name, __size) \ argument 60 .target_size = XT_ALIGN(__size), \
|
/external/kernel-headers/original/uapi/linux/netfilter/ |
D | x_tables.h | 57 #define XT_TARGET_INIT(__name, __size) \ argument 60 .target_size = XT_ALIGN(__size), \
|
/external/iptables/include/linux/netfilter_ipv6/ |
D | ip6_tables.h | 138 #define IP6T_ENTRY_INIT(__size) \ argument 141 .next_offset = (__size), \
|
/external/iproute2/include/uapi/linux/netfilter_ipv6/ |
D | ip6_tables.h | 140 #define IP6T_ENTRY_INIT(__size) \ argument 143 .next_offset = (__size), \
|
/external/kernel-headers/original/uapi/linux/netfilter_ipv6/ |
D | ip6_tables.h | 142 #define IP6T_ENTRY_INIT(__size) \ argument 145 .next_offset = (__size), \
|
/external/iptables/include/linux/netfilter/ |
D | x_tables.h | 56 #define XT_TARGET_INIT(__name, __size) \ argument 59 .target_size = XT_ALIGN(__size), \
|
/external/crosvm/usb_util/src/ |
D | bindings.rs | 579 pub __size: [::std::os::raw::c_char; 56usize], 596 unsafe { &(*(::std::ptr::null::<pthread_attr_t>())).__size as *const _ as usize }, in bindgen_test_layout_pthread_attr_t() 602 stringify!(__size) in bindgen_test_layout_pthread_attr_t() 660 pub __size: [::std::os::raw::c_char; 40usize], 819 unsafe { &(*(::std::ptr::null::<pthread_mutex_t>())).__size as *const _ as usize }, in bindgen_test_layout_pthread_mutex_t() 825 stringify!(__size) in bindgen_test_layout_pthread_mutex_t() 842 pub __size: [::std::os::raw::c_char; 4usize], 859 unsafe { &(*(::std::ptr::null::<pthread_mutexattr_t>())).__size as *const _ as usize }, in bindgen_test_layout_pthread_mutexattr_t() 865 stringify!(__size) in bindgen_test_layout_pthread_mutexattr_t() 883 pub __size: [::std::os::raw::c_char; 48usize], [all …]
|