Symbol: type1
include/ssp/string.h
60
#define __ssp_bos_icheck3_restrict(fun, type1, type2) \
include/ssp/string.h
61
static __inline type1 __ ## fun ## _ichk(type1 __restrict, type2 __restrict, size_t); \
include/ssp/string.h
62
static __inline __attribute__((__always_inline__)) type1 \
include/ssp/string.h
63
__ ## fun ## _ichk(type1 __restrict dst, type2 __restrict src, size_t len) { \
include/ssp/string.h
67
#define __ssp_bos_icheck3(fun, type1, type2) \
include/ssp/string.h
68
static __inline type1 __ ## fun ## _ichk(type1, type2, size_t); \
include/ssp/string.h
69
static __inline __attribute__((__always_inline__)) type1 \
include/ssp/string.h
70
__ ## fun ## _ichk(type1 dst, type2 src, size_t len) { \
include/ssp/string.h
74
#define __ssp_bos_icheck2_restrict(fun, type1, type2) \
include/ssp/string.h
75
static __inline type1 __ ## fun ## _ichk(type1, type2); \
include/ssp/string.h
76
static __inline __attribute__((__always_inline__)) type1 \
include/ssp/string.h
77
__ ## fun ## _ichk(type1 __restrict dst, type2 __restrict src) { \
lib/libform/field_types.c
250
link_fieldtype(FIELDTYPE *type1, FIELDTYPE *type2)
lib/libform/field_types.c
254
if ((type1 == NULL) || (type2 == NULL))
lib/libform/field_types.c
261
new->flags |= ((type1->flags & _TYPE_HAS_ARGS)
lib/libform/field_types.c
268
new->link->prev = type1;
lib/libform/field_types.c
270
type1->refcount++;
sys/arch/hpcmips/stand/pbsdboot/main.c
406
int type0, type1;
sys/arch/hpcmips/stand/pbsdboot/main.c
418
return (types[i].type1);
sys/arch/hpcmips/stand/pbsdboot/main.c
420
if (types[i].type1 == type) {
sys/arch/x86/x86/mtrr_i686.c
659
i686_mtrr_conflict(uint8_t type1, uint8_t type2)
sys/arch/x86/x86/mtrr_i686.c
661
if (type1 == MTRR_TYPE_UC || type2 == MTRR_TYPE_UC)
sys/arch/x86/x86/mtrr_i686.c
663
if ((type1 == MTRR_TYPE_WT && type2 == MTRR_TYPE_WB) ||
sys/arch/x86/x86/mtrr_i686.c
664
(type1 == MTRR_TYPE_WB && type2 == MTRR_TYPE_WT))
sys/dev/ic/isp_library.c
1569
ISP_IOXGET_16(isp, &src->un.type1.ridacq_vp_count, dst->un.type1.ridacq_vp_count);
sys/dev/ic/isp_library.c
1570
ISP_IOXGET_8(isp, &src->un.type1.ridacq_vp_index, dst->un.type1.ridacq_vp_index);
sys/dev/ic/isp_library.c
1571
ISP_IOXGET_8(isp, &src->un.type1.ridacq_vp_status, dst->un.type1.ridacq_vp_status);
sys/dev/ic/ispmbox.h
1424
} type1; /* type 1 */
sys/kern/subr_device.c
100
if (type1 > type2) {
sys/kern/subr_device.c
105
if (type1 == DEVHANDLE_TYPE_PRIVATE) {
sys/kern/subr_device.c
87
devhandle_type_t type1 = devhandle_type(handle1);
sys/kern/subr_device.c
90
if (type1 == DEVHANDLE_TYPE_INVALID) {
sys/kern/subr_device.c
97
if (type1 < type2) {
sys/sys/sdt.h
180
#define DTRACE_PROBE2(name, type0, arg0, type1, arg1) do \
sys/sys/sdt.h
184
#define DTRACE_PROBE3(name, type0, arg0, type1, arg1, type2, arg2) do \
sys/sys/sdt.h
189
#define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, \
sys/sys/sdt.h
195
#define DTRACE_PROBE5(name, type0, arg0, type1, arg1, type2, arg2, type3, \
sys/sys/sdt.h
414
#define DTRACE_PROBE2(name, type0, arg0, type1, arg1) \
sys/sys/sdt.h
417
SDT_PROBE_ARGTYPE(sdt, , , name, 1, #type1, NULL); \
sys/sys/sdt.h
420
#define DTRACE_PROBE3(name, type0, arg0, type1, arg1, type2, arg2) \
sys/sys/sdt.h
423
SDT_PROBE_ARGTYPE(sdt, , , name, 1, #type1, NULL); \
sys/sys/sdt.h
427
#define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, \
sys/sys/sdt.h
431
SDT_PROBE_ARGTYPE(sdt, , , name, 1, #type1, NULL); \
sys/sys/sdt.h
436
#define DTRACE_PROBE5(name, type0, arg0, type1, arg1, type2, arg2, type3, \
sys/sys/sdt.h
440
SDT_PROBE_ARGTYPE(sdt, , , name, 1, #type1, NULL); \
sys/uvm/uvm_map.c
5179
const uintptr_t type1 = UVM_VOADDR_GET_TYPE(voaddr1);
sys/uvm/uvm_map.c
5182
KASSERT(type1 == UVM_VOADDR_TYPE_UOBJ ||
sys/uvm/uvm_map.c
5183
type1 == UVM_VOADDR_TYPE_ANON);
sys/uvm/uvm_map.c
5188
if (type1 < type2)
sys/uvm/uvm_map.c
5190
if (type1 > type2)
usr.bin/mail/cmd1.c
405
return type1(msgvec, 1, !de_mime());
usr.bin/mail/cmd1.c
417
return type1(msgvec, 0, !de_mime());
usr.bin/mail/cmd1.c
430
return type1(msgvec, 1, de_mime());
usr.bin/mail/cmd1.c
442
return type1(msgvec, 0, de_mime());