Searched refs:__size (Results 1 - 21 of 21) sorted by relevance

/freebsd-10-stable/contrib/llvm/tools/clang/lib/Headers/
H A Dmm_malloc.h33 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) argument
49 return malloc(__size);
57 __mallocedMemory = __mingw_aligned_malloc(__size, __align);
59 __mallocedMemory = _aligned_malloc(__size, __align);
61 if (posix_memalign(&__mallocedMemory, __align, __size))
/freebsd-10-stable/contrib/libstdc++/src/
H A Distream.cc59 streamsize __size = std::min(streamsize(__sb->egptr() local
63 if (__size > 1)
66 __size,
69 __size = __p - __sb->gptr();
70 traits_type::copy(__s, __sb->gptr(), __size);
71 __s += __size;
72 __sb->gbump(__size);
73 _M_gcount += __size;
135 streamsize __size = std::min(streamsize(__sb->egptr() local
138 if (__size >
220 streamsize __size = std::min(streamsize(__sb->egptr() local
296 streamsize __size = std::min(streamsize(__sb->egptr() local
369 streamsize __size = std::min(streamsize(__sb->egptr() local
439 streamsize __size = std::min(streamsize(__sb->egptr() local
515 streamsize __size = std::min(streamsize(__sb->egptr() local
598 streamsize __size = std::min(streamsize(__sb->egptr() local
[all...]
H A Dcompatibility.cc84 streamsize __size = std::min(streamsize(__sb->egptr() local
87 if (__size > 1)
89 __sb->gbump(__size);
90 _M_gcount += __size;
149 streamsize __size = std::min(streamsize(__sb->egptr() local
152 if (__size > 1)
154 __sb->gbump(__size);
155 _M_gcount += __size;
/freebsd-10-stable/contrib/gcclibs/libssp/ssp/
H A Dunistd.h74 (char *__buf, size_t __size), getcwd);
77 getcwd (char *__buf, size_t __size) argument
79 if (__ssp_bos (__buf) != (size_t) -1 && __size > __ssp_bos (__buf))
81 return __getcwd_alias (__buf, __size);
/freebsd-10-stable/contrib/libstdc++/include/ext/
H A Dstdio_filebuf.h79 size_t __size = static_cast<size_t>(BUFSIZ));
92 size_t __size = static_cast<size_t>(BUFSIZ));
129 stdio_filebuf(int __fd, std::ios_base::openmode __mode, size_t __size) argument
135 this->_M_buf_size = __size;
146 size_t __size)
152 this->_M_buf_size = __size;
145 stdio_filebuf(std::__c_file* __f, std::ios_base::openmode __mode, size_t __size) argument
H A Dcodecvt_specializations.h342 size_t __size = __from_end - __from; local
344 (__builtin_alloca(sizeof(intern_type) * (__size + 1)));
346 char_traits<intern_type>::copy(__cfixed + 1, __from, __size);
446 size_t __size = __from_end - __from; local
448 (__builtin_alloca(sizeof(extern_type) * (__size + 1)));
450 char_traits<extern_type>::copy(__cfixed + 1, __from, __size);
H A Drc_string_base.h407 size_type __size = ((__capacity + 1) * sizeof(_CharT) local
410 const size_type __adj_size = __size + __malloc_header_size;
417 __size = (__capacity + 1) * sizeof(_CharT) + 2 * sizeof(_Rep) - 1;
422 _Rep* __place = _Rep_alloc_type(__alloc).allocate(__size / sizeof(_Rep));
433 const size_type __size = ((_M_info._M_capacity + 1) * sizeof(_CharT) local
435 _Rep_alloc_type(__a).deallocate(this, __size / sizeof(_Rep));
H A Dvstring.h614 const size_type __size = this->size(); local
615 if (__size + 1 > this->capacity() || this->_M_is_shared())
616 this->_M_mutate(__size, size_type(0), 0, size_type(1));
617 traits_type::assign(this->_M_data()[__size], __c);
618 this->_M_set_length(__size + 1);
1672 const size_type __size = this->size(); local
1674 const size_type __len = std::min(__size, __osize);
1678 __r = __size - __osize;
H A Dsso_string_base.h95 _M_destroy(size_type __size) throw() argument
96 { _M_get_allocator().deallocate(_M_data(), __size + 1); } local
H A Dropeimpl.h349 size_t __size = this->_M_size + 1; local
350 _Destroy(__cstr, __cstr + __size, get_allocator());
351 this->_Data_deallocate(__cstr, __size);
/freebsd-10-stable/contrib/libstdc++/config/locale/generic/
H A Dc_locale.h64 const int __size __attribute__((__unused__)),
80 const int __ret = std::vsnprintf(__out, __size, __fmt, __args);
/freebsd-10-stable/sys/contrib/octeon-sdk/cvmx-malloc/
H A Dmalloc.h192 extern __malloc_ptr_t (*cvmx__malloc_hook) __MALLOC_PMT ((size_t __size,
195 size_t __size,
198 size_t __size,
H A Darena.c93 static __malloc_ptr_t (*save_malloc_hook) __MALLOC_P ((size_t __size,
/freebsd-10-stable/include/
H A Dnl_types.h83 int __size; member in struct:__nl_cat_d
/freebsd-10-stable/contrib/libstdc++/config/locale/gnu/
H A Dc_locale.h78 const int __size __attribute__ ((__unused__)),
94 const int __ret = std::vsnprintf(__out, __size, __fmt, __args);
/freebsd-10-stable/contrib/libstdc++/include/backward/
H A Ddefalloc.h68 inline _Tp* allocate(ptrdiff_t __size, _Tp*) { argument
70 _Tp* __tmp = (_Tp*)(::operator new((size_t)(__size * sizeof(_Tp))));
/freebsd-10-stable/sys/xen/interface/io/
H A Dring.h179 #define FRONT_RING_INIT(_r, _s, __size) do { \
182 (_r)->nr_ents = __RING_SIZE(_s, __size); \
186 #define BACK_RING_INIT(_r, _s, __size) do { \
189 (_r)->nr_ents = __RING_SIZE(_s, __size); \
194 #define FRONT_RING_ATTACH(_r, _s, __size) do { \
198 (_r)->nr_ents = __RING_SIZE(_s, __size); \
201 #define BACK_RING_ATTACH(_r, _s, __size) do { \
205 (_r)->nr_ents = __RING_SIZE(_s, __size); \
/freebsd-10-stable/lib/libc/nls/
H A Dmsgcat.c345 munmap(catd->__data, (size_t)catd->__size);
434 catd->__size = (int)st.st_size;
/freebsd-10-stable/contrib/libstdc++/include/bits/
H A Dbasic_string.h1941 const size_type __size = this->size(); local
1943 const size_type __len = std::min(__size, __osize);
1947 __r = _S_compare(__size, __osize);
H A Dstl_deque.h84 __deque_buf_size(size_t __size) argument
85 { return __size < 512 ? size_t(512 / __size) : size_t(1); }
/freebsd-10-stable/contrib/libstdc++/include/std/
H A Dstd_valarray.h513 void resize(size_t __size, _Tp __c = _Tp());

Completed in 147 milliseconds