Home
last modified time | relevance | path

Searched refs:even_bit_parity (Results 1 – 1 of 1) sorted by relevance

/LevelX-v6.4.1/common/src/
Dlx_nand_flash_256byte_ecc_compute.c91 USHORT even_bit_parity; in _lx_nand_flash_256byte_ecc_compute() local
99 even_bit_parity = 0; in _lx_nand_flash_256byte_ecc_compute()
156 even_bit_parity = (USHORT) ((even_bit_parity ^ (15 - i)) & 0xFFFF); in _lx_nand_flash_256byte_ecc_compute()
212 …ecc_buffer[(6+2)/8] = ((UCHAR)(ecc_buffer[(6+2)/8] | ((even_bit_parity >> 3) & 1) << (6+2)%8) & 0x… in _lx_nand_flash_256byte_ecc_compute()
218 …ecc_buffer[(4+2)/8] = ((UCHAR)(ecc_buffer[(4+2)/8] | ((even_bit_parity >> 2) & 1) << (4+2)%8) & 0x… in _lx_nand_flash_256byte_ecc_compute()
224 …ecc_buffer[(2+2)/8] = ((UCHAR)(ecc_buffer[(2+2)/8] | ((even_bit_parity >> 1) & 1) << (2+2)%8) & 0x… in _lx_nand_flash_256byte_ecc_compute()
230 …ecc_buffer[(0+2)/8] = ((UCHAR)(ecc_buffer[(0+2)/8] | ((even_bit_parity >> 0) & 1) << (0+2)%8) & 0x… in _lx_nand_flash_256byte_ecc_compute()