HomeSort by: relevance | last modified time | path
    Searched refs:num_events (Results 1 - 24 of 24) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/gcc/
diagnostic-path.h 92 virtual unsigned num_events () const = 0;
133 unsigned num_events () const FINAL OVERRIDE;
tree-diagnostic-path.cc 223 const unsigned num_events = path.num_events (); local
226 for (unsigned idx = 0; idx < num_events; idx++)
449 const unsigned num_events = path->num_events (); local
460 for (unsigned i = 0; i < num_events; i++)
496 for (unsigned i = 0; i < path->num_events (); i++)
640 ASSERT_EQ (path.num_events (), 18);
722 ASSERT_EQ (path.num_events (), 8);
774 ASSERT_EQ (path.num_events (), 7)
    [all...]
diagnostic.cc 831 const unsigned num = num_events ();
2081 /* Implementation of diagnostic_path::num_events vfunc for
2085 simple_diagnostic_path::num_events () const
  /src/sys/external/bsd/drm2/dist/drm/amd/amdkfd/
kfd_events.c 531 static struct kfd_event_waiter *alloc_event_waiters(uint32_t num_events)
536 event_waiters = kmalloc_array(num_events,
540 for (i = 0; (event_waiters) && (i < num_events) ; i++) {
577 * @num_events: Number of events to wait for
585 static uint32_t test_event_condition(bool all, uint32_t num_events,
591 for (i = 0; i < num_events; i++) {
603 return activated_count == num_events ?
611 static int copy_signaled_event_data(uint32_t num_events,
621 for (i = 0; i < num_events; i++) {
657 static void free_waiters(uint32_t num_events, struct kfd_event_waiter *waiters
    [all...]
kfd_priv.h 1006 uint32_t num_events, void __user *data,
kfd_chardev.c 1120 err = kfd_wait_on_events(p, args->num_events,
  /src/external/gpl3/gcc/dist/gcc/
tree-diagnostic-path.cc 301 const unsigned num_events = path.num_events (); local
304 for (unsigned idx = 0; idx < num_events; idx++)
600 const unsigned num_events = path->num_events (); local
611 for (unsigned i = 0; i < num_events; i++)
666 for (unsigned i = 0; i < path->num_events (); i++)
808 ASSERT_EQ (path.num_events (), 18);
890 ASSERT_EQ (path.num_events (), 8);
942 ASSERT_EQ (path.num_events (), 7)
    [all...]
diagnostic-path.h 189 virtual unsigned num_events () const = 0;
265 unsigned num_events () const final override;
diagnostic.cc 1041 const unsigned num = num_events ();
1069 const unsigned num = num_events ();
2528 /* Implementation of diagnostic_path::num_events vfunc for
2532 simple_diagnostic_path::num_events () const
diagnostic-format-sarif.cc 1179 for (unsigned i = 0; i < path.num_events (); i++)
  /src/sys/external/mit/xen-include-public/dist/xen/include/public/
xenoprof.h 93 int32_t num_events; member in struct:xenoprof_init
  /src/external/gpl3/gcc/dist/gcc/analyzer/
checker-path.h 41 unsigned num_events () const final override
diagnostic-manager.cc 2530 int idx = path->num_events () - 1;
2531 while (idx >= 0 && idx < (signed)path->num_events ())
2817 int idx = (signed)path->num_events () - 1;
2821 if (idx + 2 < (signed)path->num_events ()
2844 if (idx + 1 < (signed)path->num_events ()
2922 int idx = (signed)path->num_events () - 1;
3028 start_idx < (signed)path->num_events () - 1;
3120 int idx = path->num_events () - 1;
3121 while (idx >= 0 && idx < (signed)path->num_events ())
  /src/external/bsd/libpcap/dist/rpcapd/
rpcapd.c 863 DWORD num_events; local
873 num_events = 1; // shutdown event
877 if (num_events == WSA_MAXIMUM_WAIT_EVENTS)
887 num_events++;
893 events = (WSAEVENT *) malloc(num_events * sizeof (WSAEVENT));
938 ret = WSAWaitForMultipleEvents(num_events, events, FALSE,
  /src/external/bsd/ntp/dist/sntp/
networking.h 56 u_char num_events; member in struct:speer
  /src/external/gpl3/gcc.old/dist/gcc/analyzer/
diagnostic-manager.cc 2222 int idx = path->num_events () - 1;
2223 while (idx >= 0 && idx < (signed)path->num_events ())
2510 int idx = (signed)path->num_events () - 1;
2514 if (idx + 2 < (signed)path->num_events ()
2538 if (idx + 1 < (signed)path->num_events ()
2630 start_idx < (signed)path->num_events () - 1;
2722 int idx = path->num_events () - 1;
2723 while (idx >= 0 && idx < (signed)path->num_events ())
checker-path.h 536 unsigned num_events () const FINAL OVERRIDE
  /src/external/gpl3/gdb.old/dist/gdb/
linux-nat.c 2876 int num_events = 0;
2910 return count_events_callback (info, &num_events);
2912 gdb_assert (num_events > 0);
2917 ((num_events * (double) rand ()) / (RAND_MAX + 1.0));
2919 if (num_events > 1)
2921 num_events, random_selector);
2870 int num_events = 0; local
  /src/external/gpl3/gdb/dist/gdb/
linux-nat.c 2876 int num_events = 0;
2910 return count_events_callback (info, &num_events);
2912 gdb_assert (num_events > 0);
2917 ((num_events * (double) rand ()) / (RAND_MAX + 1.0));
2919 if (num_events > 1)
2921 num_events, random_selector);
2870 int num_events = 0; local
  /src/external/bsd/ntp/dist/include/
ntp.h 282 u_char num_events; /* number of error events */ member in struct:peer
  /src/external/bsd/ntp/dist/ntpd/
ntp_control.c 1353 return CTL_PEER_STATUS(status, p->num_events, p->last_event);
3265 peer->num_events = 0;
3318 peer->num_events = 0;
5040 peer->num_events = 0;
5041 if (peer->num_events >= CTL_PEER_MAXEVENTS)
5045 peer->num_events++;
  /src/external/mit/xorg/lib/libxcb/files/
xinput.h 589 uint32_t num_events; member in struct:xcb_input_get_device_motion_events_reply_t
4207 uint8_t num_events; member in struct:xcb_input_send_extension_event_request_t
9683 uint8_t num_events,
9701 uint8_t num_events,
xinput.c 1848 for(i=0; i<_aux->num_events; i++) {
1931 return R->num_events;
1939 i.rem = R->num_events;
14347 xcb_block_len += _aux->num_events * sizeof(xcb_input_event_for_send_t);
14380 uint8_t num_events,
14399 xcb_out.num_events = num_events;
14408 xcb_parts[4].iov_len = num_events * sizeof(xcb_input_event_for_send_t);
14427 uint8_t num_events,
14446 xcb_out.num_events = num_events
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Headers/
opencl-c.h 12843 * the same num_events and event objects specified
12846 void __ovld wait_group_events(int num_events, event_t *event_list);

Completed in 70 milliseconds