Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for TPTR (0.03 sec)

  1. src/syscall/zsysnum_freebsd_amd64.go

    	SYS_MUNLOCK                  = 204 // { int munlock(const void *addr, size_t len); }
    	SYS_UNDELETE                 = 205 // { int undelete(char *path); }
    	SYS_FUTIMES                  = 206 // { int futimes(int fd, struct timeval *tptr); }
    	SYS_GETPGID                  = 207 // { int getpgid(pid_t pid); }
    	SYS_POLL                     = 209 // { int poll(struct pollfd *fds, u_int nfds, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  2. src/syscall/zsysnum_freebsd_386.go

    	SYS_MUNLOCK                  = 204 // { int munlock(const void *addr, size_t len); }
    	SYS_UNDELETE                 = 205 // { int undelete(char *path); }
    	SYS_FUTIMES                  = 206 // { int futimes(int fd, struct timeval *tptr); }
    	SYS_GETPGID                  = 207 // { int getpgid(pid_t pid); }
    	SYS_POLL                     = 209 // { int poll(struct pollfd *fds, u_int nfds, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/subr.go

    			return ir.OCONVNOP, ""
    		}
    	}
    
    	// 5. src is the predeclared identifier nil and dst is a nillable type.
    	if src.Kind() == types.TNIL {
    		switch dst.Kind() {
    		case types.TPTR,
    			types.TFUNC,
    			types.TMAP,
    			types.TCHAN,
    			types.TINTER,
    			types.TSLICE:
    			return ir.OCONVNOP, ""
    		}
    	}
    
    	// 6. rule about untyped constants - already converted by DefaultLit.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/typecheck.go

    	types.TCOMPLEX64:  "complex64",
    	types.TCOMPLEX128: "complex128",
    	types.TFLOAT32:    "float32",
    	types.TFLOAT64:    "float64",
    	types.TBOOL:       "bool",
    	types.TSTRING:     "string",
    	types.TPTR:        "pointer",
    	types.TUNSAFEPTR:  "unsafe.Pointer",
    	types.TSTRUCT:     "struct",
    	types.TINTER:      "interface",
    	types.TCHAN:       "chan",
    	types.TMAP:        "map",
    	types.TARRAY:      "array",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/builtin.go

    		case types.TINTER:
    			if n.Type().IsEmptyInterface() {
    				on = typecheck.LookupRuntime("printeface", n.Type())
    			} else {
    				on = typecheck.LookupRuntime("printiface", n.Type())
    			}
    		case types.TPTR:
    			if n.Type().Elem().NotInHeap() {
    				on = typecheck.LookupRuntime("printuintptr")
    				n = ir.NewConvExpr(base.Pos, ir.OCONV, nil, n)
    				n.SetType(types.Types[types.TUNSAFEPTR])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/liveness/plive.go

    // t = type of sub-portion of v.
    func clobberWalk(b *ssa.Block, v *ir.Name, offset int64, t *types.Type) {
    	if !t.HasPointers() {
    		return
    	}
    	switch t.Kind() {
    	case types.TPTR,
    		types.TUNSAFEPTR,
    		types.TFUNC,
    		types.TCHAN,
    		types.TMAP:
    		clobberPtr(b, v, offset)
    
    	case types.TSTRING:
    		// struct { byte *str; int len; }
    		clobberPtr(b, v, offset)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top