Lines Matching refs:kStackPreallocCount
74 constexpr int static kStackPreallocCount = 10; variable
81 REPORTER_ASSERT(reporter, TContainer((TCount)kStackPreallocCount).get()); in test_container_apis()
82 REPORTER_ASSERT(reporter, TContainer((TCount)kStackPreallocCount + 1).get()); in test_container_apis()
90 container.reset((TCount)kStackPreallocCount); in test_container_apis()
93 container.reset((TCount)kStackPreallocCount + 1); in test_container_apis()
102 test_container_apis<SkAutoSTArray<kStackPreallocCount, int>, int>(reporter); in DEF_TEST()
104 test_container_apis<SkAutoSTMalloc<kStackPreallocCount, int>, size_t>(reporter); in DEF_TEST()
109 TAutoMalloc autoMalloc(kStackPreallocCount); in test_realloc_to_zero()
115 autoMalloc.realloc(kStackPreallocCount + 1); in test_realloc_to_zero()
121 autoMalloc.realloc(kStackPreallocCount); in test_realloc_to_zero()
127 test_realloc_to_zero<SkAutoSTMalloc<kStackPreallocCount, int> >(reporter); in DEF_TEST()