Home
last modified time | relevance | path

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

/freebsd-13.1/usr.sbin/mptable/
H A Dmptable.c535 int oldtype, entrytype; in MPConfigTableHeader() local
595 oldtype = -1; in MPConfigTableHeader()
599 if (entrytype != oldtype) in MPConfigTableHeader()
601 if (entrytype < oldtype) in MPConfigTableHeader()
605 if (oldtype != MPCT_ENTRY_PROCESSOR) in MPConfigTableHeader()
613 if (oldtype != MPCT_ENTRY_BUS) in MPConfigTableHeader()
620 if (oldtype != MPCT_ENTRY_IOAPIC) in MPConfigTableHeader()
627 if (oldtype != MPCT_ENTRY_INT) in MPConfigTableHeader()
634 if (oldtype != MPCT_ENTRY_LOCAL_INT) in MPConfigTableHeader()
644 oldtype = entrytype; in MPConfigTableHeader()
/freebsd-13.1/lib/libthr/thread/
H A Dthr_cancel.c113 _thr_setcanceltype(int type, int *oldtype) in _thr_setcanceltype() argument
131 if (oldtype) { in _thr_setcanceltype()
132 *oldtype = oldval ? PTHREAD_CANCEL_ASYNCHRONOUS : in _thr_setcanceltype()
/freebsd-13.1/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);
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.1/sys/contrib/openzfs/include/sys/
H A Ddsl_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.1/usr.sbin/bsdinstall/partedit/
H A Dgpart_ops.c511 const char *errstr, *oldtype, *scheme; in gpart_edit() local
588 oldtype = gc->lg_val; in gpart_edit()
657 items[2].text, (strcmp(oldtype, items[0].text) != 0) ? in gpart_edit()
661 if (strcmp(oldtype, items[0].text) != 0 && cp != NULL) in gpart_edit()
663 if (strcmp(oldtype, items[0].text) != 0 && strcmp(items[0].text, in gpart_edit()
/freebsd-13.1/sys/contrib/openzfs/module/zfs/
H A Ddsl_dir.c1577 dd_used_t oldtype, dd_used_t newtype, dmu_tx_t *tx) in dsl_dir_transfer_space() argument
1580 ASSERT(oldtype < DD_USED_NUM); in dsl_dir_transfer_space()
1591 ddp->dd_used_breakdown[oldtype] >= delta : in dsl_dir_transfer_space()
1594 ddp->dd_used_breakdown[oldtype] -= delta; in dsl_dir_transfer_space()
1602 dd_used_t oldtype, dd_used_t newtype, dmu_tx_t *tx) in dsl_dir_diduse_transfer_space() argument
1607 ASSERT(oldtype < DD_USED_NUM); in dsl_dir_diduse_transfer_space()
1625 ddp->dd_used_breakdown[oldtype] >= tonew - used); in dsl_dir_diduse_transfer_space()
1628 ddp->dd_used_breakdown[oldtype] -= tonew - used; in dsl_dir_diduse_transfer_space()
/freebsd-13.1/sys/fs/smbfs/
H A Dsmbfs_vnops.c1096 int oldtype = fl->l_type; local
1100 fl->l_type = oldtype;
/freebsd-13.1/contrib/sendmail/src/
H A Dqueue.c8698 int oldtype; local
8710 oldtype = queue_letter(e, ANYQFL_LETTER);
8914 if (oldtype == newtype)
8943 if (oldtype == newtype)
8975 if (!failing && oldtype != newtype)
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc6563 INTERCEPTOR(int, pthread_setcanceltype, int type, int *oldtype) {
6565 COMMON_INTERCEPTOR_ENTER(ctx, pthread_setcanceltype, type, oldtype);
6566 int res = REAL(pthread_setcanceltype)(type, oldtype);
6567 if (res == 0 && oldtype != nullptr)
6568 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, oldtype, sizeof(*oldtype));