Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/fax/
Dfaxmodule.cpp67 static constexpr int kBulkReadSize = 8; in FindBit() local
68 if (max_byte >= kBulkReadSize && byte_pos < max_byte - kBulkReadSize) { in FindBit()
69 static constexpr uint8_t skip_block_0[kBulkReadSize] = { in FindBit()
71 static constexpr uint8_t skip_block_1[kBulkReadSize] = { in FindBit()
74 while (byte_pos < max_byte - kBulkReadSize && in FindBit()
75 memcmp(data_buf + byte_pos, skip_block, kBulkReadSize) == 0) { in FindBit()
76 byte_pos += kBulkReadSize; in FindBit()