Searched refs:decoded_data (Results 1 – 2 of 2) sorted by relevance
43 static int str_base64_decode(const char *data, int input_length, char *decoded_data);115 static int str_base64_decode(const char *data, int input_length, char *decoded_data) in str_base64_decode() argument139 if (j < out_len) decoded_data[j++] = (triple >> 2 * 8) & 0xFF; in str_base64_decode()140 if (j < out_len) decoded_data[j++] = (triple >> 1 * 8) & 0xFF; in str_base64_decode()141 if (j < out_len) decoded_data[j++] = (triple >> 0 * 8) & 0xFF; in str_base64_decode()
29 static int str_base64_decode(const char *data, int input_length, char *decoded_data);101 static int str_base64_decode(const char *data, int input_length, char *decoded_data) in str_base64_decode() argument125 if (j < out_len) decoded_data[j++] = (triple >> 2 * 8) & 0xFF; in str_base64_decode()126 if (j < out_len) decoded_data[j++] = (triple >> 1 * 8) & 0xFF; in str_base64_decode()127 if (j < out_len) decoded_data[j++] = (triple >> 0 * 8) & 0xFF; in str_base64_decode()
Completed in 7 milliseconds