Searched refs:std (Results 76 - 100 of 33291) sorted by last modified time

1234567891011>>

/external/vixl/src/a64/
H A Ddecoder-a64.cc126 std::list<DecoderVisitor*>::iterator it;
143 std::list<DecoderVisitor*>::iterator it;
705 std::list<DecoderVisitor*>::iterator it; \
H A Ddecoder-a64.h98 std::list<DecoderVisitor*> visitors_;
H A Dinstrument-a64.cc152 std::list<Counter*>::iterator it;
179 std::list<Counter*>::const_iterator it;
191 std::list<Counter*>::const_iterator it;
221 std::list<Counter*>::const_iterator it;
239 std::list<Counter*>::iterator it;
247 std::list<Counter*>::iterator it;
H A Dinstrument-a64.h99 std::list<Counter*> counters_;
H A Dsimulator-a64.cc379 if ((std::isnan(val0) != 0) || (std::isnan(val1) != 0)) {
1486 return std::isnan(value) ? 0 : static_cast<int32_t>(value);
1497 return std::isnan(value) ? 0 : static_cast<int64_t>(value);
1508 return std::isnan(value) ? 0 : static_cast<uint32_t>(value);
1519 return std::isnan(value) ? 0 : static_cast<uint64_t>(value);
1858 } else if (std::isnan(value)) {
1911 switch (std::fpclassify(value)) {
1952 switch (std::fpclassify(value)) {
1988 if (std
[all...]
/external/vixl/src/
H A Dutils-vixl.h104 if (std::isnan(num) && ((raw & kFP64QuietNaNMask) == 0)) {
114 if (std::isnan(num) && ((raw & kFP32QuietNaNMask) == 0)) {
123 return std::isnan(num) && !IsSignallingNaN(num);
/external/valgrind/main/coregrind/m_dispatch/
H A Ddispatch-ppc64-linux.S94 std 6,16(1)
96 std 6,8(1)
102 std 31,472(1)
103 std 30,464(1)
104 std 29,456(1)
105 std 28,448(1)
106 std 27,440(1)
107 std 26,432(1)
108 std 25,424(1)
109 std 2
[all...]
H A Ddispatch-s390x-linux.S96 std %f8,160+0(SP)
97 std %f9,160+8(SP)
98 std %f10,160+16(SP)
99 std %f11,160+24(SP)
100 std %f12,160+32(SP)
101 std %f13,160+40(SP)
102 std %f14,160+48(SP)
103 std %f15,160+56(SP)
/external/valgrind/main/coregrind/m_syswrap/
H A Dsyscall-ppc64-linux.S88 std 31,72(1)
89 std 30,64(1)
90 std 29,56(1)
91 std 28,48(1)
118 3: std 3,OFFSET_ppc64_GPR3(30) /* gst->GPR3 = sc result */
/external/valgrind/main/drd/tests/
H A Dannotate_smart_pointer.cpp30 #include <iostream> // std::cerr
309 const int nthreads = std::max(argc > 1 ? atoi(argv[1]) : 1, 1);
310 const int iterations = std::max(argc > 2 ? atoi(argv[2]) : 1, 1);
315 std::vector<Thread> T(nthreads);
318 for (std::vector<Thread>::iterator q = T.begin(); q != T.end(); q++)
327 for (std::vector<Thread>::iterator q = T.begin(); q != T.end(); q++)
330 std::cerr << "Done.\n";
H A Dboost_thread.cpp17 std::cerr << "Thread 2.\n";
25 std::cerr << "Thread 1.\n";
32 std::cerr << "Finished.\n";
H A Dmonitor_example.cpp229 std::cerr << "Finished successfully.\n";
H A Dpth_create_chain.c20 // std::cout << "create " << thread_count << std::endl;
25 std::cout << "created " << thread_count << "(" << s_thread[thread_count]
26 << ")" << std::endl;
41 // std::cout << "create " << thread_count << std::endl;
45 std::cout << "created " << thread_count << "(" << s_thread[thread_count]
46 << ")" << std::endl;
50 // std::cout << "join " << i << "(" << s_thread[i] << ")" << std
[all...]
H A Dsem_wait.cpp10 std::string func;
21 std::cerr << "Calling sem_trywait\n";
26 std::cerr << "Wait would have blocked" << std::endl;
28 std::cerr << "Wait succeeded" << std::endl;
36 std::cerr << e.func << " failed: " << strerror(e.eno) << std::endl;
38 std::cerr << "Unknown exception" << std
[all...]
H A Dstd_atomic.cpp2 * Test program for std::atomic<>
13 std::atomic<bool> g_b;
36 std::cerr << "Started.\n";
43 throw std::string("failed to create a thread.");
46 throw std::string("failed to create a thread.");
50 throw std::string("Thread::join(): failed to join.");
53 throw std::string("Thread::join(): failed to join.");
55 std::cerr << "Done.\n";
H A Dstd_list.cpp19 using namespace std;
H A Dstd_string.cpp2 * Test program that uses std::string object from more than one thread and
36 std::string id("000");
38 std::list<std::string> record;
H A Dstd_thread.cpp1 // Test whether no race conditions are reported on std::thread. Note: since
2 // the implementation of std::thread uses the shared pointer implementation,
19 std::thread t( []() { } );
21 std::cerr << "Done.\n";
H A Dtsan_thread_wrappers_pthread.h61 using namespace std;
414 std::queue<void*> q_; // protected by mu_
426 static bool IsQueueNotEmpty(std::queue<void*> * queue) {
537 std::vector<MyThread*> workers_;
H A Dtsan_unittest.cpp181 std::map<int, Test> TheMapOfTests;
238 for (std::map<int,Test>::iterator it = TheMapOfTests.begin();
244 for (std::map<int,Test>::iterator it = TheMapOfTests.begin();
261 for (std::map<int,Test>::iterator it = TheMapOfTests.begin();
1701 std::vector<MyThread*> vec(Nlog);
1783 std::vector<Mutex*> mus;
3505 std::vector<MyThread*> vec(Nlog);
3597 std::vector<MyThread*> vec(Nlog);
3841 typedef std::map<int, int> map_t;
6249 typedef std
[all...]
/external/valgrind/main/massif/tests/
H A Dnew-cpp.cpp3 // operator new(unsigned, std::nothrow_t const&)
4 // operator new[](unsigned, std::nothrow_t const&)
10 using std::nothrow_t;
20 s* p2 = new (std::nothrow) s;
22 char* c2 = new (std::nothrow) char[2000];
H A Doverloaded-new.cpp3 // operator new(unsigned, std::nothrow_t const&)
4 // operator new[](unsigned, std::nothrow_t const&)
10 using std::nothrow_t;
17 __attribute__((noinline)) void* operator new (std::size_t n) throw (std::bad_alloc)
22 __attribute__((noinline)) void* operator new (std::size_t n, std::nothrow_t const &) throw ()
27 __attribute__((noinline)) void* operator new[] (std::size_t n) throw (std::bad_alloc)
32 __attribute__((noinline)) void* operator new[] (std
[all...]
/external/valgrind/main/memcheck/tests/
H A Dleak_cpp_interior.cpp68 std::string str;
69 std::string str2;
H A Dlong_namespace_xml.cpp25 using namespace std;
H A Dnew_nothrow.cpp8 int * a = new (std::nothrow) int;
9 int * b = new (std::nothrow) int[5];

Completed in 1906 milliseconds

1234567891011>>