Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for panicunsafeslicelen1 (0.62 sec)

  1. src/runtime/unsafe.go

    		throw("checkptr: unsafe.Slice result straddles multiple allocations")
    	}
    }
    
    func panicunsafeslicelen() {
    	// This is called only from compiler-generated code, so we can get the
    	// source of the panic.
    	panicunsafeslicelen1(getcallerpc())
    }
    
    //go:yeswritebarrierrec
    func panicunsafeslicelen1(pc uintptr) {
    	panicCheck1(pc, "unsafe.Slice: len out of range")
    	panic(errorString("unsafe.Slice: len out of range"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:51:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/internal/goobj/builtinlist.go

    	{"runtime.block", 1},
    	{"runtime.makeslice", 1},
    	{"runtime.makeslice64", 1},
    	{"runtime.makeslicecopy", 1},
    	{"runtime.growslice", 1},
    	{"runtime.unsafeslicecheckptr", 1},
    	{"runtime.panicunsafeslicelen", 1},
    	{"runtime.panicunsafeslicenilptr", 1},
    	{"runtime.unsafestringcheckptr", 1},
    	{"runtime.panicunsafestringlen", 1},
    	{"runtime.panicunsafestringnilptr", 1},
    	{"runtime.memmove", 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top