# File lib/rqrcode/qrcode/qr_math.rb, line 47 def gexp(n) while n < 0 n = n + 255 end while n >= 256 n = n - 255 end EXP_TABLE[n] end