Lines Matching refs:fn
20 // mcall switches from the g to the g0 stack and invokes fn(g),
23 // It is up to fn to arrange for that later execution, typically by recording
26 // fn must not return at all; typically it ends by calling schedule, to let the m
31 // This must NOT be go:noescape: if fn is a stack-allocated closure,
32 // fn puts g on a run queue, and g executes before fn returns, the
34 func mcall(fn func(*g))
36 // systemstack runs fn on a system stack.
39 // systemstack calls fn directly and returns.
42 // to the per-OS-thread stack, calls fn, and switches back.
54 func systemstack(fn func())
133 func cgocallback(fn, frame unsafe.Pointer, framesize, ctxt uintptr)
143 // reflectcall calls fn with a copy of the n argument bytes pointed at by arg.
144 // After fn returns, reflectcall copies n-retoffset result bytes
152 func reflectcall(argtype *_type, fn, arg unsafe.Pointer, argsize uint32, retoffset uint32)
248 func asmcgocall(fn, arg unsafe.Pointer) int32
266 func call32(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
267 func call64(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
268 func call128(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
269 func call256(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
270 func call512(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
271 func call1024(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
272 func call2048(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
273 func call4096(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
274 func call8192(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
275 func call16384(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
276 func call32768(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
277 func call65536(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
278 func call131072(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
279 func call262144(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
280 func call524288(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
281 func call1048576(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
282 func call2097152(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
283 func call4194304(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
284 func call8388608(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
285 func call16777216(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
286 func call33554432(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
287 func call67108864(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
288 func call134217728(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
289 func call268435456(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
290 func call536870912(typ, fn, arg unsafe.Pointer, n, retoffset uint32)
291 func call1073741824(typ, fn, arg unsafe.Pointer, n, retoffset uint32)