Searched refs:endp (Results 1 - 25 of 89) sorted by relevance

1234

/external/openssh/openbsd-compat/
H A Ddirname.c33 const char *endp; local
43 endp = path + strlen(path) - 1;
44 while (endp > path && *endp == '/')
45 endp--;
48 while (endp > path && *endp != '/')
49 endp--;
52 if (endp == path) {
53 dname[0] = *endp
[all...]
H A Dbasename.c31 const char *endp, *startp; local
41 endp = path + strlen(path) - 1;
42 while (endp > path && *endp == '/')
43 endp--;
46 if (endp == path && *endp == '/') {
53 startp = endp;
57 len = endp - startp + 1;
H A Dbsd-closefrom.c73 char fdpath[PATH_MAX], *endp; local
82 fd = strtol(dent->d_name, &endp, 10);
83 if (dent->d_name != endp && *endp == '\0' &&
/external/elfutils/libdw/
H A Ddwarf_getstring.c78 const char *endp = memchr (result, '\0', local
80 if (endp == NULL)
84 *lenp = endp - result;
H A Ddwarf_getmacros.c95 const unsigned char *endp; local
109 endp = memchr (readp, '\0', readendp - readp);
110 if (endp == NULL)
114 readp = endp + 1;
H A Ddwarf_siblingof.c86 unsigned char *endp local
122 if (addr >= endp)
146 if (addr >= endp)
H A Ddwarf_ranges.c61 Dwarf_Addr *startp, Dwarf_Addr *endp)
68 && INTUSE(dwarf_highpc) (die, endp) == 0
166 *endp = *basep + end;
60 dwarf_ranges(Dwarf_Die *die, ptrdiff_t offset, Dwarf_Addr *basep, Dwarf_Addr *startp, Dwarf_Addr *endp) argument
H A Ddwarf_getsrclines.c244 uint8_t *endp = memchr (linep, '\0', lineendp - linep); local
245 if (endp == NULL)
247 new_dir->len = endp - linep;
251 linep = endp + 1;
285 uint8_t *endp = memchr (fname, '\0', lineendp - linep); local
286 if (endp == NULL)
288 size_t fnamelen = endp - (uint8_t *) fname;
289 linep = endp + 1;
441 uint8_t *endp = memchr (linep, '\0', lineendp - linep); local
442 if (endp
[all...]
H A Ddwarf_child.c90 unsigned char *const endp local
98 if (unlikely (attrp + 1 >= endp))
/external/e2fsprogs/intl/
H A Dplural-exp.c113 char *endp; local
124 n = strtoul (nplurals, &endp, 10);
126 for (endp = nplurals, n = 0; *endp >= '0' && *endp <= '9'; endp++)
127 n = n * 10 + (*endp - '0');
129 if (nplurals == endp)
/external/elfutils/tests/
H A Ddwfl-addr-sect.c77 char *endp; local
78 uintmax_t addr = strtoumax (argv[remaining], &endp, 0);
79 if (endp != argv[remaining])
H A Daddrscopes.c176 char *endp; local
177 uintmax_t addr = strtoumax (buf, &endp, 0);
178 if (endp != buf)
190 char *endp; local
191 uintmax_t addr = strtoumax (argv[remaining], &endp, 0);
192 if (endp != argv[remaining])
/external/tcpdump/
H A Dprint-cdp.c240 const u_char *endp = p + l; local
251 while (p < endp && num >= 0) {
253 if (p + 2 > endp)
260 if (p + pl + 2 > endp)
273 if (p + 4 > endp)
291 if (p + al > endp)
305 if (p + pl > endp)
311 if (p + 2 > endp)
317 if (p + al > endp)
/external/libppp/src/
H A Dnetgraph.c420 * ending with any character from ``sep''. Point ``endp'' at the next
424 #define GETSEGMENT(what, from, sep, endp) \
425 getsegment(#what, (what), sizeof(what), from, sep, endp)
429 const char *sep, const char **endp)
446 *endp = from + len;
447 *endp += strspn(*endp, sep);
465 const char *devp, *endp; local
509 if (!GETSEGMENT(hook, devp, ".[", &endp))
512 devp = endp;
428 getsegment(const char *what, char *word, size_t sz, const char *from, const char *sep, const char **endp) argument
[all...]
/external/elfutils/src/
H A Dldlex.l180 {HEX}|{OCT}|{DEC} { char *endp;
181 ldlval.num = strtoumax (yytext, &endp, 0);
182 if (*endp != '\0')
184 if (tolower (*endp) == 'k')
188 assert (tolower (*endp) == 'm');
H A Dld.c635 char *endp; local
636 ld_state.pagesize = strtoul (arg, &endp, 0);
637 if (*endp != '\0')
639 if (endp[1] == '\0' && tolower (*endp) == 'k')
641 else if (endp[1] == '\0' && tolower (*endp) == 'm')
798 char *endp; local
799 unsigned long int level = strtoul (arg, &endp, 10);
800 if (*endp !
1356 struct pathelement *endp = ld_state.rpath; local
1362 struct pathelement *endp = ld_state.rpath_link; local
1369 struct pathelement *endp = ld_state.runpath; local
1384 struct pathelement *endp = ld_state.runpath_link; local
[all...]
/external/libxml2/
H A Dtriostr.h55 TRIO_STRING_PUBLIC double trio_to_double TRIO_PROTO((const char *source, char **endp));
56 TRIO_STRING_PUBLIC long trio_to_long TRIO_PROTO((const char *source, char **endp, int base));
57 TRIO_STRING_PUBLIC trio_long_double_t trio_to_long_double TRIO_PROTO((const char *source, char **endp));
80 TRIO_STRING_PUBLIC float trio_to_float TRIO_PROTO((const char *source, char **endp));
82 TRIO_STRING_PUBLIC unsigned long trio_to_unsigned_long TRIO_PROTO((const char *source, char **endp, int base));
H A Dtriostr.c942 @param endp Pointer to end of the converted string.
962 TRIO_ARGS2((source, endp),
964 char **endp)
967 return strtold(source, endp);
1079 if (endp)
1080 *endp = (char *)source;
1090 @param endp Pointer to end of the converted string.
1097 TRIO_ARGS2((source, endp),
1099 char **endp)
1102 return strtod(source, endp);
961 trio_to_long_double(source, endp), TRIO_CONST char *source, char **endp argument
1096 trio_to_double(source, endp), TRIO_CONST char *source, char **endp argument
1119 trio_to_float(source, endp), TRIO_CONST char *source, char **endp argument
1141 trio_to_long(string, endp, base), TRIO_CONST char *string, char **endp, int base argument
1190 trio_to_unsigned_long(string, endp, base), TRIO_CONST char *string, char **endp, int base argument
[all...]
/external/openssl/crypto/
H A Dia64cpuid.S9 .endp OPENSSL_cpuid_setup#
16 .endp OPENSSL_rdtsc#
38 .endp OPENSSL_atomic_add#
128 .endp OPENSSL_wipe_cpu#
167 .endp OPENSSL_cleanse#
/external/icu4c/i18n/
H A Ducoleitr.cpp372 if ((ci->flags & UCOL_ITER_HASLEN) == 0 || ci->endp == NULL) {
373 ci->endp = ci->string + u_strlen(ci->string);
482 if (elems->iteratordata_.endp == NULL) {
483 elems->iteratordata_.endp = elems->iteratordata_.string +
487 elems->iteratordata_.pos = elems->iteratordata_.endp;
488 elems->iteratordata_.fcdPosition = elems->iteratordata_.endp;
525 if (elems->iteratordata_.endp == NULL) {
526 elems->iteratordata_.endp = elems->iteratordata_.string +
531 elems->iteratordata_.pos = elems->iteratordata_.endp;
532 elems->iteratordata_.fcdPosition = elems->iteratordata_.endp;
[all...]
H A Dcoleitr.cpp102 int thislength = (int)(m_data_->iteratordata_.endp - m_data_->iteratordata_.string);
103 int thatlength = (int)(that.m_data_->iteratordata_.endp - that.m_data_->iteratordata_.string);
401 length = (int)(othercoliter->endp - othercoliter->string);
421 coliter->endp = coliter->string + length;
432 othercoliter->pos <= othercoliter->endp)
/external/chromium/third_party/libjingle/source/talk/base/
H A Dflags.cc231 char* endp = empty; local
237 *flag->int_variable() = strtol(value, &endp, 10);
240 *flag->float_variable() = strtod(value, &endp);
250 *endp != '\0') {
/external/oprofile/module/ia64/
H A DIA64syscallstub.h85 .endp post_stub_##name; \
114 .endp post_call_stub_##name;
168 .endp pre_stub_##name; \
195 .endp pre_call_stub_##name;
/external/llvm/lib/Support/
H A Dregengine.inc77 const char *endp; /* end of string -- virtual NUL here */
135 const char *endp;
175 m->endp = stop;
185 endp = fast(m, start, stop, gf, gl);
186 if (endp == NULL) { /* a miss */
199 endp = slow(m, m->coldp, stop, gf, gl);
200 if (endp != NULL)
202 assert(m->coldp < m->endp);
220 dp = dissect(m, m->coldp, endp, gf, gl);
231 dp = backref(m, m->coldp, endp, g
[all...]
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_string.c509 long SDL_strtol(const char *string, char **endp, int base) argument
523 if ( endp ) {
524 *endp = (char *)string + len;
531 unsigned long SDL_strtoul(const char *string, char **endp, int base) argument
545 if ( endp ) {
546 *endp = (char *)string + len;
607 Sint64 SDL_strtoll(const char *string, char **endp, int base) argument
621 if ( endp ) {
622 *endp = (char *)string + len;
629 Uint64 SDL_strtoull(const char *string, char **endp, in argument
653 SDL_strtod(const char *string, char **endp) argument
[all...]

Completed in 388 milliseconds

1234