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

12345

/external/tcpdump/
H A Dprint-ah.c47 register const u_char *ep; local
52 ep = snapend; /* 'ep' points to the end of available data. */
63 if (bp + sizeof(struct ah) + sumlen > ep)
H A Dprint-ipcomp.c54 register const u_char *ep; local
63 /* 'ep' points to the end of available data. */
64 ep = snapend;
66 if ((u_char *)(ipcomp + 1) >= ep - sizeof(struct ipcomp)) {
H A Dprint-ether.c82 register const struct ether_header *ep; local
83 ep = (const struct ether_header *)bp;
86 etheraddr_string(ESRC(ep)),
87 etheraddr_string(EDST(ep)));
90 if (ntohs(ep->ether_type) <= ETHERMTU)
94 tok2str(ethertype_values,"Unknown", ntohs(ep->ether_type)),
95 ntohs(ep->ether_type));
97 if (ntohs(ep->ether_type) <= ETHERMTU)
100 (void)printf(", %s", tok2str(ethertype_values,"Unknown Ethertype (0x%04x)", ntohs(ep->ether_type)));
109 struct ether_header *ep; local
[all...]
H A Dprint-lane.c66 register const struct lecdatahdr_8023 *ep; local
68 ep = (const struct lecdatahdr_8023 *)bp;
71 EXTRACT_16BITS(&ep->le_header),
72 etheraddr_string(ep->h_source),
73 etheraddr_string(ep->h_dest),
77 EXTRACT_16BITS(&ep->le_header),
78 etheraddr_string(ep->h_source),
79 etheraddr_string(ep->h_dest),
80 etherproto_string(ep->h_type),
96 struct lecdatahdr_8023 *ep; local
[all...]
H A Dprint-rt6.c48 register const u_char *ep; local
55 /* 'ep' points to the end of available data. */
56 ep = snapend;
86 if ((u_char *)(addr + 1) > ep)
H A Dprint-aodv.c56 aodv_extension(const struct aodv_ext *ep, u_int length) argument
61 switch (ep->type) {
63 if (snapend < (u_char *) ep) {
67 i = min(length, (u_int)(snapend - (u_char *)ep));
73 ah = (void *)ep;
79 printf("\n\text %u %u", ep->type, ep->length);
H A Dprint-dvmrp.c78 register const u_char *ep; local
81 ep = (const u_char *)snapend;
82 if (bp >= ep)
97 if (print_probe(bp, ep, len) < 0)
105 if (print_report(bp, ep, len) < 0)
116 if (print_neighbors(bp, ep, len) < 0)
135 if (print_neighbors2(bp, ep, len) < 0)
169 print_report(register const u_char *bp, register const u_char *ep, argument
195 if (bp + width + 1 > ep) {
226 print_probe(register const u_char *bp, register const u_char *ep, argument
259 print_neighbors(register const u_char *bp, register const u_char *ep, register u_int len) argument
290 print_neighbors2(register const u_char *bp, register const u_char *ep, register u_int len) argument
[all...]
/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/chromium_org/ppapi/native_client/src/untrusted/irt_stub/
H A Dppapi_plugin_start.c34 char **ep = environ; local
35 while (*ep != NULL)
36 ++ep;
37 return (void *) (ep + 1);
/external/openssh/openbsd-compat/
H A Dstrtonum.c38 char *ep; local
55 ll = strtoll(numstr, &ep, 10);
56 if (numstr == ep || *ep != '\0')
H A Dinet_ntop.c118 char *tp, *ep; local
159 ep = tmp + sizeof(tmp);
160 for (i = 0; i < (IN6ADDRSZ / INT16SZ) && tp < ep; i++) {
165 if (tp + 1 >= ep)
173 if (tp + 1 >= ep)
180 if (!inet_ntop4(src+12, tp, (size_t)(ep - tp)))
185 advance = snprintf(tp, ep - tp, "%x", words[i]);
186 if (advance <= 0 || advance >= ep - tp)
192 if (tp + 1 >= ep)
196 if (tp + 1 >= ep)
[all...]
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dptw32_threadStart.c49 ExceptionFilter (EXCEPTION_POINTERS * ep, DWORD * ei) argument
51 switch (ep->ExceptionRecord->ExceptionCode)
56 DWORD numParams = ep->ExceptionRecord->NumberParameters;
62 ei[param] = ep->ExceptionRecord->ExceptionInformation[param];
/external/flac/libFLAC/
H A Dcpu.c142 LONG CALLBACK sigill_handler_sse_os(EXCEPTION_POINTERS *ep) argument
144 if(ep->ExceptionRecord->ExceptionCode == EXCEPTION_ILLEGAL_INSTRUCTION) {
145 ep->ContextRecord->Eip += 3 + 3 + 6;
/external/libppp/src/
H A Dasync.c107 u_char *cp, *sp, *ep; local
120 ep = cp + HDLCSIZE - 10;
127 if (cp >= ep) {
/external/linux-tools-perf/util/
H A Dstrfilter.c77 const char **ep)
141 *ep = s;
146 *ep = s;
153 * Return NULL if fail, and *ep == NULL if memory allocation failed.
158 const char *ep = NULL; local
161 ret->root = strfilter_node__new(rules, &ep);
163 if (!ret || !ret->root || *ep != '\0') {
165 *err = ep;
76 strfilter_node__new(const char *s, const char **ep) argument
/external/openssh/
H A Dmd5crypt.c54 static const char *sp, *ep; local
68 for (ep = sp; *ep != '$'; ep++) {
69 if (*ep == '\0' || ep >= (sp + 8))
74 sl = ep - sp;
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/
H A Dasn1_par.c115 const unsigned char *p,*ep,*tot,*op,*opp; local
168 ep=p+len;
189 while (p < ep)
/external/giflib/
H A Dgifalloc.c223 ExtensionBlock *ep; local
235 ep = &(*ExtensionBlocks)[(*ExtensionBlockCount)++];
237 ep->Function = Function;
238 ep->ByteCount=Len;
239 ep->Bytes = (GifByteType *)malloc(ep->ByteCount);
240 if (ep->Bytes == NULL)
244 memcpy(ep->Bytes, ExtData, Len);
254 ExtensionBlock *ep; local
259 for (ep
[all...]
/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/libpcap/
H A Dpcap-nit.c103 register u_char *bp, *cp, *ep; local
127 ep = bp + cc;
128 while (bp < ep) {
143 p->cc = ep - bp;
185 p->cc = ep - bp;
/external/lzma/CPP/7zip/Compress/
H A DLzmaEncoder.cpp76 HRESULT SetLzmaProp(PROPID propID, const PROPVARIANT &prop, CLzmaEncProps &ep) argument
82 return ParseMatchFinder(prop.bstrVal, &ep.btMode, &ep.numHashBytes) ? S_OK : E_INVALIDARG;
89 case NCoderPropID::kNumFastBytes: ep.fb = v; break;
90 case NCoderPropID::kMatchFinderCycles: ep.mc = v; break;
91 case NCoderPropID::kAlgorithm: ep.algo = v; break;
92 case NCoderPropID::kDictionarySize: ep.dictSize = v; break;
93 case NCoderPropID::kPosStateBits: ep.pb = v; break;
94 case NCoderPropID::kLitPosBits: ep.lp = v; break;
95 case NCoderPropID::kLitContextBits: ep
[all...]
/external/openssl/crypto/asn1/
H A Dasn1_par.c115 const unsigned char *p,*ep,*tot,*op,*opp; local
168 ep=p+len;
189 while (p < ep)
/external/tcpdump/missing/
H A Dgetnameinfo.c231 char *ep = strchr(host, '\0'); local
235 *ep = SCOPE_DELIMITER;
236 if ((if_indextoname(ifindex, ep + 1)) == NULL)
238 strncpy(ep + 1, "???", 3);
/external/chromium_org/chrome/browser/policy/test/
H A Dpolicy_testserver.py87 import chrome_extension_policy_pb2 as ep namespace
233 settings = ep.ExternalPolicyData()
561 settings = ep.ExternalPolicyData()

Completed in 616 milliseconds

12345