Home
last modified time | relevance | path

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

/external/pdfium/core/src/fxcodec/codec/
Dfx_codec_fax.cpp511 void AddBitStream(uint8_t* dest_buf, int& dest_bitpos, int data, int bitlen) { in AddBitStream() argument
514 dest_buf[dest_bitpos / 8] |= 1 << (7 - dest_bitpos % 8); in AddBitStream()
516 dest_bitpos++; in AddBitStream()
520 void FaxEncodeRun(uint8_t* dest_buf, int& dest_bitpos, int run, bool bWhite) { in FaxEncodeRun() argument
522 AddBitStream(dest_buf, dest_bitpos, 0x1f, 12); in FaxEncodeRun()
529 AddBitStream(dest_buf, dest_bitpos, *p, p[1]); in FaxEncodeRun()
534 AddBitStream(dest_buf, dest_bitpos, *p, p[1]); in FaxEncodeRun()
538 int& dest_bitpos, in FaxEncode2DLine() argument
549 dest_bitpos += 3; in FaxEncode2DLine()
550 dest_buf[dest_bitpos / 8] |= 1 << (7 - dest_bitpos % 8); in FaxEncode2DLine()
[all …]