Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for shasum (0.38 sec)

  1. src/archive/tar/format.go

    		panic("invalid format")
    	}
    
    	// Update checksum.
    	// This field is special in that it is terminated by a NULL then space.
    	var f formatter
    	field := b.toV7().chksum()
    	chksum, _ := b.computeChecksum() // Possible values are 256..128776
    	f.formatOctal(field[:7], chksum) // Never fails since 128776 < 262143
    	field[7] = ' '
    }
    
    // computeChecksum computes the checksum for the header block.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 11.3K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	SHA1H V17, V25                                              // 390a285e
    	SHA1M V0.S4, V27, V27                                       // 7b23005e
    	SHA1P V3.S4, V20, V27                                       // 9b12035e
    	SHA1SU0 V17.S4, V13.S4, V16.S4                              // b031115e
    	SHA1SU1 V24.S4, V23.S4                                      // 171b285e
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jul 24 01:11:41 GMT 2023
    - 43.9K bytes
    - Viewed (1)
  3. src/cmd/asm/internal/asm/testdata/arm64error.s

    	AESE	V1.D2, V2.D2                                     // ERROR "invalid arrangement"
    	AESIMC	V1.S4, V2.S4                                     // ERROR "invalid arrangement"
    	SHA1SU1	V1.B16, V2.B16                                   // ERROR "invalid arrangement"
    	SHA256SU1	V1.B16, V2.B16, V3.B16                   // ERROR "invalid arrangement"
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 37.8K bytes
    - Viewed (0)
Back to top