lkml.org 
[lkml]   [2018]   [Nov]   [6]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH 2/3] include/linux/ascii85: Add ascii85_encode_to_buf()
Date
Add a new function which, in addition to ascii85 encoding to buffer
also returns the length of the encoded string. The length return enables
iteration over the output buffer space. This helps with efficient encoding
of larger buffers, since we avoid an additional memcpy/scnprintf.

Signed-off-by: Sharat Masetty <smasetty@codeaurora.org>
---
include/linux/ascii85.h | 19 +++++++++++++++++--
1 file changed, 17 insertions(+), 2 deletions(-)

diff --git a/include/linux/ascii85.h b/include/linux/ascii85.h
index 4cc4020..3665899 100644
--- a/include/linux/ascii85.h
+++ b/include/linux/ascii85.h
@@ -23,8 +23,12 @@
{
int i;

- if (in == 0)
- return "z";
+ if (in == 0) {
+ out[0] = 'z';
+ out[1] = '\0';
+
+ return out;
+ }

out[5] = '\0';
for (i = 5; i--; ) {
@@ -35,4 +39,15 @@
return out;
}

+static inline size_t
+ascii85_encode_to_buf(u32 in, char *out)
+{
+ ascii85_encode(in, out);
+
+ if (in == 0)
+ return 1;
+
+ return 5;
+}
+
#endif
--
1.9.1
\
 
 \ /
  Last update: 2018-11-06 07:10    [W:0.047 / U:0.024 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site