Lines Matching full:base
27 static void compare16(skiatest::Reporter* r, const uint16_t base[],
30 if (base[i] != value) {
31 ERRORF(r, "[%d] expected %x found %x\n", i, value, base[i]);
37 static void compare32(skiatest::Reporter* r, const uint32_t base[],
40 if (base[i] != value) {
41 ERRORF(r, "[%d] expected %x found %x\n", i, value, base[i]);
54 uint16_t* base = &buffer[PAD + alignment];
55 sk_memset16(base, VALUE16, count);
58 compare16(reporter, base, VALUE16, count);
59 compare16(reporter, base + count, 0, TOTAL - count - PAD - alignment);
71 uint32_t* base = &buffer[PAD + alignment];
72 sk_memset32(base, VALUE32, count);
75 compare32(reporter, base, VALUE32, count);
76 compare32(reporter, base + count, 0, TOTAL - count - PAD - alignment);