| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/ |
| H A D | nir_vla.h | 35 #define NIR_VLA(_type, _name, _length) \ 36 _type *_name = alloca((_length) * sizeof *_name) 44 #define NIR_VLA_FILL(_type, _name, _length, _byte) \ 45 _type *_name = memset(alloca((_length) * sizeof *_name), _byte, (_length) * sizeof *_name) 53 #define NIR_VLA_ZERO(_type, _name, _length) \ 54 NIR_VLA_FILL(_type, _name, _length, 0)
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/ |
| H A D | nir_vla.h | 35 #define NIR_VLA(_type, _name, _length) \ 36 _type *_name = alloca((_length) * sizeof *_name) 44 #define NIR_VLA_FILL(_type, _name, _length, _byte) \ 45 _type *_name = memset(alloca((_length) * sizeof *_name), _byte, (_length) * sizeof *_name) 53 #define NIR_VLA_ZERO(_type, _name, _length) \ 54 NIR_VLA_FILL(_type, _name, _length, 0)
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/driver_trace/ |
| H A D | tr_dump.h | 115 #define trace_dump_arg(_type, _arg) \ 118 trace_dump_##_type(_arg); \ 122 #define trace_dump_arg_struct(_type, _arg) \ 125 trace_dump_##_type(&_arg); \ 129 #define trace_dump_ret(_type, _arg) \ 132 trace_dump_##_type(_arg); \ 136 #define trace_dump_array(_type, _obj, _size) \ 143 trace_dump_##_type((_obj)[idx]); \ 152 #define trace_dump_struct_array(_type, _obj, _size) \ 159 trace_dump_##_type( [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/driver_trace/ |
| H A D | tr_dump.h | 119 #define trace_dump_arg(_type, _arg) \ 122 trace_dump_##_type(_arg); \ 126 #define trace_dump_arg_struct(_type, _arg) \ 129 trace_dump_##_type(&_arg); \ 133 #define trace_dump_ret(_type, _arg) \ 136 trace_dump_##_type(_arg); \ 140 #define trace_dump_array(_type, _obj, _size) \ 147 trace_dump_##_type((_obj)[idx]); \ 156 #define trace_dump_struct_array(_type, _obj, _size) \ 163 trace_dump_##_type( [all...] |
| /xsrc/external/mit/MesaLib/dist/src/vulkan/util/ |
| H A D | vk_physical_device_features.py | 147 for _type in doc.findall('./types/type'): 148 if _type.attrib.get('name') != 'VkPhysicalDeviceFeatures': 153 for p in _type.findall('./member'): 174 for _type in doc.findall('./types/type'): 175 if _type.attrib.get('category') != 'struct': 177 if _type.attrib.get('structextends') != 'VkPhysicalDeviceFeatures2,VkDeviceCreateInfo': 179 if _type.attrib.get('name') in provisional_structs: 183 for elem in _type: 190 for p in _type.findall('./member'): 200 feat = Feature(name=_type [all...] |
| H A D | vk_alloc.h | 210 #define vk_multialloc_add_size(_ma, _ptr, _type, _size) \ 212 _type **_tmp = (_ptr); \ 215 (_size), alignof(_type)); \ 218 #define vk_multialloc_add(_ma, _ptr, _type, _count) \ 219 vk_multialloc_add_size(_ma, _ptr, _type, (_count) * sizeof(**(_ptr))); 221 #define VK_MULTIALLOC_DECL_SIZE(_ma, _type, _name, _size) \ 222 _type *_name; \ 223 vk_multialloc_add_size(_ma, &_name, _type, _size); 225 #define VK_MULTIALLOC_DECL(_ma, _type, _name, _count) \ 226 VK_MULTIALLOC_DECL_SIZE(_ma, _type, _nam [all...] |
| H A D | vk_cmd_queue_gen.py | 354 for _type in doc.findall('./types/type'): 355 if _type.attrib.get('category') != 'struct': 359 for p in _type.findall('./member'): 368 types[_type.attrib['name']] = EntrypointType(name=_type.attrib['name'], enum=type_enum, members=members, extended_by=[]) 370 for _type in doc.findall('./types/type'): 371 if _type.attrib.get('category') != 'struct': 373 if _type.attrib.get('structextends') is None: 375 for extended in _type.attrib.get('structextends').split(','): 376 types[extended].extended_by.append(types[_type [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/include/pipe/ |
| H A D | p_compiler.h | 126 #define PIPE_ALIGN_TYPE(_alignment, _type) _type __attribute__((aligned(_alignment))) 140 #define PIPE_ALIGN_TYPE(_alignment, _type) __declspec(align(_alignment)) _type 147 #define PIPE_ALIGN_TYPE(_alignment, _type) _type
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/include/pipe/ |
| H A D | p_compiler.h | 126 #define PIPE_ALIGN_TYPE(_alignment, _type) _type __attribute__((aligned(_alignment))) 140 #define PIPE_ALIGN_TYPE(_alignment, _type) __declspec(align(_alignment)) _type 147 #define PIPE_ALIGN_TYPE(_alignment, _type) _type
|
| /xsrc/external/mit/glu/dist/src/libnurbs/internals/ |
| H A D | pwlarc.h | 71 PwlArc::PwlArc( int _npts, TrimVertex *_pts, long _type ) argument 75 type = _type;
|
| H A D | reader.h | 79 O_nurbscurve( long _type ) argument 80 { bezier_curves = 0; type = _type; tesselation = 0; method = 0; next = 0; used = 0; save = 0; owner = 0; } 108 O_nurbssurface( long _type ) argument 109 { bezier_patches = 0; type = _type; owner = 0; next = 0; save = 0; used = 0; } 125 Property( long _type, long _tag, INREAL _value ) argument 126 { type = _type; tag = _tag; value = (REAL) _value; save = 0; }
|
| H A D | reader.cc | 60 O_pwlcurve::O_pwlcurve( long _type, long count, INREAL *array, long byte_stride, TrimVertex *trimpts ) argument 71 switch( _type ) { 112 O_pwlcurve::O_pwlcurve( long _type, long count, INREAL *array, long byte_stride, TrimVertex *trimpts ) argument 122 switch( _type ) {
|
| /xsrc/external/mit/xorg-server/dist/include/ |
| H A D | list.h | 424 #define nt_list_append(_entry, _list, _type, _member) \ 426 _type *__iterator = _list; \ 448 #define nt_list_insert(_entry, _list, _type, _member) \ 450 nt_list_append((_list)->_member, _entry, _type, _member); \ 469 #define nt_list_del(_entry, _list, _type, _member) \ 471 _type *__e = _entry; \ 476 _type *__prev = _list; \
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/rasterizer/codegen/templates/ |
| H A D | gen_knobs.h | 75 #define DEFINE_KNOB(_name, _type) \\ 77 struct Knob_##_name : Knob<_type> \\ 83 static _type DefaultValue() { return (m_default); } \\ 87 static _type m_default; \\
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/swr/rasterizer/codegen/templates/ |
| H A D | gen_knobs.h | 75 #define DEFINE_KNOB(_name, _type) \\ 77 struct Knob_##_name : Knob<_type> \\ 83 static _type DefaultValue() { return (m_default); } \\ 87 static _type m_default; \\
|
| /xsrc/external/mit/xf86-video-s3/dist/src/ |
| H A D | s3_pcirename.h | 61 #define PCI_REGION_BASE(_pcidev, _b, _type) \ 62 (((_type) == REGION_MEM) ? (_pcidev)->memBase[(_b)] \ 108 #define PCI_REGION_BASE(_pcidev, _b, _type) ((_pcidev)->regions[(_b)].base_addr)
|
| /xsrc/external/mit/xf86-video-s3virge/dist/src/ |
| H A D | s3v_pcirename.h | 61 #define PCI_REGION_BASE(_pcidev, _b, _type) \ 62 (((_type) == REGION_MEM) ? (_pcidev)->memBase[(_b)] \ 108 #define PCI_REGION_BASE(_pcidev, _b, _type) ((_pcidev)->regions[(_b)].base_addr)
|
| /xsrc/external/mit/xf86-video-siliconmotion/dist/src/ |
| H A D | smi_pcirename.h | 61 #define PCI_REGION_BASE(_pcidev, _b, _type) \ 62 (((_type) == REGION_MEM) ? (_pcidev)->memBase[(_b)] \ 108 #define PCI_REGION_BASE(_pcidev, _b, _type) ((_pcidev)->regions[(_b)].base_addr)
|
| /xsrc/external/mit/xf86-video-tga/dist/src/ |
| H A D | tga_pcirename.h | 61 #define PCI_REGION_BASE(_pcidev, _b, _type) \ 62 (((_type) == REGION_MEM) ? (_pcidev)->memBase[(_b)] \ 108 #define PCI_REGION_BASE(_pcidev, _b, _type) ((_pcidev)->regions[(_b)].base_addr)
|
| /xsrc/external/mit/xf86-video-trident/dist/src/ |
| H A D | pci_rename.h | 61 #define PCI_REGION_BASE(_pcidev, _b, _type) \ 62 (((_type) == REGION_MEM) ? (_pcidev)->memBase[(_b)] \ 108 #define PCI_REGION_BASE(_pcidev, _b, _type) ((_pcidev)->regions[(_b)].base_addr)
|
| /xsrc/external/mit/xf86-video-tseng/dist/src/ |
| H A D | tseng_pcirename.h | 61 #define PCI_REGION_BASE(_pcidev, _b, _type) \ 62 (((_type) == REGION_MEM) ? (_pcidev)->memBase[(_b)] \ 108 #define PCI_REGION_BASE(_pcidev, _b, _type) ((_pcidev)->regions[(_b)].base_addr)
|
| /xsrc/external/mit/xf86-video-i128/dist/src/ |
| H A D | i128pcirename.h | 61 #define PCI_REGION_BASE(_pcidev, _b, _type) \ 62 (((_type) == REGION_MEM) ? (_pcidev)->memBase[(_b)] \ 108 #define PCI_REGION_BASE(_pcidev, _b, _type) ((_pcidev)->regions[(_b)].base_addr)
|
| /xsrc/external/mit/xf86-video-i740/dist/src/ |
| H A D | i740_pcirename.h | 61 #define PCI_REGION_BASE(_pcidev, _b, _type) \ 62 (((_type) == REGION_MEM) ? (_pcidev)->memBase[(_b)] \ 108 #define PCI_REGION_BASE(_pcidev, _b, _type) ((_pcidev)->regions[(_b)].base_addr)
|
| /xsrc/external/mit/xf86-video-apm/dist/src/ |
| H A D | apm_pcirename.h | 61 #define PCI_REGION_BASE(_pcidev, _b, _type) \ 62 (((_type) == REGION_MEM) ? (_pcidev)->memBase[(_b)] \ 108 #define PCI_REGION_BASE(_pcidev, _b, _type) ((_pcidev)->regions[(_b)].base_addr)
|
| /xsrc/external/mit/xf86-video-ast/dist/src/ |
| H A D | ast_pcirename.h | 61 #define PCI_REGION_BASE(_pcidev, _b, _type) \ 62 (((_type) == REGION_MEM) ? (_pcidev)->memBase[(_b)] \ 108 #define PCI_REGION_BASE(_pcidev, _b, _type) ((_pcidev)->regions[(_b)].base_addr)
|