Home
last modified time | relevance | path

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

/third_party/qrcodegen/java-fast/io/nayuki/fastqrcodegen/
DQrCode.java254 drawCodewords(tpl.dataOutputBitIndexes, allCodewords); in QrCode()
362 private void drawCodewords(int[] dataOutputBitIndexes, byte[] allCodewords) { in drawCodewords() argument
363 Objects.requireNonNull(dataOutputBitIndexes); in drawCodewords()
365 if (allCodewords.length * 8 != dataOutputBitIndexes.length) in drawCodewords()
367 for (int i = 0; i < dataOutputBitIndexes.length; i++) { in drawCodewords()
368 int j = dataOutputBitIndexes[i]; in drawCodewords()
DQrTemplate.java41 final int[] dataOutputBitIndexes; // Length and values depend on version. field in QrTemplate
59 dataOutputBitIndexes = generateZigzagScan(); // Reads fields, returns array in QrTemplate()