Home
last modified time | relevance | path

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

/third_party/qrcodegen/java-fast/io/nayuki/fastqrcodegen/
DQrCode.java188 for (int padByte = 0xEC; bb.bitLength < dataCapacityBits; padByte ^= 0xEC ^ 0x11) in encodeSegments()
189 bb.appendBits(padByte, 8); in encodeSegments()
/third_party/qrcodegen/java/src/main/java/io/nayuki/qrcodegen/
DQrCode.java188 for (int padByte = 0xEC; bb.bitLength() < dataCapacityBits; padByte ^= 0xEC ^ 0x11) in encodeSegments()
189 bb.appendBits(padByte, 8); in encodeSegments()
/third_party/qrcodegen/typescript-javascript/
Dqrcodegen.ts134 for (let padByte = 0xEC; bb.length < dataCapacityBits; padByte ^= 0xEC ^ 0x11)
135 appendBits(padByte, 8, bb);
/third_party/qrcodegen/cpp/
Dqrcodegen.cpp307 for (uint8_t padByte = 0xEC; bb.size() < dataCapacityBits; padByte ^= 0xEC ^ 0x11) in encodeSegments() local
308 bb.appendBits(padByte, 8); in encodeSegments()
/third_party/qrcodegen/c/
Dqrcodegen.c255 for (uint8_t padByte = 0xEC; bitLen < dataCapacityBits; padByte ^= 0xEC ^ 0x11) in qrcodegen_encodeSegmentsAdvanced() local
256 appendBitsToBuffer(padByte, 8, qrcode, &bitLen); in qrcodegen_encodeSegmentsAdvanced()