Lines Matching defs:value
17 static void memsetT(T buffer[], T value, int count) {
24 SkNx<N,T>(value).store(buffer);
29 *buffer++ = value;
33 /*not static*/ inline void memset16(uint16_t buffer[], uint16_t value, int count) {
34 memsetT(buffer, value, count);
36 /*not static*/ inline void memset32(uint32_t buffer[], uint32_t value, int count) {
37 memsetT(buffer, value, count);
39 /*not static*/ inline void memset64(uint64_t buffer[], uint64_t value, int count) {
40 memsetT(buffer, value, count);
44 static void rect_memsetT(T buffer[], T value, int count, size_t rowBytes, int height) {
46 memsetT(buffer, value, count);
51 /*not static*/ inline void rect_memset16(uint16_t buffer[], uint16_t value, int count,
53 rect_memsetT(buffer, value, count, rowBytes, height);
55 /*not static*/ inline void rect_memset32(uint32_t buffer[], uint32_t value, int count,
57 rect_memsetT(buffer, value, count, rowBytes, height);
59 /*not static*/ inline void rect_memset64(uint64_t buffer[], uint64_t value, int count,
61 rect_memsetT(buffer, value, count, rowBytes, height);