Home | History | Annotate | Download | only in bench

Lines Matching full:static

13 static bool union_proc(SkRegion& a, SkRegion& b) {
18 static bool sect_proc(SkRegion& a, SkRegion& b) {
23 static bool diff_proc(SkRegion& a, SkRegion& b) {
28 static bool diffrect_proc(SkRegion& a, SkRegion& b) {
33 static bool diffrectbig_proc(SkRegion& a, SkRegion& b) {
38 static bool containsrect_proc(SkRegion& a, SkRegion& b) {
48 static bool sectsrgn_proc(SkRegion& a, SkRegion& b) {
52 static bool sectsrect_proc(SkRegion& a, SkRegion& b) {
58 static bool containsxy_proc(SkRegion& a, SkRegion& b) {
123 static SkBenchmark* gF0(void* p) { return SkNEW_ARGS(RegionBench, (p, SMALL, union_proc, "union")); }
124 static SkBenchmark* gF1(void* p) { return SkNEW_ARGS(RegionBench, (p, SMALL, sect_proc, "intersect")); }
125 static SkBenchmark* gF2(void* p) { return SkNEW_ARGS(RegionBench, (p, SMALL, diff_proc, "difference")); }
126 static SkBenchmark* gF3(void* p) { return SkNEW_ARGS(RegionBench, (p, SMALL, diffrect_proc, "differencerect")); }
127 static SkBenchmark* gF4(void* p) { return SkNEW_ARGS(RegionBench, (p, SMALL, diffrectbig_proc, "differencerectbig")); }
128 static SkBenchmark* gF5(void* p) { return SkNEW_ARGS(RegionBench, (p, SMALL, containsrect_proc, "containsrect", 100)); }
129 static SkBenchmark* gF6(void* p) { return SkNEW_ARGS(RegionBench, (p, SMALL, sectsrgn_proc, "intersectsrgn", 10)); }
130 static SkBenchmark* gF7(void* p) { return SkNEW_ARGS(RegionBench, (p, SMALL, sectsrect_proc, "intersectsrect", 200)); }
131 static SkBenchmark* gF8(void* p) { return SkNEW_ARGS(RegionBench, (p, SMALL, containsxy_proc, "containsxy")); }
133 static BenchRegistry gR0(gF0);
134 static BenchRegistry gR1(gF1);
135 static BenchRegistry gR2(gF2);
136 static BenchRegistry gR3(gF3);
137 static BenchRegistry gR4(gF4);
138 static BenchRegistry gR5(gF5);
139 static BenchRegistry gR6(gF6);
140 static BenchRegistry gR7(gF7);
141 static BenchRegistry gR8(gF8);