Exemplo n.º 1
0
 public static unsafe void GenFences(this AppleFence thisApi, [Flow(FlowDirection.In)] uint n, [Count(Parameter = "n"), Flow(FlowDirection.Out)] Span <uint> fences)
 {
     // SpanOverloader
     thisApi.GenFences(n, out fences.GetPinnableReference());
 }
Exemplo n.º 2
0
 public static unsafe void DeleteFences(this AppleFence thisApi, [Flow(FlowDirection.In)] uint n, [Count(Parameter = "n"), Flow(FlowDirection.In)] ReadOnlySpan <uint> fences)
 {
     // SpanOverloader
     thisApi.DeleteFences(n, in fences.GetPinnableReference());
 }