Searched defs:ep (Results 1 - 25 of 135) sorted by relevance

123456

/external/bison/lib/
H A Dunsetenv.c60 char **ep; local
72 ep = __environ;
73 while (*ep != NULL)
74 if (!strncmp (*ep, name, len) && (*ep)[len] == '=')
77 char **dp = ep;
85 ++ep;
/external/tcpdump/
H A Dprint-ah.c40 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)
H A Dprint-ipcomp.c46 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)) {
H A Dprint-loopback.c60 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);
H A Dprint-rt6.c44 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)
H A Dprint-ether.c93 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...]
H A Dprint-openflow.c79 of_header_body_print(netdissect_options *ndo, const u_char *cp, const u_char *ep) argument
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);
H A Dprint-zeromq.c79 zmtp1_print_frame(netdissect_options *ndo, const u_char *cp, const u_char *ep) argument
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);
H A Dprint-rrcp.c80 register const struct ether_header *ep; local
84 ep = (const struct ether_header *)cp;
92 etheraddr_string(ndo, ESRC(ep)),
93 etheraddr_string(ndo, EDST(ep)),
/external/dhcpcd-6.8.2/compat/
H A Dstrtoi.c40 char *ep; local
44 endptr = &ep;
80 char *ep; local
84 endptr = &ep;
/external/strace/tests/
H A Dfork-f.c43 int main(int ac, char **av, char **ep) argument
H A Dvfork-f.c44 int main(int ac, char **av, char **ep) argument
/external/libpng/contrib/tools/
H A Dcvtcolor.c36 char *ep; local
37 unsigned long c = strtoul(arg, &ep, 0);
39 if (ep <= arg || *ep || c > 65535 || (issRGB && c > 255))
/external/parameter-framework/asio/include/asio/ip/
H A Dbasic_resolver_entry.hpp48 basic_resolver_entry(const endpoint_type& ep, argument
50 : endpoint_(ep),
/external/parameter-framework/asio-1.10.6/include/asio/ip/
H A Dbasic_resolver_entry.hpp48 basic_resolver_entry(const endpoint_type& ep, argument
50 : endpoint_(ep),
/external/libpng/contrib/examples/
H A Diccfrompng.c107 const char *ep = strrchr(filename, '.'); local
109 if (ep != NULL)
110 len = ep-filename;
/external/opencv3/3rdparty/libtiff/
H A Dtif_packbits.c69 uint8* ep; local
77 ep = tif->tif_rawdata + tif->tif_rawdatasize;
88 if (op + 2 >= ep) { /* insure space for new data */
/external/pdfium/third_party/libtiff/
H A Dtif_packbits.c69 uint8* ep; local
77 ep = tif->tif_rawdata + tif->tif_rawdatasize;
88 if (op + 2 >= ep) { /* insure space for new data */
/external/boringssl/src/crypto/asn1/
H A Dasn1_par.c116 const unsigned char *p,*ep,*tot,*op,*opp; local
176 ep=p+len;
197 while (p < ep)
/external/iptables/extensions/
H A Dlibip6t_dst.c35 char* ep; local
37 id = strtoul(idstr, &ep, 0);
39 if ( idstr == ep ) {
48 if ( *idstr != '\0' && *ep != '\0' ) {
H A Dlibip6t_hbh.c37 char* ep; local
39 id = strtoul(idstr,&ep,0) ;
41 if ( idstr == ep ) {
50 if ( *idstr != '\0' && *ep != '\0' ) {
/external/libedit/src/
H A Demacs.c287 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/
H A Ddlpisubs.c126 u_char *ep, *pk; local
136 ep = bufp + len;
140 while (bufp < ep) {
156 p->cc = ep - bufp;
193 p->cc = ep - bufp;
H A Dpcap-nit.c107 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/lzma/CPP/7zip/Compress/
H A DLzmaEncoder.cpp76 #define SET_PROP_32(_id_, _dest_) case NCoderPropID::_id_: ep._dest_ = v; break;
78 HRESULT SetLzmaProp(PROPID propID, const PROPVARIANT &prop, CLzmaEncProps &ep) argument
84 return ParseMatchFinder(prop.bstrVal, &ep.btMode, &ep.numHashBytes) ? S_OK : E_INVALIDARG;
91 ep.reduceSize = prop.uhVal.QuadPart;
99 case NCoderPropID::kDefaultProp: if (v > 31) return E_INVALIDARG; ep.dictSize = (UInt32)1 << (unsigned)v; break;

Completed in 918 milliseconds

123456