Lines Matching refs:copy
2781 int copy = read; in vsnprintf() local
2783 if (copy > end - str) in vsnprintf()
2784 copy = end - str; in vsnprintf()
2785 memcpy(str, old_fmt, copy); in vsnprintf()
3258 int copy = read; in bstr_printf() local
3260 if (copy > end - str) in bstr_printf()
3261 copy = end - str; in bstr_printf()
3262 memcpy(str, old_fmt, copy); in bstr_printf()
3307 int copy, len; in bstr_printf() local
3324 len = copy = strlen(args); in bstr_printf()
3325 if (copy > end - str) in bstr_printf()
3326 copy = end - str; in bstr_printf()
3327 memcpy(str, args, copy); in bstr_printf()