HomeSort by: relevance | last modified time | path
    Searched refs:type (Results 1 - 25 of 3902) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/external/bsd/acpica/dist/compiler/
asltypes.y 161 %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 <n> NamedObjec
    [all...]
  /src/lib/libc/posix1e/
acl_delete.c 63 acl_delete_file_np(const char *path_p, acl_type_t type)
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)
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)
82 type = _acl_type_unold(type)
    [all...]
acl_valid.c 85 acl_valid_file_np(const char *pathp, acl_type_t type, acl_t acl)
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)
107 type = _acl_type_unold(type);
108 if (_posix1e_acl(acl, type))
111 return (__acl_aclcheck_link(pathp, type, &acl->ats_acl))
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dcn10/
dcn10_link_encoder.h 213 #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_LANE3;
    [all...]
dcn10_dpp.h 475 #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_DEPTH;
    [all...]
dcn10_hubbub.h 190 #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_OUTSTAND;
    [all...]
dcn10_cm_common.h 31 #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_segment;
    [all...]
dcn10_dwb.h 152 #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_TYPE;
    [all...]
  /src/share/examples/refuse/fanoutfs/
defs.h 44 #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, ptr, where, action) NEWARRAY(type, ptr, 1, where, action
    [all...]
  /src/share/examples/refuse/id3fs/
defs.h 44 #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, ptr, where, action) NEWARRAY(type, ptr, 1, where, action
    [all...]
  /src/share/examples/refuse/virtdir/
defs.h 44 #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, ptr, where, action) NEWARRAY(type, ptr, 1, where, action
    [all...]
  /src/sys/sys/
mallocvar.h 40 * 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/usr.sbin/bootp/common/
hwaddr.h 10 * 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/lib/libwrap/
mystdarg.h 10 #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/
defs.h 33 #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, ptr, 1, action
    [all...]
  /src/sys/arch/zaurus/stand/zboot/
bootinfo.c 35 bi_find(int type)
42 if (btinfo->type == type) {
50 bi_add(struct btinfo_common *what, int type, int size)
55 what->type = type;
58 idx = bi_find(type);
67 bi_del(int type)
73 idx = bi_find(type);
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/gpio/
generic_regs.h 33 #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/luna68k/stand/boot/
trap.c 78 #define USER 040 /* user-mode flag added to type */
102 trap(int type, unsigned int code, unsigned int v, struct frame frame)
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/
boot_device.c 63 boot_device(int *type, int *unit, int *fd_format)
70 return tab[i](type, unit);
72 return __nvsram_type_e(type, unit);
76 __nvsram_type_a(int *type, int *unit)
79 *type = NVSRAM_BOOTDEV_HARDDISK;
84 __nvsram_type_b(int *type, int *unit)
87 *type = NVSRAM_BOOTDEV_HARDDISK;
92 __nvsram_type_c(int *type, int *unit)
95 *type = NVSRAM_BOOTDEV_HARDDISK;
100 __nvsram_type_d(int *type, int *unit
    [all...]
  /src/sys/arch/x86/include/
pat.h 32 #define PATENTRY(n, type) ((type) << ((n) * 8))
  /src/sys/dev/pci/bktr/
bktr_mem.h 64 void bktr_store_address(int unit, int type, vm_offset_t addr);
65 vm_offset_t bktr_retrieve_address(int unit, int type);
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/argon2/
argon2-encoding.h 21 argon2_type type);
31 int decode_string(argon2_context *ctx, const char *str, argon2_type type);
  /src/tests/usr.bin/xlint/lint1/
d_c99_anon_struct.c 6 typedef int type; typedef in typeref:typename:int
18 type z;
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dcn20/
dcn20_dwb.h 231 #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_SEL;
    [all...]
  /src/lib/libm/src/
s_fdim.c 35 #define DECL(type, fn) \
36 type \
37 fn(type x, type y) \

Completed in 74 milliseconds

1 2 3 4 5 6 7 8 91011>>