@@ 115-118 (lines=4) @@ | ||
112 | $bbdBlocks = (self::BIG_BLOCK_SIZE - self::BIG_BLOCK_DEPOT_BLOCKS_POS) / 4; |
|
113 | } |
|
114 | ||
115 | for ($i = 0; $i < $bbdBlocks; ++$i) { |
|
116 | $bigBlockDepotBlocks[$i] = self::getInt4d($this->data, $pos); |
|
117 | $pos += 4; |
|
118 | } |
|
119 | ||
120 | for ($j = 0; $j < $this->numExtensionBlocks; ++$j) { |
|
121 | $pos = ($this->extensionBlock + 1) * self::BIG_BLOCK_SIZE; |
|
@@ 124-127 (lines=4) @@ | ||
121 | $pos = ($this->extensionBlock + 1) * self::BIG_BLOCK_SIZE; |
|
122 | $blocksToRead = min($this->numBigBlockDepotBlocks - $bbdBlocks, self::BIG_BLOCK_SIZE / 4 - 1); |
|
123 | ||
124 | for ($i = $bbdBlocks; $i < $bbdBlocks + $blocksToRead; ++$i) { |
|
125 | $bigBlockDepotBlocks[$i] = self::getInt4d($this->data, $pos); |
|
126 | $pos += 4; |
|
127 | } |
|
128 | ||
129 | $bbdBlocks += $blocksToRead; |
|
130 | if ($bbdBlocks < $this->numBigBlockDepotBlocks) { |