Home
last modified time | relevance | path

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

/freebsd/usr.sbin/mptable/
H A Dmptable.c531 int oldtype, entrytype; in MPConfigTableHeader() local
589 oldtype = -1; in MPConfigTableHeader()
593 if (entrytype != oldtype) in MPConfigTableHeader()
595 if (entrytype < oldtype) in MPConfigTableHeader()
599 if (oldtype != MPCT_ENTRY_PROCESSOR) in MPConfigTableHeader()
607 if (oldtype != MPCT_ENTRY_BUS) in MPConfigTableHeader()
614 if (oldtype != MPCT_ENTRY_IOAPIC) in MPConfigTableHeader()
621 if (oldtype != MPCT_ENTRY_INT) in MPConfigTableHeader()
628 if (oldtype != MPCT_ENTRY_LOCAL_INT) in MPConfigTableHeader()
638 oldtype = entrytype; in MPConfigTableHeader()
/freebsd/lib/libthr/thread/
H A Dthr_cancel.c110 _thr_setcanceltype(int type, int *oldtype) in _thr_setcanceltype() argument
128 if (oldtype != NULL) { in _thr_setcanceltype()
129 *oldtype = oldval ? PTHREAD_CANCEL_ASYNCHRONOUS : in _thr_setcanceltype()
/freebsd/crypto/heimdal/lib/asn1/
H A Dasn1parse.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()
H A Dasn1parse.c268 static Type *new_tag(int tagclass, int tagvalue, int tagenv, Type *oldtype);
2779 new_tag(int tagclass, int tagvalue, int tagenv, Type *oldtype) in new_tag()
2782 if(oldtype->type == TTag && oldtype->tag.tagenv == TE_IMPLICIT) { in new_tag()
2783 t = oldtype; in new_tag()
2784 oldtype = oldtype->subtype; /* XXX */ in new_tag()
2791 t->subtype = oldtype;
2776 new_tag(int tagclass,int tagvalue,int tagenv,Type * oldtype) new_tag() argument
/freebsd/sys/contrib/openzfs/include/sys/
H A Ddsl_dir.h177 dd_used_t oldtype, dd_used_t newtype, dmu_tx_t *tx);
180 dd_used_t oldtype, dd_used_t newtype, dmu_tx_t *tx);
/freebsd/sys/contrib/openzfs/module/zfs/
H A Ddsl_dir.c1597 dd_used_t oldtype, dd_used_t newtype, dmu_tx_t *tx) in dsl_dir_transfer_space() argument
1600 ASSERT(oldtype < DD_USED_NUM); in dsl_dir_transfer_space()
1611 ddp->dd_used_breakdown[oldtype] >= delta : in dsl_dir_transfer_space()
1614 ddp->dd_used_breakdown[oldtype] -= delta; in dsl_dir_transfer_space()
1622 dd_used_t oldtype, dd_used_t newtype, dmu_tx_t *tx) in dsl_dir_diduse_transfer_space() argument
1627 ASSERT(oldtype < DD_USED_NUM); in dsl_dir_diduse_transfer_space()
1645 ddp->dd_used_breakdown[oldtype] >= tonew - used); in dsl_dir_diduse_transfer_space()
1648 ddp->dd_used_breakdown[oldtype] -= tonew - used; in dsl_dir_diduse_transfer_space()
/freebsd/usr.sbin/bsdinstall/partedit/
H A Dgpart_ops.c553 const char *errstr, *oldtype, *scheme; in gpart_edit() local
632 oldtype = gc->lg_val; in gpart_edit()
708 items[2].value, (strcmp(oldtype, items[0].value) != 0) ? in gpart_edit()
713 if (strcmp(oldtype, items[0].value) != 0 && cp != NULL) in gpart_edit()
715 if (strcmp(oldtype, items[0].value) != 0 && strcmp(items[0].value, in gpart_edit()
/freebsd/sys/fs/smbfs/
H A Dsmbfs_vnops.c973 int oldtype = fl->l_type; in smbfs_advlock() local
977 fl->l_type = oldtype; in smbfs_advlock()
/freebsd/contrib/sendmail/src/
H A Dqueue.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/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_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));