Код: Выделить всё
while ($base <= $end) {
$step = 0;
while (($base | (1 << $step)) != $base) {
if (($base | (((~0) & $thirtytwobits) >> (31-$step))) > $end) {
last;
}
$step++;
}
$base += 1 << $step;
}
Код: Выделить всё
while ($base <= $end) {
$step = 0;
while (($base | (1 << $step)) != $base) {
if (($base | (((~0) & $thirtytwobits) >> (31-$step))) > $end) {
last;
}
$step++;
}
$base += 1 << $step;
}
откуда же я знаю?FreeBSP писал(а):что за ласт?