Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for unsafeptr (0.32 sec)

  1. src/cmd/go/internal/test/test.go

    	// "-lostcancel",
    	// "-methods",
    	"-nilfunc",
    	"-printf",
    	// "-rangeloops",
    	// "-shift",
    	"-slog",
    	"-stringintconv",
    	// "-structtags",
    	// "-tests",
    	// "-unreachable",
    	// "-unsafeptr",
    	// "-unusedresult",
    }
    
    func runTest(ctx context.Context, cmd *base.Command, args []string) {
    	pkgArgs, testArgs = testFlags(args)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/type.go

    }
    
    // IsPtrElem reports whether t is the element of a pointer (to t).
    func (t *Type) IsPtrElem() bool {
    	return t.cache.ptr != nil
    }
    
    // IsUnsafePtr reports whether t is an unsafe pointer.
    func (t *Type) IsUnsafePtr() bool {
    	return t.kind == TUNSAFEPTR
    }
    
    // IsUintptr reports whether t is a uintptr.
    func (t *Type) IsUintptr() bool {
    	return t.kind == TUINTPTR
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top