Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 149 for 1391 (0.07 sec)

  1. src/runtime/vdso_linux_386.go

    const (
    	// vdsoArrayMax is the byte-size of a maximally sized array on this architecture.
    	// See cmd/compile/internal/x86/galign.go arch.MAXWIDTH initialization, but must also
    	// be constrained to max +ve int.
    	vdsoArrayMax = 1<<31 - 1
    )
    
    var vdsoLinuxVersion = vdsoVersionKey{"LINUX_2.6", 0x3ae75f6}
    
    var vdsoSymbolKeys = []vdsoSymbolKey{
    	{"__vdso_clock_gettime", 0xd35ec75, 0x6e43a318, &vdsoClockgettimeSym},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 27 13:21:27 UTC 2018
    - 669 bytes
    - Viewed (0)
  2. test/fixedbugs/issue23781.go

    // compile
    
    //go:build amd64
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 260 bytes
    - Viewed (0)
  3. test/fixedbugs/bug317.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func main() {
    	x := []uint{0}
    	x[0] &^= f()
    }
    
    func f() uint {
    	return 1<<31 // doesn't panic with 1<<31 - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 293 bytes
    - Viewed (0)
  4. src/runtime/vdso_linux_arm.go

    const (
    	// vdsoArrayMax is the byte-size of a maximally sized array on this architecture.
    	// See cmd/compile/internal/arm/galign.go arch.MAXWIDTH initialization, but must also
    	// be constrained to max +ve int.
    	vdsoArrayMax = 1<<31 - 1
    )
    
    var vdsoLinuxVersion = vdsoVersionKey{"LINUX_2.6", 0x3ae75f6}
    
    var vdsoSymbolKeys = []vdsoSymbolKey{
    	{"__vdso_clock_gettime", 0xd35ec75, 0x6e43a318, &vdsoClockgettimeSym},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 27 13:21:27 UTC 2018
    - 669 bytes
    - Viewed (0)
  5. test/fixedbugs/issue6036.go

    package main
    
    type T struct {
    	Large [1 << 31]byte
    	A     int
    	B     int
    }
    
    func F(t *T) {
    	t.B = t.A
    }
    
    type T2 [1<<31 + 2]byte
    
    func F2(t *T2) {
    	t[1<<31+1] = 42
    }
    
    type T3 [1<<15 + 1][1<<15 + 1]int
    
    func F3(t *T3) {
    	t[1<<15][1<<15] = 42
    }
    
    type S struct {
    	A int32
    	B int32
    }
    
    type T4 [1<<29 + 1]S
    
    func F4(t *T4) {
    	t[1<<29].B = 42
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 652 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/id.go

    // idAlloc provides an allocator for unique integers.
    type idAlloc struct {
    	last ID
    }
    
    // get allocates an ID and returns it. IDs are always > 0.
    func (a *idAlloc) get() ID {
    	x := a.last
    	x++
    	if x == 1<<31-1 {
    		panic("too many ids for this function")
    	}
    	a.last = x
    	return x
    }
    
    // num returns the maximum ID ever returned + 1.
    func (a *idAlloc) num() int {
    	return int(a.last + 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 22 19:21:16 UTC 2016
    - 576 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/zerrors_windows.go

    	ERROR_LICENSE_QUOTA_EXCEEDED                                              syscall.Errno = 1395
    	ERROR_WRONG_TARGET_NAME                                                   syscall.Errno = 1396
    	ERROR_MUTUAL_AUTH_FAILED                                                  syscall.Errno = 1397
    	ERROR_TIME_SKEW                                                           syscall.Errno = 1398
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 923.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/x86/galign.go

    	"internal/buildcfg"
    	"os"
    )
    
    func Init(arch *ssagen.ArchInfo) {
    	arch.LinkArch = &x86.Link386
    	arch.REGSP = x86.REGSP
    	arch.SSAGenValue = ssaGenValue
    	arch.SSAGenBlock = ssaGenBlock
    	arch.MAXWIDTH = (1 << 32) - 1
    	switch v := buildcfg.GO386; v {
    	case "sse2":
    	case "softfloat":
    		arch.SoftFloat = true
    	case "387":
    		fmt.Fprintf(os.Stderr, "unsupported setting GO386=387. Consider using GO386=softfloat instead.\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 03 21:05:55 UTC 2021
    - 887 bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/stubtest_linux_ppc64le.S

    	.globl	toc_func
    	.type	toc_func, @function
    toc_func:
    	addis	2,12,.TOC.-toc_func@ha
    	addi	2,2,.TOC.-toc_func@l
    	.localentry toc_func, .-toc_func
    	mflr	0
    	std	0,16(1)
    	stdu	1,-32(1)
    
    	// Call a NOTOC function which clobbers R2.
    	bl	notoc_nor2_func
    	nop
    
    	// Call libc random. This should generate a TOC relative plt stub.
    	bl	random
    	nop
    
    	addi	1,1,32
    	ld 	0,16(1)
    	mtlr	0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 15:06:17 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. ci/official/envs/macos_arm64

    TFCI_MACOS_BAZEL_TEST_DIR_ENABLE=1
    TFCI_MACOS_BAZEL_TEST_DIR_PATH="/Volumes/BuildData/bazel_output"
    TFCI_OUTPUT_DIR=build_output
    TFCI_WHL_BAZEL_TEST_ENABLE=1
    TFCI_WHL_SIZE_LIMIT=240M
    TFCI_WHL_SIZE_LIMIT_ENABLE=1
    
    # 3.11 is the system python on our images
    case $TFCI_PYTHON_VERSION in
    3.11)
      TFCI_MACOS_PYENV_INSTALL_ENABLE=0
      ;;
    *)
      TFCI_MACOS_PYENV_INSTALL_ENABLE=1
      ;;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 19 00:24:30 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top