Home
last modified time | relevance | path

Searched refs:boundsSliceB (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/runtime/
Derror.go134 boundsSliceB // s[x:y], 0 <= x <= y failed (but boundsSliceA didn't happen) const
152 boundsSliceB: "slice bounds out of range [%x:%y]",
165 boundsSliceB: "slice bounds out of range [%x:]",
Dpanic32.go43 panic(boundsError{x: int64(hi)<<32 + int64(lo), signed: true, y: y, code: boundsSliceB})
47 panic(boundsError{x: int64(hi)<<32 + int64(lo), signed: false, y: y, code: boundsSliceB})
Dpanic.go155 panic(boundsError{x: int64(x), signed: true, y: y, code: boundsSliceB})
161 panic(boundsError{x: int64(x), signed: false, y: y, code: boundsSliceB})