/solaris-x11-s11/open-src/kernel/sys/drm/ |
H A D | drm_linux_list.h | 50 #define container_of(ptr, type, member) \ 51 ((type *)(uintptr_t)((char *)(ptr) - (unsigned long)(&((type *)0)->member))) 53 #define list_entry(ptr, type, member) \ 54 ptr ? ((type *)(uintptr_t)(ptr->contain_ptr)) : NULL 56 #define list_first_entry(ptr, type, member) \ 57 list_entry((ptr)->next, type, member) 148 #define list_for_each_entry(pos, type, head, member) \ 149 for (pos = list_entry((head)->next, type, member); pos; \ 150 pos = list_entry(pos->member.next, type, membe [all...] |
H A D | drm_io32.h | 59 drm_map_type_t type; member in struct:drm_map_32 79 drm_stat_type_t type; member in struct:drm_stats_32::__anon182 126 uint32_t type; /* Type of memory to allocate */ member in struct:drm_agp_buffer32 158 drm_vblank_seq_type_t type; member in struct:drm_wait_vblank_request_32 163 drm_vblank_seq_type_t type; member in struct:drm_wait_vblank_reply_32 170 * DRM_IOCTL_WAIT_VBLANK ioctl argument type.
|
H A D | drm.h | 134 * DRM_IOCTL_VERSION ioctl argument type. 151 * DRM_IOCTL_GET_UNIQUE ioctl argument type. 170 * DRM_IOCTL_CONTROL ioctl argument type. 218 * argument type. 227 enum drm_map_type type; /**< Type of memory to map */ member in struct:drm_map 234 * DRM_IOCTL_GET_CLIENT ioctl argument type. 266 * DRM_IOCTL_GET_STATS ioctl argument type. 272 enum drm_stat_type type; member in struct:drm_stats::__anon172 292 * DRM_IOCTL_LOCK, DRM_IOCTL_UNLOCK and DRM_IOCTL_FINISH ioctl argument type. 343 * DRM_IOCTL_ADD_BUFS and DRM_IOCTL_MARK_BUFS ioctl argument type 463 unsigned int type; member in struct:drm_update_draw 505 enum drm_vblank_seq_type type; member in struct:drm_wait_vblank_request 511 enum drm_vblank_seq_type type; member in struct:drm_wait_vblank_reply 557 unsigned long type; /**< Type of memory to allocate */ member in struct:drm_agp_buffer 830 __u32 type; member in struct:drm_event [all...] |
/solaris-x11-s11/open-src/lib/DPS/sun-src/libpsres/ |
H A D | PSres.c | 77 /* MT is the right pointer type to pass to memcpy, MST the size type */ 103 char *type; member in struct:_ResourceTypeStruct 125 char *type; member in struct:__anon272 131 char *type; member in struct:__anon273 418 dir->types[i].type = &(dir->typeNameBuffer[len]); 426 len += strlen(dir->types[i].type) + 1; 514 static void CacheOldNames(type) 515 ResourceType type; 517 type [all...] |
/solaris-x11-s11/open-src/kernel/i915/src/ |
H A D | intel_ddi.c | 68 int type = intel_encoder->type; local 70 if (type == INTEL_OUTPUT_DISPLAYPORT || type == INTEL_OUTPUT_EDP || 71 type == INTEL_OUTPUT_HDMI || type == INTEL_OUTPUT_UNKNOWN) { 75 } else if (type == INTEL_OUTPUT_ANALOG) { 78 DRM_ERROR("Invalid DDI encoder type %d\n", type); 296 int type local 641 int type = intel_encoder->type; local 736 int type = intel_encoder->type; local 771 int type = intel_encoder->type; local 866 int type = intel_connector->base.connector_type; local 1043 int type = intel_encoder->type; local 1071 int type = intel_encoder->type; local 1108 int type = intel_encoder->type; local 1144 int type = intel_encoder->type; local 1266 int type = intel_encoder->type; local 1302 int type = encoder->type; local [all...] |
/solaris-x11-s11/open-src/kernel/efb/src/ |
H A D | drm_io32.h | 36 drm_map_type_t type; member in struct:drm_map_32 56 drm_stat_type_t type; member in struct:drm_stats_32::__anon123 109 uint32_t type; /* Type of memory to allocate */ member in struct:drm_agp_buffer32 141 drm_vblank_seq_type_t type; member in struct:drm_wait_vblank_request_32 146 drm_vblank_seq_type_t type; member in struct:drm_wait_vblank_reply_32 153 * DRM_IOCTL_WAIT_VBLANK ioctl argument type.
|
H A D | queue.h | 95 #define LIST_HEAD(name, type) \ 97 struct type *lh_first; /* first element */ \ 103 #define LIST_ENTRY(type) \ 105 struct type *le_next; /* next element */ \ 106 struct type **le_prev; /* address of previous next element */ \ 200 #define SLIST_HEAD(name, type) \ 202 struct type *slh_first; /* first element */ \ 208 #define SLIST_ENTRY(type) \ 210 struct type *sle_next; /* next element */ \ 238 #define SLIST_REMOVE(head, elm, type, fiel [all...] |
H A D | drm_irq.c | 226 vblwait.request.type = vblwait32.request.type; 237 if (vblwait.request.type & 239 cmn_err(CE_WARN, "drm_wait_vblank: wrong request type 0x%x", 240 vblwait.request.type); 244 flags = vblwait.request.type & _DRM_VBLANK_FLAGS_MASK; 256 if (vblwait.request.type & _DRM_VBLANK_RELATIVE) { 258 vblwait.request.type &= ~_DRM_VBLANK_RELATIVE; 261 else if ((vblwait.request.type & _DRM_VBLANK_ABSOLUTE) == 0) { 262 cmn_err(CE_WARN, "vblank_wait: unknown request type"); [all...] |
H A D | drm.h | 89 #define _IOC(dir, type, nr, size) \ 91 ((type) << _IOC_TYPESHIFT) | \ 97 #define _IO(type, nr) _IOC(_IOC_NONE, (type), (nr), 0) 98 #define _IOR(type, nr, size) _IOC(_IOC_READ, (type), (nr), sizeof (size)) 99 #define _IOW(type, nr, size) _IOC(_IOC_WRITE, (type), (nr), sizeof (size)) 100 #define _IOWR(type, nr, size) _IOC(_IOC_READ|_IOC_WRITE, \ 101 (type), (n 320 enum drm_map_type type; /**< Type of memory to map */ member in struct:drm_map 365 enum drm_stat_type type; member in struct:drm_stats::__anon118 548 unsigned int type; member in struct:drm_update_draw 590 enum drm_vblank_seq_type type; member in struct:drm_wait_vblank_request 596 enum drm_vblank_seq_type type; member in struct:drm_wait_vblank_reply 642 unsigned long type; /**< Type of memory to allocate */ member in struct:drm_agp_buffer 870 __u32 type; member in struct:drm_event [all...] |
/solaris-x11-s11/open-src/lib/DPS/sun-src/pswrap/ |
H A D | pswsemantics.c | 163 if (IsCharType(arg->type) 175 if(item->scaled && !IsNumStrType(arg->type)) { 179 if (IsNumStrType(arg->type) 191 if (arg->type != T_CONTEXT) { 202 item->type = arg->type; 218 if (arg->type == T_USEROBJECT) { 220 fprintf(stderr,"output parameter %s can not be of type userobject\n", 228 if (arg->type == T_NUMSTR || arg->type 330 PSWToken(Type type, char *val) argument 368 PSWToken2(Type type, char *val, char *ind) argument 415 PSWArg(Type type, Items items) argument [all...] |
H A D | psw.c | 165 static char *TypeToText(Type type) argument 167 switch ((int) type) { 207 static char *CTypeToDPSType(int type) argument 209 switch (type) { 231 static char *CTypeToResultType(int type) argument 233 switch (type) { 288 Assert(t->type == T_NAME || t->type == T_LITNAME); 341 fprintf(stm, "%s ", TypeToText(arg->type)); 351 fprintf(stm, "%s ", TypeToText(arg->type)); 363 TypeToDefault(int type) argument 378 register char *type; local [all...] |
H A D | pswpriv.h | 53 /* Forward type designator */ 74 Type type; /* copied from parent Arg */ member in struct:_t_ItemRec 82 Type type; member in struct:_t_ArgRec 101 Type type; member in struct:_t_TokenRec 105 boolean wellKnownName; /* valid if type is T_NAME or T_LITNAME */ 111 /* Meaning depends on the token type, as follows:
|
H A D | pswparser.y | 53 /* yylval type (from lexer and on stack) */ 80 %type <token> Token Tokens Body 81 %type <item> Items Item 82 %type <header> Header 83 %type <flag> Def Type 84 %type <arg> InArgs Args ContextArg SubArgs Arg 85 %type <subscript> Subscript
|
/solaris-x11-s11/open-src/proto/sun-ext-protos/include/ |
H A D | dgast.h | 96 CARD32 type; member in struct:__anon470 120 BYTE type; /* X_Reply */ member in struct:__anon472 141 BYTE type; /* X_Reply */ member in struct:__anon474
|
H A D | interactive.h | 61 BYTE type; /* X_Reply */ member in struct:__anon484 93 BYTE type; /* X_Reply */ member in struct:__anon485
|
/solaris-x11-s11/open-src/xserver/xorg/sun-src/os/solaris/mdb/modules/ |
H A D | Xserver_device_grabs.c | 121 const char *type; local 157 type = "* core keyboard *"; 159 type = "* core pointer *"; 161 type = ""; 169 mdb_printf("Device \"%s\" id %d: %s\n", devName, dev->id, type);
|
/solaris-x11-s11/open-src/lib/libXaw4/sun-src/ |
H A D | Xaw3_1TextSrc.c | 191 * Description: Scans the text source for the number and type 195 * type - type of thing to scan for. 207 Scan (w, position, type, dir, count, include) 210 XawTextScanType type; 244 * type - the type to conver the selection to. 253 ConvertSelection(w, selection, target, type, value, length, format) 255 Atom * selection, * target, * type; 329 * Description: Scans the text source for the number and type [all...] |
/solaris-x11-s11/open-src/app/gfx-utils/sun-src/fbconf_xorg/xf86/ |
H A D | Configint.h | 114 #define HANDLE_LIST(field,func,type)\ 116 type p = func ();\ 124 ptr->field = (type) xf86addListItem ((glp) ptr->field, (glp) p);\
|
/solaris-x11-s11/open-src/lib/libdga/sun-src/ |
H A D | dga_Xrequests.h | 109 CARD32 type B32; 123 BYTE type; /* X_Reply */ member in struct:__anon449 144 BYTE type; /* X_Reply */ member in struct:__anon451
|
H A D | XineramaInfo.h | 44 BYTE type; member in struct:_XDgaXineramaInfoReply
|
/solaris-x11-s11/open-src/app/gfx-utils/sun-src/fbconf_xorg/fbc/ |
H A D | fbc_dev.h | 44 const char *type; /* Device type name (e.g. "efb") */ member in struct:__anon21 64 char *device_type_buf, /* Ptr to device type buffer */ 65 size_t device_type_buflen, /* Device type buffer length */ 72 char *device_type_buf, /* Ptr to device type buffer */ 73 size_t device_type_buflen, /* Device type buffer length */
|
/solaris-x11-s11/open-src/lib/DPS/sun-src/libdps/ |
H A D | DPSCAPproto.h | 114 CARD8 type; /* always X_CAPFlushAgent */ member in struct:_CAPFlushAgent 122 CARD8 type; /* always X_CAPNotify */ member in struct:_CAPNotify 133 CARD8 type; /* always X_CAPNotify */ member in struct:_CAPSetArg 135 CARD32 arg B32; /* argument type */ 143 BYTE type; /* always 0 */ member in struct:_DPSCAPError
|
H A D | psopstack.psw | 52 dup type /arraytype eq { a } { size { a } repeat } ifelse 60 dup type /arraytype eq { a } { size { a } repeat } ifelse
|
/solaris-x11-s11/open-src/app/accessx/sun-src/ |
H A D | AccessXproto.h | 95 CARD8 type; /* Must be X_Reply */ member in struct:__anon4 142 CARD8 type; /* Must be X_Reply */ member in struct:__anon7 247 CARD8 type; /* Must be X_Reply */ member in struct:__anon10 311 CARD8 type; member in struct:__anon12 329 int type; member in struct:__anon13
|
/solaris-x11-s11/open-src/lib/DPS/sun-src/include/DPS/ |
H A D | dpsfriends.h | 150 DPSDefinedType type, 156 DPSDefinedType type, 175 /* 'array' points at an array of 'length' elements of 'type'. 248 DPSDefinedType type; member in struct:__anon238 254 procedure. The 'type' field specifies the formal type of the 258 must have room for count values of type. If 'count' == -1, then 312 The 'resultTableLength' and 'resultTable' fields define the number, type 415 extern void DPSWriteNumString(DPSContext ctxt, DPSDefinedType type, 418 extern void DPSWriteTypedObjectArray(DPSContext ctxt, DPSDefinedType type, [all...] |