Home | History | Annotate | Download | only in runtime

Lines Matching refs:fn

23 // mcall switches from the g to the g0 stack and invokes fn(g),
26 // It is up to fn to arrange for that later execution, typically by recording
29 // fn must not return at all; typically it ends by calling schedule, to let the m
34 // This must NOT be go:noescape: if fn is a stack-allocated closure,
35 // fn puts g on a run queue, and g executes before fn returns, the
37 func mcall(fn func(*g))
39 // systemstack runs fn on a system stack.
42 // systemstack calls fn directly and returns.
45 // to the per-OS-thread stack, calls fn, and switches back.
57 func systemstack(fn func())
117 func cgocallback(fn, frame unsafe.Pointer, framesize, ctxt uintptr)
129 // reflectcall calls fn with a copy of the n argument bytes pointed at by arg.
130 // After fn returns, reflectcall copies n-retoffset result bytes
138 func reflectcall(argtype *_type, fn, arg unsafe.Pointer, argsize uint32, retoffset uint32)
221 func asmcgocall(fn, arg unsafe.Pointer) int32
249 func call32(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
250 func call64(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
251 func call128(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
252 func call256(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
253 func call512(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
254 func call1024(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
255 func call2048(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
256 func call4096(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
257 func call8192(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
258 func call16384(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
259 func call32768(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
260 func call65536(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
261 func call131072(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
262 func call262144(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
263 func call524288(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
264 func call1048576(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
265 func call2097152(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
266 func call4194304(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
267 func call8388608(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
268 func call16777216(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
269 func call33554432(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
270 func call67108864(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
271 func call134217728(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
272 func call268435456(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
273 func call536870912(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
274 func call1073741824(typ, fn, arg unsafe.Pointer, n, retoffset uint32)