Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for hcrc (0.09 sec)

  1. src/internal/trace/traceviewer/static/trace_viewer_full.html

    nding_buf_size&&(o.gzhead.hcrc&&o.pending>d&&(t.adler=E(t.adler,o.pending_buf,o.pending-d,d)),s(t),d=o.pending,o.pending===o.pending_buf_size)){f=1;break}f=o.gzindex<o.gzhead.comment.length?255&o.gzhead.comment.charCodeAt(o.gzindex++):0,l(o,f)}while(0!==f);o.gzhead.hcrc&&o.pending>d&&(t.adler=E(t.adler,o.pending_buf,o.pending-d,d)),0===f&&(o.status=ht)}else o.status=ht;if(o.status===ht&&(o.gzhead.hcrc?(o.pending+2>o.pending_buf_size&&s(t),o.pending+2<=o.pending_buf_size&&(l(o,255&t.adler),l(o,t....
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  2. src/hash/crc32/crc32_ppc64le.s

    	MOVWZ	(R10)(R8),R25	// tab[4][crc>>24]
    	RLDICL	$48,R7,$56,R24	// crc>>16&0xFF
    	XOR	R21,R25,R21	// xor done R25
    	ADD	$1024,R10,R10	// &tab[5]
    	SLD	$2,R24,R24	// crc>>16&0xFF*4
    	MOVWZ	(R10)(R24),R26	// tab[5][crc>>16&0xFF]
    	XOR	R21,R26,R21	// xor done R26
    	RLDICL	$56,R7,$56,R25	// crc>>8
    	ADD	$1024,R10,R10	// &tab[6]
    	SLD	$2,R25,R25	// crc>>8&FF*2
    	MOVBZ   R7,R26          // crc&0xFF
    	MOVWZ	(R10)(R25),R27	// tab[6][crc>>8&0xFF]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 12:09:50 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. src/hash/crc32/crc32_generic.go

    		for len(p) > 8 {
    			crc ^= byteorder.LeUint32(p)
    			crc = tab[0][p[7]] ^ tab[1][p[6]] ^ tab[2][p[5]] ^ tab[3][p[4]] ^
    				tab[4][crc>>24] ^ tab[5][(crc>>16)&0xFF] ^
    				tab[6][(crc>>8)&0xFF] ^ tab[7][crc&0xFF]
    			p = p[8:]
    		}
    		crc = ^crc
    	}
    	if len(p) == 0 {
    		return crc
    	}
    	return simpleUpdate(crc, &tab[0], p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. src/hash/crc64/crc64.go

    		}
    		// Update using slicing-by-8
    		for len(p) > 8 {
    			crc ^= byteorder.LeUint64(p)
    			crc = helperTable[7][crc&0xff] ^
    				helperTable[6][(crc>>8)&0xff] ^
    				helperTable[5][(crc>>16)&0xff] ^
    				helperTable[4][(crc>>24)&0xff] ^
    				helperTable[3][(crc>>32)&0xff] ^
    				helperTable[2][(crc>>40)&0xff] ^
    				helperTable[1][(crc>>48)&0xff] ^
    				helperTable[0][crc>>56]
    			p = p[8:]
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. src/hash/crc32/crc32_amd64.go

    	// bytes.
    	//
    	// CRC(I, ABC) = CRC(I, ABO xor C)
    	//             = CRC(I, ABO) xor CRC(0, C)
    	//             = CRC(CRC(I, AB), O) xor CRC(0, C)
    	//             = CRC(CRC(I, AO xor B), O) xor CRC(0, C)
    	//             = CRC(CRC(I, AO) xor CRC(0, B), O) xor CRC(0, C)
    	//             = CRC(CRC(CRC(I, A), O) xor CRC(0, B), O) xor CRC(0, C)
    	//
    	// The castagnoliSSE42Triple function can compute CRC(I, A), CRC(0, B),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  6. src/hash/crc32/crc32_s390x.go

    // vectorizedCastagnoli.
    func archUpdateCastagnoli(crc uint32, p []byte) uint32 {
    	if !hasVX {
    		panic("not available")
    	}
    	// Use vectorized function if data length is above threshold.
    	if len(p) >= vxMinLen {
    		aligned := len(p) & ^vxAlignMask
    		crc = vectorizedCastagnoli(crc, p[:aligned])
    		p = p[aligned:]
    	}
    	if len(p) == 0 {
    		return crc
    	}
    	return slicingUpdate(crc, archCastagnoliTable8, p)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  7. src/hash/crc64/crc64_test.go

    	{0x336776c420000000, 0x3c9d28596e5960ba, "abcd", "crc\x02s\xba\x84\x84\xbb\xcd]\xef6\xc4 \x00\x00\x00\x00\x00", "crc\x02`&\x9aR\xe1\xb7\xfee\xbces \x0e\x84\xb0F"},
    	{0x32d36776c4200000, 0x40bdf58fb0895f2, "abcde", "crc\x02s\xba\x84\x84\xbb\xcd]\xef6\xc4 \x00\x00\x00\x00\x00", "crc\x02`&\x9aR\xe1\xb7\xfee\xbces \x0e\x84\xb0F"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 25 06:32:12 UTC 2018
    - 9.9K bytes
    - Viewed (0)
  8. src/hash/crc32/crc32_test.go

    	{0x4b8e39ef, 0x53bceff1, "abcdef", "crc\x01ʇ\x91M5$A\xc2", "crc\x01wB\x84\x816K?\xb7"},
    	{0x312a6aa6, 0xe627f441, "abcdefg", "crc\x01ʇ\x91M5$A\xc2", "crc\x01wB\x84\x816K?\xb7"},
    	{0xaeef2a50, 0xa9421b7, "abcdefgh", "crc\x01ʇ\x91M\xed\x82\xcd\x11", "crc\x01wB\x84\x81\x92\xc8\n1"},
    	{0x8da988af, 0x2ddc99fc, "abcdefghi", "crc\x01ʇ\x91M\xed\x82\xcd\x11", "crc\x01wB\x84\x81\x92\xc8\n1"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. src/hash/crc32/crc32_s390x.s

    // Register usage:
    //
    //      R5:     CRC-32 constant pool base pointer.
    //      V0:     Initial CRC value and intermediate constants and results.
    //      V1..V4: Data for CRC computation.
    //      V5..V8: Next data chunks that are fetched from the input buffer.
    //
    //      V9..V14: CRC-32 constants.
    
    // func vectorizedIEEE(crc uint32, p []byte) uint32
    TEXT ·vectorizedIEEE(SB),NOSPLIT,$0
    	MOVWZ   crc+0(FP), R2     // R2 stores the CRC value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 20 00:49:17 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  10. src/hash/crc32/crc32_ppc64le.go

    		aligned := len(p) & ^vecAlignMask
    		crc = vectorCrc32(crc, crcCast, p[:aligned])
    		p = p[aligned:]
    	}
    	if len(p) == 0 {
    		return crc
    	}
    	return ppc64SlicingUpdateBy8(crc, archCastagnoliTable8, p)
    }
    
    func archAvailableIEEE() bool {
    	return true
    }
    func archAvailableCastagnoli() bool {
    	return true
    }
    
    var archIeeeTable8 *slicing8Table
    
    func archInitIEEE() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 2.2K bytes
    - Viewed (0)
Back to top