Lines Matching refs:words
398 FLAC__uint16 FLAC__crc16_update_words32(const FLAC__uint32 *words, uint32_t len, FLAC__uint16 crc) in FLAC__crc16_update_words32() argument
401 crc ^= words[0] >> 16; in FLAC__crc16_update_words32()
404 … FLAC__crc16_table[5][(words[0] >> 8) & 0xFF] ^ FLAC__crc16_table[4][ words[0] & 0xFF] ^ in FLAC__crc16_update_words32()
405 … FLAC__crc16_table[3][ words[1] >> 24 ] ^ FLAC__crc16_table[2][(words[1] >> 16) & 0xFF] ^ in FLAC__crc16_update_words32()
406 … FLAC__crc16_table[1][(words[1] >> 8) & 0xFF] ^ FLAC__crc16_table[0][ words[1] & 0xFF]; in FLAC__crc16_update_words32()
408 words += 2; in FLAC__crc16_update_words32()
413 crc ^= words[0] >> 16; in FLAC__crc16_update_words32()
416 … FLAC__crc16_table[1][(words[0] >> 8) & 0xFF] ^ FLAC__crc16_table[0][words[0] & 0xFF]; in FLAC__crc16_update_words32()
422 FLAC__uint16 FLAC__crc16_update_words64(const FLAC__uint64 *words, uint32_t len, FLAC__uint16 crc) in FLAC__crc16_update_words64() argument
425 crc ^= words[0] >> 48; in FLAC__crc16_update_words64()
428 … FLAC__crc16_table[5][(words[0] >> 40) & 0xFF] ^ FLAC__crc16_table[4][(words[0] >> 32) & 0xFF] ^ in FLAC__crc16_update_words64()
429 … FLAC__crc16_table[3][(words[0] >> 24) & 0xFF] ^ FLAC__crc16_table[2][(words[0] >> 16) & 0xFF] ^ in FLAC__crc16_update_words64()
430 … FLAC__crc16_table[1][(words[0] >> 8) & 0xFF] ^ FLAC__crc16_table[0][ words[0] & 0xFF]; in FLAC__crc16_update_words64()
432 words++; in FLAC__crc16_update_words64()