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

123456

/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-openflow.c54 of_header_body_print(const u_char *cp, const u_char *ep) { argument
59 if (ep < cp + OF_HEADER_LEN)
90 return of10_header_body_print(cp, ep, type, length, xid);
99 TCHECK2(*cp, ep - cp);
100 return ep;
103 return ep;
110 const u_char *ep = cp + len; local
113 while (cp < ep)
114 cp = of_header_body_print(cp, ep);
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-zeromq.c78 zmtp1_print_frame(const u_char *cp, const u_char *ep) { argument
105 body_len_captured = ep - cp - header_len;
137 return ep;
142 const u_char *ep = MIN(snapend, cp + len); local
145 while (cp < ep)
146 cp = zmtp1_print_frame(cp, ep);
209 const u_char *ep = MIN(snapend, cp + len); local
212 while (cp < ep)
213 cp = zmtp1_print_frame(cp, 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-ether.c98 register const struct ether_header *ep; local
101 ep = (const struct ether_header *)bp;
104 etheraddr_string(ESRC(ep)),
105 etheraddr_string(EDST(ep))));
107 ether_type = EXTRACT_16BITS(&ep->ether_type);
136 struct ether_header *ep; local
155 ep = (struct ether_header *)p;
158 ether_type = EXTRACT_16BITS(&ep->ether_type);
166 if (llc_print(p, length, caplen, ESRC(ep), EDST(ep),
[all...]
H A Dprint-rrcp.c91 register const struct ether_header *ep; local
95 ep = (const struct ether_header *)cp;
103 etheraddr_string(ESRC(ep)),
104 etheraddr_string(EDST(ep)),
/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/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/chromium_org/mojo/system/
H A Dmessage_pipe_test_utils.cc108 void MultiprocessMessagePipeTestBase::Init(scoped_refptr<ChannelEndpoint> ep) { argument
109 channel_thread_.Start(helper_.server_platform_handle.Pass(), ep);
H A Dmessage_pipe_perftest.cc113 scoped_refptr<ChannelEndpoint> ep; local
114 scoped_refptr<MessagePipe> mp(MessagePipe::CreateLocalProxy(&ep));
115 channel_thread.Start(client_platform_handle.Pass(), ep);
160 scoped_refptr<ChannelEndpoint> ep; local
161 scoped_refptr<MessagePipe> mp(MessagePipe::CreateLocalProxy(&ep));
162 Init(ep);
H A Dmultiprocess_message_pipe_unittest.cc51 scoped_refptr<ChannelEndpoint> ep; local
52 scoped_refptr<MessagePipe> mp(MessagePipe::CreateLocalProxy(&ep));
53 channel_thread.Start(client_platform_handle.Pass(), ep);
107 scoped_refptr<ChannelEndpoint> ep; local
108 scoped_refptr<MessagePipe> mp(MessagePipe::CreateLocalProxy(&ep));
109 Init(ep);
152 scoped_refptr<ChannelEndpoint> ep; local
153 scoped_refptr<MessagePipe> mp(MessagePipe::CreateLocalProxy(&ep));
154 Init(ep);
219 scoped_refptr<ChannelEndpoint> ep; local
319 scoped_refptr<ChannelEndpoint> ep; local
415 scoped_refptr<ChannelEndpoint> ep; local
474 scoped_refptr<ChannelEndpoint> ep; local
[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/libpng/contrib/examples/
H A Diccfrompng.c103 const char *ep = strrchr(filename, '.'); local
105 if (ep != NULL)
106 len = ep-filename;
/external/linux-tools-perf/perf-3.12.0/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/chromium_org/third_party/boringssl/src/crypto/asn1/
H A Dasn1_par.c114 const unsigned char *p,*ep,*tot,*op,*opp; local
167 ep=p+len;
188 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/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 Dpcap-nit.c111 register u_char *bp, *cp, *ep; local
135 ep = bp + cc;
136 while (bp < ep) {
151 p->cc = ep - bp;
193 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...]

Completed in 371 milliseconds

123456