Searched refs:ep (Results 251 - 275 of 442) sorted by relevance

<<1112131415161718

/macosx-10.9.5/swig-10/Lib/mzscheme/
H A Dmzrun.swg291 char *ep=getenv("MZ_DYNLOAD_LIBPATH");
294 if (ep!=NULL) {
295 EP=strdup(ep);
314 fprintf(stderr,"SWIG:mzscheme:MZ_DYNLOAD_LIBPATH=%s\n",(ep==NULL) ? "(null)" : ep);
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/libpng/
H A Dpngwutil.c867 png_sPLT_entryp ep; local
886 for (ep = spalette->entries; ep<spalette->entries + spalette->nentries; ep++)
890 entrybuf[0] = (png_byte)ep->red;
891 entrybuf[1] = (png_byte)ep->green;
892 entrybuf[2] = (png_byte)ep->blue;
893 entrybuf[3] = (png_byte)ep->alpha;
894 png_save_uint_16(entrybuf + 4, ep->frequency);
898 png_save_uint_16(entrybuf + 0, ep
[all...]
/macosx-10.9.5/ncurses-42/ncurses/ncurses/tinfo/
H A Dread_termcap.c945 ENTRY *ep; local
1130 for_entry_list(ep) {
1131 if (_nc_name_match(ep->tterm.term_names, tn, "|:")) {
1136 *tp = ep->tterm;
1137 _nc_delink_entry(_nc_head, &(ep->tterm));
1138 free(ep);
/macosx-10.9.5/network_cmds-433/ip6addrctl.tproj/
H A Dip6addrctl.c115 struct in6_addrpolicy *pol, *ep; local
134 ep = (struct in6_addrpolicy *)(buf + l);
135 for (pol = (struct in6_addrpolicy *)buf; pol + 1 <= ep; pol++) {
/macosx-10.9.5/shell_cmds-175/id/
H A Did.c451 char *ep; local
459 id = strtol(u, &ep, 10);
460 if (*u && !*ep && (pw = getpwuid(id)))
/macosx-10.9.5/sudo-72/src/
H A Diolog.c91 char buf[32], *ep; local
129 id = strtoul(buf, &ep, 36);
130 if (buf == ep || id >= SESSID_MAX)
H A Dtoke.c3638 char *cp, *ep, *path, *pp; local
3648 ep = cp;
3649 while (*ep != '\0' && !isspace((unsigned char) *ep)) {
3650 if (ep[0] == '%' && ep[1] == 'h') {
3655 ep++;
3666 len += (int)(ep - cp);
3678 while (cp < ep) {
3694 if (*ep !
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/libedit/src/
H A Dmap.c1126 el_bindings_t *bp, *ep; local
1130 ep = &el->el_map.help[el->el_map.nfunc];
1131 for (bp = el->el_map.help; bp < ep; bp++)
1148 el_bindings_t *bp, *ep; local
1165 ep = &el->el_map.help[el->el_map.nfunc];
1166 for (bp = el->el_map.help; bp < ep; bp++) {
1254 el_bindings_t *bp, *ep; local
1296 ep = &el->el_map.help[el->el_map.nfunc];
1297 for (bp = el->el_map.help; bp < ep; bp++)
/macosx-10.9.5/IOKitUser-907.100.13/pwr_mgt.subproj/
H A DIOPMLibPrivate.c297 struct dirent *ep; local
313 while ((ep = readdir(dp))) {
314 if(!strcmp(ep->d_name, ".") || !strcmp(ep->d_name, ".."))
323 d_name = strdup(ep->d_name);
410 struct dirent *ep; local
419 while ((ep = readdir(dp))) {
420 if(strstr(ep->d_name, uuid_cstr)) {
423 ep->d_name,
/macosx-10.9.5/libedit-39/src/
H A Dmap.c1125 el_bindings_t *bp, *ep; local
1129 ep = &el->el_map.help[el->el_map.nfunc];
1130 for (bp = el->el_map.help; bp < ep; bp++)
1147 el_bindings_t *bp, *ep; local
1164 ep = &el->el_map.help[el->el_map.nfunc];
1165 for (bp = el->el_map.help; bp < ep; bp++) {
1253 el_bindings_t *bp, *ep; local
1295 ep = &el->el_map.help[el->el_map.nfunc];
1296 for (bp = el->el_map.help; bp < ep; bp++)
/macosx-10.9.5/lsof-52/lsof/
H A Dmain.c1069 efsys_list_t *ep; /* Efsysl pointer */ local
1073 for (ep = Efsysl; ep; ep = ep->next) {
1075 if (!strcmp(mpw->dir, ep->path)) {
1076 ep->mp = mpw;
1080 if (!ep->mp) {
1083 Pn, ep->path);
/macosx-10.9.5/lukemftp-13.92.1/tnftp/src/
H A Dutil.c681 char *cp, *ep; local
686 size = STRTOLL(cp, &ep, 10);
687 if (*ep != '\0' && !isspace((unsigned char)*ep))
1232 char *p, *ep; local
1235 nport = strtol(p, &ep, 10);
1236 if (*ep != '\0' && ep == p) {
1248 } else if (nport < 1 || nport > MAX_IN_PORT_T || *ep != '\0')
/macosx-10.9.5/ruby-104/ruby/
H A Dvm_core.h432 VALUE *ep; /* cfp[6] / block[2] */ member in struct:rb_control_frame_struct
445 VALUE *ep; /* share with method frame if it's only block */ member in struct:rb_block_struct
767 * ep[ 0]: prev frame
768 * ep[-1]: CREF (for *_eval)
771 * ep[ 0]: block pointer (ptr | VM_ENVVAL_BLOCK_PTR_FLAG)
780 #define VM_EP_PREV_EP(ep) ((VALUE *)GC_GUARDED_PTR_REF((ep)[0]))
781 #define VM_EP_BLOCK_PTR(ep) ((rb_block_t *)GC_GUARDED_PTR_REF((ep)[0]))
782 #define VM_EP_LEP_P(ep) VM_ENVVAL_BLOCK_PTR_
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/kern/
H A Dkern_sysctl.c1501 fill_user32_eproc(proc_t p, struct user32_eproc *__restrict ep) argument
1512 ep->e_pgid = p->p_pgrpid;
1513 ep->e_jobc = pg->pg_jobc;
1515 ep->e_flag = EPROC_CTTY;
1519 ep->e_lcid = p->p_lctx->lc_id;
1521 ep->e_ppid = p->p_ppid;
1526 ep->e_pcred.p_ruid = kauth_cred_getruid(my_cred);
1527 ep->e_pcred.p_svuid = kauth_cred_getsvuid(my_cred);
1528 ep->e_pcred.p_rgid = kauth_cred_getrgid(my_cred);
1529 ep
1561 fill_user64_eproc(proc_t p, struct user64_eproc *__restrict ep) argument
[all...]
/macosx-10.9.5/Chess-310.5/sjeng/
H A Dmoves.c512 /* ep move: */
515 /* ep move: */
623 /* ep move: */
626 /* ep move: */
1298 int ep, from, target, captured, promoted, castled, find_slot; local
1299 ep = moves[i].ep;
1384 if (!ep)
1438 if (ep) {
1442 /* remove ep paw
1935 int ep, from, target, captured, promoted, castled; local
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/back-monitor/
H A Dinit.c440 **ep = NULL; local
510 ep = &mp_parent->mp_children;
511 for ( ; *ep; ) {
512 mp_parent = ( monitor_entry_t * )(*ep)->e_private;
513 ep = &mp_parent->mp_next;
515 *ep = e_new;
619 **ep = NULL; local
711 ep = &mp_parent->mp_children;
712 for ( ; *ep; ) {
713 mp_parent = ( monitor_entry_t * )(*ep)
2200 Entry *e, **ep, *root; local
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_csp/lib/
H A DopensshCoding.cpp353 const unsigned char *ep = findNextWhite(cp, remLen); local
358 unsigned len = (unsigned)(ep - cp);
372 ep = findNextWhite(cp, remLen);
373 len = (unsigned)(ep - cp);
/macosx-10.9.5/ksh-20/ksh/src/cmd/ksh93/sh/
H A Dpath.c1472 char *sp,*cp,*ep; local
1487 for(ep=0; n--; cp++)
1491 ep = cp+1;
1502 m = ep ? (ep-sp) : 0;
1508 if(ep)
1509 strcpy(ptr,ep);
1515 if(!(pp->flags & PATH_BUILTIN_LIB) || strchr(ep,'-'))
1523 if (*ep == '.' && !*(ep
[all...]
H A Dio.c362 struct Eof *ep = (struct Eof*)fp; local
363 Sfoff_t end, cur =lseek(ep->fd, (Sfoff_t)0, SEEK_CUR);
368 end =lseek(ep->fd, (Sfoff_t)0, SEEK_END);
369 lseek(ep->fd, (Sfoff_t)0, SEEK_CUR);
1036 char *tname, *sp, *ep; local
1055 sp = ep = stakptr(1);
1056 if(ep = strrchr(sp,'/'))
1058 memmove(stakptr(0),sp,++ep-sp);
1059 stakseek(ep-sp);
1063 ep
2229 register struct eval *ep; local
2247 register struct eval *ep = (struct eval*)handle; local
[all...]
/macosx-10.9.5/dtrace-118.1/tools/ctfconvert/
H A Dctf.c285 elist_t *ep; local
438 for (i = 0, ep = tp->t_emem; ep != NULL; ep = ep->el_next)
444 for (ep = tp->t_emem; ep != NULL; ep = ep->el_next) {
445 offset = strtab_insert(&b->ctb_strtab, ep
[all...]
/macosx-10.9.5/lukemftp-13.92.1/tnftp/libedit/
H A Dterm.c1327 char *ep; local
1329 i = strtol(how, &ep, 10);
1330 if (*ep != '\0') {
1357 char *cap, *scap, *ep; local
1498 i = strtol(*argv, &ep, 10);
1499 if (*ep != '\0' || i < 0) {
1532 i = strtol(*argv, &ep, 10);
1533 if (*ep != '\0' || i < 0) {
1548 i = strtol(*argv, &ep, 10);
1549 if (*ep !
[all...]
/macosx-10.9.5/OpenSSH-186/openssh/
H A Dmisc.c247 char *sp, *ep; local
253 if ((ep = strchr(sp, ':')) == NULL) {
257 ep[0] = '\0'; ep++;
258 *remote = a2tun(ep, NULL);
972 char *ep; local
982 val = strtol(cp, &ep, 0);
983 if (*cp == '\0' || *ep != '\0' || val < 0 || val > 255)
/macosx-10.9.5/lukemftp-13.92.1/tnftp/libnetbsd/
H A Dgetaddrinfo.c254 char *ep; local
259 ep = NULL;
260 l = strtol(p, &ep, 10);
261 if (ep && *ep == '\0' && l >= 0)
1063 char *ep; local
1091 scopeid = (int)strtoul(scope, &ep, 10);
1092 if (*ep == '\0')
/macosx-10.9.5/bind9-45.100/bind9/lib/lwres/
H A Dgetaddrinfo.c353 char *p, *ep; local
367 ep = NULL;
376 &ep, 10);
377 if (p != NULL && ep != NULL && ep[0] == '\0')
/macosx-10.9.5/libpcap-42/libpcap/
H A Dpcap-win32.c173 register u_char *bp, *ep; local
207 ep = bp + cc;
226 p->cc = ep - bp;
230 if (bp >= ep)
243 p->cc = ep - bp;

Completed in 670 milliseconds

<<1112131415161718