Home
last modified time | relevance | path

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

/third_party/openssl/crypto/x509v3/
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 …]
/third_party/libxml2/
Derror.c467 xmlNodePtr baseptr = NULL; in __xmlRaiseError() local
525 baseptr = node; in __xmlRaiseError()
532 if ((baseptr == NULL) && (node != NULL) && in __xmlRaiseError()
534 baseptr = node; in __xmlRaiseError()
552 else if (baseptr != NULL) { in __xmlRaiseError()
559 xmlNodePtr prev = baseptr; in __xmlRaiseError()
583 to->file = (char *) xmlStrdup(baseptr->doc->URL); in __xmlRaiseError()
/third_party/gettext/gnulib-local/lib/libxml/
Derror.c496 xmlNodePtr baseptr = NULL; in __xmlRaiseError() local
554 baseptr = node; in __xmlRaiseError()
561 if ((baseptr == NULL) && (node != NULL) && in __xmlRaiseError()
563 baseptr = node; in __xmlRaiseError()
581 else if (baseptr != NULL) { in __xmlRaiseError()
588 xmlNodePtr prev = baseptr; in __xmlRaiseError()
612 to->file = (char *) xmlStrdup(baseptr->doc->URL); in __xmlRaiseError()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DIntrinsicsAArch64.td720 // ptr1 = tagp(ptr0, baseptr, tag_offset) returns a pointer where
722 // * tag is a function of (tag in baseptr, tag_offset).
723 // Address bits in baseptr and tag bits in ptr0 are ignored.
724 // When offset between ptr0 and baseptr is a compile time constant, this can be emitted as
725 // ADDG ptr1, baseptr, (ptr0 - baseptr), tag_offset
726 // It is intended that ptr0 is an alloca address, and baseptr is the direct output of llvm.aarch64.…