Searched refs:NewP (Results 1 – 3 of 3) sorted by relevance
/external/llvm-project/compiler-rt/lib/scudo/standalone/tests/ |
D | combined_test.cpp | 197 void *NewP = Allocator->reallocate(P, Size); in testAllocator() local 198 EXPECT_NE(NewP, nullptr); in testAllocator() 200 EXPECT_EQ((reinterpret_cast<char *>(NewP))[J], Marker); in testAllocator() 201 P = NewP; in testAllocator() 214 void *NewP = Allocator->reallocate(P, NewSize); in testAllocator() local 215 EXPECT_EQ(NewP, P); in testAllocator() 217 EXPECT_EQ((reinterpret_cast<char *>(NewP))[I], Marker); in testAllocator() 218 checkMemoryTaggingMaybe(Allocator.get(), NewP, NewSize, 0); in testAllocator()
|
/external/scudo/standalone/tests/ |
D | combined_test.cpp | 268 void *NewP = Allocator->reallocate(P, Size); in SCUDO_TYPED_TEST() local 269 EXPECT_NE(NewP, nullptr); in SCUDO_TYPED_TEST() 271 EXPECT_EQ((reinterpret_cast<char *>(NewP))[J], Marker); in SCUDO_TYPED_TEST() 272 P = NewP; in SCUDO_TYPED_TEST() 291 void *NewP = Allocator->reallocate(P, NewSize); in SCUDO_TYPED_TEST() local 292 EXPECT_EQ(NewP, P); in SCUDO_TYPED_TEST() 294 EXPECT_EQ((reinterpret_cast<char *>(NewP))[I], Marker); in SCUDO_TYPED_TEST() 295 checkMemoryTaggingMaybe(Allocator, NewP, NewSize, 0); in SCUDO_TYPED_TEST()
|
/external/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
D | CombinerHelper.cpp | 3040 CmpInst::Predicate NewP = CmpInst::getInversePredicate( in applyNotCmp() local 3042 PredOp.setPredicate(NewP); in applyNotCmp()
|