Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for goPanicSliceAlenU (0.34 sec)

  1. src/cmd/internal/goobj/builtinlist.go

    	{"runtime.gopanic", 1},
    	{"runtime.gorecover", 1},
    	{"runtime.goschedguarded", 1},
    	{"runtime.goPanicIndex", 1},
    	{"runtime.goPanicIndexU", 1},
    	{"runtime.goPanicSliceAlen", 1},
    	{"runtime.goPanicSliceAlenU", 1},
    	{"runtime.goPanicSliceAcap", 1},
    	{"runtime.goPanicSliceAcapU", 1},
    	{"runtime.goPanicSliceB", 1},
    	{"runtime.goPanicSliceBU", 1},
    	{"runtime.goPanicSlice3Alen", 1},
    	{"runtime.goPanicSlice3AlenU", 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/compile/internal/ssagen/ssa.go

    		BoundsCheckFunc[ssa.BoundsSliceAlen] = typecheck.LookupRuntimeFunc("goPanicSliceAlen")
    		BoundsCheckFunc[ssa.BoundsSliceAlenU] = typecheck.LookupRuntimeFunc("goPanicSliceAlenU")
    		BoundsCheckFunc[ssa.BoundsSliceAcap] = typecheck.LookupRuntimeFunc("goPanicSliceAcap")
    		BoundsCheckFunc[ssa.BoundsSliceAcapU] = typecheck.LookupRuntimeFunc("goPanicSliceAcapU")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top