Lines Matching defs:bit
20 * The two unused bit are set to 1.
21 * The ECC can correct single bit errors in a 256-byte page of data. Thus, two such ECC
29 * Bit 0 of each entry indicates whether the entry has an odd or even parity, and therefore
188 /* Single bit (recoverable) error in data */
191 unsigned bit;
202 bit = byte = 0;
222 bit |= 0x04;
224 bit |= 0x02;
226 bit |= 0x01;
228 data[byte] ^= (1 << bit);
289 unsigned bit;
301 /* Single bit (recoverable) error in data */
303 bit = 0;
306 bit |= 0x04;
308 bit |= 0x02;
310 bit |= 0x01;
315 data[lDelta] ^= (1 << bit);