Home
last modified time | relevance | path

Searched refs:std (Results 1 – 25 of 40) sorted by relevance

12

/bionic/libc/bionic/
Dnew.cpp23 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/
Dstdatomic.h62 #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/
Dnew9 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; }
Dcstddef35 * The following 2 types are also declared in the 'std' namespace:
43 namespace std {
46 } // namespace std
Dtypeinfo6 namespace std {
Dcsignal41 namespace std
46 } // namespace std
Dcsetjmp45 namespace std
49 } // namespace std
Dcctype41 namespace std
56 } // namespace std
Dctime42 namespace std
59 } // namespace std
Dcstring42 namespace std
66 } // namespace std
Dcmath42 namespace std
71 } // namespace std
/bionic/tests/
Dsstream_test.cpp27 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()
Ddirent_test.cpp31 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 …]
Datexit_test.cpp28 std::string atexit_call_sequence; in TEST()
35 …reinterpret_cast<void (*)(std::string*, bool*)>(sym)(&atexit_call_sequence, &valid_this_in_static_… in TEST()
Dstack_protector_test.cpp44 std::set<pid_t> tids;
45 std::set<uint32_t> guards;
Dsys_stat_test.cpp61 std::string path; in TEST()
/bionic/tests/libs/
Datexit_testlib.cpp22 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/
Dbenchmark_main.cpp32 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()
Dbenchmark.h46 std::vector<int> args_;
Dproperty_benchmark.cpp136 std::string pa_dirname;
137 std::string pa_filename;
/bionic/libc/upstream-openbsd/lib/libc/stdio/
Dfindfp.c51 #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/
DAndroid.mk28 LOCAL_CFLAGS += -g -Wall -Wextra -Wunused -Werror -std=gnu++11
Dlinked_list_test.cpp49 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/
DAndroid.mk33 -std=gnu99 \
36 -std=gnu++11 \
/bionic/libc/arch-x86/generic/string/
Dbcopy.S76 std

12