Searched defs:__n (Results 1 - 21 of 21) sorted by relevance

/external/clang/test/SemaCXX/
H A DPR12778.cpp4 void* allocate(int __n) { argument
5 return ::operator new(__n);
/external/libese/libese-sysdeps/
H A Dandroid-sysdeps.c20 void *ese_memcpy(void *__dest, const void *__src, uint64_t __n) { argument
21 return memcpy(__dest, __src, __n);
24 void *ese_memset(void *__s, int __c, uint64_t __n) { argument
25 return memset(__s, __c, __n);
H A Ddarwin-sysdeps.c20 void *ese_memcpy(void *__dest, const void *__src, uint64_t __n) { argument
21 return memcpy(__dest, __src, __n);
24 void *ese_memset(void *__s, int __c, uint64_t __n) { argument
25 return memset(__s, __c, __n);
/external/clang/test/CodeGen/
H A Dpr9614.c21 extern inline __attribute__((__always_inline__, __gnu_inline__)) void *memchr(void *__s, int __c, __SIZE_TYPE__ __n) { argument
22 return __builtin_memchr(__s, __c, __n);
/external/syslinux/dos/
H A Dstring.h16 static inline int memcmp(const void *__m1, const void *__m2, unsigned int __n) argument
20 "+S"(__m2), "+c"(__n));
/external/libcxx/include/
H A Dstring.h95 void* __libcpp_memchr(const void* __s, int __c, size_t __n) {return (void*)memchr(__s, __c, __n);} argument
97 const void* memchr(const void* __s, int __c, size_t __n) {return __libcpp_memchr(__s, __c, __n);} argument
99 void* memchr( void* __s, int __c, size_t __n) {return __libcpp_memchr(__s, __c, __n);} argument
H A Dwchar.h161 wchar_t* __libcpp_wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) {return (wchar_t*)wmemchr(__s, __c, __n);} argument
163 const wchar_t* wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) {return __libcpp_wmemchr(__s, __c, __n);} argument
165 wchar_t* wmemchr( wchar_t* __s, wchar_t __c, size_t __n) {return __libcpp_wmemchr(__s, __c, __n);} argument
H A D__bsd_locale_fallbacks.h70 size_t __libcpp_mbrtowc_l(wchar_t *__pwc, const char *__s, size_t __n, argument
74 return mbrtowc(__pwc, __s, __n, __ps);
85 size_t __libcpp_mbrlen_l(const char *__s, size_t __n, mbstate_t *__ps, locale_t __l) argument
88 return mbrlen(__s, __n, __ps);
107 int __libcpp_snprintf_l(char *__s, size_t __n, locale_t __l, const char *__format, ...) { argument
111 int __res = vsnprintf(__s, __n, __format, __va);
/external/libcxx/src/support/solaris/
H A Dxlocale.cpp28 #define vsnprintf_l(__s, __n, __l, __format, __va) \
29 vsnprintf(__s, __n, __format, __va)
31 int snprintf_l(char *__s, size_t __n, locale_t __l, const char *__format, ...) argument
35 int __res = vsnprintf_l(__s, __n , __l, __format, __va);
/external/libcxx/test/support/
H A Dconstexpr_char_traits.hpp37 static TEST_CONSTEXPR_CXX14 int compare(const char_type* __s1, const char_type* __s2, size_t __n);
39 static TEST_CONSTEXPR_CXX14 const char_type* find(const char_type* __s, size_t __n, const char_type& __a);
40 static TEST_CONSTEXPR_CXX14 char_type* move(char_type* __s1, const char_type* __s2, size_t __n);
41 static TEST_CONSTEXPR_CXX14 char_type* copy(char_type* __s1, const char_type* __s2, size_t __n);
42 static TEST_CONSTEXPR_CXX14 char_type* assign(char_type* __s, size_t __n, char_type __a);
63 constexpr_char_traits<_CharT>::compare(const char_type* __s1, const char_type* __s2, size_t __n) argument
65 for (; __n; --__n, ++__s1, ++__s2)
87 constexpr_char_traits<_CharT>::find(const char_type* __s, size_t __n, const char_type& __a) argument
89 for (; __n;
100 move(char_type* __s1, const char_type* __s2, size_t __n) argument
120 copy(char_type* __s1, const char_type* __s2, size_t __n) argument
131 assign(char_type* __s, size_t __n, char_type __a) argument
[all...]
/external/syslinux/com32/include/
H A Dstdlib.h16 static __inline__ int abs(int __n) argument
18 return (__n < 0) ? -__n : __n;
29 static __inline__ long labs(long __n) argument
31 return (__n < 0L) ? -__n : __n;
34 static __inline__ long long llabs(long long __n) argument
36 return (__n <
[all...]
H A Dinttypes.h12 static __inline__ intmax_t imaxabs(intmax_t __n) argument
14 return (__n < (intmax_t) 0) ? -__n : __n;
/external/libcxx/src/
H A Dthread.cpp140 T* allocate(size_t __n) argument
141 {return static_cast<T*>(::operator new(__n * sizeof(T)));}
H A Dstrstream.cpp36 strstreambuf::__init(char* __gnext, streamsize __n, char* __pbeg) argument
38 if (__n == 0)
39 __n = static_cast<streamsize>(strlen(__gnext));
40 else if (__n < 0)
41 __n = INT_MAX;
43 setg(__gnext, __gnext, __gnext + __n);
47 setp(__pbeg, __pbeg + __n);
51 strstreambuf::strstreambuf(char* __gnext, streamsize __n, char* __pbeg) argument
57 __init(__gnext, __n, __pbeg);
60 strstreambuf::strstreambuf(const char* __gnext, streamsize __n) argument
66 __init(const_cast<char *>(__gnext), __n, nullptr); local
69 strstreambuf(signed char* __gnext, streamsize __n, signed char* __pbeg) argument
78 strstreambuf(const signed char* __gnext, streamsize __n) argument
87 strstreambuf(unsigned char* __gnext, streamsize __n, unsigned char* __pbeg) argument
96 strstreambuf(const unsigned char* __gnext, streamsize __n) argument
[all...]
/external/clang/lib/Headers/
H A D__clang_cuda_cmath.h47 __DEVICE__ long long abs(long long __n) { return ::llabs(__n); } argument
48 __DEVICE__ long abs(long __n) { return ::labs(__n); } argument
H A Dintrin.h842 __movsb(unsigned char *__dst, unsigned char const *__src, size_t __n) { argument
843 __asm__("rep movsb" : : "D"(__dst), "S"(__src), "c"(__n)
847 __movsd(unsigned long *__dst, unsigned long const *__src, size_t __n) { argument
848 __asm__("rep movsl" : : "D"(__dst), "S"(__src), "c"(__n)
852 __movsw(unsigned short *__dst, unsigned short const *__src, size_t __n) { argument
853 __asm__("rep movsw" : : "D"(__dst), "S"(__src), "c"(__n)
857 __stosb(unsigned char *__dst, unsigned char __x, size_t __n) { argument
858 __asm__("rep stosb" : : "D"(__dst), "a"(__x), "c"(__n)
862 __stosd(unsigned long *__dst, unsigned long __x, size_t __n) { argument
863 __asm__("rep stosl" : : "D"(__dst), "a"(__x), "c"(__n)
867 __stosw(unsigned short *__dst, unsigned short __x, size_t __n) argument
874 __movsq(unsigned long long *__dst, unsigned long long const *__src, size_t __n) argument
879 __stosq(unsigned __int64 *__dst, unsigned __int64 __x, size_t __n) argument
[all...]
H A Dxmmintrin.h2110 /// \param __n
2122 /// specified by the immediate operand __n.
2132 /// destination at the offset specified by operand __n.
2133 /// \param __n
2302 /// \param __n
2312 _mm_maskmove_si64(__m64 __d, __m64 __n, char *__p) argument
2314 __builtin_ia32_maskmovq((__v8qi)__d, (__v8qi)__n, __p);
H A Demmintrin.h2204 _mm_maskmoveu_si128(__m128i __d, __m128i __n, char *__p) argument
2206 __builtin_ia32_maskmovdqu((__v16qi)__d, (__v16qi)__n, __p);
/external/libcxx/include/support/ibm/
H A Dxlocale.h198 size_t strxfrm_l(char *__s1, const char *__s2, size_t __n, locale_t locale) argument
200 return __xstrxfrm(locale, __s1, __s2, __n);
204 size_t wcsxfrm_l(wchar_t *__ws1, const wchar_t *__ws2, size_t __n, argument
207 return __xwcsxfrm(locale, __ws1, __ws2, __n);
/external/syslinux/memdisk/
H A Dmemdisk.h101 static inline void *mempcpy(void *__d, const void *__s, unsigned int __n) argument
103 memcpy(__d, __s, __n);
104 return (void *)((char *)__d + __n);
108 static inline int memcmp(const void *__a, const void *__b, unsigned int __n) argument
114 while (__n--) {
/external/clang/test/Analysis/Inputs/
H A Dsystem-header-simulator-cxx.h179 size_t __n = __last - __first; local
181 if (__n > 0)
182 memmove(__result, __first, __n * sizeof(_Up));
184 return __result + __n;
211 size_t __n = __last - __first; local
213 if (__n > 0)
215 __result -= __n;
216 memmove(__result, __first, __n * sizeof(_Up));

Completed in 3901 milliseconds