Home
last modified time | relevance | path

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

/external/flac/libFLAC/ia32/
Dbitreader_asm.nasm37 cextern FLAC__crc16_table ; unsigned FLAC__crc16_table[256];
143 mov edi, FLAC__crc16_table
146 ;; ebx (bl) intermediate result index into FLAC__crc16_table[]
150 ;; edi unsigned FLAC__crc16_table[]
156 mov ecx, [ebx*4 + edi] ; cx <- FLAC__crc16_table[(crc>>8)^(word>>24)]
158 xor eax, ecx ; crc <- ax <- (crc<<8) ^ FLAC__crc16_table[(crc>>8)^(word>>24)]
161 mov ecx, [ebx*4 + edi] ; cx <- FLAC__crc16_table[(crc>>8)^((word>>16)&0xff))]
163 xor eax, ecx ; crc <- ax <- (crc<<8) ^ FLAC__crc16_table[(crc>>8)^((word>>16)&0xff))]
167 mov ecx, [ebx*4 + edi] ; cx <- FLAC__crc16_table[(crc>>8)^((word>>8)&0xff))]
169 xor eax, ecx ; crc <- ax <- (crc<<8) ^ FLAC__crc16_table[(crc>>8)^((word>>8)&0xff))]
[all …]
/external/flac/libFLAC/include/private/
Dcrc.h51 extern unsigned FLAC__crc16_table[256];
53 #define FLAC__CRC16_UPDATE(data, crc) (((((crc)<<8) & 0xffff) ^ FLAC__crc16_table[((crc)>>8) ^ (dat…
56 #define FLAC__CRC16_UPDATE(data, crc) ((((crc)<<8) ^ FLAC__crc16_table[((crc)>>8) ^ (data)]) & 0xff…
/external/flac/libFLAC/
Dcrc.c77 unsigned FLAC__crc16_table[256] = { variable
139 crc = ((crc<<8) ^ FLAC__crc16_table[(crc>>8) ^ *data++]) & 0xffff; in FLAC__crc16()