Home
last modified time | relevance | path

Searched refs:BX_NUMERAL (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dshell.c4652 #define BX_NUMERAL(dv) (b64Numerals[(u8)(dv)]) macro
4663 pOut[0] = BX_NUMERAL(pIn[0]>>2); in toBase64()
4664 pOut[1] = BX_NUMERAL(((pIn[0]<<4)|(pIn[1]>>4))&0x3f); in toBase64()
4665 pOut[2] = BX_NUMERAL(((pIn[1]&0xf)<<2)|(pIn[2]>>6)); in toBase64()
4666 pOut[3] = BX_NUMERAL(pIn[2]&0x3f); in toBase64()
4684 char ce = (nbe<nco)? BX_NUMERAL((u8)(qv & 0x3f)) : PAD_CHAR; in toBase64()