Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 133 for 32769 (0.06 sec)

  1. src/cmd/cgo/internal/testerrors/ptr_test.go

    		// different code path.
    		name: "barriergcprogarray",
    		c: `#include <stdlib.h>
    		    struct s17 { char *a[32769]; };
    		    struct s17 *f17() { return malloc(sizeof(struct s17)); }
    		    void f17b(struct s17 *p) {}`,
    		body:      `p := C.f17(); p.a = [32769]*C.char{new(C.char)}; C.f17b(p)`,
    		fail:      true,
    		expensive: true,
    	},
    	{
    		// Similar case, with a source on the heap.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/compile/internal/test/testdata/cmpConst_test.go

    func lt_neg32769_int32(x int32) bool      { return x < -32769 }
    func le_neg32769_int32(x int32) bool      { return x <= -32769 }
    func gt_neg32769_int32(x int32) bool      { return x > -32769 }
    func ge_neg32769_int32(x int32) bool      { return x >= -32769 }
    func eq_neg32769_int32(x int32) bool      { return x == -32769 }
    func ne_neg32769_int32(x int32) bool      { return x != -32769 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 103.1K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/IsolatableSerializerRegistryTest.groovy

            then:
            newIsolatables[0].isolate() == short1
            newIsolatables[1].isolate() == short2
        }
    
        def "can serialize/deserialize isolated Integer values"() {
            int integer1 = 32768
            int integer2 = 32769
            Isolatable<?>[] isolatables = [isolatableFactory.isolate(integer1), isolatableFactory.isolate(integer2)]
    
            when:
            serialize(isolatables)
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/compile/internal/test/testdata/arithConst_test.go

    	test_int16{fn: add_Neg1_int16, fnname: "add_Neg1_int16", in: 32766, want: 32765},
    	test_int16{fn: add_int16_Neg1, fnname: "add_int16_Neg1", in: 32766, want: 32765},
    	test_int16{fn: add_Neg1_int16, fnname: "add_Neg1_int16", in: 32767, want: 32766},
    	test_int16{fn: add_int16_Neg1, fnname: "add_int16_Neg1", in: 32767, want: 32766},
    	test_int16{fn: add_0_int16, fnname: "add_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)
  8. src/cmd/compile/internal/test/constFold_test.go

    	}
    	y = 32766
    	r = x + y
    	if r != -1 {
    		t.Errorf("-32767 %s 32766 = %d, want -1", "+", r)
    	}
    	y = 32767
    	r = x + y
    	if r != 0 {
    		t.Errorf("-32767 %s 32767 = %d, want 0", "+", r)
    	}
    	x = -1
    	y = -32768
    	r = x + y
    	if r != 32767 {
    		t.Errorf("-1 %s -32768 = %d, want 32767", "+", r)
    	}
    	y = -32767
    	r = x + y
    	if r != -32768 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 323K bytes
    - Viewed (0)
  9. releasenotes/notes/32749.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - 32749
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 17 16:36:41 UTC 2021
    - 169 bytes
    - Viewed (0)
  10. releasenotes/notes/32469.yaml

    Frank Budinsky <******@****.***> 1619558290 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 27 21:18:10 UTC 2021
    - 225 bytes
    - Viewed (0)
Back to top