Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for panicExtendIndex (0.31 sec)

  1. src/runtime/panic32.go

    	panic(boundsError{x: int64(hi)<<32 + int64(lo), signed: false, y: y, code: boundsSlice3C})
    }
    
    // Implemented in assembly, as they take arguments in registers.
    // Declared here to mark them as ABIInternal.
    func panicExtendIndex(hi int, lo uint, y int)
    func panicExtendIndexU(hi uint, lo uint, y int)
    func panicExtendSliceAlen(hi int, lo uint, y int)
    func panicExtendSliceAlenU(hi uint, lo uint, y int)
    func panicExtendSliceAcap(hi int, lo uint, y int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    		BoundsCheckFunc[ssa.BoundsConvert] = typecheck.LookupRuntimeFunc("panicSliceConvert")
    	}
    	if Arch.LinkArch.PtrSize == 4 {
    		ExtendCheckFunc[ssa.BoundsIndex] = typecheck.LookupRuntimeVar("panicExtendIndex")
    		ExtendCheckFunc[ssa.BoundsIndexU] = typecheck.LookupRuntimeVar("panicExtendIndexU")
    		ExtendCheckFunc[ssa.BoundsSliceAlen] = typecheck.LookupRuntimeVar("panicExtendSliceAlen")
    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