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

12345

/external/elfutils/libdw/
H A Ddwarf_formblock.c45 const unsigned char *endp = attr->cu->endp; local
50 if (unlikely (endp - datap < 1))
57 if (unlikely (endp - datap < 2))
64 if (unlikely (endp - datap < 4))
72 if (unlikely (endp - datap < 1))
74 get_uleb128 (return_block->length, datap, endp);
83 if (unlikely (return_block->length > (size_t) (endp - return_block->data)))
H A Ddwarf_formsdata.c45 const unsigned char *endp = attr->cu->endp; local
50 if (datap + 1 > endp)
60 if (datap + 2 > endp)
66 if (datap + 4 > endp)
72 if (datap + 8 > endp)
78 if (datap + 1 > endp)
80 get_sleb128 (*return_sval, datap, endp);
84 if (datap + 1 > endp)
86 get_uleb128 (*return_sval, datap, endp);
[all...]
H A Ddwarf_formref.c42 const unsigned char *endp = attr->cu->endp; local
53 if (datap + 1 > endp)
63 if (datap + 2 > endp)
69 if (datap + 4 > endp)
75 if (datap + 8 > endp)
81 if (datap + 1 > endp)
83 get_uleb128 (*return_offset, datap, endp);
H A Ddwarf_getstring.c54 const char *endp = memchr (result, '\0', local
56 if (endp == NULL)
60 *lenp = endp - result;
H A Ddwarf_hasattr.c56 unsigned char *const endp local
64 if (unlikely (attrp >= endp))
69 get_uleb128 (attr_name, attrp, endp);
71 if (unlikely (attrp >= endp))
73 get_uleb128 (attr_form, attrp, endp);
H A Ddwarf_siblingof.c62 unsigned char *endp = sibattr.cu->endp; local
81 size_t size = sibattr.cu->endp - sibattr.cu->startp;
104 if (addr >= endp)
128 if (addr >= endp)
H A Dlibdw_form.c46 const unsigned char *endp = cu->endp; local
70 if (unlikely ((size_t) (endp - startp) < 1))
76 if (unlikely ((size_t) (endp - startp) < 2))
82 if (unlikely ((size_t) (endp - startp) < 4))
89 get_uleb128 (u128, valp, endp);
96 (size_t) (endp - startp));
106 get_uleb128 (u128, valp, endp);
111 get_uleb128 (u128, valp, endp);
124 if (unlikely (result > (size_t) (endp
[all...]
H A Ddwarf_formudata.c81 unsigned char *endp = d->d_buf + d->d_size; local
82 if (unlikely (readp >= endp))
90 *endpp = endp;
103 const unsigned char *endp = attr->cu->endp; local
108 if (datap + 1 > endp)
118 if (datap + 2 > endp)
213 if (datap + 1 > endp)
215 get_sleb128 (*return_uval, datap, endp);
219 if (datap + 1 > endp)
[all...]
H A Ddwarf_getattrs.c65 const unsigned char *endp; local
66 endp = ((const unsigned char *) dbg->sectiondata[IDX_debug_abbrev]->d_buf
71 if (unlikely (attrp >= endp))
78 get_uleb128 (attr.code, attrp, endp);
79 if (unlikely (attrp >= endp))
81 get_uleb128 (attr.form, attrp, endp);
H A Ddwarf_child.c59 unsigned char *const endp local
67 if (unlikely (attrp >= endp))
70 get_uleb128 (attr_name, attrp, endp);
72 if (unlikely (attrp >= endp))
75 get_uleb128 (attr_form, attrp, endp);
149 const unsigned char *endp = cu->endp; local
152 if (unlikely (code >= endp)) /* Truncated section. */
H A Ddwarf_getpubnames.c52 unsigned char *endp = readp + dbg->sectiondata[IDX_debug_pubnames]->d_size; local
54 while (readp + 14 < endp)
188 unsigned char *endp local
201 if (readp + dbg->pubnames_sets[cnt].address_len > endp)
216 readp = (unsigned char *) memchr (gl.name, '\0', endp - readp);
H A Dencoded-value.h88 const unsigned char *endp = cache->data->d.d_buf + cache->data->d.d_size; local
93 if (unlikely (*addrp + 4 > endp))
103 if (unlikely (*addrp + 8 > endp))
156 const unsigned char *endp = cache->data->d.d_buf + cache->data->d.d_size; local
160 if (unlikely (*p + 2 > endp))
170 if (unlikely (*p + 2 > endp))
198 get_uleb128 (value, *p, endp);
202 get_sleb128 (value, *p, endp);
H A Ddwarf_ranges.c38 - If it's normal range record, set up `*beginp' and `*endp' and return 0.
45 Dwarf_Addr *beginp, Dwarf_Addr *endp,
79 *endp = end;
86 Dwarf_Addr *startp, Dwarf_Addr *endp)
93 && INTUSE(dwarf_highpc) (die, endp) == 0
190 *endp = *basep + end;
43 __libdw_read_begin_end_pair_inc(Dwarf *dbg, int sec_index, unsigned char **addrp, int width, Dwarf_Addr *beginp, Dwarf_Addr *endp, Dwarf_Addr *basep) argument
85 dwarf_ranges(Dwarf_Die *die, ptrdiff_t offset, Dwarf_Addr *basep, Dwarf_Addr *startp, Dwarf_Addr *endp) argument
/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.c69 char *endp; local
70 uintmax_t addr = strtoumax (argv[remaining], &endp, 0);
71 if (endp != argv[remaining])
H A Daddrscopes.c169 char *endp; local
170 uintmax_t addr = strtoumax (buf, &endp, 0);
171 if (endp != buf)
183 char *endp; local
184 uintmax_t addr = strtoumax (argv[remaining], &endp, 0);
185 if (endp != argv[remaining])
/external/iproute2/lib/
H A Dmpls_pton.c13 char *endp; local
19 label = strtoul(name, &endp, 0);
24 if (endp == name) /* no digits */
28 if (*endp == '\0') {
34 if (*endp != '/')
37 name = endp + 1;
/external/syslinux/gpxe/src/core/
H A Dmisc.c36 unsigned long strtoul ( const char *p, char **endp, int base ) { argument
70 if ( endp )
71 *endp = ( char * ) p;
/external/curl/lib/
H A Dstrtoofft.c215 CURLofft curlx_strtoofft(const char *str, char **endp, int base, argument
228 if(endp)
229 *endp = (char *)str; /* didn't actually move */
233 if(endp)
234 *endp = end;
H A Dinet_pton.c155 unsigned char tmp[IN6ADDRSZ], *tp, *endp, *colonp; local
161 endp = tp + IN6ADDRSZ;
191 if(tp + INT16SZ > endp)
199 if(ch == '.' && ((tp + INADDRSZ) <= endp) &&
208 if(tp + INT16SZ > endp)
221 if(tp == endp)
224 *(endp - i) = *(colonp + n - i);
227 tp = endp;
229 if(tp != endp)
/external/dtc/tests/
H A Dsw_tree1.c105 char *endp; local
107 size = strtoul(argv[1], &endp, 0);
108 if (*endp == '\0')
/external/tcpdump/
H A Dstrtoaddr.c161 u_char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
167 endp = tp + NS_IN6ADDRSZ;
197 if (tp + NS_INT16SZ > endp)
205 if (ch == '.' && ((tp + NS_INADDRSZ) <= endp) &&
214 if (tp + NS_INT16SZ > endp)
227 if (tp == endp)
230 endp[- i] = colonp[n - i];
233 tp = endp;
235 if (tp != endp)
/external/icu/icu4c/source/samples/coll/
H A Dcoll.cpp118 char *endp; local
119 int i = strtol(argv[argNum], &endp, 0);
120 if (endp == argv[argNum]) {
/external/libvncserver/common/
H A Dmd5.c305 const md5_uint32 *endp = words + nwords; local
320 while (words < endp)
/external/ltp/testcases/kernel/io/ltp-aiodio/
H A Daiodio_sparse.c222 char *endp; local
231 alignment = strtol(optarg, &endp, 0);
233 *endp);
236 writesize = strtol(optarg, &endp, 0);
238 (int)scale_by_kmg((long long)writesize, *endp);
241 filesize = strtol(optarg, &endp, 0);
243 (int)scale_by_kmg((long long)filesize, *endp);

Completed in 4554 milliseconds

12345