Searched defs:endp (Results 1 - 25 of 47) sorted by relevance

12

/external/elfutils/libdw/
H A Ddwarf_getstring.c42 const char *endp = memchr (result, '\0', local
44 if (endp == NULL)
48 *lenp = endp - result;
H A Ddwarf_getmacros.c59 const unsigned char *endp; local
73 endp = memchr (readp, '\0', readendp - readp);
74 if (endp == NULL)
78 readp = endp + 1;
H A Ddwarf_getpubnames.c36 unsigned char *endp = readp + dbg->sectiondata[IDX_debug_pubnames]->d_size; local
38 while (readp + 14 < endp)
H A Ddwarf_child.c53 unsigned char *const endp local
61 if (unlikely (attrp + 1 >= endp))
H A Ddwarf_getsrclines.c191 uint8_t *endp = memchr (linep, '\0', lineendp - linep); local
192 if (endp == NULL)
194 new_dir->len = endp - linep;
198 linep = endp + 1;
235 uint8_t *endp = memchr (fname, '\0', lineendp - linep); local
236 if (endp == NULL)
238 size_t fnamelen = endp - (uint8_t *) fname;
239 linep = endp + 1;
391 uint8_t *endp = memchr (linep, '\0', lineendp - linep); local
392 if (endp
[all...]
/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/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/icu4c/samples/coll/
H A Dcoll.cpp112 char *endp; local
113 int i = strtol(argv[argNum], &endp, 0);
114 if (endp == argv[argNum]) {
/external/iproute2/tc/
H A Dq_netem.c76 char *p, *endp; local
80 for (p = line; ; p = endp) {
81 x = strtol(p, &endp, 0);
82 if (endp == p)
/external/bluetooth/glib/gio/
H A Dgicon.c310 char *endp; local
373 version = strtol (version_str, &endp, 10);
374 if (endp == NULL || *endp != '\0')
/external/elfutils/libebl/
H A Deblgstrtab.c323 char *endp; local
344 endp = (char *) data->d_buf + nulllen;
346 copystrings (st->root, &endp, &copylen);
H A Deblstrtab.c312 char *endp; local
333 endp = (char *) data->d_buf + nulllen;
335 copystrings (st->root, &endp, &copylen);
H A Deblwstrtab.c312 wchar_t *endp; local
333 endp = (wchar_t *) data->d_buf + nulllen;
335 copystrings (st->root, &endp, &copylen);
/external/elfutils/libelf/
H A Delf_begin.c760 char *endp; local
763 endp = (char *) memccpy (elf->state.ar.ar_name, ar_hdr->ar_name,
765 if (endp != NULL)
766 endp[-1] = '\0';
/external/icu4c/samples/strsrch/
H A Dstrsrch.cpp123 char *endp; local
124 int i = strtol(argv[argNum], &endp, 0);
125 if (endp == argv[argNum]) {
/external/ppp/pppd/
H A Dmultilink.c393 char *p, *endp; local
399 i = strtol(p, &endp, 10);
400 if (endp != p && (*endp == 0 || *endp == ';')) {
530 char *p, *endp; local
541 i = strtol(str, &endp, 10);
542 if (endp == str)
544 str = endp;
H A Dccp.c265 char *str, *endp; local
268 abits = rbits = strtol(str, &endp, 0);
269 if (endp != str && *endp == ',') {
270 str = endp + 1;
271 abits = strtol(str, &endp, 0);
273 if (*endp != 0 || endp == str) {
304 char *str, *endp; local
307 abits = rbits = strtol(str, &endp,
[all...]
/external/qemu/
H A Dd3des.c126 register unsigned long *from, *endp; local
128 from = KnL, endp = &KnL[32];
129 while( from < endp ) *into++ = *from++;
135 register unsigned long *to, *endp; local
137 to = KnL, endp = &KnL[32];
138 while( to < endp ) *to++ = *from++;
/external/wpa_supplicant/
H A Dctrl_iface_unix.c263 char *endp; local
316 gid = strtol(gid_str, &endp, 10);
317 if (*gid_str == '\0' || *endp != '\0') {
/external/wpa_supplicant_6/wpa_supplicant/
H A Dctrl_iface_unix.c275 char *endp; local
328 gid = strtol(gid_str, &endp, 10);
329 if (*gid_str == '\0' || *endp != '\0') {
/external/chromium/third_party/icu/source/test/perf/ubrkperf/
H A Dubrkperfold.cpp258 char *endp; local
259 i = strtol(argv[argNum], &endp, 0);
260 if (endp == argv[argNum]) {
/external/elfutils/src/
H A Dld.c586 char *endp; local
587 ld_state.pagesize = strtoul (arg, &endp, 0);
588 if (*endp != '\0')
590 if (endp[1] == '\0' && tolower (*endp) == 'k')
592 else if (endp[1] == '\0' && tolower (*endp) == 'm')
719 char *endp; local
720 unsigned long int level = strtoul (arg, &endp, 10);
721 if (*endp !
1263 struct pathelement *endp = ld_state.rpath; local
1269 struct pathelement *endp = ld_state.rpath_link; local
1276 struct pathelement *endp = ld_state.runpath; local
1291 struct pathelement *endp = ld_state.runpath_link; local
[all...]
/external/grub/netboot/
H A Dmain.c966 unsigned char *endp; local
978 endp = p + len;
1007 endp = extend;
1013 while (p < endp)
1024 end_of_rfc1533 = endp = p;
1080 extdata = extend = endp;
/external/icu4c/test/perf/ubrkperf/
H A Dubrkperfold.cpp258 char *endp; local
259 i = strtol(argv[argNum], &endp, 0);
260 if (endp == argv[argNum]) {
/external/iproute2/lib/
H A Dutils.c252 char *endp; local
254 n = strtoul(cp, &endp, 0);
258 if (endp == cp) /* no digits */
263 if (*endp == '\0')
266 if (i == 3 || *endp != '.')
268 cp = endp + 1;

Completed in 230 milliseconds

12