Lines Matching defs:buffer
85 /** Similar to memset(), but it assigns a 16, 32, or 64-bit value into the buffer.
86 @param buffer The memory to have value copied into it
87 @param value The value to be copied into buffer
88 @param count The number of times value should be copied into the buffer.
90 static inline void sk_memset16(uint16_t buffer[], uint16_t value, int count) {
91 SkOpts::memset16(buffer, value, count);
93 static inline void sk_memset32(uint32_t buffer[], uint32_t value, int count) {
94 SkOpts::memset32(buffer, value, count);
96 static inline void sk_memset64(uint64_t buffer[], uint64_t value, int count) {
97 SkOpts::memset64(buffer, value, count);