Searched refs:dataOutputBitIndexes (Results 1 – 2 of 2) sorted by relevance
254 drawCodewords(tpl.dataOutputBitIndexes, allCodewords); in QrCode()362 private void drawCodewords(int[] dataOutputBitIndexes, byte[] allCodewords) { in drawCodewords() argument363 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()
41 final int[] dataOutputBitIndexes; // Length and values depend on version. field in QrTemplate59 dataOutputBitIndexes = generateZigzagScan(); // Reads fields, returns array in QrTemplate()