Home
last modified time | relevance | path

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

/freebsd-13-stable/usr.sbin/mptable/
HDmptable.c530 int oldtype, entrytype; in MPConfigTableHeader() local
590 oldtype = -1; in MPConfigTableHeader()
594 if (entrytype != oldtype) in MPConfigTableHeader()
596 if (entrytype < oldtype) in MPConfigTableHeader()
600 if (oldtype != MPCT_ENTRY_PROCESSOR) in MPConfigTableHeader()
608 if (oldtype != MPCT_ENTRY_BUS) in MPConfigTableHeader()
615 if (oldtype != MPCT_ENTRY_IOAPIC) in MPConfigTableHeader()
622 if (oldtype != MPCT_ENTRY_INT) in MPConfigTableHeader()
629 if (oldtype != MPCT_ENTRY_LOCAL_INT) in MPConfigTableHeader()
639 oldtype = entrytype; in MPConfigTableHeader()
/freebsd-13-stable/lib/libthr/thread/
HDthr_cancel.c110 _thr_setcanceltype(int type, int *oldtype) in _thr_setcanceltype() argument
128 if (oldtype) { in _thr_setcanceltype()
129 *oldtype = oldval ? PTHREAD_CANCEL_ASYNCHRONOUS : in _thr_setcanceltype()
/freebsd-13-stable/crypto/heimdal/lib/asn1/
HDasn1parse.y54 static Type *new_tag(int tagclass, int tagvalue, int tagenv, Type *oldtype);
953 new_tag(int tagclass, int tagvalue, int tagenv, Type *oldtype) in new_tag() argument
956 if(oldtype->type == TTag && oldtype->tag.tagenv == TE_IMPLICIT) { in new_tag()
957 t = oldtype; in new_tag()
958 oldtype = oldtype->subtype; /* XXX */ in new_tag()
965 t->subtype = oldtype; in new_tag()
HDasn1parse.c268 static Type *new_tag(int tagclass, int tagvalue, int tagenv, Type *oldtype);
2776 new_tag(int tagclass, int tagvalue, int tagenv, Type *oldtype) in new_tag() argument
2779 if(oldtype->type == TTag && oldtype->tag.tagenv == TE_IMPLICIT) { in new_tag()
2780 t = oldtype; in new_tag()
2781 oldtype = oldtype->subtype; /* XXX */ in new_tag()
2788 t->subtype = oldtype; in new_tag()
/freebsd-13-stable/sys/contrib/openzfs/include/sys/
HDdsl_dir.h176 dd_used_t oldtype, dd_used_t newtype, dmu_tx_t *tx);
179 dd_used_t oldtype, dd_used_t newtype, dmu_tx_t *tx);
/freebsd-13-stable/usr.sbin/bsdinstall/partedit/
HDgpart_ops.c525 const char *errstr, *oldtype, *scheme; in gpart_edit() local
602 oldtype = gc->lg_val; in gpart_edit()
673 items[2].text, (strcmp(oldtype, items[0].text) != 0) ? in gpart_edit()
678 if (strcmp(oldtype, items[0].text) != 0 && cp != NULL) in gpart_edit()
680 if (strcmp(oldtype, items[0].text) != 0 && strcmp(items[0].text, in gpart_edit()
/freebsd-13-stable/sys/contrib/openzfs/module/zfs/
HDdsl_dir.c1586 dd_used_t oldtype, dd_used_t newtype, dmu_tx_t *tx) in dsl_dir_transfer_space() argument
1589 ASSERT(oldtype < DD_USED_NUM); in dsl_dir_transfer_space()
1600 ddp->dd_used_breakdown[oldtype] >= delta : in dsl_dir_transfer_space()
1603 ddp->dd_used_breakdown[oldtype] -= delta; in dsl_dir_transfer_space()
1611 dd_used_t oldtype, dd_used_t newtype, dmu_tx_t *tx) in dsl_dir_diduse_transfer_space() argument
1616 ASSERT(oldtype < DD_USED_NUM); in dsl_dir_diduse_transfer_space()
1634 ddp->dd_used_breakdown[oldtype] >= tonew - used); in dsl_dir_diduse_transfer_space()
1637 ddp->dd_used_breakdown[oldtype] -= tonew - used; in dsl_dir_diduse_transfer_space()
/freebsd-13-stable/sys/fs/smbfs/
HDsmbfs_vnops.c966 int oldtype = fl->l_type; in smbfs_advlock() local
970 fl->l_type = oldtype; in smbfs_advlock()
/freebsd-13-stable/contrib/sendmail/src/
HDqueue.c8761 int oldtype; local
8773 oldtype = queue_letter(e, ANYQFL_LETTER);
8976 if (oldtype == newtype)
9005 if (oldtype == newtype)
9037 if (!failing && oldtype != newtype)
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
HDsanitizer_common_interceptors.inc6631 INTERCEPTOR(int, pthread_setcanceltype, int type, int *oldtype) {
6633 COMMON_INTERCEPTOR_ENTER(ctx, pthread_setcanceltype, type, oldtype);
6634 int res = REAL(pthread_setcanceltype)(type, oldtype);
6635 if (res == 0 && oldtype != nullptr)
6636 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, oldtype, sizeof(*oldtype));