Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for castagnoliShift (0.12 sec)

  1. src/hash/crc32/crc32_amd64.go

    			castagnoliSSE42TableK2[b][i] = castagnoliSSE42(val, tmp[:])
    		}
    	}
    }
    
    // castagnoliShift computes the CRC32-C of K1 or K2 zeroes (depending on the
    // table given) with the given initial crc value. This corresponds to
    // CRC(crc, O) in the description in updateCastagnoli.
    func castagnoliShift(table *sse42Table, crc uint32) uint32 {
    	return table[3][crc>>24] ^
    		table[2][(crc>>16)&0xFF] ^
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 6.8K bytes
    - Viewed (0)
Back to top