Searched refs:hptr (Results 1 – 8 of 8) sorted by relevance
/third_party/optimized-routines/networking/test/ |
D | chksum.c | 41 const uint16_t *may_alias hptr = ptr; in checksum_simple() local 47 sum += *hptr++; in checksum_simple() 53 sum += *(uint8_t *) hptr; in checksum_simple()
|
/third_party/ejdb/src/bindings/ejdb2_dart/lib/ |
D | ejdb2_dart.c | 634 int64_t hptr = 0; in ejd_exec_check() local 636 EJTH(Dart_GetNativeIntegerArgument(args, 1, &hptr)); in ejd_exec_check() 639 if (hptr < 1) { in ejd_exec_check() 643 QCTX qctx = (void*) hptr; in ejd_exec_check() 863 static iwrc ejdb2_isolate_shared_open(const EJDB_OPTS *opts, EJDB2Handle **hptr) { in ejdb2_isolate_shared_open() argument 880 *hptr = h; in ejdb2_isolate_shared_open() 904 *hptr = h; in ejdb2_isolate_shared_open()
|
/third_party/boost/boost/asio/detail/impl/ |
D | socket_ops.ipp | 3427 hostent* hptr = socket_ops::gethostbyname(sptr->host, 3429 if (hptr == 0) 3451 && hints.ai_family != hptr->h_addrtype) 3455 socket_ops::freehostent(hptr); 3460 if (host != 0 && host[0] != '\0' && hptr->h_name && hptr->h_name[0] 3463 std::size_t canon_len = strlen(hptr->h_name) + 1; 3468 socket_ops::freehostent(hptr); 3471 gai_strcpy(canon, hptr->h_name, canon_len); 3475 for (char** ap = hptr->h_addr_list; *ap; ++ap) 3477 rc = gai_aistruct(&ainext, &hints, *ap, hptr->h_addrtype); [all …]
|
/third_party/e2fsprogs/misc/ |
D | fuse2fs.c | 202 unsigned char *hptr; in fuse_to_ext4_acl() local 215 hptr = (unsigned char *) (h + 1); in fuse_to_ext4_acl() 217 e = (ext4_acl_entry *) hptr; in fuse_to_ext4_acl() 225 hptr += sizeof(ext4_acl_entry); in fuse_to_ext4_acl() 231 hptr += sizeof(ext4_acl_entry_short); in fuse_to_ext4_acl() 255 unsigned char *hptr; in ext4_to_fuse_acl() local 269 hptr = (unsigned char *) (eacl + 1); in ext4_to_fuse_acl() 271 e = (ext4_acl_entry *) hptr; in ext4_to_fuse_acl() 279 hptr += sizeof(ext4_acl_entry); in ext4_to_fuse_acl() 285 hptr += sizeof(ext4_acl_entry_short); in ext4_to_fuse_acl()
|
/third_party/mksh/ |
D | edit.c | 5091 char *hptr; in grabhist() local 5101 if ((hptr = *histpos()) == NULL) { in grabhist() 5107 if ((vs->linelen = strlen(hptr)) >= vs->cbufsize) in grabhist() 5109 memmove(vs->cbuf, hptr, vs->linelen); in grabhist() 5118 char *hptr; in grabsearch() local 5140 hptr = *histpos(); in grabsearch() 5141 if ((vs->linelen = strlen(hptr)) >= vs->cbufsize) in grabsearch() 5143 memmove(vs->cbuf, hptr, vs->linelen); in grabsearch()
|
/third_party/pcre2/pcre2/src/ |
D | pcre2_compile.c | 1642 PCRE2_SPTR hptr = ptr + 1; in PRIV() local 1645 while (hptr < ptrend && (xc = XDIGIT(*hptr)) != 0xff) in PRIV() 1650 ptr = hptr; /* Show where */ in PRIV() 1654 hptr++; in PRIV() 1657 if (hptr == ptr + 1 || /* No hex digits */ in PRIV() 1658 hptr >= ptrend || /* Hit end of input */ in PRIV() 1659 *hptr != CHAR_RIGHT_CURLY_BRACKET) /* No } terminator */ in PRIV() 1663 ptr = hptr + 1; in PRIV()
|
/third_party/uboot/u-boot-2020.01/fs/yaffs2/ |
D | yaffsfs.c | 261 static int yaffsfs_NewHandle(struct yaffsfs_Handle **hptr) in yaffsfs_NewHandle() argument 272 if (hptr) in yaffsfs_NewHandle() 273 *hptr = h; in yaffsfs_NewHandle()
|
/third_party/python/Modules/ |
D | socketmodule.c | 6506 const char *hptr, *pptr; local 6520 hptr = NULL; 6526 hptr = PyBytes_AS_STRING(idna); 6528 hptr = PyBytes_AsString(hobj); 6574 error = getaddrinfo(hptr, pptr, &hints, &res0);
|