Lines Matching refs:bin_buf
3127 * @bin_buf: The buffer to place args' binary value
3139 * If the return value is greater than @size, the resulting bin_buf is NOT
3142 int vbin_printf(u32 *bin_buf, size_t size, const char *fmt_str, va_list args)
3152 str = (char *)bin_buf;
3153 end = (char *)(bin_buf + size);
3255 return (u32 *)(PTR_ALIGN(str, sizeof(u32))) - bin_buf;
3265 * @bin_buf: Binary arguments for the format string
3268 * arguments from stack, and bstr_printf gets arguments from @bin_buf which is
3282 int bstr_printf(char *buf, size_t size, const char *fmt_str, const u32 *bin_buf)
3290 const char *args = (const char *)bin_buf;