Searched refs:byte2int (Results 1 – 7 of 7) sorted by relevance
45 result += byte2int(bb.get()); in readUInt24()52 result += byte2int(bb.get()) << 8; in readUInt16()53 result += byte2int(bb.get()); in readUInt16()59 result += byte2int(bb.get()); in readUInt16BE()60 result += byte2int(bb.get()) << 8; in readUInt16BE()65 return byte2int(bb.get()); in readUInt8()68 public static int byte2int(byte b) { in byte2int() method in IsoTypeReader
75 number = (number * 256 + six.byte2int([c])) % modulo
501 int i = byte2int(b); in readRGB2D()643 int i = byte2int(b); in readRGB3D()800 private static int byte2int(byte[] b) { in byte2int() method in DDSLoader
504 assert six.byte2int(six.b("\x03")) == 3505 assert six.byte2int(six.b("\x03\x04")) == 3506 py.test.raises(IndexError, six.byte2int, six.b(""))
607 byte2int = operator.itemgetter(0) variable624 def byte2int(bs): function
173 - Issue #26: Add byte2int function, which complements int2byte.
409 .. function:: byte2int(bs)