Searched refs:outputLength (Results 1 – 2 of 2) sorted by relevance
43 uint32_t *outputLength) in utils_base64encode() argument52 *outputLength = 4 * ((inputLength + 2) / 3); in utils_base64encode()54 if (outputLenMax < *outputLength) { in utils_base64encode()80 uint32_t *outputLength) in utils_base64decode() argument96 *outputLength = inputLength / 4 * 3; in utils_base64decode()99 (*outputLength)--; in utils_base64decode()103 (*outputLength)--; in utils_base64decode()106 if (outputLenMax < *outputLength) { in utils_base64decode()119 if (j < *outputLength) { in utils_base64decode()123 if (j < *outputLength) { in utils_base64decode()[all …]
8 uint32_t *outputLength);11 uint32_t *outputLength);
Completed in 2 milliseconds