Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for goPanicExtendSliceAlenU (0.27 sec)

  1. src/runtime/panic32.go

    func goPanicExtendSliceAlen(hi int, lo uint, y int) {
    	panicCheck1(getcallerpc(), "slice bounds out of range")
    	panic(boundsError{x: int64(hi)<<32 + int64(lo), signed: true, y: y, code: boundsSliceAlen})
    }
    func goPanicExtendSliceAlenU(hi uint, lo uint, y int) {
    	panicCheck1(getcallerpc(), "slice bounds out of range")
    	panic(boundsError{x: int64(hi)<<32 + int64(lo), signed: false, y: y, code: boundsSliceAlen})
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 4.8K bytes
    - Viewed (0)
Back to top