public static unsafe void GetInteger64(this AppleSync thisApi, [Flow(FlowDirection.In)] GetPName pname, [Flow(FlowDirection.Out)] Span <long> @params)
 {
     // SpanOverloader
     thisApi.GetInteger64(pname, out @params.GetPinnableReference());
 }
 public static unsafe void GetSync(this AppleSync thisApi, [Flow(FlowDirection.In)] IntPtr sync, [Flow(FlowDirection.In)] SyncParameterName pname, [Flow(FlowDirection.In)] uint count, [Flow(FlowDirection.Out)] Span <uint> length, [Count(Parameter = "count"), Flow(FlowDirection.Out)] Span <int> values)
 {
     // SpanOverloader
     thisApi.GetSync(sync, pname, count, out length.GetPinnableReference(), out values.GetPinnableReference());
 }
 public static unsafe void GetSync(this AppleSync thisApi, [Flow(FlowDirection.In)] nint sync, [Flow(FlowDirection.In)] APPLE pname, [Flow(FlowDirection.In)] uint count, [Flow(FlowDirection.Out)] Span <uint> length, [Count(Parameter = "count"), Flow(FlowDirection.Out)] int *values)
 {
     // SpanOverloader
     thisApi.GetSync(sync, pname, count, out length.GetPinnableReference(), values);
 }