Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for 00010000 (0.18 sec)

  1. cmd/xl-storage-format-v2.go

    	tmp[0] = 0xce // muint32
    	binary.BigEndian.PutUint32(tmp[1:], uint32(xxhash.Sum64(dst[dataOffset:])))
    	dst = append(dst, tmp[:5]...)
    	return append(dst, x.data...), nil
    }
    
    const emptyUUID = "00000000-0000-0000-0000-000000000000"
    
    func (x *xlMetaV2) findVersionStr(key string) (idx int, ver *xlMetaV2Version, err error) {
    	if key == nullVersionID {
    		key = ""
    	}
    	var u uuid.UUID
    	if key != "" {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 23 05:07:37 GMT 2024
    - 63.6K bytes
    - Viewed (1)
  2. src/cmd/asm/internal/asm/testdata/arm.s

    // DIVHW R0, R1: R1 / R0 -> R1
    	DIVHW	R0, R1               // 11f011e7
    	DIVUHW	R0, R1               // 11f031e7
    
    // misc
    	CLZ	R1, R2         // 112f6fe1
    	WORD	$0             // 00000000
    	WORD	$4294967295    // ffffffff
    	WORD	$2863311530    // aaaaaaaa
    	WORD	$1431655765    // 55555555
    	PLD	4080(R6)       // f0ffd6f5
    	PLD	-4080(R9)      // f0ff59f5
    	RFE	               // 0080fde8
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 15 20:51:01 GMT 2023
    - 69K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/arm64.s

    	MOVD	$0x1111ffff1111aaaa, R1       // MOVD	$1230045644216969898, R1    // a1aa8a922122a2f22122e2f2
    	MOVD	$0, R1                        // e1031faa
    	MOVD	$-1, R1                       // 01008092
    	MOVD	$0x210000, R0                 // MOVD	$2162688, R0                // 2004a0d2
    	MOVD	$0xffffffffffffaaaa, R1       // MOVD	$-21846, R1                 // a1aa8a92
    	MOVW	$1, ZR                        // 3f008052
    	MOVW	$1, R1
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 94.9K bytes
    - Viewed (0)
  4. doc/go_spec.html

    '\xa'        // illegal: too few hexadecimal digits
    '\0'         // illegal: too few octal digits
    '\400'       // illegal: octal value over 255
    '\uDFFF'     // illegal: surrogate half
    '\U00110000' // illegal: invalid Unicode code point
    </pre>
    
    
    <h3 id="String_literals">String literals</h3>
    
    <p>
    A string literal represents a <a href="#Constants">string constant</a>
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top