HomeSort by relevance Sort by last modified time
    Searched defs:ep (Results 1 - 25 of 282) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/dhcpcd-6.8.2/compat/
strtoi.c 40 char *ep; local
44 endptr = &ep;
80 char *ep; local
84 endptr = &ep;
  /external/tcpdump/
print-ah.c 40 register const u_char *ep; local
45 ep = ndo->ndo_snapend; /* 'ep' points to the end of available data. */
56 if (bp + sizeof(struct ah) + sumlen > ep)
print-ipcomp.c 46 register const u_char *ep; local
55 /* 'ep' points to the end of available data. */
56 ep = ndo->ndo_snapend;
58 if ((u_char *)(ipcomp + 1) >= ep - sizeof(struct ipcomp)) {
print-ether.c 93 register const struct ether_header *ep; local
96 ep = (const struct ether_header *)bp;
99 etheraddr_string(ndo, ESRC(ep)),
100 etheraddr_string(ndo, EDST(ep))));
102 ether_type = EXTRACT_16BITS(&ep->ether_type);
131 struct ether_header *ep; local
150 ep = (struct ether_header *)p;
153 ether_type = EXTRACT_16BITS(&ep->ether_type);
161 if (llc_print(ndo, p, length, caplen, ESRC(ep), EDST(ep),
    [all...]
print-loopback.c 60 const u_char *ep = cp + len; local
102 ND_TCHECK2(*cp, ep - cp);
111 const u_char *ep = cp + len; local
131 ND_TCHECK2(*cp, ep - cp);
print-openflow.c 79 of_header_body_print(netdissect_options *ndo, const u_char *cp, const u_char *ep)
85 if (ep < cp + OF_HEADER_LEN)
116 return of10_header_body_print(ndo, cp, ep, type, length, xid);
125 ND_TCHECK2(*cp, ep - cp);
126 return ep;
129 return ep;
137 const u_char *ep = cp + len; local
140 while (cp < ep)
141 cp = of_header_body_print(ndo, cp, ep);
print-rt6.c 44 register const u_char *ep; local
52 /* 'ep' points to the end of available data. */
53 ep = ndo->ndo_snapend;
83 if ((u_char *)(addr + 1) > ep)
print-zeromq.c 79 zmtp1_print_frame(netdissect_options *ndo, const u_char *cp, const u_char *ep)
107 body_len_captured = ep - cp - header_len;
139 return ep;
145 const u_char *ep = min(ndo->ndo_snapend, cp + len); local
148 while (cp < ep)
149 cp = zmtp1_print_frame(ndo, cp, ep);
214 const u_char *ep = min(ndo->ndo_snapend, cp + len); local
217 while (cp < ep)
218 cp = zmtp1_print_frame(ndo, cp, ep);
  /external/bison/lib/
unsetenv.c 60 char **ep; local
72 ep = __environ;
73 while (*ep != NULL)
74 if (!strncmp (*ep, name, len) && (*ep)[len] == '=')
77 char **dp = ep;
85 ++ep;
  /bionic/libc/dns/resolv/
res_mkquery.c 128 register u_char *cp, *ep; local
151 ep = buf + buflen;
162 if (ep - cp < QFIXEDSZ)
164 if ((n = dn_comp(dname, cp, ep - cp - QFIXEDSZ, dnptrs,
178 if ((ep - cp) < RRFIXEDSZ)
180 n = dn_comp((const char *)data, cp, ep - cp - RRFIXEDSZ,
200 if (ep - cp < 1 + RRFIXEDSZ + datalen)
238 register u_char *cp, *ep; local
248 ep = buf + buflen;
250 if ((ep - cp) < 1 + RRFIXEDSZ
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/net/
inet_ntop.c 104 char *tp, *ep; local
145 ep = tmp + sizeof(tmp);
146 for (i = 0; i < (IN6ADDRSZ / INT16SZ) && tp < ep; i++) {
151 if (tp + 1 >= ep) {
161 if (tp + 1 >= ep) {
170 if (!inet_ntop4(src+12, tp, (size_t)(ep - tp)))
175 advance = snprintf(tp, ep - tp, "%x", words[i]);
176 if (advance <= 0 || advance >= ep - tp) {
184 if (tp + 1 >= ep) {
190 if (tp + 1 >= ep) {
    [all...]
  /external/libpng/contrib/tools/
cvtcolor.c 36 char *ep; local
37 unsigned long c = strtoul(arg, &ep, 0);
39 if (ep <= arg || *ep || c > 65535 || (issRGB && c > 255))
  /system/core/toolbox/upstream-netbsd/lib/libc/gen/
getbsize.c 58 char *ep, *p; local
67 if ((n = strtol(p, &ep, 10)) < 0)
71 if (*ep && ep[1])
73 switch (*ep) {
  /toolchain/binutils/binutils-2.25/libiberty/
setenv.c 87 register char **ep = 0; local
97 for (ep = __environ; *ep != NULL; ++ep)
98 if (!strncmp (*ep, name, namelen) && (*ep)[namelen] == '=')
104 if (__environ == NULL || *ep == NULL)
143 size_t len = strlen (*ep);
153 *ep = new_string;
155 memcpy (*ep, name, namelen)
169 char **ep; local
    [all...]
  /external/iptables/extensions/
libip6t_dst.c 35 char* ep; local
37 id = strtoul(idstr, &ep, 0);
39 if ( idstr == ep ) {
48 if ( *idstr != '\0' && *ep != '\0' ) {
libip6t_hbh.c 37 char* ep; local
39 id = strtoul(idstr,&ep,0) ;
41 if ( idstr == ep ) {
50 if ( *idstr != '\0' && *ep != '\0' ) {
  /external/libpng/contrib/examples/
iccfrompng.c 107 const char *ep = strrchr(filename, '.'); local
109 if (ep != NULL)
110 len = ep-filename;
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
mktemp.c 47 char *start, *cp, *ep; local
59 ep = path + len - slen;
61 for (start = ep; start > path && start[-1] == 'X'; start--)
63 if (ep - start < MIN_X) {
86 for (i = 0; i < nitems(rbuf) && cp != ep; i++)
88 } while (cp != ep);
  /external/giflib/
gifalloc.c 230 ExtensionBlock *ep; local
246 ep = &(*ExtensionBlocks)[(*ExtensionBlockCount)++];
248 ep->Function = Function;
249 ep->ByteCount=Len;
250 ep->Bytes = (GifByteType *)malloc(ep->ByteCount);
251 if (ep->Bytes == NULL)
255 memcpy(ep->Bytes, ExtData, Len);
265 ExtensionBlock *ep; local
270 for (ep = *ExtensionBlocks
    [all...]
  /external/libedit/src/
emacs.c 287 Char *cp, *ep; local
289 ep = c__next_word(el->el_line.cursor, el->el_line.lastchar,
292 for (cp = el->el_line.cursor; cp < ep; cp++)
296 el->el_line.cursor = ep;
311 Char *cp, *ep; local
313 ep = c__next_word(el->el_line.cursor, el->el_line.lastchar,
316 for (cp = el->el_line.cursor; cp < ep; cp++) {
324 for (; cp < ep; cp++)
328 el->el_line.cursor = ep;
343 Char *cp, *ep; local
    [all...]
  /external/libpcap/
dlpisubs.c 126 u_char *ep, *pk; local
136 ep = bufp + len;
140 while (bufp < ep) {
156 p->cc = ep - bufp;
193 p->cc = ep - bufp;
pcap-nit.c 107 register u_char *bp, *cp, *ep; local
131 ep = bp + cc;
132 while (bp < ep) {
147 p->cc = ep - bp;
189 p->cc = ep - bp;
  /external/opencv3/3rdparty/libtiff/
tif_packbits.c 69 uint8* ep; local
77 ep = tif->tif_rawdata + tif->tif_rawdatasize;
88 if (op + 2 >= ep) { /* insure space for new data */
  /external/parameter-framework/asio-1.10.6/include/asio/
basic_socket_acceptor.hpp 868 endpoint_type ep = this->get_service().local_endpoint( local
871 return ep;
    [all...]
  /external/pdfium/third_party/libtiff/
tif_packbits.c 69 uint8* ep; local
77 ep = tif->tif_rawdata + tif->tif_rawdatasize;
88 if (op + 2 >= ep) { /* insure space for new data */

Completed in 713 milliseconds

1 2 3 4 5 6 7 8 91011>>