Home
last modified time | relevance | path

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

/openbsd/lib/libcrypto/x509/
H A Dx509_ncons.c461 char *baseptr = (char *)base->data; in nc_dns() local
465 if (!*baseptr) in nc_dns()
477 if (strcasecmp(baseptr, dnsptr)) in nc_dns()
486 const char *baseptr = (char *)base->data; in nc_email() local
494 if (!baseat && (*baseptr == '.')) { in nc_email()
497 if (!strcasecmp(baseptr, emlptr)) in nc_email()
506 if (baseat != baseptr) { in nc_email()
514 baseptr = baseat + 1; in nc_email()
518 if (strcasecmp(baseptr, emlptr)) in nc_email()
527 const char *baseptr = (char *)base->data; in nc_uri() local
[all …]
/openbsd/usr.bin/rdist/
H A Dcommon.c763 xrealloc(void *baseptr, size_t amt) in xrealloc() argument
767 if ((new = realloc(baseptr, amt)) == NULL) in xrealloc()
/openbsd/gnu/llvm/llvm/include/llvm/IR/
H A DIntrinsicsAArch64.td883 // ptr1 = tagp(ptr0, baseptr, tag_offset) returns a pointer where
885 // * tag is a function of (tag in baseptr, tag_offset).
888 // to tagp with the same pair of (baseptr, tag_offset) will produce pointers
890 // Address bits in baseptr and tag bits in ptr0 are ignored.
891 // When offset between ptr0 and baseptr is a compile time constant, this can be emitted as
892 // ADDG ptr1, baseptr, (ptr0 - baseptr), tag_offset
893 // It is intended that ptr0 is an alloca address, and baseptr is the direct output of llvm.aarch64.…