Lines Matching refs:Options
24 template <typename Config> static scudo::Options getOptionsForConfig() { in getOptionsForConfig()
35 scudo::Options Options = getOptionsForConfig<Config>(); in testSecondaryBasic() local
42 void *P = L->allocate(Options, Size); in testSecondaryBasic()
46 L->deallocate(Options, P); in testSecondaryBasic()
55 P = L->allocate(Options, Size); in testSecondaryBasic()
56 L->deallocate(Options, P); in testSecondaryBasic()
64 P = L->allocate(Options, Size + Align, Align); in testSecondaryBasic()
69 L->deallocate(Options, P); in testSecondaryBasic()
73 V.push_back(L->allocate(Options, Size)); in testSecondaryBasic()
76 L->deallocate(Options, V.back()); in testSecondaryBasic()
117 scudo::Options Options = getOptionsForConfig<Config>(); member
137 void *P = Allocator->allocate(Options, Size, Align); in TEST_F()
142 Allocator->deallocate(Options, P); in TEST_F()
155 V.push_back(Allocator->allocate(Options, (std::rand() % 16) * PageSize)); in TEST_F()
164 Allocator->deallocate(Options, V.back()); in TEST_F()
211 void *P = Allocator->allocate(Options, (std::rand() % 16) * PageSize); in performAllocations()
213 Allocator->deallocate(Options, P); in performAllocations()
218 Allocator->deallocate(Options, V.back()); in performAllocations()