/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.conv/ |
H A D | p2.cpp | 36 const int *icp = ctcv; local
|
/external/clang/test/SemaCXX/ |
H A D | reinterpret-cast.cpp | 60 int const *icp = reinterpret_cast<int const*>(ipppc); local 62 (void)reinterpret_cast<int*>(icp); // expected-error {{reinterpret_cast from 'const int *' to 'int *' casts away qualifiers}}
|
H A D | cstyle-cast.cpp | 196 int const *icp = (int const*)(ipppc); local 197 (void)(int*)(icp); // const_cast appended
|
H A D | functional-cast.cpp | 265 int const *icp = icp_t(ipppc); local 267 (void)intp(icp); // const_cast appended
|
/external/pdfium/fpdfsdk/src/pdfwindow/ |
H A D | PWL_Signature.cpp | 138 PWL_CREATEPARAM icp = cp; local 139 icp.pParentWnd = this; 140 icp.dwFlags = PWS_CHILD | PWS_VISIBLE; 141 icp.sTextColor = CPWL_Color(COLORTYPE_GRAY, 0); 142 m_pImage->Create(icp);
|
H A D | PWL_IconList.cpp | 143 PWL_CREATEPARAM icp = cp; local 144 icp.pParentWnd = this; 145 icp.dwFlags = PWS_CHILD | PWS_VISIBLE | PWS_NOREFRESHCLIP; 146 pNewItem->Create(icp);
|
H A D | PWL_Note.cpp | 391 PWL_CREATEPARAM icp = GetCreationParam(); local 392 icp.pParentWnd = this; 393 icp.dwFlags = PWS_CHILD | PWS_VISIBLE | PWS_BACKGROUND; 394 pNoteItem->Create(icp); 1238 PWL_CREATEPARAM icp = cp; local 1239 icp.pParentWnd = this; 1240 icp.dwFlags = PWS_VISIBLE | PWS_CHILD; 1241 m_pIcon->Create(icp);
|
/external/iputils/ |
H A D | clockdiff.c | 137 struct icmphdr *icp = (struct icmphdr *) packet; local 226 icp = (struct icmphdr *)(packet + (ip->ihl << 2)); 227 if( icp->type == ICMP_TIMESTAMPREPLY && 228 icp->un.echo.id == id && icp->un.echo.sequence >= seqno0 && 229 icp->un.echo.sequence <= seqno) { 230 if (acked < icp->un.echo.sequence) 231 acked = icp->un.echo.sequence; 235 sendtime = ntohl(*(__u32*)(icp+1)); 245 histime = ntohl(((__u32*)(icp 314 struct icmphdr *icp = (struct icmphdr *) packet; local [all...] |
H A D | traceroute6.c | 828 struct icmp6_hdr *icp; local 831 icp = (struct icmp6_hdr *) buf; 833 type = icp->icmp6_type; 834 code = icp->icmp6_code; 843 hip = (struct ip6_hdr *) (icp + 1); 873 p = (unsigned char *) (icp + 1); 880 icp->icmp6_code);
|
H A D | ping.c | 103 static void pr_icmph(__u8 type, __u8 code, __u32 info, struct icmphdr *icp); 720 struct icmphdr *icp; local 724 icp = (struct icmphdr *)outpack; 725 icp->type = ICMP_ECHO; 726 icp->code = 0; 727 icp->checksum = 0; 728 icp->un.echo.sequence = htons(ntransmitted+1); 729 icp->un.echo.id = ident; /* ID */ 737 memcpy(icp+1, &tmp_tv, sizeof(tmp_tv)); 739 memset(icp 778 struct icmphdr *icp = (struct icmphdr *)_icp; local 787 struct icmphdr *icp; local 987 pr_icmph(__u8 type, __u8 code, __u32 info, struct icmphdr *icp) argument [all...] |
H A D | rdisc.c | 543 struct icmphdr *icp = (struct icmphdr *) ALLIGN(outpack); local 550 icp->type = ICMP_ROUTER_SOLICITATION; 551 icp->code = 0; 552 icp->checksum = 0; 553 icp->un.gateway = 0; /* Reserved */ 557 icp->checksum = in_cksum( (u_short *)icp, packetlen ); 723 struct icmphdr *icp; local 736 icp = (struct icmphdr *)ALLIGN(buf + hlen); 738 switch (icp [all...] |
/external/dhcpcd-6.8.2/ |
H A D | ipv6nd.c | 726 struct icmp6_hdr *icp, size_t len) 801 nd_ra = (struct nd_router_advert *)icp; 806 memcmp(rap->data, (unsigned char *)icp, rap->data_len) != 0)) 842 memcpy(rap->data, icp, len); 868 p = ((uint8_t *)icp) + sizeof(struct nd_router_advert); 1553 struct icmp6_hdr *icp, size_t len) 1576 nd_na = (struct nd_neighbor_advert *)icp; 1636 struct icmp6_hdr *icp; local 1696 icp = (struct icmp6_hdr *)ctx->rcvhdr.msg_iov[0].iov_base; 1697 if (icp 725 ipv6nd_handlera(struct dhcpcd_ctx *dctx, struct interface *ifp, struct icmp6_hdr *icp, size_t len) argument 1552 ipv6nd_handlena(struct dhcpcd_ctx *dctx, struct interface *ifp, struct icmp6_hdr *icp, size_t len) argument [all...] |
/external/tcpdump/ |
H A D | print-icmp6.c | 625 static int icmp6_cksum(const struct ip6_hdr *ip6, const struct icmp6_hdr *icp, argument 628 return nextproto6_cksum(ip6, (const uint8_t *)(void *)icp, len, len, 1426 struct icmp6_hdr *icp = (struct icmp6_hdr *) bp; local 1436 ND_TCHECK(icp->icmp6_data16[1]); 1437 ngroups = EXTRACT_16BITS(&icp->icmp6_data16[1]); 1484 struct icmp6_hdr *icp = (struct icmp6_hdr *) bp; local 1495 ND_TCHECK(icp->icmp6_data16[0]); 1496 mrc = EXTRACT_16BITS(&icp->icmp6_data16[0]);
|
/external/robolectric/v3/runtime/ |
H A D | shadows-core-3.1-SNAPSHOT-16.jar | META-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ... |
H A D | shadows-core-3.1-SNAPSHOT-17.jar | META-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ... |
H A D | shadows-core-3.1-SNAPSHOT-18.jar | META-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ... |
H A D | shadows-core-3.1-SNAPSHOT-19.jar | META-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ... |
H A D | shadows-core-3.1-SNAPSHOT-21.jar | META-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ... |
H A D | shadows-core-3.1-SNAPSHOT-22.jar | META-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ... |
H A D | android-all-4.4_r1-robolectric-1.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ... |
H A D | android-all-5.0.0_r2-robolectric-1.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ... |
H A D | android-all-5.1.1_r9-robolectric-1.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ... |
H A D | android-all-4.1.2_r1-robolectric-0.jar | META-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ... |
H A D | android-all-4.2.2_r1.2-robolectric-0.jar | META-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ... |
/external/caliper/lib/ |
H A D | jersey-core-1.11.jar | META-INF/MANIFEST.MF META-INF/ META-INF/jersey-module-version META- ... |