Searched refs:decoded_data (Results 1 – 1 of 1) sorted by relevance
37 …PetscErrorCode base64_decode(const unsigned char *data, unsigned char *decoded_data, size_t length) in base64_decode() argument65 if (j < output_length) decoded_data[j++] = (triple >> 2 * 8) & 0xFF; in base64_decode()66 if (j < output_length) decoded_data[j++] = (triple >> 1 * 8) & 0xFF; in base64_decode()67 if (j < output_length) decoded_data[j++] = (triple >> 0 * 8) & 0xFF; in base64_decode()69 decoded_data[j] = 0; in base64_decode()