Home
last modified time | relevance | path

Searched refs:baseptr (Results 1 – 9 of 9) sorted by relevance

/netbsd-src/crypto/external/bsd/openssl/dist/crypto/x509/
H A Dv3_ncons.c602 char *baseptr = (char *)base->data; in nc_dns() local
618 if (*baseptr != '.' && dnsptr[-1] != '.') in nc_dns()
622 if (ia5ncasecmp(baseptr, dnsptr, base->length)) in nc_dns()
639 char *baseptr = NULL; in nc_email_eai() local
652 baseptr = OPENSSL_strndup((char *)base->data, base->length); in nc_email_eai()
653 if (baseptr == NULL) in nc_email_eai()
672 if (*baseptr == '.') { in nc_email_eai()
675 if (ossl_a2ulabel(baseptr, ulabel + 1, &size) <= 0) { in nc_email_eai()
690 if (ossl_a2ulabel(baseptr, ulabel, &size) <= 0) { in nc_email_eai()
704 OPENSSL_free(baseptr); in nc_email_eai()
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/x509v3/
H A Dv3_ncons.c552 char *baseptr = (char *)base->data; in nc_dns() local
568 if (*baseptr != '.' && dnsptr[-1] != '.') in nc_dns()
572 if (ia5ncasecmp(baseptr, dnsptr, base->length)) in nc_dns()
581 const char *baseptr = (char *)base->data; in nc_email() local
590 if (!baseat && base->length > 0 && (*baseptr == '.')) { in nc_email()
593 if (ia5ncasecmp(baseptr, emlptr, base->length) == 0) in nc_email()
602 if (baseat != baseptr) { in nc_email()
603 if ((baseat - baseptr) != (emlat - emlptr)) in nc_email()
605 if (memchr(baseptr, 0, baseat - baseptr) || in nc_email()
609 if (strncmp(baseptr, emlptr, emlat - emlptr)) in nc_email()
[all …]
/netbsd-src/external/bsd/top/dist/machine/
H A Dm_irix5.c616 void getptable (baseptr) in getptable() argument
617 struct prpsinfo *baseptr; in getptable()
664 currproc = baseptr;
674 currproc = &baseptr[numprocs];
741 for (i = 0, currproc = baseptr;
H A Dm_irixsgi.c210 void getptable(struct prpsinfo *baseptr);
946 getptable(struct prpsinfo *baseptr) in getptable() argument
999 currproc = baseptr; in getptable()
1007 currproc = baseptr + numprocs; in getptable()
1092 for (i = 0, currproc = baseptr; i < nproc; i++, currproc++) { in getptable()
H A Dm_svr4.c626 getptable (struct prpsinfo *baseptr) in getptable() argument
639 currproc = &baseptr[numprocs]; in getptable()
H A Dm_svr5.c939 getptable (struct prpsinfo *baseptr) in getptable() argument
945 currproc = baseptr; in getptable()
972 ((char *)baseptr + sizeof(psinfo_t) * numprocs); in getptable()
H A Dm_sunos5.c1898 getptable (struct prpsinfo *baseptr) in getptable() argument
/netbsd-src/sys/kern/
H A Dsubr_thmap.c175 #define THMAP_GETPTR(th, p) ((void *)((th)->baseptr + (uintptr_t)(p)))
176 #define THMAP_GETOFF(th, p) ((thmap_ptr_t)((uintptr_t)(p) - (th)->baseptr))
230 uintptr_t baseptr; member
1006 thmap_create(uintptr_t baseptr, const thmap_ops_t *ops, unsigned flags) in thmap_create() argument
1014 if (!THMAP_ALIGNED_P(baseptr)) { in thmap_create()
1018 thmap->baseptr = baseptr; in thmap_create()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DIntrinsicsAArch64.td865 // ptr1 = tagp(ptr0, baseptr, tag_offset) returns a pointer where
867 // * tag is a function of (tag in baseptr, tag_offset).
870 // to tagp with the same pair of (baseptr, tag_offset) will produce pointers
872 // Address bits in baseptr and tag bits in ptr0 are ignored.
873 // When offset between ptr0 and baseptr is a compile time constant, this can be emitted as
874 // ADDG ptr1, baseptr, (ptr0 - baseptr), tag_offset
875 // It is intended that ptr0 is an alloca address, and baseptr is the direct output of llvm.aarch64.…