Searched refs:ep (Results 1 - 25 of 587) sorted by relevance

1234567891011>>

/freebsd-current/contrib/mandoc/
H A Dtest-sandbox_init.c6 char *ep; local
9 rc = sandbox_init(kSBXProfileNoInternet, SANDBOX_NAMED, &ep);
11 sandbox_free_error(ep);
H A Deqn.c308 struct eqn_node *ep; local
310 ep = mandoc_calloc(1, sizeof(*ep));
311 ep->gsize = EQN_DEFSIZE;
312 return ep;
316 eqn_reset(struct eqn_node *ep) argument
318 free(ep->data);
319 ep->data = ep->start = ep
324 eqn_read(struct eqn_node *ep, const char *p) argument
343 eqn_def_find(struct eqn_node *ep) argument
376 eqn_next(struct eqn_node *ep, enum parse_mode mode) argument
516 eqn_box_alloc(struct eqn_node *ep, struct eqn_box *parent) argument
543 eqn_box_makebinary(struct eqn_node *ep, struct eqn_box *parent) argument
568 eqn_delim(struct eqn_node *ep) argument
593 eqn_undef(struct eqn_node *ep) argument
611 eqn_def(struct eqn_node *ep) argument
660 eqn_parse(struct eqn_node *ep) argument
[all...]
/freebsd-current/contrib/libfido2/src/
H A Dutil.c17 char *ep; local
21 ull = strtoull(str, &ep, base);
22 if (str == ep || *ep != '\0')
/freebsd-current/usr.bin/printenv/
H A Dprintenv.c53 char *cp, **ep; local
70 for (ep = environ; *ep; ep++)
71 (void)printf("%s\n", *ep);
75 for (ep = environ; *ep; ep++)
76 if (!memcmp(*ep, *argv, len)) {
77 cp = *ep
[all...]
/freebsd-current/contrib/nvi/ex/
H A Dex_undo.c32 EXF *ep; local
50 ep = sp->ep;
51 if (!F_ISSET(ep, F_UNDO)) {
52 F_SET(ep, F_UNDO);
53 ep->lundo = FORWARD;
55 switch (ep->lundo) {
59 ep->lundo = FORWARD;
64 ep->lundo = BACKWARD;
/freebsd-current/sbin/restore/
H A Dutilities.c55 struct entry *ep; local
65 ep = lookupname(name);
66 if (ep == NULL) {
68 ep = addentry(name, pathsearch(name)->d_ino, NODE);
69 newnode(ep);
71 ep->e_flags |= NEW|KEEP;
80 mktempname(struct entry *ep) argument
84 if (ep->e_flags & TMPNAME)
85 badentry(ep, "mktempname: called with TMPNAME");
86 ep
98 gentempname(struct entry *ep) argument
150 removenode(struct entry *ep) argument
172 removeleaf(struct entry *ep) argument
257 delwhiteout(struct entry *ep) argument
280 struct entry *ep; local
298 struct entry *ep; local
314 badentry(struct entry *ep, char *msg) argument
339 flagvalues(struct entry *ep) argument
[all...]
H A Drestore.c69 struct entry *ep; local
87 ep = lookupino(ino);
88 if (ep != NULL) {
89 if (strcmp(name, myname(ep)) == 0) {
90 ep->e_flags |= NEW;
95 ep = addentry(name, ino, type);
97 newnode(ep);
98 ep->e_flags |= NEW;
111 struct entry *ep; local
115 ep
148 struct entry *ep, *nextep; local
201 struct entry *ep, *np, *ip; local
508 struct entry *ep, *np; local
556 struct entry *ep, **prev; local
585 struct entry *ep; local
665 struct entry *ep; local
772 struct entry *np, *ep; local
812 struct entry *ep; local
834 struct entry *np, *ep; local
[all...]
H A Dsymtab.c79 struct entry *ep; local
83 for (ep = entry[inum % entrytblsize]; ep != NULL; ep = ep->e_next)
84 if (ep->e_ino == inum)
85 return (ep);
138 struct entry *ep; local
143 for (ep = lookupino(UFS_ROOTINO); ep !
167 struct entry *ep; local
187 myname(struct entry *ep) argument
216 struct entry *np, *ep; local
262 freeentry(struct entry *ep) argument
305 moveentry(struct entry *ep, char *newname) argument
333 removeentry(struct entry *ep) argument
434 struct entry *ep, *tep; local
522 struct entry *ep; local
[all...]
/freebsd-current/contrib/libxo/tests/core/
H A Dtest_06.c37 }, *ep = employees; local
50 for ( ; ep->e_first; ep++) {
53 ep->e_first, ep->e_last, ep->e_dept);
H A Dtest_04.c37 }, *ep = employees; local
49 for ( ; ep->e_first; ep++) {
53 ep->e_first, ep->e_last, ep->e_dept);
H A Dtest_07.c43 }, *ep = employees; local
77 for ( ; ep->e_first; ep++) {
82 ep->e_first, ep->e_nic, ep->e_last, ep->e_dept, ep->e_percent);
84 if (ep->e_percent > 50) {
/freebsd-current/contrib/netbsd-tests/lib/libc/stdlib/
H A Dt_hsearch.c87 ENTRY e, *ep; local
103 ep = hsearch(e, ENTER);
105 ATF_REQUIRE(ep != NULL);
106 ATF_REQUIRE_STREQ(ep->key, ch);
107 ATF_REQUIRE_EQ((intptr_t)ep->data, i);
117 ep = hsearch(e, FIND);
119 ATF_REQUIRE(ep != NULL);
120 ATF_REQUIRE_STREQ(ep->key, ch);
121 ATF_REQUIRE_EQ((intptr_t)ep->data, i);
141 ENTRY e, *ep; local
176 ENTRY e, *ep; local
197 ENTRY e, *ep, *ep2; local
246 ENTRY e, *ep; local
301 ENTRY e, *ep; local
336 ENTRY e, *ep; local
361 ENTRY e, *ep, *ep2; local
[all...]
/freebsd-current/contrib/nvi/common/
H A Dlog.c93 log_init(SCR *sp, EXF *ep) argument
97 * ep MAY NOT BE THE SAME AS sp->ep, DON'T USE THE LATTER.
103 ep->l_lp = NULL;
104 ep->l_len = 0;
105 ep->l_cursor.lno = 1; /* XXX Any valid recno. */
106 ep->l_cursor.cno = 0;
107 ep->l_high = ep->l_cur = 1;
109 ep
127 log_end(SCR *sp, EXF *ep) argument
155 EXF *ep; local
183 EXF *ep; local
219 EXF *ep; local
319 EXF *ep; local
363 EXF *ep; local
465 EXF *ep; local
549 EXF *ep; local
643 EXF *ep; local
[all...]
H A Dline.c84 EXF *ep; local
99 if ((ep = sp->ep) == NULL) {
135 if (lno == ep->c_lno) {
140 *lenp = ep->c_len;
142 *pp = ep->c_lp;
145 ep->c_lno = OOBLNO;
151 switch (ep->db->get(ep->db, &key, &data, 0)) {
175 BINC_GOTOW(sp, ep
202 EXF *ep; local
256 EXF *ep; local
327 EXF *ep; local
390 EXF *ep; local
445 EXF *ep; local
479 EXF *ep; local
552 EXF *ep = sp->ep; local
577 EXF *ep = sp->ep; local
608 EXF *ep; local
[all...]
/freebsd-current/contrib/ncurses/ncurses/tinfo/
H A Dentries.c71 ENTRY *ep, *last; local
73 for (last = 0, ep = headp; ep != 0; last = ep, ep = ep->next) {
74 if (&(ep->tterm) == tterm) {
76 last->next = ep->next;
78 if (ep->next != 0) {
79 ep
97 ENTRY *ep; local
[all...]
/freebsd-current/sys/dev/cxgbe/iw_cxgbe/
H A Dcm.c88 static void start_ep_timer(struct c4iw_ep *ep);
89 static int stop_ep_timer(struct c4iw_ep *ep);
90 static int set_tcpinfo(struct c4iw_ep *ep);
91 static void process_timeout(struct c4iw_ep *ep);
95 static int send_mpa_req(struct c4iw_ep *ep);
96 static int send_mpa_reject(struct c4iw_ep *ep, const void *pdata, u8 plen);
97 static int send_mpa_reply(struct c4iw_ep *ep, const void *pdata, u8 plen);
98 static void close_complete_upcall(struct c4iw_ep *ep, int status);
99 static int send_abort(struct c4iw_ep *ep);
100 static void peer_close_upcall(struct c4iw_ep *ep);
197 deref_qp(struct c4iw_ep *ep) argument
204 ref_qp(struct c4iw_ep *ep) argument
387 process_timeout(struct c4iw_ep *ep) argument
501 set_tcpinfo(struct c4iw_ep *ep) argument
566 process_peer_close(struct c4iw_ep *ep) argument
680 process_conn_error(struct c4iw_ep *ep) argument
754 process_close_complete(struct c4iw_ep *ep) argument
869 process_data(struct c4iw_ep *ep) argument
909 process_connected(struct c4iw_ep *ep) argument
1050 add_ep_to_req_list(struct c4iw_ep *ep, int new_ep_event) argument
1071 struct c4iw_ep *ep = arg; local
1099 struct c4iw_ep *ep; local
1113 process_socket_event(struct c4iw_ep *ep) argument
1276 start_ep_timer(struct c4iw_ep *ep) argument
1294 stop_ep_timer(struct c4iw_ep *ep) argument
1323 struct c4iw_ep *ep; local
1341 release_ep_resources(struct c4iw_ep *ep) argument
1350 send_mpa_req(struct c4iw_ep *ep) argument
1450 send_mpa_reject(struct c4iw_ep *ep, const void *pdata, u8 plen) argument
1521 send_mpa_reply(struct c4iw_ep *ep, const void *pdata, u8 plen) argument
1613 close_complete_upcall(struct c4iw_ep *ep, int status) argument
1633 send_abort(struct c4iw_ep *ep) argument
1676 peer_close_upcall(struct c4iw_ep *ep) argument
1693 peer_abort_upcall(struct c4iw_ep *ep) argument
1712 connect_reply_upcall(struct c4iw_ep *ep, int status) argument
1771 connect_request_upcall(struct c4iw_ep *ep) argument
1820 established_upcall(struct c4iw_ep *ep) argument
1854 process_mpa_reply(struct c4iw_ep *ep) argument
2203 process_mpa_request(struct c4iw_ep *ep) argument
2361 struct c4iw_ep *ep = to_ep(cm_id); local
2404 struct c4iw_ep *ep = to_ep(cm_id); local
2595 struct c4iw_ep *ep = NULL; local
2804 __c4iw_ep_disconnect(struct c4iw_ep *ep, int abrupt, gfp_t gfp) argument
2813 c4iw_ep_disconnect(struct c4iw_ep *ep, int abrupt, gfp_t gfp) argument
2937 struct c4iw_ep *ep = ctx; local
2957 struct c4iw_ep *ep = (struct c4iw_ep *)arg; local
3004 process_terminate(struct c4iw_ep *ep) argument
[all...]
/freebsd-current/contrib/nvi/vi/
H A Dv_undo.c54 F_SET(sp->ep, F_UNDO);
55 sp->ep->lundo = BACKWARD;
69 EXF *ep; local
115 ep = sp->ep;
116 if (!F_ISSET(ep, F_UNDO)) {
117 F_SET(ep, F_UNDO);
118 ep->lundo = BACKWARD;
120 ep->lundo = ep
[all...]
/freebsd-current/lib/libc/stdlib/
H A Dlsearch.c37 uint8_t *ep, *endp; local
39 ep = __DECONST(uint8_t *, base);
40 for (endp = (uint8_t *)(ep + width * *nelp); ep < endp; ep += width) {
41 if (compar(key, ep) == 0)
42 return (ep);
/freebsd-current/usr.sbin/setfib/
H A Dsetfib.c53 char *ep; local
61 ep = argv[1];
65 if (ep[0]== '-' && isdigit((unsigned char)ep[1]))
66 ep++;
67 if (isdigit((unsigned char)*ep))
68 if (asprintf(&argv[1], "-F%s", ep) < 0)
75 fib = strtol(optarg, &ep, 10);
76 if (ep == optarg || *ep !
[all...]
/freebsd-current/contrib/arm-optimized-routines/pl/math/
H A Dasinf_data.c15 0x1.55555ep-3, 0x1.33261ap-4, 0x1.70d7dcp-5, 0x1.b059dp-6, 0x1.3af7d8p-5,
H A Datanf_data.c14 -0x1.55555p-2f, 0x1.99935ep-3f, -0x1.24051ep-3f, 0x1.bd7368p-4f,
/freebsd-current/sys/geom/
H A Dgeom_event.c236 struct g_event *ep; local
250 ep = TAILQ_FIRST(&g_events);
251 if (ep == NULL) {
255 ep->flag |= EV_INPROGRESS;
258 ep->func(ep->arg, 0);
262 TAILQ_REMOVE(&g_events, ep, events);
263 ep->flag &= ~EV_INPROGRESS;
264 if (ep->flag & EV_WAKEUP) {
265 ep
301 struct g_event *ep, *epn; local
348 g_post_event_ep_va(g_event_t *func, void *arg, int wuflag, struct g_event *ep, va_list ap) argument
375 g_post_event_ep(g_event_t *func, void *arg, struct g_event *ep, ...) argument
388 struct g_event *ep; local
438 struct g_event *ep; local
[all...]
/freebsd-current/crypto/heimdal/appl/telnet/libtelnet/
H A Dencrypt.c143 Encryptions *ep = encryptions; local
147 while (ep->type && ep->type != type)
148 ++ep;
149 return(ep->type ? ep : 0);
155 Encryptions *ep = encryptions; local
159 while (ep->type && ep->type != type)
160 ++ep;
180 Encryptions *ep = encryptions; local
216 Encryptions *ep = encryptions; local
241 Encryptions *ep; local
274 Encryptions *ep; local
513 Encryptions *ep; local
552 Encryptions *ep; local
596 Encryptions *ep; local
644 Encryptions *ep; local
680 Encryptions *ep = encryptions; local
735 Encryptions *ep; local
829 Encryptions *ep; local
995 Encryptions *ep; local
[all...]
/freebsd-current/contrib/telnet/libtelnet/
H A Dencrypt.c143 Encryptions *ep = encryptions; local
147 while (ep->type && ep->type != type)
148 ++ep;
149 return(ep->type ? ep : 0);
155 Encryptions *ep = encryptions; local
159 while (ep->type && ep->type != type)
160 ++ep;
182 Encryptions *ep = encryptions; local
215 Encryptions *ep = encryptions; local
240 Encryptions *ep; local
273 Encryptions *ep; local
478 Encryptions *ep; local
517 Encryptions *ep; local
561 Encryptions *ep; local
609 Encryptions *ep; local
645 Encryptions *ep = encryptions; local
712 Encryptions *ep; local
797 Encryptions *ep; local
937 Encryptions *ep; local
[all...]
/freebsd-current/usr.sbin/crunch/crunchgen/
H A Dcrunched_main.c96 struct stub *ep = &entry_points[i]; local
97 if (!strcmp(basename, ep->name))
98 return (ep);
113 struct stub *ep = NULL; local
123 ep = find_entry_point(basename);
133 if (ep == NULL) {
135 ep = find_entry_point(basename);
142 if (ep == NULL) {
155 ep = find_entry_point(basename);
165 if (ep !
213 struct stub *ep = &entry_points[i]; local
[all...]

Completed in 325 milliseconds

1234567891011>>