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

12 3 4 5 6 7 8 91011>>

  /external/tcpdump/
print-rrcp.c 80 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)),
print-dvmrp.c 71 register const u_char *ep; local
74 ep = (const u_char *)ndo->ndo_snapend;
75 if (bp >= ep)
90 if (print_probe(ndo, bp, ep, len) < 0)
98 if (print_report(ndo, bp, ep, len) < 0)
109 if (print_neighbors(ndo, bp, ep, len) < 0)
128 if (print_neighbors2(ndo, bp, ep, len) < 0)
163 register const u_char *bp, register const u_char *ep,
189 if (bp + width + 1 > ep) {
221 register const u_char *bp, register const u_char *ep,
    [all...]
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/vc1/parser/
vc1parse.c 280 vc1_EntryPointHeader ep; local
284 memset(&ep, 0, sizeof(vc1_EntryPointHeader));
287 result = viddec_pm_get_bits(ctxt, &ep.flags, 13);
301 md->PANSCAN_FLAG = ep.ep_flags.PANSCAN_FLAG;
302 md->REFDIST_FLAG = ep.ep_flags.REFDIST_FLAG;
303 md->LOOPFILTER = ep.ep_flags.LOOPFILTER;
304 md->FASTUVMC = ep.ep_flags.FASTUVMC;
305 md->EXTENDED_MV = ep.ep_flags.EXTENDED_MV;
306 md->DQUANT = ep.ep_flags.DQUANT;
307 md->VSTRANSFORM = ep.ep_flags.VSTRANSFORM
    [all...]
  /packages/apps/Email/tests/src/com/android/email/
DBTestHelper.java 235 final EmailProvider ep = new EmailProvider(); local
236 ep.attachInfo(providerContext, null);
237 resolver.addProvider(EmailContent.AUTHORITY, ep);
  /device/google/accessory/arduino/AndroidAccessory/
AndroidAccessory.cpp 148 EP_RECORD *ep; local
162 ep = inEp;
164 ep = outEp;
166 ep = NULL;
168 if (ep) {
169 ep->epAddr = epDesc->bEndpointAddress & 0x7f;
170 ep->Attr = epDesc->bmAttributes;
171 ep->MaxPktSize = epDesc->wMaxPacketSize;
172 ep->sndToggle = bmSNDTOG0;
173 ep->rcvToggle = bmRCVTOG0
    [all...]
  /external/boringssl/src/crypto/asn1/
asn1_par.c 116 const unsigned char *p,*ep,*tot,*op,*opp; local
176 ep=p+len;
197 while (p < ep)
  /external/libedit/src/
map.c 1125 el_bindings_t *bp, *ep; local
1147 el_bindings_t *bp, *ep; local
1253 el_bindings_t *bp, *ep; local
    [all...]
  /external/libpcap/
pcap-snit.c 120 register u_char *bp, *cp, *ep; local
145 ep = bp + cc;
146 while (bp < ep) {
162 p->cc = ep - bp;
200 p->cc = ep - bp;
  /external/libpng/
pngtrans.c 498 png_bytep ep = row + row_info->rowbytes; /* One beyond end of row */ local
501 * it is copied to. ep always points just beyond the end of the row, so
502 * the loop simply copies (channels-1) channels until sp reaches ep.
519 while (sp < ep)
532 while (sp < ep)
559 while (sp < ep)
572 while (sp < ep)
  /external/netperf/src/
dscp.c 139 char *ep = NULL; local
149 val = strtol(cp, &ep, 0);
150 if (*cp == '\0' || *ep != '\0' || val < 0 || val > 255)
  /external/opencv3/3rdparty/libpng/
pngtrans.c 440 png_bytep ep = row + row_info->rowbytes; /* One beyond end of row */ local
443 * it is copied to. ep always points just beyond the end of the row, so
444 * the loop simply copies (channels-1) channels until sp reaches ep.
461 while (sp < ep)
474 while (sp < ep)
501 while (sp < ep)
514 while (sp < ep)
  /external/parameter-framework/asio-1.10.6/include/asio/
basic_socket.hpp 1354 endpoint_type ep = this->get_service().local_endpoint( local
1404 endpoint_type ep = this->get_service().remote_endpoint( local
    [all...]
  /external/pdfium/third_party/lpng_v163/
pngtrans.c 488 png_bytep ep = row + row_info->rowbytes; /* One beyond end of row */ local
491 * it is copied to. ep always points just beyond the end of the row, so
492 * the loop simply copies (channels-1) channels until sp reaches ep.
509 while (sp < ep)
522 while (sp < ep)
549 while (sp < ep)
562 while (sp < ep)
  /external/tcpdump/missing/
getnameinfo.c 226 char *ep = strchr(host, '\0'); local
230 *ep = SCOPE_DELIMITER;
231 if ((if_indextoname(ifindex, ep + 1)) == NULL)
233 strncpy(ep + 1, "???", 3);
  /external/xmlrpcpp/src/
XmlRpcClient.cpp 307 char *ep = hp + _header.length(); // End of string local
311 for (char *cp = hp; (bp == 0) && (cp < ep); ++cp) {
312 if ((ep - cp > 16) && (strncasecmp(cp, "Content-length: ", 16) == 0))
314 else if ((ep - cp > 4) && (strncmp(cp, "\r\n\r\n", 4) == 0))
316 else if ((ep - cp > 2) && (strncmp(cp, "\n\n", 2) == 0))
  /frameworks/base/services/tests/servicestests/src/com/android/server/content/
SyncOperationTest.java 144 SyncStorageEngine.EndPoint ep = new SyncStorageEngine.EndPoint(new Account("name", "type"), local
147 SyncOperation periodic = new SyncOperation(ep, 0, "package", 0, 0, extras, false, true,
  /hardware/invensense/6515/libsensors_iio/
MPLSupport.cpp 291 struct dirent *ep; local
299 while ((ep = readdir (dp))) {
300 if(ep != NULL) {
301 LOGV_IF(0,"file name %s", ep->d_name);
302 if(!strcmp(ep->d_name, ".") || !strcmp(ep->d_name, "..") ||
303 !strcmp(ep->d_name, "uevent") || !strcmp(ep->d_name, "dev") ||
304 !strcmp(ep->d_name, "self_test"))
306 sprintf(full_path, "%s%s%s", sysfs_path, "/", ep->d_name)
    [all...]
  /hardware/invensense/65xx/libsensors_iio/
MPLSupport.cpp 288 struct dirent *ep; local
296 while ((ep = readdir (dp))) {
297 if(ep != NULL) {
298 LOGV_IF(0,"file name %s", ep->d_name);
299 if(!strcmp(ep->d_name, ".") || !strcmp(ep->d_name, "..") ||
300 !strcmp(ep->d_name, "uevent") || !strcmp(ep->d_name, "dev") ||
301 !strcmp(ep->d_name, "self_test"))
303 sprintf(full_path, "%s%s%s", sysfs_path, "/", ep->d_name)
    [all...]
  /development/samples/USB/AdbTest/src/com/android/adb/
AdbDevice.java 58 UsbEndpoint ep = intf.getEndpoint(i); local
59 if (ep.getType() == UsbConstants.USB_ENDPOINT_XFER_BULK) {
60 if (ep.getDirection() == UsbConstants.USB_DIR_OUT) {
61 epOut = ep;
63 epIn = ep;
  /development/samples/USB/MissileLauncher/src/com/android/missilelauncher/
MissileLauncherActivity.java 127 UsbEndpoint ep = intf.getEndpoint(0); local
128 if (ep.getType() != UsbConstants.USB_ENDPOINT_XFER_INT) {
133 mEndpointIntr = ep;
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemCallTemplate.java 153 ElemParam ep = (ElemParam)ete; local
154 if(ep.getName().equals(ewp.getName()))
  /external/boringssl/src/crypto/evp/
p_ec_asn1.c 285 uint8_t *ep, *p; local
310 ep = (uint8_t *)OPENSSL_malloc(eplen);
311 if (!ep) {
316 p = ep;
319 OPENSSL_free(ep);
327 0, ptype, pval, ep, eplen)) {
328 OPENSSL_free(ep);
  /external/dhcpcd-6.8.2/
script.c 549 char **env, **ep, *s; local
562 ep = env;
563 while (*ep)
564 free(*ep++);
621 char **env = NULL, **ep; local
646 ep = realloc(env, sizeof(char *) * (elen + 2 + (svcname ? 1 : 0)));
647 if (ep == NULL) {
651 env = ep;
728 ep = env;
729 while (*ep)
    [all...]
  /external/giflib/
dgif_lib.c 610 ExtensionBlock *ep = &GifFile->SavedImages[ImageIndex].ExtensionBlocks[i]; local
611 if (ep->Function == GRAPHICS_EXT_FUNC_CODE)
612 return DGifExtensionToGCB(ep->ByteCount, ep->Bytes, GCB);
    [all...]
egif_lib.c 676 ExtensionBlock *ep = &GifFile->SavedImages[ImageIndex].ExtensionBlocks[i]; local
677 if (ep->Function == GRAPHICS_EXT_FUNC_CODE) {
678 EGifGCBToExtension(GCB, ep->Bytes);
1057 ExtensionBlock *ep; local
    [all...]

Completed in 1742 milliseconds

12 3 4 5 6 7 8 91011>>