Lines Matching refs:out
90 size_t li_base64_enc(char * const restrict out, const size_t out_length, const unsigned char * cons… in li_base64_enc() argument
107 out[out_pos+0] = base64_table[(v >> 18) & 0x3f]; in li_base64_enc()
108 out[out_pos+1] = base64_table[(v >> 12) & 0x3f]; in li_base64_enc()
109 out[out_pos+2] = base64_table[(v >> 6) & 0x3f]; in li_base64_enc()
110 out[out_pos+3] = base64_table[(v ) & 0x3f]; in li_base64_enc()
122 out[out_pos+0] = base64_table[(v >> 6) & 0x3f]; in li_base64_enc()
123 out[out_pos+1] = base64_table[(v ) & 0x3f]; in li_base64_enc()
125 out[out_pos+2] = out[out_pos+3] = padchar; in li_base64_enc()
136 out[out_pos+0] = base64_table[(v >> 12) & 0x3f]; in li_base64_enc()
137 out[out_pos+1] = base64_table[(v >> 6) & 0x3f]; in li_base64_enc()
138 out[out_pos+2] = base64_table[(v ) & 0x3f]; in li_base64_enc()
140 out[out_pos+3] = padchar; in li_base64_enc()
153 char* buffer_append_base64_enc(buffer *out, const unsigned char* in, size_t in_length, base64_chars… in buffer_append_base64_enc() argument
155 char * const result = buffer_string_prepare_append(out, reserve); in buffer_append_base64_enc()
159 buffer_commit(out, out_pos); in buffer_append_base64_enc()
165 unsigned char* buffer_append_base64_decode(buffer *out, const char* in, size_t in_length, base64_ch… in buffer_append_base64_decode() argument
168 buffer_string_prepare_append(out, reserve); in buffer_append_base64_decode()
172 buffer_commit(out, out_pos); in buffer_append_base64_decode()