Lines Matching defs:C
12 struct C { struct
13 C() : fID(-1) { ++gInstCnt; } in C() function
14 C(int id) : fID(id) { ++gInstCnt; } in C() function
15 C(C&& c) : C(c.fID) {} in C() argument
16 C(const C& c) : C(c.fID) {} in C() function
21 ~C() { --gInstCnt; } in ~C()
23 int fID;
28 int fPadding[4];
30 static int gInstCnt;
43 static size_t ScratchBlockSize(SkTBlockList<C, N>& list) { in ScratchBlockSize()
48 static size_t TotalSize(SkTBlockList<C, N>& list) { in TotalSize()
56 static void check_allocator_helper(SkTBlockList<C, N>* allocator, int cnt, int popCnt, in check_allocator_helper()
83 static void check_iterator_helper(SkTBlockList<C, N>* allocator, in check_iterator_helper()
130 static void check_allocator(SkTBlockList<C, N>* allocator, int cnt, int popCnt, in check_allocator()
172 static void run_allocator_test(SkTBlockList<C, N>* allocator, skiatest::Reporter* reporter) { in run_allocator_test()