Home | History | Annotate | Download | only in core

Lines Matching full:value

24 /** Similar to memset(), but it assigns a 16bit value into the buffer.
25 @param buffer The memory to have value copied into it
26 @param value The 16bit value to be copied into buffer
27 @param count The number of times value should be copied into the buffer.
29 void sk_memset16_portable(uint16_t dst[], uint16_t value, int count);
30 typedef void (*SkMemset16Proc)(uint16_t dst[], uint16_t value, int count);
33 /** Similar to memset(), but it assigns a 32bit value into the buffer.
34 @param buffer The memory to have value copied into it
35 @param value The 32bit value to be copied into buffer
36 @param count The number of times value should be copied into the buffer.
38 void sk_memset32_portable(uint32_t dst[], uint32_t value, int count);
39 typedef void (*SkMemset32Proc)(uint32_t dst[], uint32_t value, int count);
45 #define sk_memset16(dst, value, count) android_memset16(dst, value, (count) << 1)
46 #define sk_memset32(dst, value, count) android_memset32(dst, value, (count) << 2)
95 // this guy backs up to the previus unichar value, and returns it (*--p)