Home
last modified time | relevance | path

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

12

/external/perf_data_converter/src/quipper/
Dperf_serializer.h66 bool SerializeEvent(const malloced_unique_ptr<event_t>& event_ptr,
69 malloced_unique_ptr<event_t>* event_ptr) const;
75 bool SerializeSampleEvent(const event_t& event,
78 event_t* event) const;
80 bool SerializeMMapEvent(const event_t& event,
83 event_t* event) const;
85 bool SerializeMMap2Event(const event_t& event,
88 event_t* event) const;
90 bool SerializeCommEvent(const event_t& event,
93 event_t* event) const;
[all …]
Dperf_data_utils.cc14 event_t* CallocMemoryForEvent(size_t size) { in CallocMemoryForEvent()
15 event_t* event = reinterpret_cast<event_t*>(calloc(1, size)); in CallocMemoryForEvent()
20 event_t* ReallocMemoryForEvent(event_t* event, size_t new_size) { in ReallocMemoryForEvent()
21 event_t* new_event = reinterpret_cast<event_t*>(realloc(event, new_size)); in ReallocMemoryForEvent()
Dsample_info_reader_test.cc65 const event_t& event = *reinterpret_cast<const event_t*>(input_string.data()); in TEST()
125 const event_t& event = *reinterpret_cast<const event_t*>(input_string.data()); in TEST()
199 const event_t& event = *reinterpret_cast<const event_t*>(input_string.data()); in TEST()
250 const event_t& event = *reinterpret_cast<const event_t*>(input_string.data()); in TEST()
292 const event_t& event = *reinterpret_cast<const event_t*>(input_string.data()); in TEST()
331 const event_t& event = *reinterpret_cast<const event_t*>(input_string.data()); in TEST()
375 const event_t& event = *reinterpret_cast<const event_t*>(input_string.data()); in TEST()
Dsample_info_reader.h16 typedef perf_event event_t; typedef
24 bool ReadPerfSampleInfo(const event_t& event,
26 bool WritePerfSampleInfo(const perf_sample& sample, event_t* event) const;
42 static uint64_t GetPerfSampleDataOffset(const event_t& event);
Dperf_serializer.cc183 const malloced_unique_ptr<event_t>& event_ptr, in SerializeEvent()
185 const event_t& event = *event_ptr; in SerializeEvent()
203 const event_t& event, PerfDataProto_PerfEvent* event_proto) const { in SerializeKernelEvent()
234 const event_t& event, PerfDataProto_PerfEvent* event_proto) const { in SerializeUserEvent()
249 malloced_unique_ptr<event_t>* event_ptr) const { in DeserializeEvent()
251 event_t* event = event_ptr->get(); in DeserializeEvent()
273 const PerfDataProto_PerfEvent& event_proto, event_t* event) const { in DeserializeKernelEvent()
315 const PerfDataProto_PerfEvent& event_proto, event_t* event) const { in DeserializeUserEvent()
348 const event_t& event, PerfDataProto_SampleEvent* sample) const { in SerializeSampleEvent()
415 const PerfDataProto_SampleEvent& sample, event_t* event) const { in DeserializeSampleEvent()
[all …]
Dperf_data_utils.h39 event_t* CallocMemoryForEvent(size_t size);
43 event_t* ReallocMemoryForEvent(event_t* event, size_t new_size);
Dsample_info_reader.cc148 size_t ReadPerfSampleFromData(const event_t& event, in ReadPerfSampleFromData()
331 event_t* event) { in WritePerfSampleToData()
517 bool SampleInfoReader::ReadPerfSampleInfo(const event_t& event, in ReadPerfSampleInfo()
538 event_t* event) const { in WritePerfSampleInfo()
584 uint64_t SampleInfoReader::GetPerfSampleDataOffset(const event_t& event) { in GetPerfSampleDataOffset()
588 offset = offsetof(event_t, sample.array); in GetPerfSampleDataOffset()
/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/syzkaller/executor/
Dcommon_windows.h44 struct event_t { struct
50 static void event_init(event_t* ev) in event_init() argument
57 static void event_reset(event_t* ev) in event_reset()
62 static void event_set(event_t* ev) in event_set()
72 static void event_wait(event_t* ev) in event_wait()
80 static int event_isset(event_t* ev) in event_isset()
88 static int event_timedwait(event_t* ev, uint64 timeout_ms) in event_timedwait()
Dcommon_fuchsia.h123 } event_t; typedef
125 static void event_init(event_t* ev) in event_init()
130 static void event_reset(event_t* ev) in event_reset()
135 static void event_set(event_t* ev) in event_set()
142 static void event_wait(event_t* ev) in event_wait()
148 static int event_isset(event_t* ev) in event_isset()
153 static int event_timedwait(event_t* ev, uint64 timeout_ms) in event_timedwait()
Dcommon.h253 } event_t; typedef
255 static void event_init(event_t* ev) in event_init()
264 static void event_reset(event_t* ev) in event_reset()
269 static void event_set(event_t* ev) in event_set()
279 static void event_wait(event_t* ev) in event_wait()
287 static int event_isset(event_t* ev) in event_isset()
295 static int event_timedwait(event_t* ev, uint64 timeout) in event_timedwait()
388 event_t ready, done;
/external/spirv-llvm/test/SPIRV/transcoding/
DOpGroupAsyncCopy.ll8 ; CHECK-LLVM: call spir_func %opencl.event_t{{.*}}* @_Z29async_work_group_strided_copyPU3AS1Dv2_hPK…
16 %opencl.event_t = type opaque
27 %event = alloca %opencl.event_t*, align 4
104event_t* @_Z21async_work_group_copyPU3AS1Dv2_cPKU3AS3S_j9ocl_event(<2 x i8> addrspace(1)* %add.ptr…
105 store %opencl.event_t* %call17, %opencl.event_t** %event, align 4
106 %20 = addrspacecast %opencl.event_t** %event to %opencl.event_t* addrspace(4)*
107 …call spir_func void @_Z17wait_group_eventsiPU3AS49ocl_event(i32 1, %opencl.event_t* addrspace(4)* …
117 … %opencl.event_t* @_Z21async_work_group_copyPU3AS1Dv2_cPKU3AS3S_j9ocl_event(<2 x i8> addrspace(1)*…
121 declare spir_func void @_Z17wait_group_eventsiPU3AS49ocl_event(i32, %opencl.event_t* addrspace(4)*)…
/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.c73 struct event_t { struct
83 static struct event_t event_set[EVENT_MAX]; argument
Dinotify07.c71 struct event_t { struct
84 static struct event_t event_set[EVENT_MAX]; argument
Dinotify04.c61 struct event_t { struct
69 struct event_t event_set[EVENT_MAX]; argument
Dinotify02.c63 struct event_t { struct
70 static struct event_t event_set[EVENT_MAX]; argument
/external/syzkaller/pkg/csource/
Dgenerated.go238 } event_t;
240 static void event_init(event_t* ev)
249 static void event_reset(event_t* ev)
254 static void event_set(event_t* ev)
264 static void event_wait(event_t* ev)
272 static int event_isset(event_t* ev)
280 static int event_timedwait(event_t* ev, uint64 timeout)
525 } event_t;
527 static void event_init(event_t* ev)
532 static void event_reset(event_t* ev)
[all …]

12