Searched refs:ep (Results 26 - 50 of 442) sorted by relevance

1234567891011>>

/macosx-10.9.5/ncurses-42/ncurses/ncurses/trace/
H A Dlib_tracedmp.c76 char *ep = my_buffer; local
86 ep[j] = (char) ((UChar(test) == test
96 ep[j] = '\0';
101 ep);
112 ep = my_buffer;
116 ep[j] = (char) (test + '0');
118 ep[j] = ' ';
121 ep[j] = '\0';
135 ep = my_buffer;
139 ep[
[all...]
H A Dlib_tracemse.c48 _nc_tracemouse(SCREEN *sp, MEVENT const *ep) argument
51 ep->id,
52 ep->x,
53 ep->y,
54 ep->z,
55 (unsigned long) ep->bstate);
57 #define SHOW(m, s) if ((ep->bstate & m) == m) strcat(strcat(my_buffer, s), ", ")
118 _tracemouse(MEVENT const *ep) argument
120 return _nc_tracemouse(SP, ep);
/macosx-10.9.5/Libc-997.90.3/stdlib/FreeBSD/
H A Dlsearch.c40 uint8_t *ep, *endp; local
46 ep = (uint8_t *)(uintptr_t)base;
47 for (endp = (uint8_t *)(ep + width * *nelp); ep < endp; ep += width) {
48 if (compar(key, ep) == 0)
49 return (ep);
/macosx-10.9.5/tcpdump-56/tcpdump/
H A Dprint-ah.c47 register const u_char *ep; local
52 ep = snapend; /* 'ep' points to the end of available data. */
63 if (bp + sizeof(struct ah) + sumlen > ep)
H A Dprint-ipcomp.c54 register const u_char *ep; local
63 /* 'ep' points to the end of available data. */
64 ep = snapend;
66 if ((u_char *)(ipcomp + 1) >= ep - sizeof(struct ipcomp)) {
/macosx-10.9.5/hfs-226.1.1/CopyHFSMeta/
H A DGather.c74 ExtentList_t *ep; local
90 for (ep = vop->list;
91 ep;
92 ep = ep->next) {
94 for (i = 0; i < ep->count; i++) {
95 op->offset = S64(ep->extents[i].base);
96 op->size = S64(ep->extents[i].length);
117 for (ep = vop->list;
118 ep;
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/misc/
H A Dmagic.c478 register Entry_t* ep; local
498 for (ep = mp->magic; ep; ep = ep->next)
501 if (ep->nest == '{')
516 switch (ep->cont)
534 if (ep->type == ' ')
540 mp->ret[++call] = ep;
541 ep
1664 register Entry_t* ep; local
2440 register Entry_t* ep = mp->magic; local
[all...]
/macosx-10.9.5/OpenSSH-186/openssh/openbsd-compat/
H A Dstrtonum.c38 char *ep; local
55 ll = strtoll(numstr, &ep, 10);
56 if (numstr == ep || *ep != '\0')
/macosx-10.9.5/Libc-997.90.3/posix1e/
H A Dacl_flag.c94 struct _acl_entry *ep = (struct _acl_entry *)obj; local
98 } else if (_ACL_VALID_ENTRY(ep)) {
99 *flagset_p = (acl_flagset_t)&ep->ae_flags;
111 struct _acl_entry *ep = (struct _acl_entry *)obj; local
115 } else if (_ACL_VALID_ENTRY(ep)) {
116 ep->ae_flags = flagset->af_flags;
/macosx-10.9.5/Libinfo-449.1.3/gen.subproj/
H A Dether_addr.c95 static struct ether_addr *ep; local
99 if (ep == 0)
101 ep = (struct ether_addr *)calloc(1, sizeof (struct ether_addr));
102 if (ep == 0) return NULL;
108 for (i = 0; i < 6; i++) ep->ether_addr_octet[i] = t[i];
109 return ep;
/macosx-10.9.5/Libc-997.90.3/db/btree/FreeBSD/
H A Dbt_seq.c136 * ep: storage for returned key
147 __bt_seqset(BTREE *t, EPG *ep, DBT *key, int flags) argument
168 return (__bt_first(t, key, ep, &exact));
187 ep->page = h;
188 ep->index = 0;
209 ep->page = h;
210 ep->index = NEXTINDEX(h) - 1;
231 __bt_seqadv(BTREE *t, EPG *ep, int flags) argument
254 return (__bt_first(t, &c->key, ep, &exact));
292 ep
333 EPG *ep, save; local
[all...]
/macosx-10.9.5/shell_cmds-175/w/
H A Dw.c142 } *ep, *ehead = NULL, **nextp = &ehead; variable in typeref:struct:entry
327 if ((ep = calloc(1, sizeof(struct entry))) == NULL)
329 *nextp = ep;
330 nextp = &ep->next;
332 memmove(&ep->utmp, ux, sizeof(*ux));
334 memmove(&ep->utmp, &utmp, sizeof(struct utmp));
336 ep->tdev = stp->st_rdev;
342 if (ep->tdev == 0) {
349 (void)sysctl(mib, 2, &ep->tdev, &size, NULL, 0);
354 if (touched < ep
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/include/
H A Dapr_ring.h174 * @param ep The current element
177 #define APR_RING_NEXT(ep, link) (ep)->link.next
180 * @param ep The current element
183 #define APR_RING_PREV(ep, link) (ep)->link.prev
209 * @param ep The element
212 #define APR_RING_ELEM_INIT(ep, link) do { \
213 APR_RING_NEXT((ep), link) = (ep); \
[all...]
/macosx-10.9.5/apr-30/apr/apr/include/
H A Dapr_ring.h174 * @param ep The current element
177 #define APR_RING_NEXT(ep, link) (ep)->link.next
180 * @param ep The current element
183 #define APR_RING_PREV(ep, link) (ep)->link.prev
209 * @param ep The element
212 #define APR_RING_ELEM_INIT(ep, link) do { \
213 APR_RING_NEXT((ep), link) = (ep); \
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/sfio/
H A Dsfcvt.c117 reg char *ep, *b, *endsp, *t; local
198 ep = (format & SFFMT_UPPER) ? ux : lx;
211 { *sp++ = ep[(m >> x) & 0xf];
256 sfucvt(v,sp,n,ep,CVT_LDBL_INT,unsigned CVT_LDBL_INT);
274 if((ep = (sp+n)) > (endsp = buf+(size-2)))
275 ep = endsp;
276 if(sp > ep)
277 sp = ep;
288 while(sp < ep)
292 do { *sp++ = '0'; } while(sp < ep);
[all...]
/macosx-10.9.5/shell_cmds-175/who/
H A Dutmpentry.c176 struct utmpentry *ep; local
184 ep = ehead;
185 while (ep) {
186 struct utmpentry *sep = ep;
187 ep = ep->next;
204 struct utmpentry *ep; local
227 if ((ep = calloc(1, sizeof(struct utmpentry))) == NULL) {
231 getentryx(ep, utx);
232 *nextp = ep;
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libcmd/
H A Drev.c63 register char *ep, *bp, *cp; local
73 ep = bp + (n=sfvalue(in)) - 1;
84 while (cp < ep)
99 ep = bp + (n=sfvalue(in)) -1;
100 while(ep > bp)
102 c = *--ep;
103 *ep = *bp;
H A Dfmt.c140 register char* ep; local
147 for (ep = buf; *ep == ' '; ep++);
148 prefix = ep - buf;
154 if ((*ep == 0 || *buf == '.') && !isoption(fp, 'o'))
156 if (*ep)
170 cp = ep;
171 while (*ep == ' ')
172 ep
239 char* ep; local
[all...]
/macosx-10.9.5/sudo-72/src/
H A Dmkstemps.c56 char *start, *cp, *ep; local
61 for (ep = path; *ep; ep++)
63 if (path + slen >= ep) {
67 ep -= slen;
70 for (start = ep; start > path && start[-1] == 'X'; start--) {
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/
H A Dcs_s_reg.c299 entry_t *ep;
346 ep = rpc_g_codesets_list;
352 if ((read (CsrFile, (char *)(&ep->code_set), sizeof(ep->code_set))) == -1)
358 if ((read (CsrFile, (char *)(&ep->code_name_len), sizeof(ep->code_name_len))) == -1)
364 if ((ep->code_set_name = (char *)malloc(ep->code_name_len + 1)) == NULL)
370 if ((read (CsrFile, (char *)ep->code_set_name, ep
297 entry_t *ep; local
454 entry_t *ep; local
[all...]
/macosx-10.9.5/Libc-997.90.3/gen/FreeBSD/
H A Dgetbsize.c48 char *ep, *p; local
57 if ((n = strtol(p, &ep, 10)) < 0)
61 if (*ep && ep[1])
63 switch (*ep) {
/macosx-10.9.5/system_cmds-597.90.1/chpass.tproj/
H A Dopen_directory.c19 ENTRY* ep; local
28 for (ep = list; ep->prompt; ep++) {
29 ep->restricted = restrict_by_default;
32 if (strncasecmp(ep->prompt, *pp, ep->len) == 0) {
33 ep->restricted = !restrict_by_default;
42 if (restrict_by_default && strcmp(ep->prompt, "shell") == 0) {
43 ep
155 ENTRY* ep; local
[all...]
/macosx-10.9.5/system_cmds-597.90.1/system_cmds-597.1.1/chpass.tproj/
H A Dopen_directory.c19 ENTRY* ep; local
28 for (ep = list; ep->prompt; ep++) {
29 ep->restricted = restrict_by_default;
32 if (strncasecmp(ep->prompt, *pp, ep->len) == 0) {
33 ep->restricted = !restrict_by_default;
42 if (restrict_by_default && strcmp(ep->prompt, "shell") == 0) {
43 ep
155 ENTRY* ep; local
[all...]
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/
H A Dnetscope.c34 char *ep; local
62 llz = isc_string_touint64(scopename, &ep, 10);
63 if (ep == scopename)
/macosx-10.9.5/ntp-88/lib/isc/
H A Dnetscope.c34 char *ep; local
62 llz = isc_string_touint64(scopename, &ep, 10);
63 if (ep == scopename)

Completed in 240 milliseconds

1234567891011>>