You are here

private property DecoderTest::$int32 in Smart IP 7.2

Same name and namespace in other branches
  1. 6.2 includes/vendor/maxmind-db/reader/tests/MaxMind/Db/Test/Reader/DecoderTest.php \MaxMind\Db\Test\Reader\DecoderTest::int32

File

includes/vendor/maxmind-db/reader/tests/MaxMind/Db/Test/Reader/DecoderTest.php, line 155

Class

DecoderTest

Namespace

MaxMind\Db\Test\Reader

Code

private $int32 = array(
  '0' => array(
    0x0,
    0x1,
  ),
  '-1' => array(
    0x4,
    0x1,
    0xff,
    0xff,
    0xff,
    0xff,
  ),
  '255' => array(
    0x1,
    0x1,
    0xff,
  ),
  '-255' => array(
    0x4,
    0x1,
    0xff,
    0xff,
    0xff,
    0x1,
  ),
  '500' => array(
    0x2,
    0x1,
    0x1,
    0xf4,
  ),
  '-500' => array(
    0x4,
    0x1,
    0xff,
    0xff,
    0xfe,
    0xc,
  ),
  '65535' => array(
    0x2,
    0x1,
    0xff,
    0xff,
  ),
  '-65535' => array(
    0x4,
    0x1,
    0xff,
    0xff,
    0x0,
    0x1,
  ),
  '16777215' => array(
    0x3,
    0x1,
    0xff,
    0xff,
    0xff,
  ),
  '-16777215' => array(
    0x4,
    0x1,
    0xff,
    0x0,
    0x0,
    0x1,
  ),
  '2147483647' => array(
    0x4,
    0x1,
    0x7f,
    0xff,
    0xff,
    0xff,
  ),
  '-2147483647' => array(
    0x4,
    0x1,
    0x80,
    0x0,
    0x0,
    0x1,
  ),
);