Exemplo n.º 1
0
 public extern static ComputeErrorCode GetEventProfilingInfo(
     CLEventHandle @event,
     ComputeCommandProfilingInfo param_name,
     IntPtr param_value_size,
     IntPtr param_value,
     out IntPtr param_value_size_ret);
Exemplo n.º 2
0
 public static extern ComputeErrorCode GetEventProfilingInfo(
     CLEventHandle @event,
     ComputeCommandProfilingInfo param_name,
     IntPtr param_value_size,
     IntPtr param_value,
     out IntPtr param_value_size_ret);
Exemplo n.º 3
0
 public ComputeErrorCode GetEventProfilingInfo(CLEventHandle @event, ComputeCommandProfilingInfo param_name, IntPtr param_value_size, IntPtr param_value, out IntPtr param_value_size_ret)
 {
     return StaticGetEventProfilingInfo(@event, param_name, param_value_size, param_value, out param_value_size_ret);
 }
Exemplo n.º 4
0
 public static unsafe extern ComputeErrorCode GetEventProfilingInfo(
     IntPtr @event,
     ComputeCommandProfilingInfo param_name,
     IntPtr param_value_size,
     /* void* */ IntPtr param_value,
     IntPtr* param_value_size_ret);
Exemplo n.º 5
0
 ComputeErrorCode ICL10.GetEventProfilingInfo(CLEventHandle @event, ComputeCommandProfilingInfo param_name,
                                              IntPtr param_value_size, IntPtr param_value, out IntPtr param_value_size_ret)
 {
     return(GetEventProfilingInfo(@event, param_name, param_value_size, param_value, out param_value_size_ret));
 }
Exemplo n.º 6
0
 public static void GetEventProfilingInfoWrapper(CLEventHandle @event, ComputeCommandProfilingInfo param_name, IntPtr param_value_size, IntPtr param_value, out IntPtr param_value_size_ret)
 {
     ComputeException.ThrowOnError(GetEventProfilingInfo(@event, param_name, param_value_size, param_value, out param_value_size_ret));
 }