Lines Matching refs:size
87 * Copy the string src to dst, but no more than size - 1 bytes, and
94 * @param size size of destination buffer
101 size_t av_strlcpy(char *dst, const char *src, size_t size);
105 * no more than size - 1 bytes, and null-terminate dst.
108 * size <= strlen(dst).
112 * @param size size of destination buffer
119 size_t av_strlcat(char *dst, const char *src, size_t size);
127 * @param size total size of the destination buffer
133 size_t av_strlcatf(char *dst, size_t size, const char *fmt, ...) av_printf_format(3, 4);