Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/platform/
Dlogging_test.cc62 char* p_null = nullptr; in TEST() local
76 ASSERT_DEATH(printf("%s", CHECK_NOTNULL(p_null)), "Must be non NULL"); in TEST()
/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/libchrome/base/
Dlogging_unittest.cc600 const void* p_null = nullptr; in TEST_F() local
601 const void* p_not_null = &p_null; in TEST_F()
602 DCHECK_EQ(p_null, nullptr); in TEST_F()
603 DCHECK_EQ(nullptr, p_null); in TEST_F()
/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()