/bionic/libc/bionic/ |
D | new.cpp | 23 const std::nothrow_t std::nothrow = {}; 25 void* operator new(std::size_t size) { in operator new() 33 void* operator new[](std::size_t size) { in operator new[]() 49 void* operator new(std::size_t size, const std::nothrow_t&) { in operator new() 53 void* operator new[](std::size_t size, const std::nothrow_t&) { in operator new[]() 57 void operator delete(void* ptr, const std::nothrow_t&) { in operator delete() 61 void operator delete[](void* ptr, const std::nothrow_t&) { in operator delete[]()
|
/bionic/libc/include/ |
D | stdatomic.h | 62 #define _Atomic(t) std::atomic<t> 64 using std::atomic_is_lock_free; 65 using std::atomic_init; 66 using std::atomic_store; 67 using std::atomic_store_explicit; 68 using std::atomic_load; 69 using std::atomic_load_explicit; 70 using std::atomic_exchange; 71 using std::atomic_exchange_explicit; 72 using std::atomic_compare_exchange_strong; [all …]
|
/bionic/libstdc++/include/ |
D | new | 9 namespace std { 14 void* operator new(std::size_t); 15 void* operator new[](std::size_t); 18 void* operator new(std::size_t, const std::nothrow_t&); 19 void* operator new[](std::size_t, const std::nothrow_t&); 20 void operator delete(void*, const std::nothrow_t&); 21 void operator delete[](void*, const std::nothrow_t&); 23 inline void* operator new(std::size_t, void* p) { return p; } 24 inline void* operator new[](std::size_t, void* p) { return p; }
|
D | cstddef | 35 * The following 2 types are also declared in the 'std' namespace: 43 namespace std { 46 } // namespace std
|
D | typeinfo | 6 namespace std {
|
D | csignal | 41 namespace std 46 } // namespace std
|
D | csetjmp | 45 namespace std 49 } // namespace std
|
D | cctype | 41 namespace std 56 } // namespace std
|
D | ctime | 42 namespace std 59 } // namespace std
|
D | cstring | 42 namespace std 66 } // namespace std
|
D | cmath | 42 namespace std 71 } // namespace std
|
/bionic/tests/ |
D | sstream_test.cpp | 27 std::stringstream ss(value); in CheckOverflow() 43 CheckOverflow<int16_t>(std::numeric_limits<int16_t>::min(), "-32768", false); in TEST() 45 CheckOverflow<int16_t>(std::numeric_limits<int16_t>::max(), "32767", false); in TEST() 48 CheckOverflow<uint16_t>(std::numeric_limits<uint16_t>::max(), "65535", false); in TEST() 53 CheckOverflow<int32_t>(std::numeric_limits<int32_t>::min(), "-2147483648", false); in TEST() 55 CheckOverflow<int32_t>(std::numeric_limits<int32_t>::max(), "2147483647", false); in TEST() 58 CheckOverflow<uint32_t>(std::numeric_limits<uint32_t>::max(), "4294967295", false); in TEST() 63 CheckOverflow<int64_t>(std::numeric_limits<int64_t>::min(), "-9223372036854775808", false); in TEST() 65 CheckOverflow<int64_t>(std::numeric_limits<int64_t>::max(), "9223372036854775807", false); in TEST() 68 CheckOverflow<uint64_t>(std::numeric_limits<uint64_t>::max(), "18446744073709551615", false); in TEST()
|
D | dirent_test.cpp | 31 static void CheckProcSelf(std::set<std::string>& names) { in CheckProcSelf() 42 std::set<std::string>& name_set, std::vector<std::string>& name_list) { in ScanEntries() 62 std::set<std::string> name_set; in TEST() 63 std::vector<std::string> unsorted_name_list; in TEST() 70 std::vector<std::string> sorted_name_list(unsorted_name_list); in TEST() 71 std::sort(sorted_name_list.begin(), sorted_name_list.end()); in TEST() 75 std::set<std::string> name_set64; in TEST() 76 std::vector<std::string> unsorted_name_list64; in TEST() 139 std::set<std::string> name_set; in TEST() 156 std::set<std::string> name_set; in TEST() [all …]
|
D | atexit_test.cpp | 28 std::string atexit_call_sequence; in TEST() 35 …reinterpret_cast<void (*)(std::string*, bool*)>(sym)(&atexit_call_sequence, &valid_this_in_static_… in TEST()
|
D | stack_protector_test.cpp | 44 std::set<pid_t> tids; 45 std::set<uint32_t> guards;
|
D | sys_stat_test.cpp | 61 std::string path; in TEST()
|
/bionic/tests/libs/ |
D | atexit_testlib.cpp | 22 static std::string* atexit_sequence = NULL; 69 extern "C" void register_atexit(std::string* sequence, bool* valid_this_in_static_dtor) { in register_atexit()
|
/bionic/benchmarks/ |
D | benchmark_main.cpp | 32 typedef std::map<std::string, ::testing::Benchmark*> BenchmarkMap; 100 g_benchmarks.insert(std::make_pair(name, this)); in Register() 142 iterations = std::max(last + 1, std::min(iterations + iterations/2, 100*last)); in RunWithArg() 200 g_name_column_width = std::max(g_name_column_width, name_width); in main()
|
D | benchmark.h | 46 std::vector<int> args_;
|
D | property_benchmark.cpp | 136 std::string pa_dirname; 137 std::string pa_filename;
|
/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
D | findfp.c | 51 #define std(flags, file) \ macro 66 std(__SRD, STDIN_FILENO), /* stdin */ 67 std(__SWR, STDOUT_FILENO), /* stdout */ 68 std(__SWR|__SNBF, STDERR_FILENO) /* stderr */
|
/bionic/linker/tests/ |
D | Android.mk | 28 LOCAL_CFLAGS += -g -Wall -Wextra -Wunused -Werror -std=gnu++11
|
D | linked_list_test.cpp | 49 std::string test_list_to_string(test_list_t& list) { in test_list_to_string() 50 std::stringstream ss; in test_list_to_string()
|
/bionic/linker/ |
D | Android.mk | 33 -std=gnu99 \ 36 -std=gnu++11 \
|
/bionic/libc/arch-x86/generic/string/ |
D | bcopy.S | 76 std
|