VL
Size: a a a
VL
A
VL
A
// Note: If the following code is not optimized by compiler, it
// can be replaced with the following:
// if (syndrome & ((1 << 30) | (1 << 31)))
if (syndrome == 0xffffffff
|| syndrome == (1 << 30)
|| syndrome == (1 << 31)) {
// Bits 30 and 31 (30* and 29*) can't be incorrect
// if previous word wad decoded correctly
bad++;
return false;
}
A
VL
A
A
A
// Note: If the following code is not optimized by compiler, it
// can be replaced with the following:
// if (syndrome & ((1 << 30) | (1 << 31)))
if (syndrome == 0xffffffff
|| syndrome == (1 << 30)
|| syndrome == (1 << 31)) {
// Bits 30 and 31 (30* and 29*) can't be incorrect
// if previous word wad decoded correctly
bad++;
return false;
}
A
VL
A
A
A
VL
VL
VL
VL
A