Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 133 for 32768 (0.04 sec)

  1. src/cmd/compile/internal/test/testdata/arithBoundary_test.go

    	itd16{a: 1, b: 32766, add: 32767, sub: -32765, mul: 32766, div: 0, mod: 1},
    	itd16{a: 1, b: 32767, add: -32768, sub: -32766, mul: 32767, div: 0, mod: 1},
    	itd16{a: 32766, b: -32768, add: -2, sub: -2, mul: 0, div: 0, mod: 32766},
    	itd16{a: 32766, b: -32767, add: -1, sub: -3, mul: 32766, div: 0, mod: 32766},
    	itd16{a: 32766, b: -1, add: 32765, sub: 32767, mul: -32766, div: -32766, mod: 0},
    	itd16{a: 32766, b: 0, add: 32766, sub: 32766, mul: 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 31.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/testdata/cmpConst_test.go

    func lt_neg32768_int16(x int16) bool { return x < -32768 }
    func le_neg32768_int16(x int16) bool { return x <= -32768 }
    func gt_neg32768_int16(x int16) bool { return x > -32768 }
    func ge_neg32768_int16(x int16) bool { return x >= -32768 }
    func eq_neg32768_int16(x int16) bool { return x == -32768 }
    func ne_neg32768_int16(x int16) bool { return x != -32768 }
    func lt_neg32767_int16(x int16) bool { return x < -32767 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 103.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/testdata/arithConst_test.go

    	test_int16{fn: sub_Neg1_int16, fnname: "sub_Neg1_int16", in: 32766, want: -32767},
    	test_int16{fn: sub_int16_Neg1, fnname: "sub_int16_Neg1", in: 32766, want: 32767},
    	test_int16{fn: sub_Neg1_int16, fnname: "sub_Neg1_int16", in: 32767, want: -32768},
    	test_int16{fn: sub_int16_Neg1, fnname: "sub_int16_Neg1", in: 32767, want: -32768},
    	test_int16{fn: sub_0_int16, fnname: "sub_0_int16", in: -32768, want: -32768},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 633.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/constFold_test.go

    	y = 32767
    	r = x + y
    	if r != -32768 {
    		t.Errorf("1 %s 32767 = %d, want -32768", "+", r)
    	}
    	x = 32766
    	y = -32768
    	r = x + y
    	if r != -2 {
    		t.Errorf("32766 %s -32768 = %d, want -2", "+", r)
    	}
    	y = -32767
    	r = x + y
    	if r != -1 {
    		t.Errorf("32766 %s -32767 = %d, want -1", "+", r)
    	}
    	y = -1
    	r = x + y
    	if r != 32765 {
    		t.Errorf("32766 %s -1 = %d, want 32765", "+", r)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 323K bytes
    - Viewed (0)
  5. src/log/slog/internal/benchmarks/benchmarks.go

    var (
    	testTime     = time.Date(2022, time.May, 1, 0, 0, 0, 0, time.UTC)
    	testString   = "7e3b3b2aaeff56a7108fe11e154200dd/7819479873059528190"
    	testInt      = 32768
    	testDuration = 23 * time.Second
    	testError    = errors.New("fail")
    )
    
    var testAttrs = []slog.Attr{
    	slog.String("string", testString),
    	slog.Int("status", testInt),
    	slog.Duration("duration", testDuration),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 25 12:14:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/s390x.s

    	CMP	R1, R2                 // b9200012
    	CMP	R3, $32767             // a73f7fff
    	CMP	R3, $32768             // c23c00008000
    	CMP	R3, $-2147483648       // c23c80000000
    	CMPU	R4, R5                 // b9210045
    	CMPU	R6, $4294967295        // c26effffffff
    	CMPW	R7, R8                 // 1978
    	CMPW	R9, $-32768            // a79e8000
    	CMPW	R9, $-32769            // c29dffff7fff
    	CMPW	R9, $-2147483648       // c29d80000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 03:55:32 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/ppc64.s

    	ADD $65536, R6                  // 3cc60001
    	ADD $65536, R6, R7              // 3ce60001
    	ADD $-32767, R5                 // 38a58001
    	ADD $-32767, R5, R4             // 38858001
    	ADD $-32768, R6                 // 38c68000
    	ADD $-32768, R6, R5             // 38a68000
    	// Hex constant 0xFFFFFFFE00000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. test/codegen/arithmetic.go

    	// ppc64x/power10:"ADD\t[$]2147450879,"
    	// ppc64x/power9:"ADDIS\t[$]32767,", "ADD\t[$]32767,"
    	// ppc64x/power8:"ADDIS\t[$]32767,", "ADD\t[$]32767,"
    	out[4] = a + 0x7FFF7FFF
    	// ppc64x/power10:"ADD\t[$]-2147483647,"
    	// ppc64x/power9:"ADDIS\t[$]-32768,", "ADD\t[$]1,"
    	// ppc64x/power8:"ADDIS\t[$]-32768,", "ADD\t[$]1,"
    	out[5] = a - 2147483647
    	// ppc64x:"ADDIS\t[$]-32768,", ^"ADD\t"
    	out[6] = a - 2147483648
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. pkg/proxy/apis/config/scheme/testdata/KubeProxyConfiguration/after/v1alpha1.yaml

    bindAddressHardFail: false
    clientConnection:
      acceptContentTypes: ""
      burst: 10
      contentType: application/vnd.kubernetes.protobuf
      kubeconfig: ""
      qps: 5
    clusterCIDR: ""
    configSyncPeriod: 15m0s
    conntrack:
      maxPerCore: 32768
      min: 131072
      tcpBeLiberal: false
      tcpCloseWaitTimeout: 1h0m0s
      tcpEstablishedTimeout: 24h0m0s
      udpStreamTimeout: 0s
      udpTimeout: 0s
    detectLocal:
      bridgeInterface: ""
      interfaceNamePrefix: ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 12:50:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. pkg/proxy/apis/config/scheme/testdata/KubeProxyConfiguration/roundtrip/default/v1alpha1.yaml

    bindAddressHardFail: false
    clientConnection:
      acceptContentTypes: ""
      burst: 10
      contentType: application/vnd.kubernetes.protobuf
      kubeconfig: ""
      qps: 5
    clusterCIDR: ""
    configSyncPeriod: 15m0s
    conntrack:
      maxPerCore: 32768
      min: 131072
      tcpBeLiberal: false
      tcpCloseWaitTimeout: 1h0m0s
      tcpEstablishedTimeout: 24h0m0s
      udpStreamTimeout: 0s
      udpTimeout: 0s
    detectLocal:
      bridgeInterface: ""
      interfaceNamePrefix: ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 12:50:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top