/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-7/libsupc++/ |
A D | new_opa.cc | 51 { return _aligned_malloc(sz, al); } 59 if (al < sizeof(void*)) 60 al = sizeof(void*); 61 int ret = posix_memalign (&ptr, al, sz); 73 if (al < sizeof(int)) 74 al = sizeof(int); 76 return memalign (al, sz); 85 if (al < sizeof(void*)) 86 al = sizeof(void*); 91 void* const aligned_ptr = (void *) (((uintptr_t) malloc_ptr + al) & -al); [all …]
|
A D | new_opva.cc | 30 operator new[] (std::size_t sz, std::align_val_t al) in operator new[]() argument 32 return ::operator new(sz, al); in operator new[]()
|
A D | del_opvant.cc | 30 operator delete[] (void *ptr, std::align_val_t al, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT in operator delete[]() argument 32 ::operator delete[] (ptr, al); in operator delete[]()
|
A D | del_opvsa.cc | 30 operator delete[] (void *ptr, std::size_t, std::align_val_t al) _GLIBCXX_USE_NOEXCEPT in operator delete[]() argument 32 ::operator delete[] (ptr, al); in operator delete[]()
|
A D | del_opant.cc | 30 operator delete (void *ptr, std::align_val_t al, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT in operator delete() argument 32 ::operator delete (ptr, al); in operator delete()
|
A D | del_opsa.cc | 30 operator delete(void* ptr, std::size_t, std::align_val_t al) _GLIBCXX_USE_NOEXCEPT in operator delete() argument 32 ::operator delete (ptr, al); in operator delete()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/libsupc++/ |
A D | new_opa.cc | 66 { return _aligned_malloc(sz, al); } 74 if (al < sizeof(void*)) 75 al = sizeof(void*); 76 int ret = posix_memalign (&ptr, al, sz); 88 if (al < sizeof(int)) 89 al = sizeof(int); 91 return memalign (al, sz); 100 if (al < sizeof(void*)) 101 al = sizeof(void*); 106 void* const aligned_ptr = (void *) (((uintptr_t) malloc_ptr + al) & -al); [all …]
|
A D | new_opva.cc | 30 operator new[] (std::size_t sz, std::align_val_t al) in operator new[]() argument 32 return ::operator new(sz, al); in operator new[]()
|
A D | del_opant.cc | 30 operator delete (void *ptr, std::align_val_t al, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT in operator delete() argument 32 ::operator delete (ptr, al); in operator delete()
|
A D | del_opsa.cc | 30 operator delete(void* ptr, std::size_t, std::align_val_t al) _GLIBCXX_USE_NOEXCEPT in operator delete() argument 32 ::operator delete (ptr, al); in operator delete()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/libsupc++/ |
A D | new_opa.cc | 67 { return _aligned_malloc(sz, al); } 75 if (al < sizeof(void*)) 76 al = sizeof(void*); 77 int ret = posix_memalign (&ptr, al, sz); 89 if (al < sizeof(int)) 90 al = sizeof(int); 92 return memalign (al, sz); 101 if (al < sizeof(void*)) 102 al = sizeof(void*); 107 void* const aligned_ptr = (void *) (((uintptr_t) malloc_ptr + al) & -al); [all …]
|
A D | new_opva.cc | 30 operator new[] (std::size_t sz, std::align_val_t al) in operator new[]() argument 32 return ::operator new(sz, al); in operator new[]()
|
A D | del_opant.cc | 30 operator delete (void *ptr, std::align_val_t al, const std::nothrow_t&) noexcept in operator delete() argument 32 ::operator delete (ptr, al); in operator delete()
|
A D | del_opsa.cc | 30 operator delete(void* ptr, std::size_t, std::align_val_t al) noexcept in operator delete() argument 32 ::operator delete (ptr, al); in operator delete()
|
A D | del_opvant.cc | 30 operator delete[] (void *ptr, std::align_val_t al, const std::nothrow_t&) noexcept in operator delete[]() argument 32 ::operator delete[] (ptr, al); in operator delete[]()
|
A D | del_opvsa.cc | 30 operator delete[] (void *ptr, std::size_t, std::align_val_t al) noexcept in operator delete[]() argument 32 ::operator delete[] (ptr, al); in operator delete[]()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/libsupc++/ |
A D | new_opa.cc | 66 aligned_alloc (std::size_t al, std::size_t sz) 67 { return _aligned_malloc(sz, al); } 75 if (al < sizeof(void*)) 76 al = sizeof(void*); 77 int ret = posix_memalign (&ptr, al, sz); 86 return memalign (al, sz); 95 if (al < sizeof(void*)) 96 al = sizeof(void*); 97 void* const malloc_ptr = malloc(sz + al); 101 void* const aligned_ptr = (void *) (((uintptr_t) malloc_ptr + al) & -al); [all …]
|
A D | new_opva.cc | 30 operator new[] (std::size_t sz, std::align_val_t al) in operator new[]() argument 32 return ::operator new(sz, al); in operator new[]()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/libsupc++/ |
A D | new_opa.cc | 70 aligned_alloc (std::size_t al, std::size_t sz) 71 { return _aligned_malloc(sz, al); } 79 if (al < sizeof(void*)) 80 al = sizeof(void*); 81 int ret = posix_memalign (&ptr, al, sz); 90 return memalign (al, sz); 99 if (al < sizeof(void*)) 100 al = sizeof(void*); 101 void* const malloc_ptr = malloc(sz + al); 105 void* const aligned_ptr = (void *) (((uintptr_t) malloc_ptr + al) & -al); [all …]
|
A D | new_opva.cc | 30 operator new[] (std::size_t sz, std::align_val_t al) in operator new[]() argument 32 return ::operator new(sz, al); in operator new[]()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/sparc/soft-fp/ |
A D | longlong.h | 168 "%r" ((USItype) (al)), \ 176 "r" ((USItype) (al)), \ 197 "%r" ((USItype) (al)), \ 205 "r" ((USItype) (al)), \ 343 "1" ((USItype) (al)), \ 379 "1" ((UDItype) (al)), \ 427 "1" ((USItype) (al)), \ 437 "1" ((USItype) (al)), \ 457 "1" ((USItype) (al)), \ 1304 __x = (al) + (bl); \ [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/x86_64/ |
A D | strcpy.S | 40 movb (%rsi), %al /* Fetch a byte */ 41 testb %al, %al /* Is it NUL? */ 42 movb %al, (%rdx) /* Store it */ 140 movb %al, (%rdx) /* 1st byte. */ 141 testb %al, %al /* Is it NUL. */
|
A D | strcmp.S | 25 L(oop): movb (%rdi), %al 26 cmpb (%rsi), %al 30 testb %al, %al
|
A D | strcat.S | 155 movb (%rsi), %al /* Fetch a byte */ 156 testb %al, %al /* Is it NUL? */ 157 movb %al, (%rdx) /* Store it */ 250 movb %al, (%rdx) /* 1st byte. */ 251 testb %al, %al /* Is it NUL. */
|
/l4re-core-master/libloader/include/ |
A D | loader | 61 char const *a0, *al; 139 if (basename && al == a0) 142 for (; *al; ++al) 144 for (; al >= a0 && *al != '/'; --al) 147 if (*al == '/') 148 ++al; 150 am->stack()->push_local_ptr(al); 154 for (; al < a0 && *al; ++al) 157 ++al; 159 while (al <= a0);
|