Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for genCrc32ConstTable (0.23 sec)

  1. src/hash/crc32/gen_const_ppc64le.go

    	// to identify it.
    
    	genCrc32ConstTable(w, 0xedb88320, "IEEE")
    	genCrc32ConstTable(w, 0x82f63b78, "Cast")
    	genCrc32ConstTable(w, 0xeb31d82e, "Koop")
    	b := w.Bytes()
    
    	err := os.WriteFile("crc32_table_ppc64le.s", b, 0666)
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "can't write output: %s\n", err)
    	}
    }
    
    func genCrc32ConstTable(w *bytes.Buffer, poly uint32, polyid string) {
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top