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

1 23 4 5 6 7 8 91011>>

  /external/jhead/
jpgfile.c 201 int cp, ep, size; local
205 ep = ftell(infile);
208 size = ep-cp;
  /external/libpcap/
nametoaddr.c 409 register u_char *ep, *e; local
412 e = ep = (u_char *)malloc(6);
424 *ep++ = d;
435 register struct pcap_etherent *ep; local
450 while ((ep = pcap_next_etherent(fp)) != NULL) {
451 if (strcmp(ep->name, name) == 0) {
454 memcpy(ap, ep->addr, 6);
pcap-win32.c 199 register u_char *bp, *ep; local
235 ep = bp + cc;
255 p->cc = ep - bp;
259 if (bp >= ep)
285 p->cc = ep - bp;
  /external/regex-re2/re2/
onepass.cc 249 const char* ep = text.end(); local
255 for (p = bp; p < ep; p++) {
  /external/tcpdump/
print-ahcp.c 103 ahcp_time_print(netdissect_options *ndo, const u_char *cp, const u_char *ep)
109 if (cp + 4 != ep)
123 ND_TCHECK2(*cp, ep - cp);
131 ahcp_seconds_print(netdissect_options *ndo, const u_char *cp, const u_char *ep)
133 if (cp + 4 != ep)
141 ND_TCHECK2(*cp, ep - cp);
149 ahcp_ipv6_addresses_print(netdissect_options *ndo, const u_char *cp, const u_char *ep)
153 while (cp < ep) {
154 if (cp + 16 > ep)
169 ND_TCHECK2(*cp, ep - cp)
360 const u_char *ep = cp + len; local
    [all...]
print-aoe.c 148 const u_char *ep = cp + len; local
202 ND_TCHECK2(*cp, ep - cp);
212 const u_char *ep = cp + len; local
251 ND_TCHECK2(*cp, ep - cp);
261 const u_char *ep = cp + len; local
302 ND_TCHECK2(*cp, ep - cp);
312 const u_char *ep = cp + len; local
337 ND_TCHECK2(*cp, ep - cp);
348 const u_char *ep = cp + len; local
395 ND_TCHECK2(*cp, ep - cp)
405 const u_char *ep = cp + len; local
    [all...]
print-atalk.c 385 const u_char *ep; local
398 /* ep points to end of available data */
399 ep = ndo->ndo_snapend;
400 if ((const u_char *)tp > ep) {
409 if ((const u_char *)(tp + 1) > ep) {
413 (void)nbp_name_print(ndo, tp, ep);
435 tp = nbp_tuple_print(ndo, tp, ep, snet, snode, skt);
447 register const char *cp, register const u_char *ep)
451 if (cp >= (const char *)ep) {
463 if (cp >= (const char *)ep) {
    [all...]
print-mobility.c 191 const u_char *ep; local
197 /* 'ep' points to the end of available data. */
198 ep = ndo->ndo_snapend;
213 mhlen = ep - bp;
print-esp.c 565 register const u_char *ep; local
593 /* 'ep' points to the end of available data. */
594 ep = ndo->ndo_snapend;
596 if ((u_char *)(esp + 1) >= ep) {
671 if (ep - bp2 < len)
673 if (ep - bp2 > len) {
675 ep = bp2 + len;
681 ep = ep - sa->authlen;
690 EVP_Cipher(&ctx, p + ivlen, p + ivlen, ep - (p + ivlen))
    [all...]
print-pim.c 230 register const u_char *ep; local
233 ep = (const u_char *)ndo->ndo_snapend;
234 if (bp >= ep)
420 register const u_char *ep; local
423 ep = (const u_char *)ndo->ndo_snapend;
424 if (bp >= ep)
627 register const u_char *ep; local
631 ep = (const u_char *)ndo->ndo_snapend;
632 if (bp >= ep)
634 if (ep > bp + len
    [all...]
print-udp.c 194 rtcp_print(netdissect_options *ndo, const u_char *hdr, const u_char *ep)
204 if ((u_char *)(rh + 1) > ep) {
206 return (ep);
219 if ((u_char *)(sr + 1) > ep) {
221 return (ep);
258 if ((u_char *)(rr + 1) > ep) {
260 return (ep);
354 register const u_char *ep = bp + length; local
360 if (ep > ndo->ndo_snapend)
361 ep = ndo->ndo_snapend
    [all...]
  /external/toybox/kconfig/
menu.c 233 struct expr *parentdep, *basedep, *dep, *dep2, **ep; local
332 for (ep = &prop->expr; *ep; ep = &(*ep)->left.expr)
334 *ep = expr_alloc_one(E_CHOICE, NULL);
335 (*ep)->right.sym = menu->sym;
  /external/xmlrpcpp/src/
XmlRpcServerConnection.cpp 81 char *ep = hp + _header.length(); // End of string local
86 for (char *cp = hp; (bp == 0) && (cp < ep); ++cp) {
87 if ((ep - cp > 16) && (strncasecmp(cp, "Content-length: ", 16) == 0))
89 else if ((ep - cp > 12) && (strncasecmp(cp, "Connection: ", 12) == 0))
91 else if ((ep - cp > 4) && (strncmp(cp, "\r\n\r\n", 4) == 0))
93 else if ((ep - cp > 2) && (strncmp(cp, "\n\n", 2) == 0))
  /ndk/sources/host-tools/nawk-20071023/
lex.c 539 char *ep = ebuf; variable
560 if (ep >= ebuf + sizeof ebuf)
561 ep = ebuf;
562 return *ep++ = c;
572 if (--ep < ebuf)
573 ep = ebuf + sizeof(ebuf) - 1;
lib.c 607 extern char ebuf[], *ep;
611 p = ep - 1;
619 for (q=ep-1; q>=p && *q!=' ' && *q!='\t' && *q!='\n'; q--)
625 for ( ; p < ep; p++)
629 if (*ep)
635 ep = ebuf;
685 char *ep; local
687 r = strtod(s, &ep);
688 if (ep == s || r == HUGE_VAL || errno == ERANGE)
690 while (*ep == ' ' || *ep == '\t' || *ep == '\n'
    [all...]
  /system/core/libutils/
ProcessCallStack.cpp 134 struct dirent *ep; local
162 while ((code = readdir_r(dp, &entry, &ep)) == 0 && ep != NULL) {
164 sscanf(ep->d_name, "%d", &tid);
169 __FUNCTION__, PATH_SELF_TASK, ep->d_name);
  /development/ndk/platforms/android-3/include/linux/
usbdevice_fs.h 30 unsigned int ep; member in struct:usbdevfs_bulktransfer
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemApplyTemplates.java 334 ElemParam ep = (ElemParam)elem; local
340 if(ewp.m_qnameID == ep.m_qnameID)
  /external/iputils/ninfod/
ninfod.c 604 char *ep; local
619 val = strtoul(optarg, &ep, 10);
620 if (!optarg || *ep) {
  /external/libopus/tests/
test_opus_api.c 1769 int *ep; local
    [all...]
  /external/libusb/libusb/
core.c 689 const struct libusb_endpoint_descriptor *ep = local
691 if (ep->bEndpointAddress == endpoint)
692 return ep;
719 const struct libusb_endpoint_descriptor *ep; local
729 ep = find_endpoint(config, endpoint);
730 if (!ep)
733 r = ep->wMaxPacketSize;
768 const struct libusb_endpoint_descriptor *ep; local
780 ep = find_endpoint(config, endpoint);
781 if (!ep)
    [all...]
  /external/libusb/libusb/os/
linux_usbfs.h 42 unsigned int ep; member in struct:usbfs_bulktransfer
  /external/opencv3/3rdparty/libtiff/
tif_dir.c 136 const char* ep = s+slen; local
139 for (; cp < ep && *cp != '\0'; cp++) {}
140 if (cp >= ep)
    [all...]
  /external/pdfium/third_party/libtiff/
tif_dir.c 136 const char* ep = s+slen; local
139 for (; cp < ep && *cp != '\0'; cp++) {}
140 if (cp >= ep)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
usbdevice_fs.h 50 unsigned int ep; member in struct:usbdevfs_bulktransfer

Completed in 419 milliseconds

1 23 4 5 6 7 8 91011>>