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

1234

/external/elfutils/src/libdw/
H A Ddwarf_formblock.c47 const unsigned char *endp = attr->cu->endp; local
52 if (unlikely (endp - datap < 1))
59 if (unlikely (endp - datap < 2))
66 if (unlikely (endp - datap < 4))
74 if (unlikely (endp - datap < 1))
76 get_uleb128 (return_block->length, datap, endp);
85 if (unlikely (return_block->length > (size_t) (endp - return_block->data)))
H A Ddwarf_formref.c43 const unsigned char *endp = attr->cu->endp; local
54 if (datap + 1 > endp)
64 if (datap + 2 > endp)
70 if (datap + 4 > endp)
76 if (datap + 8 > endp)
82 if (datap + 1 > endp)
84 get_uleb128 (*return_offset, datap, endp);
H A Ddwarf_formsdata.c47 const unsigned char *endp = attr->cu->endp; local
52 if (datap + 1 > endp)
62 if (datap + 2 > endp)
68 if (datap + 4 > endp)
74 if (datap + 8 > endp)
80 if (datap + 1 > endp)
82 get_sleb128 (*return_sval, datap, endp);
86 if (datap + 1 > endp)
88 get_uleb128 (*return_sval, datap, endp);
[all...]
H A Ddwarf_getstring.c57 const char *endp = memchr (result, '\0', local
59 if (endp == NULL)
63 *lenp = endp - result;
H A Ddwarf_hasattr.c58 unsigned char *const endp local
66 if (unlikely (attrp >= endp))
71 get_uleb128 (attr_name, attrp, endp);
73 if (unlikely (attrp >= endp))
75 get_uleb128 (attr_form, attrp, endp);
H A Ddwarf_siblingof.c65 unsigned char *endp = sibattr.cu->endp; local
97 if (addr >= endp)
121 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;
105 const unsigned char *endp = attr->cu->endp; local
110 if (datap + 1 > endp)
120 if (datap + 2 > endp)
215 if (datap + 1 > endp)
217 get_sleb128 (*return_uval, datap, endp);
221 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);
151 const unsigned char *endp = cu->endp; local
154 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)
189 unsigned char *endp local
202 if (readp + dbg->pubnames_sets[cnt].address_len > endp)
217 readp = (unsigned char *) memchr (gl.name, '\0', endp - readp);
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
187 *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/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/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/src/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.c168 char *endp; local
169 uintmax_t addr = strtoumax (buf, &endp, 0);
170 if (endp != buf)
182 char *endp; local
183 uintmax_t addr = strtoumax (argv[remaining], &endp, 0);
184 if (endp != argv[remaining])
/external/jetty/src/java/org/eclipse/jetty/io/
H A DAbstractConnection.java34 public AbstractConnection(EndPoint endp) argument
36 _endp=(EndPoint)endp;
40 public AbstractConnection(EndPoint endp,long timestamp) argument
42 _endp=(EndPoint)endp;
/external/jetty/src/java/org/eclipse/jetty/client/
H A DAsyncHttpConnection.java47 AsyncHttpConnection(Buffers requestBuffers, Buffers responseBuffers, EndPoint endp) argument
49 super(requestBuffers,responseBuffers,endp);
50 _asyncEndp=(AsyncEndPoint)endp;
/external/jetty/src/java/org/eclipse/jetty/websocket/
H A DWebSocketGeneratorD00.java42 public WebSocketGeneratorD00(WebSocketBuffers buffers, EndPoint endp) argument
45 _endp=endp;
H A DWebSocketGeneratorD06.java45 public WebSocketGeneratorD06(WebSocketBuffers buffers, EndPoint endp) argument
48 _endp=endp;
52 public WebSocketGeneratorD06(WebSocketBuffers buffers, EndPoint endp, MaskGen maskGen) argument
55 _endp=endp;
H A DWebSocketParserD00.java60 * @param endp the endpoint
63 public WebSocketParserD00(WebSocketBuffers buffers, EndPoint endp, FrameHandler handler) argument
66 _endp=endp;
/external/tcpdump/
H A Dprint-cdp.c253 const u_char *endp = p + l; local
264 while (p < endp && num >= 0) {
266 if (p + 2 > endp)
273 if (p + pl + 2 > endp)
286 if (p + 4 > endp)
304 if (p + al > endp)
318 if (p + pl > endp)
324 if (p + 2 > endp)
330 if (p + al > endp)
/external/elfutils/src/lib/
H A Dsha1.c232 const sha1_uint32 *endp = words + nwords; local
248 while (words < endp)

Completed in 923 milliseconds

1234