Lines Matching full:in

8  * this software and associated documentation files (the "Software"), to deal in
13 * - The above copyright notice and this permission notice shall be included in
17 * fitness for a particular purpose and noninfringement. In no event shall the
19 * liability, whether in an action of contract, tort or otherwise, arising from,
20 * out of or in connection with the Software or the use or other dealings in the
39 // Regarding all public and private functions defined in this source file:
49 // - They run in at most quadratic time with respect to input arguments.
50 // Most functions run in linear time, and some in constant time.
91 // The set of all legal characters in alphanumeric mode, where each character
92 // value maps to the index in the string. For checking text and encoding segments.
127 // Public function - see documentation comment in header file.
165 // Public function - see documentation comment in header file.
194 // Public function - see documentation comment in header file.
202 // Public function - see documentation comment in header file.
216 if (version >= maxVersion) { // All versions in the range could not fit the given data in qrcodegen_encodeSegmentsAdvanced()
223 // Increase the error correction level while the data still fits in the current version number in qrcodegen_encodeSegmentsAdvanced()
288 // bytes from the blocks and stores them in the result array. data[0 : dataLen] contains
290 // be clobbered by this function. The final answer is stored in result[0 : rawCodewords].
323 // for the given version number and error correction level. The result is in the range [9, 2956].
333 // Returns the number of data bits that can be stored in a QR Code of the given version number, aft…
335 // The result is in the range [208, 29648]. This could be implemented as a 40-entry lookup table.
352 // Calculates the Reed-Solomon generator polynomial of the given degree, storing in result[0 : degr…
360 // drop the highest term, and store the rest of the coefficients in order of descending powers. in calcReedSolomonGenerator()
376 // polynomials are in big endian and the generator has an implicit leading 1 term, storing the resu…
489 int rem = version; // version is uint6, in the range [7, 40] in drawWhiteFunctionModules()
542 // for this version number, returning the length of the list (in the range [0,7]).
543 // Each position is in the range [0,177), and are used on both the x and y axes.
558 // Sets every pixel in the range [left : left + width] * [top : top + height] to black.
576 …for (int right = qrsize - 1; right >= 1; right -= 2) { // Index of right column in each column pa… in drawCodewords()
598 // XORs the codeword modules in this QR Code with the given mask pattern.
635 // Adjacent modules in row having same color, and finder-like patterns in getPenaltyScore()
661 // Adjacent modules in column having same color, and finder-like patterns in getPenaltyScore()
723 // Tests whether the given run history has the pattern of ratio 1:1:3:1:1 in the middle, and
738 // Public function - see documentation comment in header file.
748 // Public function - see documentation comment in header file.
756 // Gets the module at the given coordinates, which must be in bounds.
765 // Sets the module at the given coordinates, which must be in bounds.
796 // Public function - see documentation comment in header file.
807 // Public function - see documentation comment in header file.
818 // Public function - see documentation comment in header file.
832 // - Otherwise, all valid results are in the range [0, INT16_MAX].
862 // Public function - see documentation comment in header file.
877 // Public function - see documentation comment in header file.
911 // Public function - see documentation comment in header file.
945 // Public function - see documentation comment in header file.
997 // Returns the bit width of the character count field for a segment in the given mode
998 // in a QR Code at the given version number. The result is in the range [0, 16].