Searched refs:eptr (Results 1 - 23 of 23) sorted by last modified time

/macosx-10.10/cups-408/cups/notifier/
H A Drss.c670 *eptr; /* Pointer into escaped string */ local
699 for (eptr = e, sptr = s; *sptr; sptr ++)
702 *eptr++ = '&';
703 *eptr++ = 'a';
704 *eptr++ = 'm';
705 *eptr++ = 'p';
706 *eptr++ = ';';
710 *eptr++ = '&';
711 *eptr++ = 'l';
712 *eptr
[all...]
/macosx-10.10/gssd-64/
H A Dgssd.c197 derlen(uint8_t **dptr, uint8_t *eptr) argument
204 for (i = *p & 0x7f; i > 0 && (eptr == NULL || (p < eptr)); i--)
269 uint8_t *ptr, *eptr, *response, *start, *end; local
273 eptr = ptr + token->length;
280 if (!CHK(ptr, (CONTEXT | 1), eptr))
282 ADVANCE(ptr, 1, eptr);
283 len = derlen(&ptr, eptr);
285 if (!CHK(ptr, SEQUENCE, eptr))
287 ADVANCE(ptr, 1, eptr);
[all...]
/macosx-10.10/NFS-82/nfs4mapid/
H A Dnfs4mapid.c68 char *eptr = NULL; local
78 case 'u': map.ntm_id = (uint32_t)strtoul(optarg, &eptr, 0);
79 if (*eptr)
/macosx-10.10/ruby-106/ruby/
H A Dstring.c5980 char *eptr = RSTRING_END(str); local
5987 while (ptr < eptr) {
6011 while (ptr < eptr) {
6014 c = rb_enc_codepoint_len(ptr, eptr, &n, enc);
6041 char *eptr = RSTRING_END(str); local
6052 while (ptr < eptr &&
6053 (end = rb_memsearch(sptr, slen, ptr, eptr - ptr, enc)) >= 0) {
6055 char *t = rb_enc_right_char_head(ptr, ptr + end, eptr, enc);
/macosx-10.10/zsh-61/zsh/Src/
H A Dparse.c1655 char *eptr = tokstr + strlen(tokstr) - 1; local
1656 char *ptr = eptr;
1663 char *idstring = dupstrpfx(tokstr+1, eptr-tokstr-1);
H A Dparams.c2133 char *eptr = s + v->end; local
2134 if (*eptr)
2135 v->end += MB_METACHARLEN(eptr);
H A Dexec.c3830 parsecmd(char *cmd, char **eptr) argument
3849 if (eptr)
3850 *eptr = str+1;
3862 getoutputfile(char *cmd, char **eptr) argument
3872 if (!(prog = parsecmd(cmd, eptr)))
3955 getproc(char *cmd, char **eptr) argument
3974 if (!(prog = parsecmd(cmd, eptr)))
3999 if (!(prog = parsecmd(cmd, eptr)))
H A Dutils.c961 char *eptr; local
995 eptr = t + strlen(t);
996 while (eptr > t && eptr[-1] == '/')
997 eptr--;
998 if (eptr == t) {
1006 nd->dir = ztrduppfx(t, eptr - t);
H A Dbuiltin.c1853 char *eptr; local
1854 pm->base = (int)zstrtol(arg, &eptr, 10);
1855 if (*eptr) {
1888 char *eptr; local
1889 pm->width = (int)zstrtol(arg, &eptr, 10);
1890 if (*eptr) {
3810 char *argptr = OPT_ARG(ops,'u'), *eptr; local
3819 fdarg = (int)zstrtol(argptr, &eptr, 10);
3820 if (*eptr) {
3927 char *eptr, *argpt local
4425 char *eptr; local
5207 char *eptr, *optarg = OPT_ARG(ops,c); local
5260 char *eptr, *argptr = OPT_ARG(ops,'u'); local
[all...]
H A Dsubst.c3057 char *sptr, *eptr; local
3079 for (eptr = val; *eptr; ) {
3080 eptr += MB_METACHARLEN(eptr);
3090 for (eptr = sptr; *eptr && length; ) {
3091 eptr += MB_METACHARLEN(eptr);
3094 val = dupstrpfx(sptr, eptr
[all...]
H A Dcond.c215 char *eptr, *err; local
217 mn1.u.l = zstrtol(left, &eptr, 10);
218 if (!*eptr)
220 mn2.u.l = zstrtol(right, &eptr, 10);
226 if (*eptr)
/macosx-10.10/zsh-61/zsh/Src/Builtins/
H A Drlimits.c739 char *options, *eptr, *number; local
770 res = (int)zstrtol(number, &eptr, 10);
771 if (*eptr) {
928 limit = zstrtorlimt(*argv, &eptr, 10);
929 if (*eptr) {
/macosx-10.10/OpenSSL098-52/src/crypto/asn1/
H A Dasn1_gen.c384 char *eptr; local
387 tag_num = strtoul(vstart, &eptr, 10);
389 if (eptr && *eptr && (eptr > vstart + vlen))
398 if (eptr)
399 vlen -= eptr - vstart;
404 switch (*eptr)
424 erch[0] = *eptr;
837 char *eptr; local
[all...]
/macosx-10.10/Heimdal-398.1.2/appl/telnet/telnetd/
H A Dtelnetd.c308 char *eptr; local
310 utmp_len = strtol(optarg, &eptr, 0);
311 if (optarg == eptr)
/macosx-10.10/zsh-61/zsh/Src/Modules/
H A Dpcre.c208 char **mbegin, **mend, **bptr, **eptr; local
212 eptr = mend = zalloc(sizeof(char*)*(nelem+1));
216 ipair += 2, i++, bptr++, eptr++)
235 *eptr = ztrdup(buf);
237 *bptr = *eptr = NULL;
254 char *eptr; local
257 ret = (int)zstrtol(instr, &eptr, 10);
258 if (*eptr || ret < 0) {
H A Dregex.c142 char **mbegin, **mend, **bptr, **eptr; local
144 eptr = mend = (char **)zalloc(sizeof(char *)*(nelem+1));
148 ++n, ++m, ++bptr, ++eptr)
167 *eptr = ztrdup(buf);
169 *bptr = *eptr = NULL;
H A Dzftp.c2215 char *ptr = lastmsg, *eptr, *systype; local
2216 for (eptr = ptr; *eptr; eptr++)
2218 systype = ztrduppfx(ptr, eptr-ptr);
2367 char *ptr, *eptr; local
2387 for (eptr = ptr; *eptr && *eptr != endc; eptr
[all...]
H A Dcurses.c1259 char *eptr; local
1269 to = (int)zstrtol(args[1], &eptr, 10);
1270 if (*eptr) {
1300 char *eptr; local
1304 ((delay = zstrtol(*args, &eptr, 10)), eptr != NULL)) {
H A Dsystem.c46 char *eptr; local
49 ret = (int)zstrtol(instr, &eptr, 10);
50 if (*eptr || ret < 0) {
319 const char **eptr; local
320 for (eptr = sys_errnames; *eptr; eptr++) {
321 if (!strcmp(*eptr, *args)) {
322 num = (eptr - sys_errnames) + 1;
326 if (!*eptr)
[all...]
/macosx-10.10/pcre-7/pcre/
H A Dpcre_internal.h416 #define GETCHAR(c, eptr) c = *eptr;
417 #define GETCHARTEST(c, eptr) c = *eptr;
418 #define GETCHARINC(c, eptr) c = *eptr++;
419 #define GETCHARINCTEST(c, eptr) c = *eptr++;
420 #define GETCHARLEN(c, eptr, len) c = *eptr;
[all...]
H A Dpcre_exec.c130 eptr points into the subject
139 match_ref(int offset, register USPTR eptr, int length, match_data *md, argument
145 if (eptr >= md->end_subject)
150 pchars(eptr, length, TRUE, md);
159 if (length > md->end_subject - eptr) return FALSE;
171 USPTR endptr = eptr + length;
172 while (eptr < endptr)
175 GETCHARINC(c, eptr);
188 { if (md->lcc[*p++] != md->lcc[*eptr++]) return FALSE; }
195 { while (length-- > 0) if (*p++ != *eptr
456 match(REGISTER USPTR eptr, REGISTER const uschar *ecode, USPTR mstart, USPTR markptr, int offset_top, match_data *md, unsigned long int ims, eptrblock *eptrb, int flags, unsigned int rdepth) argument
499 #define eptr macro
5098 #undef eptr macro
[all...]
/macosx-10.10/groff-38/groff/src/roff/troff/
H A Dinput.cpp211 const unsigned char *eptr; member in class:input_iterator
232 : is_diversion(0), ptr(0), eptr(0)
237 : is_diversion(is_div), ptr(0), eptr(0)
253 return ptr < eptr ? *ptr++ : fill(p);
331 eptr = 0;
360 eptr = p;
364 eptr = p;
480 int res = (top->ptr < top->eptr) ? *top->ptr++ : finish_get(np);
507 if (top->ptr < top->eptr)
516 return (top->ptr < top->eptr)
[all...]
/macosx-10.10/cxxfilt-11/cxxfilt/bfd/
H A Dvms-misc.c56 char *eptr;
62 if ((eptr = getenv ("VMS_DEBUG")) != NULL)
64 min_level = atoi (eptr);
55 char *eptr; local

Completed in 388 milliseconds