Home
last modified time | relevance | path

Searched defs:ep (Results 1 – 25 of 170) sorted by relevance

1234567

/third_party/ltp/tools/sparse/sparse-src/
Dlinearize.c67 static struct basic_block *alloc_basic_block(struct entrypoint *ep, struct position pos) in alloc_basic_block()
584 void show_entry(struct entrypoint *ep) in show_entry()
636 static struct basic_block * get_bound_block(struct entrypoint *ep, struct symbol *label) in get_bound_block()
647 static void finish_block(struct entrypoint *ep) in finish_block()
654 static void add_goto(struct entrypoint *ep, struct basic_block *dst) in add_goto()
668 static void add_one_insn(struct entrypoint *ep, struct instruction *insn) in add_one_insn()
678 static void add_unreachable(struct entrypoint *ep) in add_unreachable()
685 static void set_activeblock(struct entrypoint *ep, struct basic_block *bb) in set_activeblock()
722 static struct basic_block * add_label(struct entrypoint *ep, struct symbol *label) in add_label()
739 static void add_branch(struct entrypoint *ep, pseudo_t cond, struct basic_block *bb_true, struct ba… in add_branch()
[all …]
Doptimize.c23 static void clear_symbol_pseudos(struct entrypoint *ep) in clear_symbol_pseudos()
33 static void clean_up_insns(struct entrypoint *ep) in clean_up_insns()
51 static void cleanup_cfg(struct entrypoint *ep) in cleanup_cfg()
59 void optimize(struct entrypoint *ep) in optimize()
Dir.c88 static int check_branch(struct entrypoint *ep, struct instruction *insn, struct basic_block *bb) in check_branch()
96 static int check_switch(struct entrypoint *ep, struct instruction *insn) in check_switch()
121 static int validate_insn(struct entrypoint *ep, struct instruction *insn) in validate_insn()
187 int ir_validate(struct entrypoint *ep) in ir_validate()
Dsparse.c70 static int imbalance(struct entrypoint *ep, struct basic_block *bb, int entry, int exit, const char… in imbalance()
81 static int check_children(struct entrypoint *ep, struct basic_block *bb, int entry, int exit) in check_children()
99 static int check_bb_context(struct entrypoint *ep, struct basic_block *bb, int entry, int exit) in check_bb_context()
234 static void check_instructions(struct entrypoint *ep) in check_instructions()
243 static void check_context(struct entrypoint *ep) in check_context()
303 struct entrypoint *ep; in check_symbols() local
Dflowgraph.c47 static void debug_postorder(struct entrypoint *ep) in debug_postorder()
63 int cfg_postorder(struct entrypoint *ep) in cfg_postorder()
105 static void debug_domtree(struct entrypoint *ep) in debug_domtree()
117 void domtree_build(struct entrypoint *ep) in domtree_build()
Dobfuscate.c43 static void emit_entrypoint(struct entrypoint *ep) in emit_entrypoint()
50 struct entrypoint *ep; in emit_symbol() local
Dtest-unssa.c27 static void output_fn(struct entrypoint *ep) in output_fn()
62 struct entrypoint *ep; in compile() local
Dgraph.c44 static void graph_ep(struct entrypoint *ep) in graph_ep()
120 static void graph_calls(struct entrypoint *ep, int internal) in graph_calls()
Dssa.c130 static void ssa_convert_one_var(struct entrypoint *ep, struct symbol *var) in ssa_convert_one_var()
290 static void ssa_rename_insns(struct entrypoint *ep) in ssa_rename_insns()
341 static void ssa_rename_phis(struct entrypoint *ep) in ssa_rename_phis()
372 void ssa_convert(struct entrypoint *ep) in ssa_convert()
Dflow.c364 static int simplify_branch_nodes(struct entrypoint *ep) in simplify_branch_nodes()
382 int simplify_flow(struct entrypoint *ep) in simplify_flow()
566 void kill_dead_stores(struct entrypoint *ep, pseudo_t addr, int local) in kill_dead_stores()
647 void kill_unreachable_bbs(struct entrypoint *ep) in kill_unreachable_bbs()
780 void vrfy_flow(struct entrypoint *ep) in vrfy_flow()
941 int simplify_cfg_early(struct entrypoint *ep) in simplify_cfg_early()
972 void pack_basic_blocks(struct entrypoint *ep) in pack_basic_blocks()
Dliveness.c189 void clear_liveness(struct entrypoint *ep) in clear_liveness()
203 void track_pseudo_liveness(struct entrypoint *ep) in track_pseudo_liveness()
319 void track_pseudo_death(struct entrypoint *ep) in track_pseudo_death()
Ddominate.c99 void idf_compute(struct entrypoint *ep, struct basic_block_list **idf, struct basic_block_list *alp… in idf_compute()
129 void idf_dump(struct entrypoint *ep) in idf_dump()
/third_party/NuttX/drivers/usbdev/gadget/
Dusbdev.h80 #define EP_CONFIGURE(ep, desc, last) (ep)->ops->configure(ep, desc, last) argument
84 #define EP_DISABLE(ep) (ep)->ops->disable(ep) argument
88 #define EP_ALLOCREQ(ep) (ep)->ops->allocreq(ep) argument
89 #define EP_FREEREQ(ep, req) (ep)->ops->freereq(ep, req) argument
94 # define EP_ALLOCBUFFER(ep, nb) (ep)->ops->allocbuffer(ep, nb) argument
95 # define EP_FREEBUFFER(ep, buf) (ep)->ops->freebuffer(ep, buf) argument
97 # define EP_ALLOCBUFFER(ep, nb) malloc(nb) argument
98 # define EP_FREEBUFFER(ep, buf) free(buf) argument
103 #define EP_SUBMIT(ep, req) (ep)->ops->submit(ep, req) argument
107 #define EP_CANCEL(ep, req) (ep)->ops->cancel(ep, req) argument
[all …]
Dcdcacm.c349 FAR struct usbdev_ep_s *ep; in cdcacm_sndpacket() local
563 FAR struct usbdev_ep_s *ep; in cdcacm_requeue_rdrequest() local
660 static struct usbdev_req_s *cdcacm_allocreq(FAR struct usbdev_ep_s *ep, uint16_t len) in cdcacm_allocreq()
690 static void cdcacm_freereq(FAR struct usbdev_ep_s *ep, in cdcacm_freereq()
752 static int cdcacm_epconfigure(FAR struct usbdev_ep_s *ep, in cdcacm_epconfigure()
887 static void cdcacm_rdcomplete(FAR struct usbdev_ep_s *ep, in cdcacm_rdcomplete()
940 static void cdcacm_wrcomplete(FAR struct usbdev_ep_s *ep, in cdcacm_wrcomplete()
990 static void cdcacm_notify_complete(FAR struct usbdev_ep_s *ep, in cdcacm_notify_complete()
1339 static void cdcacm_set_line_complete(FAR struct usbdev_ep_s *ep, in cdcacm_set_line_complete()
1585 FAR struct usbdev_ep_s *ep; in cdcacm_serial_connect() local
[all …]
/third_party/musl/libc-test/src/functionalext/supplement/search/
Dhsearch_r.c32 ENTRY e, *ep; in hsearch_r_0100() local
52 ENTRY e, *ep; in hsearch_r_0200() local
/third_party/skia/third_party/externals/tint/src/val/
Dhlsl.cc47 for (auto ep : entry_points) { in HlslUsingDXC() local
121 for (auto ep : entry_points) { in HlslUsingFXC() local
/third_party/lwip/src/netif/ppp/
Dmultilink.c75 #define set_ip_epdisc(ep, addr) do { \ argument
452 get_default_epdisc(ep) in get_default_epdisc() argument
493 epdisc_to_str(ep) in epdisc_to_str() argument
544 str_to_epdisc(ep, str) in str_to_epdisc() argument
/third_party/FreeBSD/sys/dev/usb/
Dusb_device.c119 struct usb_endpoint *ep = udev->endpoints; in usbd_get_ep_by_addr() local
173 struct usb_endpoint *ep = udev->endpoints; in usbd_get_endpoint() local
311 struct usb_endpoint *ep) in usb_init_endpoint()
363 usb_endpoint_foreach(struct usb_device *udev, struct usb_endpoint *ep) in usb_endpoint_foreach()
633 struct usb_endpoint *ep; in usb_config_parse() local
902 usbd_set_endpoint_stall(struct usb_device *udev, struct usb_endpoint *ep, in usbd_set_endpoint_stall()
988 struct usb_endpoint *ep; in usb_reset_iface_endpoints() local
1862 usb_make_dev(struct usb_device *udev, const char *devname, int ep, in usb_make_dev()
1932 uint8_t ep; in usb_cdev_create() local
2782 usbd_set_endpoint_mode(struct usb_device *udev, struct usb_endpoint *ep, in usbd_set_endpoint_mode()
[all …]
Dusb_debug.c90 usb_dump_queue(struct usb_endpoint *ep) in usb_dump_queue()
109 usb_dump_endpoint(struct usb_endpoint *ep) in usb_dump_endpoint()
Dusb_transfer.c862 struct usb_endpoint *ep; in usbd_transfer_setup() local
1777 struct usb_endpoint *ep; in usbd_pipe_enter() local
1852 struct usb_endpoint *ep; in usbd_transfer_stop() local
2539 struct usb_endpoint *ep = xfer->endpoint; in usbd_transfer_start_cb() local
2621 struct usb_endpoint *ep; in usbd_pipe_start() local
2771 struct usb_endpoint *ep; in usbd_callback_wrapper_sub() local
3107 usbd_clear_stall_locked(struct usb_device *udev, struct usb_endpoint *ep) in usbd_clear_stall_locked()
3127 usbd_clear_data_toggle(struct usb_device *udev, struct usb_endpoint *ep) in usbd_clear_data_toggle()
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_fixed.cc62 const char* const ep = kFixedZonePrefix + prefix_len; in FixedOffsetFromName() local
108 char* ep = std::copy(kFixedZonePrefix, kFixedZonePrefix + prefix_len, buf); in FixedOffsetToName() local
/third_party/skia/third_party/externals/angle2/src/common/
Dentry_points_enum_autogen.cpp17 const char *GetEntryPointName(EntryPoint ep) in GetEntryPointName()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/
Dentry_points_enum_autogen.cpp17 const char *GetEntryPointName(EntryPoint ep) in GetEntryPointName()
/third_party/libuv/src/unix/
Dos390.c116 uv__os390_epoll* ep; in uv__platform_loop_init() local
545 uv__os390_epoll* ep; in uv_fs_event_start() local
580 uv__os390_epoll* ep; in uv_fs_event_stop() local
611 static int os390_message_queue_handler(uv__os390_epoll* ep) { in os390_message_queue_handler()
652 uv__os390_epoll* ep; in uv__io_poll() local
/third_party/musl/porting/linux/user/src/env/
Dgetenv.c11 char **p, *ep; in getenv() local

1234567