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