HomeSort by: relevance | last modified time | path
    Searched refs:baseptr (Results 1 - 9 of 9) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/crypto/x509/
v3_ncons.c 623 char *baseptr = (char *)base->data;
639 if (*baseptr != '.' && dnsptr[-1] != '.')
643 if (ia5ncasecmp(baseptr, dnsptr, base->length))
659 char *baseptr = NULL;
672 baseptr = OPENSSL_strndup((char *)base->data, base->length);
673 if (baseptr == NULL)
691 if (*baseptr == '.') {
693 if (ossl_a2ulabel(baseptr, ulabel + 1, size - 1) <= 0) {
708 if (ossl_a2ulabel(baseptr, ulabel, size) <= 0) {
722 OPENSSL_free(baseptr);
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/x509/
v3_ncons.c 602 char *baseptr = (char *)base->data;
618 if (*baseptr != '.' && dnsptr[-1] != '.')
622 if (ia5ncasecmp(baseptr, dnsptr, base->length))
639 char *baseptr = NULL;
652 baseptr = OPENSSL_strndup((char *)base->data, base->length);
653 if (baseptr == NULL)
672 if (*baseptr == '.') {
675 if (ossl_a2ulabel(baseptr, ulabel + 1, &size) <= 0) {
690 if (ossl_a2ulabel(baseptr, ulabel, &size) <= 0) {
704 OPENSSL_free(baseptr);
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/x509v3/
v3_ncons.c 552 char *baseptr = (char *)base->data;
568 if (*baseptr != '.' && dnsptr[-1] != '.')
572 if (ia5ncasecmp(baseptr, dnsptr, base->length))
581 const char *baseptr = (char *)base->data;
590 if (!baseat && base->length > 0 && (*baseptr == '.')) {
593 if (ia5ncasecmp(baseptr, emlptr, base->length) == 0)
602 if (baseat != baseptr) {
603 if ((baseat - baseptr) != (emlat - emlptr))
605 if (memchr(baseptr, 0, baseat - baseptr) ||
    [all...]
  /src/external/bsd/top/dist/machine/
m_irix5.c 616 void getptable (baseptr)
617 struct prpsinfo *baseptr;
664 currproc = baseptr;
674 currproc = &baseptr[numprocs];
741 for (i = 0, currproc = baseptr;
m_irixsgi.c 210 void getptable(struct prpsinfo *baseptr);
946 getptable(struct prpsinfo *baseptr)
999 currproc = baseptr;
1007 currproc = baseptr + numprocs;
1092 for (i = 0, currproc = baseptr; i < nproc; i++, currproc++) {
m_svr4.c 626 getptable (struct prpsinfo *baseptr)
639 currproc = &baseptr[numprocs];
m_svr5.c 939 getptable (struct prpsinfo *baseptr)
945 currproc = baseptr;
972 ((char *)baseptr + sizeof(psinfo_t) * numprocs);
m_sunos5.c 1898 getptable (struct prpsinfo *baseptr)
  /src/sys/kern/
subr_thmap.c 185 #define THMAP_GETPTR(th, p) ((void *)((th)->baseptr + (uintptr_t)(p)))
186 #define THMAP_GETOFF(th, p) ((thmap_ptr_t)((uintptr_t)(p) - (th)->baseptr))
240 uintptr_t baseptr; member in struct:thmap
1016 thmap_create(uintptr_t baseptr, const thmap_ops_t *ops, unsigned flags)
1024 if (!THMAP_ALIGNED_P(baseptr)) {
1028 thmap->baseptr = baseptr;

Completed in 27 milliseconds