Home
last modified time | relevance | path

Searched refs:hptr (Results 1 – 10 of 10) sorted by relevance

/external/linux-kselftest/tools/testing/selftests/vm/
Dvirtual_address_range.c100 char *hptr[NR_CHUNKS_HIGH]; in main() local
121 hptr[i] = mmap(hint, MAP_CHUNK_SIZE, PROT_READ | PROT_WRITE, in main()
124 if (hptr[i] == MAP_FAILED) in main()
127 if (validate_addr(hptr[i], 1)) in main()
136 munmap(hptr[i], MAP_CHUNK_SIZE); in main()
/external/llvm-project/libc/AOR_v20.02/networking/test/
Dchksum.c42 const uint16_t *may_alias hptr = ptr; in checksum_simple() local
48 sum += *hptr++; in checksum_simple()
54 sum += *(uint8_t *) hptr; in checksum_simple()
/external/arm-optimized-routines/networking/test/
Dchksum.c41 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()
/external/llvm-project/llvm/test/CodeGen/ARM/
Dcmse-clear-float-hard.ll812 define half @h1(half (half)* nocapture %hptr) "cmse_nonsecure_entry" nounwind {
887 %call = call half %hptr(half 10.0) nounwind
891 define half @h2(half (half)* nocapture %hptr) nounwind {
966 %call = call half %hptr(half 10.0) "cmse_nonsecure_call" nounwind
970 define half @h3(half (half)* nocapture %hptr) nounwind {
1045 %call = tail call half %hptr(half 10.0) "cmse_nonsecure_call" nounwind
1049 define half @h4(half ()* nocapture %hptr) nounwind {
1093 %call = call half %hptr() "cmse_nonsecure_call" nounwind
1097 define half @h1_minsize(half (half)* nocapture %hptr) "cmse_nonsecure_entry" minsize nounwind {
1164 %call = call half %hptr(half 10.0) nounwind
[all …]
/external/e2fsprogs/misc/
Dfuse2fs.c202 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()
/external/llvm-project/clang/test/SemaCXX/
Dconstexpr-builtin-bit-cast.cpp197 constexpr has_pointer hptr = __builtin_bit_cast(has_pointer, 0ul); in bad_types() local
/external/mksh/src/
Dedit.c5095 char *hptr; in grabhist() local
5105 if ((hptr = *histpos()) == NULL) { in grabhist()
5111 if ((vs->linelen = strlen(hptr)) >= vs->cbufsize) in grabhist()
5113 memmove(vs->cbuf, hptr, vs->linelen); in grabhist()
5122 char *hptr; in grabsearch() local
5144 hptr = *histpos(); in grabsearch()
5145 if ((vs->linelen = strlen(hptr)) >= vs->cbufsize) in grabsearch()
5147 memmove(vs->cbuf, hptr, vs->linelen); in grabsearch()
/external/pcre/dist2/src/
Dpcre2_compile.c1625 PCRE2_SPTR hptr = ptr + 1; in PRIV() local
1628 while (hptr < ptrend && (xc = XDIGIT(*hptr)) != 0xff) in PRIV()
1633 ptr = hptr; /* Show where */ in PRIV()
1637 hptr++; in PRIV()
1640 if (hptr == ptr + 1 || /* No hex digits */ in PRIV()
1641 hptr >= ptrend || /* Hit end of input */ in PRIV()
1642 *hptr != CHAR_RIGHT_CURLY_BRACKET) /* No } terminator */ in PRIV()
1646 ptr = hptr + 1; in PRIV()
/external/python/cpython2/Modules/
Dsocketmodule.c4169 char *hptr, *pptr; local
4184 hptr = NULL;
4189 hptr = PyString_AsString(idna);
4191 hptr = PyString_AsString(hobj);
4228 error = getaddrinfo(hptr, pptr, &hints, &res0);
/external/python/cpython3/Modules/
Dsocketmodule.c6505 const char *hptr, *pptr; local
6519 hptr = NULL;
6525 hptr = PyBytes_AS_STRING(idna);
6527 hptr = PyBytes_AsString(hobj);
6573 error = getaddrinfo(hptr, pptr, &hints, &res0);