Searched refs:wip (Results 1 – 5 of 5) sorted by relevance
88 base64_outch(st, base64_char(st->wip[0] >> 2)); in base64_flush()89 base64_outch(st, base64_char(((st->wip[0] & 0x03) << 4) | in base64_flush()90 (st->wip[1] >> 4))); in base64_flush()93 base64_outch(st, base64_char(((st->wip[1] & 0x0f) << 2) | in base64_flush()94 (st->wip[2] >> 6))); in base64_flush()97 base64_outch(st, base64_char(st->wip[2] & 0x3f)); in base64_flush()101 memset(st->wip, 0, 3); in base64_flush()106 st->wip[st->pending++] = byte; in base64_addbyte()
50 unsigned char wip[3]; member
52 https://github.com/siemens/qemu/tree/wip/ivshmem2
35 words=wip
2677 * :github:`14527` - [wip] Generic support for out-of-tree drivers