Home
last modified time | relevance | path

Searched refs:p_null (Results 1 – 4 of 4) sorted by relevance

/external/libchrome/base/
Dlogging_unittest.cc247 const void* p_null = nullptr; in TEST_F() local
248 const void* p_not_null = &p_null; in TEST_F()
249 DCHECK_EQ(p_null, nullptr); in TEST_F()
250 DCHECK_EQ(nullptr, p_null); in TEST_F()
/external/eigen/test/
Dsparse_permutations.cpp74 PermutationMatrix<Dynamic> p, p_null; in sparse_permutations() local
111 VERIFY( is_sorted( res = mat.template selfadjointView<Upper>().twistedBy(p_null) )); in sparse_permutations()
115 VERIFY( is_sorted( res = mat.template selfadjointView<Lower>().twistedBy(p_null) )); in sparse_permutations()
120 VERIFY( is_sorted( res = up.template selfadjointView<Upper>().twistedBy(p_null) )); in sparse_permutations()
124 VERIFY( is_sorted( res = lo.template selfadjointView<Lower>().twistedBy(p_null) )); in sparse_permutations()
/external/eigen/Eigen/src/PardisoSupport/
DPardisoSupport.h473 PermutationMatrix<Dynamic,Dynamic,StorageIndex> p_null;
475 …trix.template selfadjointView<Upper>() = matrix.template selfadjointView<UpLo>().twistedBy(p_null);
534 PermutationMatrix<Dynamic,Dynamic,StorageIndex> p_null;
536 …trix.template selfadjointView<Upper>() = matrix.template selfadjointView<UpLo>().twistedBy(p_null);
/external/google-breakpad/src/client/linux/handler/
Dexception_handler_unittest.cc208 volatile int *p_null; // external linkage, so GCC can't tell that it variable
211 *p_null = 1; in DoNullPointerDereference()