Lines Matching defs:store
46 // - store() Store one Sk4f to dest. Optionally handles premul, color space
49 // - store(count) Store the Sk4f value repeatedly to dest, count times.
66 static void store(const Sk4f& c, SkPMColor* dst, const Sk4f& bias) {
68 // c is pre-scaled by 255 and pre-biased, just store.
69 SkNx_cast<uint8_t>(c).store(dst);
75 static void store(const Sk4f& c, SkPMColor* dst, int n) {
77 store(c, &pmc, Sk4f(0));
90 store(c0, dst + 0, bias0);
91 store(c1, dst + 1, bias1);
92 store(c2, dst + 2, bias0);
93 store(c3, dst + 3, bias1);