Searched refs:type (Results 1 - 25 of 3888) sorted by relevance

1234567891011>>

/src/sys/external/bsd/acpica/dist/compiler/
H A Dasltypes.y161 %type <n> ArgList
162 %type <n> AslCode
163 %type <n> BufferData
164 %type <n> BufferTermData
165 %type <n> CompilerDirective
166 %type <n> DataObject
167 %type <n> DefinitionBlockTerm
168 %type <n> DefinitionBlockList
169 %type <n> IntegerData
170 %type <
[all...]
/src/lib/libc/posix1e/
H A Dacl_delete.c63 acl_delete_file_np(const char *path_p, acl_type_t type) argument
66 type = _acl_type_unold(type);
67 return (__acl_delete_file(path_p, type));
71 acl_delete_link_np(const char *path_p, acl_type_t type) argument
74 type = _acl_type_unold(type);
75 return (__acl_delete_link(path_p, type));
79 acl_delete_fd_np(int filedes, acl_type_t type) argument
82 type
[all...]
H A Dacl_valid.c85 acl_valid_file_np(const char *pathp, acl_type_t type, acl_t acl) argument
92 type = _acl_type_unold(type);
93 if (_posix1e_acl(acl, type))
96 return (__acl_aclcheck_file(pathp, type, &acl->ats_acl));
100 acl_valid_link_np(const char *pathp, acl_type_t type, acl_t acl) argument
107 type = _acl_type_unold(type);
108 if (_posix1e_acl(acl, type))
111 return (__acl_aclcheck_link(pathp, type,
115 acl_valid_fd_np(int fd,acl_type_t type,acl_t acl) argument
[all...]
/src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dcn10/
H A Ddcn10_link_encoder.h213 #define DCN_LINK_ENCODER_REG_FIELD_LIST(type) \
214 type DIG_ENABLE;\
215 type DIG_HPD_SELECT;\
216 type DIG_MODE;\
217 type DIG_FE_SOURCE_SELECT;\
218 type DPHY_BYPASS;\
219 type DPHY_ATEST_SEL_LANE0;\
220 type DPHY_ATEST_SEL_LANE1;\
221 type DPHY_ATEST_SEL_LANE2;\
222 type DPHY_ATEST_SEL_LANE
[all...]
H A Ddcn10_dpp.h475 #define TF_REG_FIELD_LIST(type) \
476 type EXT_OVERSCAN_LEFT; \
477 type EXT_OVERSCAN_RIGHT; \
478 type EXT_OVERSCAN_BOTTOM; \
479 type EXT_OVERSCAN_TOP; \
480 type OTG_H_BLANK_START; \
481 type OTG_H_BLANK_END; \
482 type OTG_V_BLANK_START; \
483 type OTG_V_BLANK_END; \
484 type PIXEL_DEPT
[all...]
H A Ddcn10_hubbub.h190 #define DCN_HUBBUB_REG_FIELD_LIST(type) \
191 type DCHUBBUB_GLOBAL_TIMER_ENABLE; \
192 type DCHUBBUB_ARB_WATERMARK_CHANGE_REQUEST;\
193 type DCHUBBUB_ARB_WATERMARK_CHANGE_DONE_INTERRUPT_DISABLE;\
194 type DCHUBBUB_ARB_ALLOW_SELF_REFRESH_FORCE_VALUE;\
195 type DCHUBBUB_ARB_ALLOW_SELF_REFRESH_FORCE_ENABLE;\
196 type DCHUBBUB_ARB_ALLOW_PSTATE_CHANGE_FORCE_VALUE;\
197 type DCHUBBUB_ARB_ALLOW_PSTATE_CHANGE_FORCE_ENABLE;\
198 type DCHUBBUB_ARB_SAT_LEVEL;\
199 type DCHUBBUB_ARB_MIN_REQ_OUTSTAN
[all...]
H A Ddcn10_cm_common.h31 #define TF_HELPER_REG_FIELD_LIST(type) \
32 type exp_region0_lut_offset; \
33 type exp_region0_num_segments; \
34 type exp_region1_lut_offset; \
35 type exp_region1_num_segments;\
36 type field_region_end;\
37 type field_region_end_slope;\
38 type field_region_end_base;\
39 type exp_region_start;\
40 type exp_resion_start_segmen
[all...]
H A Ddcn10_dwb.h152 #define DWBC_REG_FIELD_LIST(type) \
153 type WB_ENABLE;\
154 type DISPCLK_R_WB_GATE_DIS;\
155 type DISPCLK_G_WB_GATE_DIS;\
156 type DISPCLK_G_WBSCL_GATE_DIS;\
157 type WB_LB_LS_DIS;\
158 type WB_LB_SD_DIS;\
159 type WB_LUT_LS_DIS;\
160 type CNV_WINDOW_CROP_EN;\
161 type CNV_STEREO_TYP
[all...]
/src/share/examples/refuse/fanoutfs/
H A Ddefs.h44 #define NEWARRAY(type,ptr,size,where,action) do { \
45 if ((ptr = (type *) calloc(sizeof(type), (unsigned)(size))) == NULL) { \
47 where, (unsigned long)(size * sizeof(type))); \
52 #define RENEW(type,ptr,size,where,action) do { \
53 type *_newptr; \
54 if ((_newptr = (type *) realloc(ptr, sizeof(type) * (size))) == NULL) { \
56 where, (unsigned long)(size * sizeof(type))); \
63 #define NEW(type, pt
[all...]
/src/share/examples/refuse/id3fs/
H A Ddefs.h44 #define NEWARRAY(type,ptr,size,where,action) do { \
45 if ((ptr = (type *) calloc(sizeof(type), (unsigned)(size))) == NULL) { \
47 where, (unsigned long)(size * sizeof(type))); \
52 #define RENEW(type,ptr,size,where,action) do { \
53 type *_newptr; \
54 if ((_newptr = (type *) realloc(ptr, sizeof(type) * (size))) == NULL) { \
56 where, (unsigned long)(size * sizeof(type))); \
63 #define NEW(type, pt
[all...]
/src/share/examples/refuse/virtdir/
H A Ddefs.h44 #define NEWARRAY(type,ptr,size,where,action) do { \
45 if ((ptr = (type *) calloc(sizeof(type), (unsigned)(size))) == NULL) { \
47 where, (unsigned long)(size * sizeof(type))); \
52 #define RENEW(type,ptr,size,where,action) do { \
53 type *_newptr; \
54 if ((_newptr = (type *) realloc(ptr, sizeof(type) * (size))) == NULL) { \
56 where, (unsigned long)(size * sizeof(type))); \
63 #define NEW(type, pt
[all...]
/src/usr.sbin/bootp/common/
H A Dhwaddr.h10 * This structure holds information about a specific network type. The
27 * Return the length in bytes of a hardware address of the given type.
28 * Return the canonical name of the network of the given type.
30 #define haddrlength(type) ((hwinfolist[(int) (type)]).hlen)
31 #define netname(type) ((hwinfolist[(int) (type)]).name)
/src/sys/sys/
H A Dmallocvar.h40 * This structure describes a type of malloc'd memory and carries
46 #define MALLOC_JUSTDEFINE(type, shortdesc, longdesc)
47 #define MALLOC_DEFINE(type, shortdesc, longdesc)
48 #define MALLOC_DECLARE(type) \
49 static struct malloc_type *const __unused type = 0
/src/lib/libwrap/
H A Dmystdarg.h10 #define VARARGS(func,type,arg) func(type arg, ...)
11 #define VASTART(ap,type,name) va_start(ap,name)
15 #define VARARGS(func,type,arg) func(va_alist) va_dcl
16 #define VASTART(ap,type,name) {type name; va_start(ap); name = va_arg(ap, type)
/src/usr.sbin/user/
H A Ddefs.h33 #define NEWARRAY(type,ptr,size,action) do { \
34 if ((ptr = (type *) calloc(sizeof(type), size)) == NULL) { \
35 warn("can't allocate %ld bytes", (long)(size * sizeof(type))); \
40 #define RENEW(type,ptr,size,action) do { \
41 if ((ptr = (type *) realloc(ptr, sizeof(type) * size)) == NULL) { \
42 warn("can't realloc %ld bytes", (long)(size * sizeof(type))); \
47 #define NEW(type, ptr, action) NEWARRAY(type, pt
[all...]
/src/sys/external/bsd/drm2/dist/drm/amd/display/dc/gpio/
H A Dgeneric_regs.h33 #define GENERIC_GPIO_REG_LIST_ENTRY(type, cd, id) \
34 .type ## _reg = REG(DC_GPIO_GENERIC_## type),\
35 .type ## _mask = DC_GPIO_GENERIC_ ## type ## __DC_GPIO_GENERIC ## id ## _ ## type ## _MASK,\
36 .type ## _shift = DC_GPIO_GENERIC_ ## type ## __DC_GPIO_GENERIC ## id ## _ ## type ## __SHIFT
/src/sys/arch/zaurus/stand/zboot/
H A Dbootinfo.c35 bi_find(int type) argument
42 if (btinfo->type == type) {
50 bi_add(struct btinfo_common *what, int type, int size) argument
55 what->type = type;
58 idx = bi_find(type);
67 bi_del(int type) argument
73 idx = bi_find(type);
/src/sys/arch/luna68k/stand/boot/
H A Dtrap.c78 #define USER 040 /* user-mode flag added to type */
102 trap(int type, unsigned int code, unsigned int v, struct frame frame) argument
104 switch (type) {
107 printf("trap type %d, code = %x, v = %x\n", type, code, v);
109 type &= ~USER;
110 if ((unsigned)type < TRAP_TYPES)
111 panic(trap_type[type]);
/src/sys/arch/ews4800mips/stand/common/
H A Dboot_device.c63 boot_device(int *type, int *unit, int *fd_format) argument
70 return tab[i](type, unit);
72 return __nvsram_type_e(type, unit);
76 __nvsram_type_a(int *type, int *unit) argument
79 *type = NVSRAM_BOOTDEV_HARDDISK;
84 __nvsram_type_b(int *type, int *unit) argument
87 *type = NVSRAM_BOOTDEV_HARDDISK;
92 __nvsram_type_c(int *type, int *unit) argument
95 *type = NVSRAM_BOOTDEV_HARDDISK;
100 __nvsram_type_d(int *type, in argument
108 __nvsram_type_e(int * type,int * unit) argument
[all...]
/src/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/argon2/
H A Dargon2-encoding.h21 argon2_type type);
31 int decode_string(argon2_context *ctx, const char *str, argon2_type type);
/src/sys/arch/x86/include/
H A Dpat.h32 #define PATENTRY(n, type) ((type) << ((n) * 8))
/src/sys/dev/pci/bktr/
H A Dbktr_mem.h64 void bktr_store_address(int unit, int type, vm_offset_t addr);
65 vm_offset_t bktr_retrieve_address(int unit, int type);
/src/tests/usr.bin/xlint/lint1/
H A Dd_c99_anon_struct.c6 typedef int type; typedef in typeref:typename:int
18 type z;
/src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dcn20/
H A Ddcn20_dwb.h231 #define DWBC_REG_FIELD_LIST_DCN2_0(type) \
232 type WB_ENABLE;\
233 type DISPCLK_R_WB_GATE_DIS;\
234 type DISPCLK_G_WB_GATE_DIS;\
235 type DISPCLK_G_WBSCL_GATE_DIS;\
236 type WB_TEST_CLK_SEL;\
237 type WB_LB_LS_DIS;\
238 type WB_LB_SD_DIS;\
239 type WB_LUT_LS_DIS;\
240 type WBSCL_LB_MEM_PWR_MODE_SE
[all...]
/src/sys/external/bsd/drm2/dist/drm/amd/display/dc/
H A Ddm_event_log.h40 #define EVENT_LOG_AUX_REQ(ddc, type, action, address, len, data) \
41 (void)((void)(ddc), (void)(type), (void)(action), (void)(address), \
43 #define EVENT_LOG_AUX_REP(ddc, type, replyStatus, len, data) \
44 (void)((void)(ddc), (void)(type), (void)(replyStatus), (void)(len), \

Completed in 16 milliseconds

1234567891011>>