/external/clang/test/SemaOpenCL/ |
D | event_t.cl | 3 event_t glb_evt; // expected-error {{the event_t type cannot be used to declare a program scope var… 6 …event_t evt; // expected-error {{the 'event_t' type cannot be used to declare a structure or union… 9 void foo(event_t evt); // expected-note {{passing argument to parameter 'evt' here}} 11 void kernel ker(event_t argevt) { // expected-error {{'event_t' cannot be used as the type of a ker… 12 event_t e; 13 …constant event_t const_evt; // expected-error {{the event_t type can only be used with __private a… 16 foo(5); // expected-error {{passing 'int' to parameter of incompatible type 'event_t'}} 17 foo((event_t)1); // expected-error {{cannot cast non-zero value '1' to 'event_t'}}
|
D | event_t_overload.cl | 3 void __attribute__((overloadable)) foo(event_t, __local char *); // expected-note {{candidate funct… 4 void __attribute__((overloadable)) foo(event_t, __local float *); // expected-note {{candidate func… 7 event_t evt;
|
/external/clang/test/CodeGenOpenCL/ |
D | event_t.cl | 3 void foo(event_t evt); 6 event_t e; 7 // CHECK: alloca %opencl.event_t*, 9 // CHECK: call {{.*}}void @foo(%opencl.event_t* % 11 // CHECK: call {{.*}}void @foo(%opencl.event_t* null) 12 foo((event_t)0); 13 // CHECK: call {{.*}}void @foo(%opencl.event_t* null)
|
D | opencl_types.cl | 30 event_t evt; 31 // CHECK: alloca %opencl.event_t*
|
/external/clang/test/CodeGen/ |
D | 2003-08-18-StructAsValue.c | 6 } event_t; typedef 8 event_t test(int X) { in test() 9 event_t foo = { 1 }, bar = { 2 }; in test()
|
/external/bcc/examples/cpp/ |
D | LLCStat.cc | 63 struct event_t { struct 100 auto refs = bpf.get_hash_table<event_t, uint64_t>("ref_count"); in main() 101 auto misses = bpf.get_hash_table<event_t, uint64_t>("miss_count"); in main()
|
D | RandomRead.cc | 60 struct event_t { struct 68 auto event = static_cast<event_t*>(data); in handle_output() argument
|
D | FollyRequestContextSwitch.cc | 49 struct event_t { struct 57 auto event = static_cast<event_t*>(data); in handle_output() argument
|
/external/clang/lib/Headers/ |
D | opencl-c.h | 14039 event_t __ovld async_work_group_copy(__local char *dst, const __global char *src, size_t num_elemen… 14040 event_t __ovld async_work_group_copy(__local uchar *dst, const __global uchar *src, size_t num_elem… 14041 event_t __ovld async_work_group_copy(__local short *dst, const __global short *src, size_t num_elem… 14042 event_t __ovld async_work_group_copy(__local ushort *dst, const __global ushort *src, size_t num_el… 14043 event_t __ovld async_work_group_copy(__local int *dst, const __global int *src, size_t num_elements… 14044 event_t __ovld async_work_group_copy(__local uint *dst, const __global uint *src, size_t num_elemen… 14045 event_t __ovld async_work_group_copy(__local long *dst, const __global long *src, size_t num_elemen… 14046 event_t __ovld async_work_group_copy(__local ulong *dst, const __global ulong *src, size_t num_elem… 14047 event_t __ovld async_work_group_copy(__local float *dst, const __global float *src, size_t num_elem… 14048 event_t __ovld async_work_group_copy(__local char2 *dst, const __global char2 *src, size_t num_elem… [all …]
|
/external/ltp/testcases/kernel/syscalls/inotify/ |
D | inotify08.c | 53 struct event_t { struct 61 static struct event_t event_set[EVENT_MAX]; argument
|
D | inotify04.c | 39 struct event_t { struct 47 struct event_t event_set[EVENT_MAX]; argument
|
D | inotify07.c | 52 struct event_t { struct 63 static struct event_t event_set[EVENT_MAX]; argument
|
D | inotify02.c | 44 struct event_t { struct 51 static struct event_t event_set[EVENT_MAX]; argument
|
/external/OpenCSD/decoder/include/common/ |
D | trc_gen_elem.h | 67 void setEvent(const event_t ev_type, const uint16_t number); 122 inline void OcsdTraceElement::setEvent(const event_t ev_type, const uint16_t number) in setEvent()
|
/external/clang/test/PCH/ |
D | ocl_types.h | 25 typedef event_t evt_t;
|
/external/ltp/testcases/kernel/syscalls/fanotify/ |
D | fanotify15.c | 39 struct event_t { struct 48 static struct event_t event_set[EVENT_MAX]; argument
|
D | fanotify13.c | 45 struct event_t { struct 94 static struct event_t event_set[EVENT_MAX];
|
/external/OpenCSD/decoder/include/opencsd/ |
D | trc_gen_elem_types.h | 136 } event_t; typedef
|
/external/python/cffi/doc/source/ |
D | using.rst | 624 typedef void (*event_cb_t)(event_t *evt, void *userdata); 633 typedef ... event_t; 634 typedef void (*event_cb_t)(event_t *evt, void *userdata); 637 extern "Python" void my_event_callback(event_t *, void *); 666 typedef void (*event_cb_t)(widget_t *w, event_t *evt); 699 (e.g. ``event_t`` above, from the ``#include``), so it cannot be 709 static void my_event_callback(widget_t *, event_t *);
|
/external/clang/include/clang/AST/ |
D | BuiltinTypes.def | 163 // OpenCL event_t.
|
D | OperationKinds.def | 321 // Convert a zero value for OpenCL event_t initialization.
|
/external/ImageMagick/MagickCore/ |
D | accelerate-kernels-private.h | 2485 event_t e = async_work_group_copy(inputImageCache, inputImage + pos, num_elements, 0); 2650 …event_t e = async_work_group_strided_copy(inputImageCache + (rangeLength*i), inputImage+pos+i, ran… 2898 event_t e = async_work_group_strided_copy(cachedData, 2910 event_t e = async_work_group_copy(cachedFilter,filter,width,0);
|
/external/clang/include/clang/Basic/ |
D | DiagnosticSemaKinds.td | 7862 "the event_t type cannot be used to declare a program scope variable">; 7866 "the event_t type can only be used with __private address space qualifier">; 7874 "cannot cast non-zero value '%0' to 'event_t'">;
|