Searched refs:prev_d (Results 1 – 1 of 1) sorted by relevance
963 int d, prev_d = 0; in b64_decode() local979 c = ( ( prev_d << 2 ) | ( ( d & 0x30 ) >> 4 ) ); in b64_decode()985 c = ( ( ( prev_d & 0xf ) << 4 ) | ( ( d & 0x3c ) >> 2 ) ); in b64_decode()991 c = ( ( ( prev_d & 0x03 ) << 6 ) | d ); in b64_decode()997 prev_d = d; in b64_decode()