Home
last modified time | relevance | path

Searched refs:event_t (Results 1 – 23 of 23) sorted by relevance

/external/clang/test/SemaOpenCL/
Devent_t.cl3 event_t glb_evt; // expected-error {{the event_t type cannot be used to declare a program scope var…
6event_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'}}
Devent_t_overload.cl3 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/
Devent_t.cl3 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)
Dopencl_types.cl30 event_t evt;
31 // CHECK: alloca %opencl.event_t*
/external/clang/test/CodeGen/
D2003-08-18-StructAsValue.c6 } event_t; typedef
8 event_t test(int X) { in test()
9 event_t foo = { 1 }, bar = { 2 }; in test()
/external/bcc/examples/cpp/
DLLCStat.cc63 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()
DRandomRead.cc60 struct event_t { struct
68 auto event = static_cast<event_t*>(data); in handle_output() argument
DFollyRequestContextSwitch.cc49 struct event_t { struct
57 auto event = static_cast<event_t*>(data); in handle_output() argument
/external/clang/lib/Headers/
Dopencl-c.h14039 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/
Dinotify08.c53 struct event_t { struct
61 static struct event_t event_set[EVENT_MAX]; argument
Dinotify04.c39 struct event_t { struct
47 struct event_t event_set[EVENT_MAX]; argument
Dinotify07.c52 struct event_t { struct
63 static struct event_t event_set[EVENT_MAX]; argument
Dinotify02.c44 struct event_t { struct
51 static struct event_t event_set[EVENT_MAX]; argument
/external/OpenCSD/decoder/include/common/
Dtrc_gen_elem.h67 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/
Docl_types.h25 typedef event_t evt_t;
/external/ltp/testcases/kernel/syscalls/fanotify/
Dfanotify15.c39 struct event_t { struct
48 static struct event_t event_set[EVENT_MAX]; argument
Dfanotify13.c45 struct event_t { struct
94 static struct event_t event_set[EVENT_MAX];
/external/OpenCSD/decoder/include/opencsd/
Dtrc_gen_elem_types.h136 } event_t; typedef
/external/python/cffi/doc/source/
Dusing.rst624 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/
DBuiltinTypes.def163 // OpenCL event_t.
DOperationKinds.def321 // Convert a zero value for OpenCL event_t initialization.
/external/ImageMagick/MagickCore/
Daccelerate-kernels-private.h2485 event_t e = async_work_group_copy(inputImageCache, inputImage + pos, num_elements, 0);
2650event_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/
DDiagnosticSemaKinds.td7862 "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'">;