Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for goPanicSliceAlenU (0.17 sec)

  1. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    // Note: these declarations are just for wasm port.
    // Other ports call assembly stubs instead.
    func goPanicIndex(x int, y int)
    func goPanicIndexU(x uint, y int)
    func goPanicSliceAlen(x int, y int)
    func goPanicSliceAlenU(x uint, y int)
    func goPanicSliceAcap(x int, y int)
    func goPanicSliceAcapU(x uint, y int)
    func goPanicSliceB(x int, y int)
    func goPanicSliceBU(x uint, y int)
    func goPanicSlice3Alen(x int, y int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/builtin.go

    	{"gopanic", funcTag, 11},
    	{"gorecover", funcTag, 14},
    	{"goschedguarded", funcTag, 9},
    	{"goPanicIndex", funcTag, 16},
    	{"goPanicIndexU", funcTag, 18},
    	{"goPanicSliceAlen", funcTag, 16},
    	{"goPanicSliceAlenU", funcTag, 18},
    	{"goPanicSliceAcap", funcTag, 16},
    	{"goPanicSliceAcapU", funcTag, 18},
    	{"goPanicSliceB", funcTag, 16},
    	{"goPanicSliceBU", funcTag, 18},
    	{"goPanicSlice3Alen", funcTag, 16},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. src/runtime/panic.go

    func goPanicSliceAlen(x int, y int) {
    	panicCheck1(getcallerpc(), "slice bounds out of range")
    	panic(boundsError{x: int64(x), signed: true, y: y, code: boundsSliceAlen})
    }
    
    //go:yeswritebarrierrec
    func goPanicSliceAlenU(x uint, y int) {
    	panicCheck1(getcallerpc(), "slice bounds out of range")
    	panic(boundsError{x: int64(x), signed: false, y: y, code: boundsSliceAlen})
    }
    
    //go:yeswritebarrierrec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
Back to top