Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for 32776 (0.11 sec)

  1. src/cmd/asm/internal/asm/testdata/arm64.s

    	MOVD	R1, 0x8008(R2)		// MOVD		R1, 32776(R2)		// 5b204091610700f9
    	MOVD	R1, 0x1006ff8(R2)	// MOVD		R1, 16805880(R2)	// 5bfc7f9161ff3ff9
    	FMOVS	F1, 0x4004(R2)		// FMOVS	F1, 16388(R2)		// 5b104091610700bd
    	FMOVS	F1, 0x1002ffc(R2)	// FMOVS	F1, 16789500(R2)	// 5bfc7f9161ff3fbd
    	FMOVD	F1, 0x8008(R2)		// FMOVD	F1, 32776(R2)		// 5b204091610700fd
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Jul 24 18:45:14 UTC 2024
    - 95.2K bytes
    - Viewed (0)
  2. cmd/encryption-v1_test.go

    		t.Fatalf("Test: failed %s", err)
    	}
    	if encOff != 595127964 {
    		t.Fatalf("Test: expected %d, got %d", 595127964, encOff)
    	}
    	if encLength != 32796 {
    		t.Fatalf("Test: expected %d, got %d", 32796, encLength)
    	}
    	if skipLen != 32756 {
    		t.Fatalf("Test: expected %d, got %d", 32756, skipLen)
    	}
    	if seqNumber != 4538 {
    		t.Fatalf("Test: expected %d, got %d", 4538, seqNumber)
    	}
    	if partStart != 1 {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Sep 24 04:17:08 UTC 2022
    - 19.9K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/s390x.s

    	MOVW	$-131072, R2          // c021fffe0000
    	MOVH	$-512, R3             // a739fe00
    	MOVB	$-1, R4               // a749ffff
    
    	MOVD	$32767, n-8(SP)       // e548f0107fff
    	MOVD	$-1, -524288(R1)      // e3a010008071e548a000ffff
    	MOVW	$32767, n-8(SP)       // e54cf0107fff
    	MOVW	$-32768, 4096(R2)     // e3a020000171e54ca0008000
    	MOVH	$512, n-8(SP)         // e544f0100200
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Sep 18 15:49:24 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  4. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_COUNTERPOINT ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_CRONUS = 32772
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_CRONUS ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_CRONUSVLN = 32771
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_CRONUSVLN ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_DCA = 4660
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/ppc64.s

    	MOVD $65536, R6                 // 3cc00001
    	MOVD $-32767, R5                // 38a08001
    	MOVD $-32768, R6                // 38c08000
    	MOVD $1234567, R5               // 6405001260a5d687 or 0600001238a0d687
    	MOVW $1, R3                     // 38600001
    	MOVW $-1, R4                    // 3880ffff
    	MOVW $65535, R5                 // 6005ffff
    	MOVW $65536, R6                 // 3cc00001
    	MOVW $-32767, R5                // 38a08001
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Oct 29 13:14:38 UTC 2024
    - 51K bytes
    - Viewed (0)
  6. api/go1.1.txt

    pkg syscall (netbsd-386), const ETHERTYPE_COMDESIGN = 32876
    pkg syscall (netbsd-386), const ETHERTYPE_COMPUGRAPHIC = 32877
    pkg syscall (netbsd-386), const ETHERTYPE_COUNTERPOINT = 32866
    pkg syscall (netbsd-386), const ETHERTYPE_CRONUS = 32772
    pkg syscall (netbsd-386), const ETHERTYPE_CRONUSVLN = 32771
    pkg syscall (netbsd-386), const ETHERTYPE_DCA = 4660
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
  7. utils/utils_test.go

    	tests := []struct {
    		name string
    		in   interface{}
    		out  string
    	}{
    		{"int", math.MaxInt64, "9223372036854775807"},
    		{"int8", int8(math.MaxInt8), "127"},
    		{"int16", int16(math.MaxInt16), "32767"},
    		{"int32", int32(math.MaxInt32), "2147483647"},
    		{"int64", int64(math.MaxInt64), "9223372036854775807"},
    		{"uint", uint(math.MaxUint64), "18446744073709551615"},
    		{"uint8", uint8(math.MaxUint8), "255"},
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Thu Aug 22 11:03:42 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. src/builtin/builtin.go

    type uint64 uint64
    
    // int8 is the set of all signed 8-bit integers.
    // Range: -128 through 127.
    type int8 int8
    
    // int16 is the set of all signed 16-bit integers.
    // Range: -32768 through 32767.
    type int16 int16
    
    // int32 is the set of all signed 32-bit integers.
    // Range: -2147483648 through 2147483647.
    type int32 int32
    
    // int64 is the set of all signed 64-bit integers.
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.2.md

    * AWS kube-up: tolerate a lack of ephemeral volumes ([#23776](https://github.com/kubernetes/kubernetes/pull/23776), [@justinsb](https://github.com/justinsb))
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.3.md

    * Add zsh completion for kubectl ([#23797](https://github.com/kubernetes/kubernetes/pull/23797), [@sttts](https://github.com/sttts))
    * AWS kube-up: tolerate a lack of ephemeral volumes ([#23776](https://github.com/kubernetes/kubernetes/pull/23776), [@justinsb](https://github.com/justinsb))
    * duplicate kube-apiserver to federated-apiserver ([#23509](https://github.com/kubernetes/kubernetes/pull/23509), [@jianhuiz](https://github.com/jianhuiz))
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
Back to top