Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for bigptr (0.13 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	SIGMSG      = syscall.Signal(0x1b)
    	SIGPIPE     = syscall.Signal(0xd)
    	SIGPOLL     = syscall.Signal(0x17)
    	SIGPRE      = syscall.Signal(0x24)
    	SIGPROF     = syscall.Signal(0x20)
    	SIGPTY      = syscall.Signal(0x17)
    	SIGPWR      = syscall.Signal(0x1d)
    	SIGQUIT     = syscall.Signal(0x3)
    	SIGRECONFIG = syscall.Signal(0x3a)
    	SIGRETRACT  = syscall.Signal(0x3d)
    	SIGSAK      = syscall.Signal(0x3f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	SIGMSG      = syscall.Signal(0x1b)
    	SIGPIPE     = syscall.Signal(0xd)
    	SIGPOLL     = syscall.Signal(0x17)
    	SIGPRE      = syscall.Signal(0x24)
    	SIGPROF     = syscall.Signal(0x20)
    	SIGPTY      = syscall.Signal(0x17)
    	SIGPWR      = syscall.Signal(0x1d)
    	SIGQUIT     = syscall.Signal(0x3)
    	SIGRECONFIG = syscall.Signal(0x3a)
    	SIGRETRACT  = syscall.Signal(0x3d)
    	SIGSAK      = syscall.Signal(0x3f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  3. src/runtime/map.go

    	// If we've hit the load factor, get bigger.
    	// Otherwise, there are too many overflow buckets,
    	// so keep the same number of buckets and "grow" laterally.
    	bigger := uint8(1)
    	if !overLoadFactor(h.count+1, h.B) {
    		bigger = 0
    		h.flags |= sameSizeGrow
    	}
    	oldbuckets := h.buckets
    	newbuckets, nextOverflow := makeBucketArray(t, h.B+bigger, nil)
    
    	flags := h.flags &^ (iterator | oldIterator)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/S390X.rules

    	(MOVDload  [off1+off2] {mergeSym(sym1,sym2)} base mem)
    (MOVWZload  [off1] {sym1} (MOVDaddr <t> [off2] {sym2} base) mem) && is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) && (base.Op != OpSB || (t.IsPtr() && t.Elem().Alignment()%4 == 0 && (off1+off2)%4 == 0)) =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/type.go

    }
    
    func (t *Type) IsComplex() bool {
    	return t.kind == TCOMPLEX64 || t.kind == TCOMPLEX128 || t == UntypedComplex
    }
    
    // IsPtr reports whether t is a regular Go pointer type.
    // This does not include unsafe.Pointer.
    func (t *Type) IsPtr() bool {
    	return t.kind == TPTR
    }
    
    // IsPtrElem reports whether t is the element of a pointer (to t).
    func (t *Type) IsPtrElem() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	SIGKILL    = syscall.Signal(0x9)
    	SIGLOST    = syscall.Signal(0x25)
    	SIGLWP     = syscall.Signal(0x21)
    	SIGPIPE    = syscall.Signal(0xd)
    	SIGPOLL    = syscall.Signal(0x16)
    	SIGPROF    = syscall.Signal(0x1d)
    	SIGPWR     = syscall.Signal(0x13)
    	SIGQUIT    = syscall.Signal(0x3)
    	SIGSEGV    = syscall.Signal(0xb)
    	SIGSTOP    = syscall.Signal(0x17)
    	SIGSYS     = syscall.Signal(0xc)
    	SIGTERM    = syscall.Signal(0xf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  7. src/html/template/exec_test.go

    	{"eq (index `x` 0) 'x'", "true", true}, // The example that triggered this rule.
    	{"eq (index `x` 0) 'y'", "false", true},
    	{"eq .V1 .V2", "true", true},
    	{"eq .Ptr .Ptr", "true", true},
    	{"eq .Ptr .NilPtr", "false", true},
    	{"eq .NilPtr .NilPtr", "true", true},
    	{"eq .Iface1 .Iface1", "true", true},
    	{"eq .Iface1 .Iface2", "false", true},
    	{"eq .Iface2 .Iface2", "true", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go

    	SIGINT    = syscall.Signal(0x2)
    	SIGIO     = syscall.Signal(0x17)
    	SIGIOT    = syscall.Signal(0x6)
    	SIGKILL   = syscall.Signal(0x9)
    	SIGPIPE   = syscall.Signal(0xd)
    	SIGPROF   = syscall.Signal(0x1b)
    	SIGPWR    = syscall.Signal(0x20)
    	SIGQUIT   = syscall.Signal(0x3)
    	SIGSEGV   = syscall.Signal(0xb)
    	SIGSTOP   = syscall.Signal(0x11)
    	SIGSYS    = syscall.Signal(0xc)
    	SIGTERM   = syscall.Signal(0xf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 72.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go

    	SIGINT    = syscall.Signal(0x2)
    	SIGIO     = syscall.Signal(0x17)
    	SIGIOT    = syscall.Signal(0x6)
    	SIGKILL   = syscall.Signal(0x9)
    	SIGPIPE   = syscall.Signal(0xd)
    	SIGPROF   = syscall.Signal(0x1b)
    	SIGPWR    = syscall.Signal(0x20)
    	SIGQUIT   = syscall.Signal(0x3)
    	SIGSEGV   = syscall.Signal(0xb)
    	SIGSTOP   = syscall.Signal(0x11)
    	SIGSYS    = syscall.Signal(0xc)
    	SIGTERM   = syscall.Signal(0xf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 72.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go

    	SIGINT    = syscall.Signal(0x2)
    	SIGIO     = syscall.Signal(0x17)
    	SIGIOT    = syscall.Signal(0x6)
    	SIGKILL   = syscall.Signal(0x9)
    	SIGPIPE   = syscall.Signal(0xd)
    	SIGPROF   = syscall.Signal(0x1b)
    	SIGPWR    = syscall.Signal(0x20)
    	SIGQUIT   = syscall.Signal(0x3)
    	SIGSEGV   = syscall.Signal(0xb)
    	SIGSTOP   = syscall.Signal(0x11)
    	SIGSYS    = syscall.Signal(0xc)
    	SIGTERM   = syscall.Signal(0xf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 71.9K bytes
    - Viewed (0)
Back to top