Lines Matching refs:buffer
69 * The SkStrAppend... methods will write into the provided buffer, assuming it is large enough.
71 * value needed for that method's buffer.
77 * the methods return the ptr to the end of the written part of the buffer. This can be used
87 char* SkStrAppendU32(char buffer[], uint32_t);
89 char* SkStrAppendU64(char buffer[], uint64_t, int minDigits);
92 char* SkStrAppendS32(char buffer[], int32_t);
94 char* SkStrAppendS64(char buffer[], int64_t, int minDigits);
106 * Write the scalar in decimal format into buffer, and return a pointer to
108 * written into buffer, which must be at least kSkStrAppendScalar_MaxSize.
109 * Thus if the caller wants to add a 0 at the end, buffer must be at least
112 char* SkStrAppendScalar(char buffer[], SkScalar);
184 * `resize` automatically reserves an extra byte at the end of the buffer for a null terminator.