Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for 268435375 (0.17 sec)

  1. src/crypto/x509/oid_test.go

    	{[]byte{85, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 127}, true, "2.5.19342813113834066795298815", nil},
    
    	{[]byte{255, 255, 255, 127}, true, "2.268435375", []uint64{2, 268435375}},
    	{[]byte{0x87, 255, 255, 255, 127}, true, "2.2147483567", []uint64{2, 2147483567}},
    	{[]byte{255, 127}, true, "2.16303", []uint64{2, 16303}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. test/codegen/bits.go

    	return n
    }
    
    func bitoff32(a, b uint32) (n uint32) {
    	// amd64:"BTRL"
    	n += b &^ (1 << (a & 31))
    
    	// amd64:"ANDL\t[$]2147483647"
    	n += a &^ (1 << 31)
    
    	// amd64:"ANDL\t[$]-268435457"
    	n += a &^ (1 << 28)
    
    	// amd64:"ANDL\t[$]-2"
    	n += a &^ (1 << 0)
    
    	return n
    }
    
    func bitcompl32(a, b uint32) (n uint32) {
    	// amd64:"BTCL"
    	n += b ^ (1 << (a & 31))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/testdata/arith_test.go

    	}
    	if want, got := uint32(4026531858), invalidSub_ssa(1); want != got {
    		t.Errorf("testLargeConst sub failed, wanted %d got %d", want, got)
    	}
    	if want, got := uint32(268435455), invalidMul_ssa(1); want != got {
    		t.Errorf("testLargeConst mul failed, wanted %d got %d", want, got)
    	}
    }
    
    // testArithRshConst ensures that "const >> const" right shifts correctly perform
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:30:59 UTC 2023
    - 43.5K bytes
    - Viewed (0)
  4. api/go1.1.txt

    pkg syscall (darwin-386), const IN_CLASSC_HOST = 255
    pkg syscall (darwin-386), const IN_CLASSC_NET = 4294967040
    pkg syscall (darwin-386), const IN_CLASSC_NSHIFT = 8
    pkg syscall (darwin-386), const IN_CLASSD_HOST = 268435455
    pkg syscall (darwin-386), const IN_CLASSD_NET = 4026531840
    pkg syscall (darwin-386), const IN_CLASSD_NSHIFT = 28
    pkg syscall (darwin-386), const IN_LINKLOCALNETNUM = 2851995648
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
  5. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const IN_CLASSC_NSHIFT = 8
    pkg syscall (netbsd-arm64-cgo), const IN_CLASSC_NSHIFT ideal-int
    pkg syscall (netbsd-arm64-cgo), const IN_CLASSD_HOST = 268435455
    pkg syscall (netbsd-arm64-cgo), const IN_CLASSD_HOST ideal-int
    pkg syscall (netbsd-arm64-cgo), const IN_CLASSD_NET = 4026531840
    pkg syscall (netbsd-arm64-cgo), const IN_CLASSD_NET ideal-int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  6. api/go1.14.txt

    pkg syscall (freebsd-arm64), const IN_CLASSC_NET ideal-int
    pkg syscall (freebsd-arm64), const IN_CLASSC_NSHIFT = 8
    pkg syscall (freebsd-arm64), const IN_CLASSC_NSHIFT ideal-int
    pkg syscall (freebsd-arm64), const IN_CLASSD_HOST = 268435455
    pkg syscall (freebsd-arm64), const IN_CLASSD_HOST ideal-int
    pkg syscall (freebsd-arm64), const IN_CLASSD_NET = 4026531840
    pkg syscall (freebsd-arm64), const IN_CLASSD_NET ideal-int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  7. api/go1.16.txt

    pkg syscall (darwin-arm64), const IN_CLASSC_NET ideal-int
    pkg syscall (darwin-arm64), const IN_CLASSC_NSHIFT = 8
    pkg syscall (darwin-arm64), const IN_CLASSC_NSHIFT ideal-int
    pkg syscall (darwin-arm64), const IN_CLASSD_HOST = 268435455
    pkg syscall (darwin-arm64), const IN_CLASSD_HOST ideal-int
    pkg syscall (darwin-arm64), const IN_CLASSD_NET = 4026531840
    pkg syscall (darwin-arm64), const IN_CLASSD_NET ideal-int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
Back to top